From: Lionel Xu Date: Fri, 17 Aug 2012 08:06:32 +0000 (+0800) Subject: ENGR00220446 ESAI: channel swapped occasionally when playing stereo wav X-Git-Tag: v3.0.35-fsl_4.1.0~739 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=74d5acca1dc33aa9edf88b89fdeae36e4c5c6d99;p=karo-tx-linux.git ENGR00220446 ESAI: channel swapped occasionally when playing stereo wav There is channel swap happened when playing stereo wav. According to the spec, the initial words should be written to the ETDR register, at least one word per enabled transmitter slot, to avoid any potential problem. Signed-off-by: Lionel Xu --- diff --git a/sound/soc/imx/imx-esai.c b/sound/soc/imx/imx-esai.c index b3cba9ea53c4..bc56d8073dce 100644 --- a/sound/soc/imx/imx-esai.c +++ b/sound/soc/imx/imx-esai.c @@ -468,6 +468,7 @@ static int imx_esai_trigger(struct snd_pcm_substream *substream, int cmd, { struct imx_esai *esai = snd_soc_dai_get_drvdata(cpu_dai); u32 reg, tfcr = 0, rfcr = 0; + int i; if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { tfcr = readl(esai->base + ESAI_TFCR); @@ -483,6 +484,9 @@ static int imx_esai_trigger(struct snd_pcm_substream *substream, int cmd, if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) { tfcr |= ESAI_TFCR_TFEN; writel(tfcr, esai->base + ESAI_TFCR); + /* write initial words to ETDR register */ + for (i = 0; i < substream->runtime->channels; i++) + writel(0x0, esai->base + ESAI_ETDR); reg |= ESAI_TCR_TE(substream->runtime->channels); writel(reg, esai->base + ESAI_TCR); } else {