forked from luck/tmp_suning_uos_patched
ASoC: rockchip: rk3399_gru_sound: consider CPU-Platform possibility
commit961fb3c206
("ASoC: rockchip: rk3399_gru_sound: don't select unnecessary Platform") Current ALSA SoC avoid to add duplicate component to rtd, and this driver was selecting CPU component as Platform component. Thus, above patch removed Platform settings from this driver, because it assumed these are same component. But, some CPU driver is using generic DMAEngine, in such case, both CPU component and Platform component will have same of_node/name. In other words, there are some components which are different but have same of_node/name. In such case, Card driver definitely need to select Platform even though it is same as CPU. It is depends on CPU driver, but is difficult to know it from Card driver. This patch reverts above patch. Fixes: commit961fb3c206
("ASoC: rockchip: rk3399_gru_sound: don't select unnecessary Platform") Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
0751154fda
commit
6c10da54f3
|
@ -255,27 +255,33 @@ enum {
|
|||
|
||||
SND_SOC_DAILINK_DEFS(cdndp,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "spdif-hifi")));
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "spdif-hifi")),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
SND_SOC_DAILINK_DEFS(da7219,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "da7219-hifi")));
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "da7219-hifi")),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
SND_SOC_DAILINK_DEFS(dmic,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "dmic-hifi")));
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "dmic-hifi")),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
SND_SOC_DAILINK_DEFS(max98357a,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "HiFi")));
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "HiFi")),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
SND_SOC_DAILINK_DEFS(rt5514,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "rt5514-aif1")));
|
||||
DAILINK_COMP_ARRAY(COMP_CODEC(NULL, "rt5514-aif1")),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
SND_SOC_DAILINK_DEFS(rt5514_dsp,
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()),
|
||||
DAILINK_COMP_ARRAY(COMP_DUMMY()));
|
||||
DAILINK_COMP_ARRAY(COMP_DUMMY()),
|
||||
DAILINK_COMP_ARRAY(COMP_EMPTY()));
|
||||
|
||||
static const struct snd_soc_dai_link rockchip_dais[] = {
|
||||
[DAILINK_CDNDP] = {
|
||||
|
@ -509,6 +515,7 @@ static int rockchip_sound_of_parse_dais(struct device *dev,
|
|||
|
||||
if (!dai->codecs->name)
|
||||
dai->codecs->of_node = np_codec;
|
||||
dai->platforms->of_node = np_cpu;
|
||||
dai->cpus->of_node = np_cpu;
|
||||
|
||||
if (card->num_dapm_routes + rockchip_routes[index].num_routes >
|
||||
|
|
Loading…
Reference in New Issue
Block a user