提交 e18c94d2 编写于 作者: G Grazvydas Ignotas 提交者: Mark Brown

ALSA: ASoC: TWL4030 codec - fix 256*Fs clock

According to TRM, 256*Fs clock output should be enabled
when TWL4030 is in slave mode, not master.
This allows sound to work on OMAP3 Pandora, which uses
256*Fs clock.
Signed-off-by: NGrazvydas Ignotas <notasas@gmail.com>
Acked-by: NSteve Sakoman <steve@sakoman.com>
Signed-off-by: NMark Brown <broonie@opensource.wolfsonmicro.com>
上级 8dc840f8
...@@ -469,11 +469,11 @@ static int twl4030_set_dai_fmt(struct snd_soc_dai *codec_dai, ...@@ -469,11 +469,11 @@ static int twl4030_set_dai_fmt(struct snd_soc_dai *codec_dai,
switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
case SND_SOC_DAIFMT_CBM_CFM: case SND_SOC_DAIFMT_CBM_CFM:
format &= ~(TWL4030_AIF_SLAVE_EN); format &= ~(TWL4030_AIF_SLAVE_EN);
format |= TWL4030_CLK256FS_EN; format &= ~(TWL4030_CLK256FS_EN);
break; break;
case SND_SOC_DAIFMT_CBS_CFS: case SND_SOC_DAIFMT_CBS_CFS:
format &= ~(TWL4030_CLK256FS_EN);
format |= TWL4030_AIF_SLAVE_EN; format |= TWL4030_AIF_SLAVE_EN;
format |= TWL4030_CLK256FS_EN;
break; break;
default: default:
return -EINVAL; return -EINVAL;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册