mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 02:21:16 +00:00
ASoC: wm8737: Fixup setting VMID Impedance control register
commit 14ba3ec1de043260cecd9e828ea2e3a0ad302893 upstream. According to the datasheet: R10 (0Ah) VMID Impedance Control BIT 3:2 VMIDSEL DEFAULT 00 DESCRIPTION: VMID impedance selection control 00: 75kΩ output 01: 300kΩ output 10: 2.5kΩ output WM8737_VMIDSEL_MASK is 0xC (VMIDSEL - [3:2]), so it needs to left shift WM8737_VMIDSEL_SHIFT bits for setting these bits. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
81afd3a2f3
commit
ea38800f91
1 changed files with 4 additions and 2 deletions
|
@ -494,7 +494,8 @@ static int wm8737_set_bias_level(struct snd_soc_codec *codec,
|
||||||
|
|
||||||
/* Fast VMID ramp at 2*2.5k */
|
/* Fast VMID ramp at 2*2.5k */
|
||||||
snd_soc_update_bits(codec, WM8737_MISC_BIAS_CONTROL,
|
snd_soc_update_bits(codec, WM8737_MISC_BIAS_CONTROL,
|
||||||
WM8737_VMIDSEL_MASK, 0x4);
|
WM8737_VMIDSEL_MASK,
|
||||||
|
2 << WM8737_VMIDSEL_SHIFT);
|
||||||
|
|
||||||
/* Bring VMID up */
|
/* Bring VMID up */
|
||||||
snd_soc_update_bits(codec, WM8737_POWER_MANAGEMENT,
|
snd_soc_update_bits(codec, WM8737_POWER_MANAGEMENT,
|
||||||
|
@ -508,7 +509,8 @@ static int wm8737_set_bias_level(struct snd_soc_codec *codec,
|
||||||
|
|
||||||
/* VMID at 2*300k */
|
/* VMID at 2*300k */
|
||||||
snd_soc_update_bits(codec, WM8737_MISC_BIAS_CONTROL,
|
snd_soc_update_bits(codec, WM8737_MISC_BIAS_CONTROL,
|
||||||
WM8737_VMIDSEL_MASK, 2);
|
WM8737_VMIDSEL_MASK,
|
||||||
|
1 << WM8737_VMIDSEL_SHIFT);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue