* [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine
@ 2026-01-26 7:35 Zhang Heng
2026-01-26 7:35 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1 Zhang Heng
2026-01-26 8:42 ` [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Takashi Iwai
0 siblings, 2 replies; 4+ messages in thread
From: Zhang Heng @ 2026-01-26 7:35 UTC (permalink / raw)
To: perex, tiwai, sbinding, kailang, chris.chiu, edip
Cc: linux-sound, linux-kernel, Zhang Heng, stable
The HP EliteBook 630 G11 (103c:8c8f) is using ALC236 codec which used 0x02
to control mute LED and 0x01 to control micmute LED. Therefore, add a quirk
to make it works.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=220828
Cc: <stable@vger.kernel.org>
Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
---
sound/hda/codecs/realtek/alc269.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
index 7cc844c32474..928204df0ee3 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -6813,6 +6813,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8c8c, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8c8d, "HP ProBook 440 G11", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8c8e, "HP ProBook 460 G11", ALC236_FIXUP_HP_GPIO_LED),
+ SND_PCI_QUIRK(0x103c, 0x8c8f, "HP EliteBook 630 G11", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8c90, "HP EliteBook 640", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8c91, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1
2026-01-26 7:35 [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Zhang Heng
@ 2026-01-26 7:35 ` Zhang Heng
2026-01-26 8:43 ` Takashi Iwai
2026-01-26 8:42 ` [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Takashi Iwai
1 sibling, 1 reply; 4+ messages in thread
From: Zhang Heng @ 2026-01-26 7:35 UTC (permalink / raw)
To: perex, tiwai, sbinding, kailang, chris.chiu, edip
Cc: linux-sound, linux-kernel, Zhang Heng
Inspur S14-G1 is equipped with ALC256.
Enable "power saving mode" and Enable "headset jack mode".
Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
---
sound/hda/codecs/realtek/alc269.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/hda/codecs/realtek/alc269.c b/sound/hda/codecs/realtek/alc269.c
index 928204df0ee3..e430b523d23c 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7426,6 +7426,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x1ee7, 0x2078, "HONOR BRB-X M1010", ALC2XX_FIXUP_HEADSET_MIC),
SND_PCI_QUIRK(0x1f66, 0x0105, "Ayaneo Portable Game Player", ALC287_FIXUP_CS35L41_I2C_2),
SND_PCI_QUIRK(0x2014, 0x800a, "Positivo ARN50", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
+ SND_PCI_QUIRK(0x2039, 0x0001, "Inspur S14-G1", ALC295_FIXUP_CHROME_BOOK),
SND_PCI_QUIRK(0x2782, 0x0214, "VAIO VJFE-CL", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
SND_PCI_QUIRK(0x2782, 0x0228, "Infinix ZERO BOOK 13", ALC269VB_FIXUP_INFINIX_ZERO_BOOK_13),
SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
--
2.47.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1
2026-01-26 7:35 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1 Zhang Heng
@ 2026-01-26 8:43 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-01-26 8:43 UTC (permalink / raw)
To: Zhang Heng
Cc: perex, tiwai, sbinding, kailang, chris.chiu, edip, linux-sound,
linux-kernel
On Mon, 26 Jan 2026 08:35:08 +0100,
Zhang Heng wrote:
>
> Inspur S14-G1 is equipped with ALC256.
> Enable "power saving mode" and Enable "headset jack mode".
>
> Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
The use of Chromebook quirk is rather rare, but as long as it was
tested and confirmed to work, there is no reason to avoid it.
Now applied. Thanks.
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine
2026-01-26 7:35 [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Zhang Heng
2026-01-26 7:35 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1 Zhang Heng
@ 2026-01-26 8:42 ` Takashi Iwai
1 sibling, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-01-26 8:42 UTC (permalink / raw)
To: Zhang Heng
Cc: perex, tiwai, sbinding, kailang, chris.chiu, edip, linux-sound,
linux-kernel, stable
On Mon, 26 Jan 2026 08:35:07 +0100,
Zhang Heng wrote:
>
> The HP EliteBook 630 G11 (103c:8c8f) is using ALC236 codec which used 0x02
> to control mute LED and 0x01 to control micmute LED. Therefore, add a quirk
> to make it works.
>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=220828
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>
Thanks, applied now.
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-26 8:43 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-26 7:35 [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Zhang Heng
2026-01-26 7:35 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Inspur S14-G1 Zhang Heng
2026-01-26 8:43 ` Takashi Iwai
2026-01-26 8:42 ` [PATCH 1/2] ALSA: hda/realtek: fix right sounds and mute/micmute LEDs for HP machine Takashi Iwai
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.