* [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used
@ 2014-12-03 2:13 Qiao Zhou
2014-12-03 20:37 ` Liam Girdwood
2014-12-04 22:42 ` Mark Brown
0 siblings, 2 replies; 3+ messages in thread
From: Qiao Zhou @ 2014-12-03 2:13 UTC (permalink / raw)
To: lgirdwood, broonie, perex, tiwai, alsa-devel, shangll; +Cc: Qiao Zhou
Do not free BE hw if it's still used by other FE during dpcm runtime
shutdown. Otherwise the BE runtime state will be STATE_HW_FREE and
won't be updated to STATE_CLOSE when shutdown ends, because BE dai
shutdown function won't close pcm when detecting BE is still under
use. With STATE_HW_FREE, BE can't be triggered start again.
This corner case can easily appear when one BE is used by two FE,
without this patch "ASoC: dpcm: Fix race between FE/BE updates and
trigger"(ea9d0d771fcd32cd56070819749477d511ec9117). One FE tries to
shutdown but it's raced against xrun on another FE. It improves the
be dai hw_free logic.
Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
---
sound/soc/soc-pcm.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
index 57277dd..70e8088 100644
--- a/sound/soc/soc-pcm.c
+++ b/sound/soc/soc-pcm.c
@@ -1664,6 +1664,10 @@ int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
continue;
+ /* do not free hw if this BE is used by other FE */
+ if (be->dpcm[stream].users > 1)
+ continue;
+
if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
(be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
(be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
--
1.7.9.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used
2014-12-03 2:13 [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used Qiao Zhou
@ 2014-12-03 20:37 ` Liam Girdwood
2014-12-04 22:42 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Liam Girdwood @ 2014-12-03 20:37 UTC (permalink / raw)
To: Qiao Zhou; +Cc: alsa-devel, shangll, tiwai, lgirdwood, broonie
On Wed, 2014-12-03 at 10:13 +0800, Qiao Zhou wrote:
> Do not free BE hw if it's still used by other FE during dpcm runtime
> shutdown. Otherwise the BE runtime state will be STATE_HW_FREE and
> won't be updated to STATE_CLOSE when shutdown ends, because BE dai
> shutdown function won't close pcm when detecting BE is still under
> use. With STATE_HW_FREE, BE can't be triggered start again.
>
> This corner case can easily appear when one BE is used by two FE,
> without this patch "ASoC: dpcm: Fix race between FE/BE updates and
> trigger"(ea9d0d771fcd32cd56070819749477d511ec9117). One FE tries to
> shutdown but it's raced against xrun on another FE. It improves the
> be dai hw_free logic.
>
> Signed-off-by: Qiao Zhou <zhouqiao@marvell.com>
Acked-by: Liam Girdwood <liam.r.girdwood@linux.intel.com>
> ---
> sound/soc/soc-pcm.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/sound/soc/soc-pcm.c b/sound/soc/soc-pcm.c
> index 57277dd..70e8088 100644
> --- a/sound/soc/soc-pcm.c
> +++ b/sound/soc/soc-pcm.c
> @@ -1664,6 +1664,10 @@ int dpcm_be_dai_hw_free(struct snd_soc_pcm_runtime *fe, int stream)
> if (!snd_soc_dpcm_can_be_free_stop(fe, be, stream))
> continue;
>
> + /* do not free hw if this BE is used by other FE */
> + if (be->dpcm[stream].users > 1)
> + continue;
> +
> if ((be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_PARAMS) &&
> (be->dpcm[stream].state != SND_SOC_DPCM_STATE_PREPARE) &&
> (be->dpcm[stream].state != SND_SOC_DPCM_STATE_HW_FREE) &&
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used
2014-12-03 2:13 [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used Qiao Zhou
2014-12-03 20:37 ` Liam Girdwood
@ 2014-12-04 22:42 ` Mark Brown
1 sibling, 0 replies; 3+ messages in thread
From: Mark Brown @ 2014-12-04 22:42 UTC (permalink / raw)
To: Qiao Zhou; +Cc: tiwai, alsa-devel, lgirdwood, shangll
[-- Attachment #1.1: Type: text/plain, Size: 417 bytes --]
On Wed, Dec 03, 2014 at 10:13:43AM +0800, Qiao Zhou wrote:
> Do not free BE hw if it's still used by other FE during dpcm runtime
> shutdown. Otherwise the BE runtime state will be STATE_HW_FREE and
> won't be updated to STATE_CLOSE when shutdown ends, because BE dai
> shutdown function won't close pcm when detecting BE is still under
> use. With STATE_HW_FREE, BE can't be triggered start again.
Applied, thanks.
[-- Attachment #1.2: Digital signature --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-12-04 22:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-03 2:13 [PATCH] ASoC: soc-pcm: do not hw_free BE if it's still used Qiao Zhou
2014-12-03 20:37 ` Liam Girdwood
2014-12-04 22:42 ` Mark Brown
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.