* [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51
@ 2026-02-09 13:41 Zhang Heng
2026-02-09 15:07 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Zhang Heng @ 2026-02-09 13:41 UTC (permalink / raw)
To: perex, tiwai, sbinding, kailang, chris.chiu
Cc: linux-sound, linux-kernel, Zhang Heng, stable
fix mute/micmute LEDs and headset microphone for Acer Nitro ANV15-51.
[ The headset microphone issue is solved by Kailang]
Link: https://bugzilla.kernel.org/show_bug.cgi?id=220279
Cc: <stable@vger.kernel.org>
Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
---
There is a small issue now, the mute LED stays on when I mute the
laptop microphone, unmute the headphone microphone, and set the
headphone mic as default. Is it possible to fix this?
sound/hda/codecs/realtek/alc269.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
index c4228d982271..1c11f7c3b193 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -4047,6 +4047,7 @@ enum {
ALC236_FIXUP_HP_MUTE_LED_MICMUTE_GPIO,
ALC233_FIXUP_LENOVO_GPIO2_MIC_HOTKEY,
ALC245_FIXUP_BASS_HP_DAC,
+ ALC245_FIXUP_ACER_MICMUTE_LED,
};
/* A special fixup for Lenovo C940 and Yoga Duet 7;
@@ -6554,6 +6555,12 @@ static const struct hda_fixup alc269_fixups[] = {
/* Borrow the DAC routing selected for those Thinkpads */
.v.func = alc285_fixup_thinkpad_x1_gen7,
},
+ [ALC245_FIXUP_ACER_MICMUTE_LED] = {
+ .type = HDA_FIXUP_FUNC,
+ .v.func = alc285_fixup_hp_coef_micmute_led,
+ .chained = true,
+ .chain_id = ALC2XX_FIXUP_HEADSET_MIC,
+ }
};
static const struct hda_quirk alc269_fixup_tbl[] = {
@@ -6605,6 +6612,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x1025, 0x159c, "Acer Nitro 5 AN515-58", ALC2XX_FIXUP_HEADSET_MIC),
SND_PCI_QUIRK(0x1025, 0x1597, "Acer Nitro 5 AN517-55", ALC2XX_FIXUP_HEADSET_MIC),
SND_PCI_QUIRK(0x1025, 0x169a, "Acer Swift SFG16", ALC256_FIXUP_ACER_SFG16_MICMUTE_LED),
+ SND_PCI_QUIRK(0x1025, 0x171e, "Acer Nitro ANV15-51", ALC245_FIXUP_ACER_MICMUTE_LED),
SND_PCI_QUIRK(0x1025, 0x1826, "Acer Helios ZPC", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2),
SND_PCI_QUIRK(0x1025, 0x182c, "Acer Helios ZPD", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2),
SND_PCI_QUIRK(0x1025, 0x1844, "Acer Helios ZPS", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2),
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51
2026-02-09 13:41 [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51 Zhang Heng
@ 2026-02-09 15:07 ` Takashi Iwai
2026-02-26 1:43 ` zhangheng
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2026-02-09 15:07 UTC (permalink / raw)
To: Zhang Heng
Cc: perex, tiwai, sbinding, kailang, chris.chiu, linux-sound,
linux-kernel, stable
On Mon, 09 Feb 2026 14:41:49 +0100,
Zhang Heng wrote:
>
> fix mute/micmute LEDs and headset microphone for Acer Nitro ANV15-51.
>
> [ The headset microphone issue is solved by Kailang]
>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=220279
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
> ---
> There is a small issue now, the mute LED stays on when I mute the
> laptop microphone, unmute the headphone microphone, and set the
> headphone mic as default. Is it possible to fix this?
Can LED be controlled dynamically by writing to a sysfs file in
/sys/class/leds/*? e.g.
% cat /sys/class/leds/platform::micmute/brightness
1
% echo 0 > /sys/class/leds/platform::micmute/brightness
If the direct write changes the actual LED status, it's not about the
sound driver problem, but possibly some plumbing in user-space via
UCM, etc.
thanks,
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51
2026-02-09 15:07 ` Takashi Iwai
@ 2026-02-26 1:43 ` zhangheng
2026-02-26 6:33 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: zhangheng @ 2026-02-26 1:43 UTC (permalink / raw)
To: Takashi Iwai
Cc: perex, tiwai, sbinding, kailang, chris.chiu, linux-sound,
linux-kernel, stable
> Can LED be controlled dynamically by writing to a sysfs file in
> /sys/class/leds/*? e.g.
>
> % cat /sys/class/leds/platform::micmute/brightness
> 1
> % echo 0 > /sys/class/leds/platform::micmute/brightness
>
> If the direct write changes the actual LED status, it's not about the
> sound driver problem, but possibly some plumbing in user-space via
> UCM, etc.
After testing, it is normal, so there should be no problem with the
driver. Therefore, I think this patch can be merged as soon as possible.
>
> thanks,
>
> Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51
2026-02-26 1:43 ` zhangheng
@ 2026-02-26 6:33 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-02-26 6:33 UTC (permalink / raw)
To: zhangheng
Cc: Takashi Iwai, perex, tiwai, sbinding, kailang, chris.chiu,
linux-sound, linux-kernel, stable
On Thu, 26 Feb 2026 02:43:56 +0100,
zhangheng wrote:
>
> > Can LED be controlled dynamically by writing to a sysfs file in
> > /sys/class/leds/*? e.g.
> >
> > % cat /sys/class/leds/platform::micmute/brightness
> > 1
> > % echo 0 > /sys/class/leds/platform::micmute/brightness
> >
> > If the direct write changes the actual LED status, it's not about the
> > sound driver problem, but possibly some plumbing in user-space via
> > UCM, etc.
> After testing, it is normal, so there should be no problem with the
> driver. Therefore, I think this patch can be merged as soon as
> possible.
OK, applied now. Thanks.
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-02-26 6:34 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-09 13:41 [PATCH] ALSA: hda/realtek: add quirk for Acer Nitro ANV15-51 Zhang Heng
2026-02-09 15:07 ` Takashi Iwai
2026-02-26 1:43 ` zhangheng
2026-02-26 6:33 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox