Skip to content

Commit e40bdb0

Browse files
committed
ALSA: hda/realtek - Always immediately update mute LED with pin VREF
Some HP laptops have a mute mute LED controlled by a pin VREF. The Realtek codec driver updates the VREF via vmaster hook by calling snd_hda_set_pin_ctl_cache(). This works fine as long as the driver is running in a normal mode. However, when the VREF change happens during the codec being in runtime PM suspend, the regmap access will skip and postpone the actual register change. This ends up with the unchanged LED status until the next runtime PM resume even if you change the Master mute switch. (Interestingly, the machine keeps the LED status even after the codec goes into D3 -- but it's another story.) For improving this usability, let the driver temporarily powering up / down only during the pin VREF change. This can be achieved easily by wrapping the call with snd_hda_power_up_pm() / *_down_pm(). Bugzilla: https://bugzilla.kernel.org/show_bug.cgi?id=199073 Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent db45dc9 commit e40bdb0

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3596,8 +3596,12 @@ static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
35963596
pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
35973597
pinval &= ~AC_PINCTL_VREFEN;
35983598
pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3599-
if (spec->mute_led_nid)
3599+
if (spec->mute_led_nid) {
3600+
/* temporarily power up/down for setting VREF */
3601+
snd_hda_power_up_pm(codec);
36003602
snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3603+
snd_hda_power_down_pm(codec);
3604+
}
36013605
}
36023606

36033607
/* Make sure the led works even in runtime suspend */

0 commit comments

Comments
 (0)