alsa-devel.alsa-project.org archive mirror
 help / color / mirror / Atom feed
* ASOC: stream widget created two times
@ 2013-11-22 14:19 Arnaud POULIQUEN
  2013-11-25 18:48 ` Liam Girdwood
  0 siblings, 1 reply; 2+ messages in thread
From: Arnaud POULIQUEN @ 2013-11-22 14:19 UTC (permalink / raw)
  To: alsa-devel@alsa-project.org
  Cc: lrg@host86-182-165-201.range86-182.btcentralplus.com,
	broonie@cassiel.sirena.org.uk

Hello,
I 'm newbie on asoc dev. I'm trying to develop a driver based on dynamic
PCM implementation with backend and frontend. I'm working on 3.10

I have declared a FE  :
{
            .name = "MMDL0",
            .stream_name = "MM DL0 Frontend",
            .cpu_dai_name = "mm_dl0",

            .codec_name = "snd-soc-dummy",
            .codec_dai_name = "snd-soc-dummy-dai",

            .dynamic=1,
            .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
            .ignore_pmdown_time = 1, /* Power down without delay */
            .init = sti_dummy_init,
},

CPU DAI associated:
static struct snd_soc_dai_driver sti_frontend_cpu_dais[] = {
            {
                        .name = "mm_dl0",
                        .playback = {
                                    .stream_name = "MM_DL0",
                                    .channels_min = 1,
                                    .channels_max = 8,
                                    .rates = SNDRV_PCM_RATE_48000,
                                    .formats = SNDRV_PCM_FMTBIT_S16_LE
                        },
                        .probe = sti_frontend_dai_probe,
                        .probe_order = SND_SOC_COMP_ORDER_FIRST,
            },
}
Platform is declared using platform_of_node using DTS.
I have also declared a BE and the route that links the FE cpu dai widget with
the BE codec dai widget.

My concern is that MM_DL0 widget is created 2 times. One time in soc_probe_link_dais
and one time in soc_probe_platform.
After analysis it seems that this occurs because my cpu dai is registered in
platform device.
In this case the condition if (dai->dev != platform->dev)  in soc_probe_platform is false,
so dai widget is created a second time.

So I would like to know if  this is a normal behavior and I have to create a
specific device to register my cpu_dai?

Thanks in advance for your answers

BR

Arnaud

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: ASOC: stream widget created two times
  2013-11-22 14:19 ASOC: stream widget created two times Arnaud POULIQUEN
@ 2013-11-25 18:48 ` Liam Girdwood
  0 siblings, 0 replies; 2+ messages in thread
From: Liam Girdwood @ 2013-11-25 18:48 UTC (permalink / raw)
  To: Arnaud POULIQUEN
  Cc: alsa-devel@alsa-project.org, broonie@cassiel.sirena.org.uk

On Fri, 2013-11-22 at 15:19 +0100, Arnaud POULIQUEN wrote:
> Hello,
> I 'm newbie on asoc dev. I'm trying to develop a driver based on dynamic
> PCM implementation with backend and frontend. I'm working on 3.10
> 
> I have declared a FE  :
> {
>             .name = "MMDL0",
>             .stream_name = "MM DL0 Frontend",
>             .cpu_dai_name = "mm_dl0",
> 
>             .codec_name = "snd-soc-dummy",
>             .codec_dai_name = "snd-soc-dummy-dai",
> 
>             .dynamic=1,
>             .trigger = {SND_SOC_DPCM_TRIGGER_POST, SND_SOC_DPCM_TRIGGER_POST},
>             .ignore_pmdown_time = 1, /* Power down without delay */
>             .init = sti_dummy_init,
> },
> 
> CPU DAI associated:
> static struct snd_soc_dai_driver sti_frontend_cpu_dais[] = {
>             {
>                         .name = "mm_dl0",
>                         .playback = {
>                                     .stream_name = "MM_DL0",
>                                     .channels_min = 1,
>                                     .channels_max = 8,
>                                     .rates = SNDRV_PCM_RATE_48000,
>                                     .formats = SNDRV_PCM_FMTBIT_S16_LE
>                         },
>                         .probe = sti_frontend_dai_probe,
>                         .probe_order = SND_SOC_COMP_ORDER_FIRST,
>             },
> }
> Platform is declared using platform_of_node using DTS.
> I have also declared a BE and the route that links the FE cpu dai widget with
> the BE codec dai widget.
> 
> My concern is that MM_DL0 widget is created 2 times. One time in soc_probe_link_dais
> and one time in soc_probe_platform.

This bug has been fixed in later kernel. Can you cherry pick commit
ae10e7e8f1c9d021c8daca750d743cc3baa12e6d from 3.12.

Thanks

Liam

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-11-25 18:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-22 14:19 ASOC: stream widget created two times Arnaud POULIQUEN
2013-11-25 18:48 ` Liam Girdwood

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).