* [PATCH] ALSA: hda/realtek: Add quirk for HP Omen 16-wd0xxx mute LED
@ 2026-09-05 8:49 Krish Gulati
2026-09-05 22:26 ` [PATCH v2] " Krish Gulati
0 siblings, 1 reply; 3+ messages in thread
From: Krish Gulati @ 2026-09-05 8:49 UTC (permalink / raw)
To: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel
Cc: Zhang Heng, Eric Naim, Damien Dagorn, Kailang Yang,
Habil Eren Türker, Krish Gulati
Add SND_PCI_QUIRK entry for HP Omen 16-wd0xxx (PCI SSID 103c:8ba9)
using ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT, which controls the mute
LED via a COEF bit write on the ALC245 codec. Without this quirk,
the mute LED does not reflect mute state on this model.
Tested on the affected hardware; mute LED now toggles correctly.
Signed-off-by: Krish Gulati <krishgulati7@gmail.com>
---
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 95b40a177d2b..740476a9a344 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -8371,6 +8371,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0xf111, 0x000f, "Framework Laptop 13 Pro PTL", ALC295_FIXUP_FRAMEWORK_LAPTOP_LIMIT_INT_MIC_BOOST),
SND_PCI_QUIRK(0xf111, 0x010f, "Framework Laptop 13 PTL", ALC295_FIXUP_FRAMEWORK_LAPTOP_LIMIT_INT_MIC_BOOST),
SND_PCI_QUIRK(0xf111, 0x0010, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_LIMIT_INT_MIC_BOOST),
+ SND_PCI_QUIRK(0x103c, 0x8ba9, "HP Omen 16-wd0xxx", ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT),
#if 0
/* Below is a quirk table taken from the old code.
--
2.55.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] ALSA: hda/realtek: Add quirk for HP Omen 16-wd0xxx mute LED
2026-09-05 8:49 [PATCH] ALSA: hda/realtek: Add quirk for HP Omen 16-wd0xxx mute LED Krish Gulati
@ 2026-09-05 22:26 ` Krish Gulati
2026-09-06 8:12 ` Takashi Iwai
0 siblings, 1 reply; 3+ messages in thread
From: Krish Gulati @ 2026-09-05 22:26 UTC (permalink / raw)
To: krishgulati7, Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel
Add SND_PCI_QUIRK entry for HP Omen 16-wd0xxx (PCI SSID 103c:8ba9)
using ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT, which controls the mute
LED via a COEF bit write on the ALC245 codec. Without this quirk,
the mute LED does not reflect mute state on this model.
Tested on the affected hardware; mute LED now toggles correctly.
Signed-off-by: Krish Gulati <krishgulati7@gmail.com>
v2:
- Fixed table ordering: entry moved to sort by PCI device ID
---
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 95b40a177d2b..f7786e1b0878 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7566,6 +7566,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
+ SND_PCI_QUIRK(0x103c, 0x8ba9, "HP Omen 16-wd0xxx", ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT),
SND_PCI_QUIRK(0x103c, 0x8bb3, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2),
SND_PCI_QUIRK(0x103c, 0x8bb4, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2),
SND_PCI_QUIRK(0x103c, 0x8bb6, "HP Laptop 15-fd0039nt", ALC236_FIXUP_HP_15_FD0XXX),
--
2.55.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v2] ALSA: hda/realtek: Add quirk for HP Omen 16-wd0xxx mute LED
2026-09-05 22:26 ` [PATCH v2] " Krish Gulati
@ 2026-09-06 8:12 ` Takashi Iwai
0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2026-09-06 8:12 UTC (permalink / raw)
To: Krish Gulati; +Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel
On Sun, 06 Sep 2026 00:26:56 +0200,
Krish Gulati wrote:
>
> Add SND_PCI_QUIRK entry for HP Omen 16-wd0xxx (PCI SSID 103c:8ba9)
> using ALC245_FIXUP_HP_MUTE_LED_V1_COEFBIT, which controls the mute
> LED via a COEF bit write on the ALC245 codec. Without this quirk,
> the mute LED does not reflect mute state on this model.
>
> Tested on the affected hardware; mute LED now toggles correctly.
>
> Signed-off-by: Krish Gulati <krishgulati7@gmail.com>
>
> v2:
> - Fixed table ordering: entry moved to sort by PCI device ID
Applied now. Thanks.
Takashi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-06 8:12 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-05 8:49 [PATCH] ALSA: hda/realtek: Add quirk for HP Omen 16-wd0xxx mute LED Krish Gulati
2026-09-05 22:26 ` [PATCH v2] " Krish Gulati
2026-09-06 8:12 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®