]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commitdiff
ASoC: ti: omap-abe-twl6040: consider CPU-Platform possibility
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Fri, 28 Jun 2019 01:49:22 +0000 (10:49 +0900)
committerMark Brown <broonie@kernel.org>
Fri, 28 Jun 2019 14:19:05 +0000 (15:19 +0100)
commit 1306ab2eddd1 ("ASoC: ti: omap-abe-twl6040: 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: commit 1306ab2eddd1 ("ASoC: ti: omap-abe-twl6040: don't select unnecessary Platform")
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/ti/omap-abe-twl6040.c

index 5572f5a8de9f7e94b1c97e500618b8000d4e1bf4..6d564ab5e437a696e554ed4ed5e6357ea8516a05 100644 (file)
 #include "omap-mcpdm.h"
 #include "../codecs/twl6040.h"
 
-SND_SOC_DAILINK_DEF(link0_cpus,
-       DAILINK_COMP_ARRAY(COMP_EMPTY()));
-SND_SOC_DAILINK_DEF(link0_codecs,
+SND_SOC_DAILINK_DEFS(link0,
+       DAILINK_COMP_ARRAY(COMP_EMPTY()),
        DAILINK_COMP_ARRAY(COMP_CODEC("twl6040-codec",
-                                     "twl6040-legacy")));
-
-SND_SOC_DAILINK_DEF(link1_cpus,
+                                     "twl6040-legacy")),
        DAILINK_COMP_ARRAY(COMP_EMPTY()));
-SND_SOC_DAILINK_DEF(link1_codecs,
+
+SND_SOC_DAILINK_DEFS(link1,
+       DAILINK_COMP_ARRAY(COMP_EMPTY()),
        DAILINK_COMP_ARRAY(COMP_CODEC("dmic-codec",
-                                     "dmic-hifi")));
+                                     "dmic-hifi")),
+       DAILINK_COMP_ARRAY(COMP_EMPTY()));
 
 struct abe_twl6040 {
        struct snd_soc_card card;
@@ -256,6 +256,9 @@ static int omap_abe_probe(struct platform_device *pdev)
        priv->dai_links[0].cpus = link0_cpus;
        priv->dai_links[0].num_cpus = 1;
        priv->dai_links[0].cpus->of_node = dai_node;
+       priv->dai_links[0].platforms = link0_platforms;
+       priv->dai_links[0].num_platforms = 1;
+       priv->dai_links[0].platforms->of_node = dai_node;
        priv->dai_links[0].codecs = link0_codecs;
        priv->dai_links[0].num_codecs = 1;
        priv->dai_links[0].init = omap_abe_twl6040_init;
@@ -269,6 +272,9 @@ static int omap_abe_probe(struct platform_device *pdev)
                priv->dai_links[1].cpus = link1_cpus;
                priv->dai_links[1].num_cpus = 1;
                priv->dai_links[1].cpus->of_node = dai_node;
+               priv->dai_links[1].platforms = link1_platforms;
+               priv->dai_links[1].num_platforms = 1;
+               priv->dai_links[1].platforms->of_node = dai_node;
                priv->dai_links[1].codecs = link1_codecs;
                priv->dai_links[1].num_codecs = 1;
                priv->dai_links[1].init = omap_abe_dmic_init;