diff options
author | Chen Liangjun <b36089@freescale.com> | 2012-08-16 19:20:51 +0800 |
---|---|---|
committer | Chen Liangjun <b36089@freescale.com> | 2012-08-17 15:38:31 +0800 |
commit | e2dc80107eeaa87626f02adba60ab904c41de82e (patch) | |
tree | 40ae9454dad49def86137c8535504a328407bd23 /sound | |
parent | 59f87e44a8faaef59969daadd1a7d295adbda3a0 (diff) |
ENGR00219926-1 ESAI ASRC: use ideal ratio for ASRC P2P playback
When use no ideal-ratio mode for ESAI playback, CPU should provide
accurate clock for input clock, which means input clock should be
divided by input sample rate. However, all our clock is from 24M crystal
and if the input sample rate equal to 44.1k or so, CPU can't provide
these clock.
In this patch, use ideal ratio mode thus CPU need not provide accurate
clock which can be divided by 44.1k.
Signed-off-by: Chen Liangjun <b36089@freescale.com>
Diffstat (limited to 'sound')
-rw-r--r-- | sound/soc/imx/imx-cs42888.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sound/soc/imx/imx-cs42888.c b/sound/soc/imx/imx-cs42888.c index 11ba16511ce2..acec900618b1 100644 --- a/sound/soc/imx/imx-cs42888.c +++ b/sound/soc/imx/imx-cs42888.c @@ -94,7 +94,7 @@ static int config_asrc(struct snd_pcm_substream *substream, config.channel_num = channel; config.input_sample_rate = rate; config.output_sample_rate = iprtd->p2p->p2p_rate; - config.inclk = INCLK_ASRCK1_CLK; + config.inclk = INCLK_NONE; config.outclk = OUTCLK_ESAI_TX; ret = asrc_config_pair(&config); @@ -131,7 +131,6 @@ static void imx_3stack_shutdown(struct snd_pcm_substream *substream) { struct snd_soc_pcm_runtime *rtd = substream->private_data; struct snd_soc_dai *cpu_dai = rtd->cpu_dai; - struct imx_pcm_runtime_data *iprtd = substream->runtime->private_data; if (!cpu_dai->active) hw_state.hw = 0; |