Commit 17841020 authored by Dong Aisheng's avatar Dong Aisheng Committed by Mark Brown

ASoC: soc-core: symmetry checking for each DAIs separately

The orginal code does not cover the case that one DAI such as codec
may be shared between other two DAIs(CPU).
When do symmetry checking, altough the codec DAI requires symmetry,
the two CPU DAIs may still be configured to run on different rates.

We change to check each DAI's state separately instead of only checking
the dai link to prevent this issue.
Signed-off-by: default avatarDong Aisheng <b29396@freescale.com>
Tested-by: default avatarWolfram Sang <w.sang@pengutronix.de>
Acked-by: default avatarLiam Girdwood <lrg@ti.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 548aae8c
...@@ -242,6 +242,9 @@ struct snd_soc_dai { ...@@ -242,6 +242,9 @@ struct snd_soc_dai {
void *playback_dma_data; void *playback_dma_data;
void *capture_dma_data; void *capture_dma_data;
/* Symmetry data - only valid if symmetry is being enforced */
unsigned int rate;
/* parent platform/codec */ /* parent platform/codec */
union { union {
struct snd_soc_platform *platform; struct snd_soc_platform *platform;
......
...@@ -851,8 +851,6 @@ struct snd_soc_pcm_runtime { ...@@ -851,8 +851,6 @@ struct snd_soc_pcm_runtime {
unsigned int complete:1; unsigned int complete:1;
unsigned int dev_registered:1; unsigned int dev_registered:1;
/* Symmetry data - only valid if symmetry is being enforced */
unsigned int rate;
long pmdown_time; long pmdown_time;
/* runtime devices */ /* runtime devices */
......
...@@ -27,15 +27,13 @@ ...@@ -27,15 +27,13 @@
#include <sound/soc.h> #include <sound/soc.h>
#include <sound/initval.h> #include <sound/initval.h>
static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream,
struct snd_soc_dai *soc_dai)
{ {
struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_pcm_runtime *rtd = substream->private_data;
struct snd_soc_dai *cpu_dai = rtd->cpu_dai;
struct snd_soc_dai *codec_dai = rtd->codec_dai;
int ret; int ret;
if (!codec_dai->driver->symmetric_rates && if (!soc_dai->driver->symmetric_rates &&
!cpu_dai->driver->symmetric_rates &&
!rtd->dai_link->symmetric_rates) !rtd->dai_link->symmetric_rates)
return 0; return 0;
...@@ -43,19 +41,19 @@ static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream) ...@@ -43,19 +41,19 @@ static int soc_pcm_apply_symmetry(struct snd_pcm_substream *substream)
* the second can need to get its constraints before the first has * the second can need to get its constraints before the first has
* picked a rate. Complain and allow the application to carry on. * picked a rate. Complain and allow the application to carry on.
*/ */
if (!rtd->rate) { if (!soc_dai->rate) {
dev_warn(&rtd->dev, dev_warn(soc_dai->dev,
"Not enforcing symmetric_rates due to race\n"); "Not enforcing symmetric_rates due to race\n");
return 0; return 0;
} }
dev_dbg(&rtd->dev, "Symmetry forces %dHz rate\n", rtd->rate); dev_dbg(soc_dai->dev, "Symmetry forces %dHz rate\n", soc_dai->rate);
ret = snd_pcm_hw_constraint_minmax(substream->runtime, ret = snd_pcm_hw_constraint_minmax(substream->runtime,
SNDRV_PCM_HW_PARAM_RATE, SNDRV_PCM_HW_PARAM_RATE,
rtd->rate, rtd->rate); soc_dai->rate, soc_dai->rate);
if (ret < 0) { if (ret < 0) {
dev_err(&rtd->dev, dev_err(soc_dai->dev,
"Unable to apply rate symmetry constraint: %d\n", ret); "Unable to apply rate symmetry constraint: %d\n", ret);
return ret; return ret;
} }
...@@ -185,8 +183,14 @@ static int soc_pcm_open(struct snd_pcm_substream *substream) ...@@ -185,8 +183,14 @@ static int soc_pcm_open(struct snd_pcm_substream *substream)
} }
/* Symmetry only applies if we've already got an active stream. */ /* Symmetry only applies if we've already got an active stream. */
if (cpu_dai->active || codec_dai->active) { if (cpu_dai->active) {
ret = soc_pcm_apply_symmetry(substream); ret = soc_pcm_apply_symmetry(substream, cpu_dai);
if (ret != 0)
goto config_err;
}
if (codec_dai->active) {
ret = soc_pcm_apply_symmetry(substream, codec_dai);
if (ret != 0) if (ret != 0)
goto config_err; goto config_err;
} }
...@@ -288,8 +292,12 @@ static int soc_pcm_close(struct snd_pcm_substream *substream) ...@@ -288,8 +292,12 @@ static int soc_pcm_close(struct snd_pcm_substream *substream)
codec_dai->active--; codec_dai->active--;
codec->active--; codec->active--;
if (!cpu_dai->active && !codec_dai->active) /* clear the corresponding DAIs rate when inactive */
rtd->rate = 0; if (!cpu_dai->active)
cpu_dai->rate = 0;
if (!codec_dai->active)
codec_dai->rate = 0;
/* Muting the DAC suppresses artifacts caused during digital /* Muting the DAC suppresses artifacts caused during digital
* shutdown, for example from stopping clocks. * shutdown, for example from stopping clocks.
...@@ -447,7 +455,9 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream, ...@@ -447,7 +455,9 @@ static int soc_pcm_hw_params(struct snd_pcm_substream *substream,
} }
} }
rtd->rate = params_rate(params); /* store the rate for each DAIs */
cpu_dai->rate = params_rate(params);
codec_dai->rate = params_rate(params);
out: out:
mutex_unlock(&rtd->pcm_mutex); mutex_unlock(&rtd->pcm_mutex);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment