ASoC: Intel: broadwell: change cpu_dai and platform components for SOF
The legacy driver uses dummy cpu_dai and platform, SOF requires actual values to bind. Signed-off-by: Pan Xiuli <xiuli.pan@linux.intel.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20200110235751.3404-4-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
4865bde187
commit
64df6afa0d
|
@ -164,6 +164,14 @@ SND_SOC_DAILINK_DEF(platform,
|
|||
SND_SOC_DAILINK_DEF(codec,
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC("i2c-INT343A:00", "rt286-aif1")));
|
||||
|
||||
#if IS_ENABLED(CONFIG_SND_SOC_SOF_BROADWELL)
|
||||
SND_SOC_DAILINK_DEF(ssp0_port,
|
||||
DAILINK_COMP_ARRAY(COMP_CPU("ssp0-port")));
|
||||
#else
|
||||
SND_SOC_DAILINK_DEF(ssp0_port,
|
||||
DAILINK_COMP_ARRAY(COMP_DUMMY()));
|
||||
#endif
|
||||
|
||||
/* broadwell digital audio interface glue - connects codec <--> CPU */
|
||||
static struct snd_soc_dai_link broadwell_rt286_dais[] = {
|
||||
/* Front End DAI links */
|
||||
|
@ -218,7 +226,7 @@ static struct snd_soc_dai_link broadwell_rt286_dais[] = {
|
|||
.ops = &broadwell_rt286_ops,
|
||||
.dpcm_playback = 1,
|
||||
.dpcm_capture = 1,
|
||||
SND_SOC_DAILINK_REG(dummy, codec, dummy),
|
||||
SND_SOC_DAILINK_REG(ssp0_port, codec, platform),
|
||||
},
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue