Message ID | 878ue08ngb.wl%kuninori.morimoto.gx@renesas.com (mailing list archive) |
---|---|
State | RFC |
Headers | show |
[...] > But, I noticed it breaks set_fmt() and pcm_new() timing. > Before: set_fmt -> pcm_new > After: pcm_new -> set_fmt > > My driver adds kctrl on pcm_new timing, and it refers > set_fmt's settings. but now, set_fmt happen *after* pcm_new. > (it adds new kctrl if it has SND_SOC_DAIFMT_CBS_CFS) What does that control do? This seems to be a bit of a layering violation to create a control in the PCM driver based on the configuration of the DAI link. > > My solution is these 2 > pattern1) exchange set_fmt/pcm_new timing. see below > pattern2) exchange kctrl assumption (always set kctrl) > > Maybe I should try pattern2 ? > > --------------------------------------- > diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c > index 76bfff2..24d6733 100644 > --- a/sound/soc/soc-core.c > +++ b/sound/soc/soc-core.c > @@ -1604,6 +1604,12 @@ static int snd_soc_instantiate_card(struct snd_soc_card *card) > } > } > > + for (i = 0; i < card->num_links; i++) { > + if (card->dai_link[i].dai_fmt) > + snd_soc_runtime_set_dai_fmt(&card->rtd[i], > + card->dai_link[i].dai_fmt); > + } > + This seems to be to early, the DAI's should at least have been probed. I think we should put it in soc_probe_link_dais() after the the dai_link->init section. -- To unsubscribe from this list: send the line "unsubscribe linux-sh" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index 76bfff2..24d6733 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -1604,6 +1604,12 @@ static int snd_soc_instantiate_card(struct snd_soc_card *card) } } + for (i = 0; i < card->num_links; i++) { + if (card->dai_link[i].dai_fmt) + snd_soc_runtime_set_dai_fmt(&card->rtd[i], + card->dai_link[i].dai_fmt); + } + /* probe all DAI links on this card */ for (order = SND_SOC_COMP_ORDER_FIRST; order <= SND_SOC_COMP_ORDER_LAST; order++) { @@ -1642,12 +1648,6 @@ static int snd_soc_instantiate_card(struct snd_soc_card *card) snd_soc_dapm_add_routes(&card->dapm, card->of_dapm_routes, card->num_of_dapm_routes); - for (i = 0; i < card->num_links; i++) { - if (card->dai_link[i].dai_fmt) - snd_soc_runtime_set_dai_fmt(&card->rtd[i], - card->dai_link[i].dai_fmt); - } - snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname), "%s", card->name); snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),