]> git.proxmox.com Git - mirror_ubuntu-kernels.git/commitdiff
ASoC: ti: omap-twl4030: consider CPU-Platform possibility
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Fri, 28 Jun 2019 01:49:30 +0000 (10:49 +0900)
committerMark Brown <broonie@kernel.org>
Fri, 28 Jun 2019 14:19:35 +0000 (15:19 +0100)
commit bfe1273c65e1 ("ASoC: ti: omap-twl4030: 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 bfe1273c65e1 ("ASoC: ti: omap-twl4030: 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-twl4030.c

index 34e79e57f039b957c34c3c4a32158b80c7195419..92dbe2c67290dbf312e69af0eb72d51fa086b379 100644 (file)
@@ -197,11 +197,13 @@ static int omap_twl4030_init(struct snd_soc_pcm_runtime *rtd)
 /* Digital audio interface glue - connects codec <--> CPU */
 SND_SOC_DAILINK_DEFS(hifi,
        DAILINK_COMP_ARRAY(COMP_CPU("omap-mcbsp.2")),
-       DAILINK_COMP_ARRAY(COMP_CODEC("twl4030-codec", "twl4030-hifi")));
+       DAILINK_COMP_ARRAY(COMP_CODEC("twl4030-codec", "twl4030-hifi")),
+       DAILINK_COMP_ARRAY(COMP_PLATFORM("omap-mcbsp.2")));
 
 SND_SOC_DAILINK_DEFS(voice,
        DAILINK_COMP_ARRAY(COMP_CPU("omap-mcbsp.3")),
-       DAILINK_COMP_ARRAY(COMP_CODEC("twl4030-codec", "twl4030-voice")));
+       DAILINK_COMP_ARRAY(COMP_CODEC("twl4030-codec", "twl4030-voice")),
+       DAILINK_COMP_ARRAY(COMP_PLATFORM("omap-mcbsp.3")));
 
 static struct snd_soc_dai_link omap_twl4030_dai_links[] = {
        {
@@ -263,12 +265,18 @@ static int omap_twl4030_probe(struct platform_device *pdev)
                omap_twl4030_dai_links[0].cpus->dai_name  = NULL;
                omap_twl4030_dai_links[0].cpus->of_node = dai_node;
 
+               omap_twl4030_dai_links[0].platforms->name  = NULL;
+               omap_twl4030_dai_links[0].platforms->of_node = dai_node;
+
                dai_node = of_parse_phandle(node, "ti,mcbsp-voice", 0);
                if (!dai_node) {
                        card->num_links = 1;
                } else {
                        omap_twl4030_dai_links[1].cpus->dai_name  = NULL;
                        omap_twl4030_dai_links[1].cpus->of_node = dai_node;
+
+                       omap_twl4030_dai_links[1].platforms->name  = NULL;
+                       omap_twl4030_dai_links[1].platforms->of_node = dai_node;
                }
 
                priv->jack_detect = of_get_named_gpio(node,