Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ASoC: soc-dai: Do not call snd_soc_link_be_hw_params_fixup() twice

For a BE link snd_soc_link_be_hw_params_fixup() is called by
dpcm_be_dai_hw_params() to initialize the params before it passes them
to __soc_pcm_hw_params(). Then __soc_pcm_hw_params() refines params to
match the BE codec and passes that to snd_soc_dai_hw_params().

The second call of snd_soc_link_be_hw_params_fixup() within
snd_soc_dai_hw_params() was overwriting the refined params with the
original BE CPU DAI params. This would then lead to various problems,
for example passing an invalid number of channels to the codec driver
hw_params(), or enabling more AIF widgets on the codec than are actually
mapped by TDM slots.

These errors may not be noticed on a simple 1:1 link between one CPU DAI
and one codec DAI, because most likely they have the same DAI config
(though this is not necessarily true, for example if the CPU end has dummy
TDM slots to achieve a desirable BCLK).

For 1:N mappings there are likely to be multiple codecs using different
subsets of the TDM slots and this overwriting of the refined params
can cause incorrect configuration of each codec on the link.

The erroneous extra call to the BE fixup function() was introduced
by:
commit a655de808cbd ("ASoC: core: Allow topology to override machine
driver FE DAI link config.")

at that time, the call to the BE fixup was already done by
dpcm_be_dai_hw_params(), which was introduced several years earlier
by:
commit 01d7584cd2e5 ("ASoC: dpcm: Add Dynamic PCM core operations.")

The erroneous code has changed and moved to a different source file
since the patch that introduced it, so this fix patch won't directly
apply as a fix on top of code older than:
commit 8b4ba1d31771 ("ASoC: soc-dai: fix up hw params only if it is
needed")

though it can be applied with some minor adjustment to code before
that patch but after:
commit aa6166c2ac28 ("ASoC: soc-dai: mv soc_dai_hw_params() to soc-dai")

On any tree older than that the code is in soc-pcm.c.

Signed-off-by: Richard Fitzgerald <rf@opensource.cirrus.com>
Link: https://lore.kernel.org/r/20221104160252.166114-1-rf@opensource.cirrus.com
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Richard Fitzgerald and committed by
Mark Brown
3115be55 fe071308

+2 -9
+2 -9
sound/soc/soc-dai.c
··· 386 386 struct snd_pcm_substream *substream, 387 387 struct snd_pcm_hw_params *params) 388 388 { 389 - struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream); 390 389 int ret = 0; 391 390 392 391 if (dai->driver->ops && 393 - dai->driver->ops->hw_params) { 394 - /* perform any topology hw_params fixups before DAI */ 395 - ret = snd_soc_link_be_hw_params_fixup(rtd, params); 396 - if (ret < 0) 397 - goto end; 398 - 392 + dai->driver->ops->hw_params) 399 393 ret = dai->driver->ops->hw_params(substream, params, dai); 400 - } 401 394 402 395 /* mark substream if succeeded */ 403 396 if (ret == 0) 404 397 soc_dai_mark_push(dai, substream, hw_params); 405 - end: 398 + 406 399 return soc_dai_ret(dai, ret); 407 400 } 408 401