ASoC: Conditionalize the enable of WM8994 ADC TDM mode
Future devices will not benefit from this. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Acked-by: Liam Girdwood <lrg@ti.com>
This commit is contained in:
parent
3db1bbfd4a
commit
5b7396709e
1 changed files with 12 additions and 4 deletions
|
@ -3051,10 +3051,18 @@ static int wm8994_codec_probe(struct snd_soc_codec *codec)
|
||||||
1 << WM8994_AIF2DAC_3D_GAIN_SHIFT,
|
1 << WM8994_AIF2DAC_3D_GAIN_SHIFT,
|
||||||
1 << WM8994_AIF2DAC_3D_GAIN_SHIFT);
|
1 << WM8994_AIF2DAC_3D_GAIN_SHIFT);
|
||||||
|
|
||||||
/* Unconditionally enable AIF1 ADC TDM mode; it only affects
|
/* Unconditionally enable AIF1 ADC TDM mode on chips which can
|
||||||
* behaviour on idle TDM clock cycles. */
|
* use this; it only affects behaviour on idle TDM clock
|
||||||
|
* cycles. */
|
||||||
|
switch (control->type) {
|
||||||
|
case WM8994:
|
||||||
|
case WM8958:
|
||||||
snd_soc_update_bits(codec, WM8994_AIF1_CONTROL_1,
|
snd_soc_update_bits(codec, WM8994_AIF1_CONTROL_1,
|
||||||
WM8994_AIF1ADC_TDM, WM8994_AIF1ADC_TDM);
|
WM8994_AIF1ADC_TDM, WM8994_AIF1ADC_TDM);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
wm8994_update_class_w(codec);
|
wm8994_update_class_w(codec);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue