* [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
@ 2021-12-14 16:41 Jeremy Szu
2021-12-15 8:35 ` Takashi Iwai
0 siblings, 1 reply; 8+ messages in thread
From: Jeremy Szu @ 2021-12-14 16:41 UTC (permalink / raw)
To: tiwai
Cc: Jeremy Szu, Jaroslav Kysela, Werner Sembach, Hui Wang,
Kailang Yang, Cameron Berkenpas, Sami Loone, Elia Devito,
moderated list:SOUND, open list
There is a HP ProBook which using ALC236 codec and need the
ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
micmute LED work.
Signed-off-by: Jeremy Szu <jeremy.szu@canonical.com>
---
sound/pci/hda/patch_realtek.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 3599f4c85ebf..e97b3cd1577b 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -8705,6 +8705,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
+ SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
--
2.33.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
2021-12-14 16:41 Jeremy Szu
@ 2021-12-15 8:35 ` Takashi Iwai
0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2021-12-15 8:35 UTC (permalink / raw)
To: Jeremy Szu
Cc: tiwai, Jaroslav Kysela, Werner Sembach, Hui Wang, Kailang Yang,
Cameron Berkenpas, Sami Loone, Elia Devito, moderated list:SOUND,
open list
On Tue, 14 Dec 2021 17:41:54 +0100,
Jeremy Szu wrote:
>
> There is a HP ProBook which using ALC236 codec and need the
> ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
> micmute LED work.
>
> Signed-off-by: Jeremy Szu <jeremy.szu@canonical.com>
Thanks, applied with Cc to stable.
Takashi
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
@ 2022-11-28 2:28 Andy Chi
2022-11-29 6:58 ` Takashi Iwai
0 siblings, 1 reply; 8+ messages in thread
From: Andy Chi @ 2022-11-28 2:28 UTC (permalink / raw)
Cc: Andy Chi, Jaroslav Kysela, Takashi Iwai, Stefan Binding,
Tim Crawford, Meng Tang, Kai-Heng Feng, Lucas Tanure,
Philipp Jungkamp, Kailang Yang, Werner Sembach, alsa-devel,
linux-kernel
There is a HP ProBook which using ALC236 codec and need the
ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
micmute LED work.
Signed-off-by: Andy Chi <andy.chi@canonical.com>
---
sound/pci/hda/patch_realtek.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index e5c036385666..cf7c825078dc 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -9354,6 +9354,8 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
+ SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
+ SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
2022-11-28 2:28 Andy Chi
@ 2022-11-29 6:58 ` Takashi Iwai
0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2022-11-29 6:58 UTC (permalink / raw)
To: Andy Chi
Cc: Jaroslav Kysela, Takashi Iwai, Stefan Binding, Tim Crawford,
Meng Tang, Kai-Heng Feng, Lucas Tanure, Philipp Jungkamp,
Kailang Yang, Werner Sembach, alsa-devel, linux-kernel
On Mon, 28 Nov 2022 03:28:47 +0100,
Andy Chi wrote:
>
> There is a HP ProBook which using ALC236 codec and need the
> ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
> micmute LED work.
>
> Signed-off-by: Andy Chi <andy.chi@canonical.com>
Applied now (with Cc to stable).
thanks,
Takashi
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
@ 2023-03-31 8:32 Andy Chi
2023-03-31 14:50 ` Takashi Iwai
0 siblings, 1 reply; 8+ messages in thread
From: Andy Chi @ 2023-03-31 8:32 UTC (permalink / raw)
Cc: andy.chi, Jaroslav Kysela, Takashi Iwai, Stefan Binding,
Tim Crawford, Meng Tang, Philipp Jungkamp, Kacper Michajłow,
Gabriele Mazzotta, Yuchi Yang, alsa-devel, linux-kernel
There is a HP ProBook which using ALC236 codec and need the
ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
micmute LED work.
Signed-off-by: Andy Chi <andy.chi@canonical.com>
---
sound/pci/hda/patch_realtek.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index b501f9489fc1..d5d8e33f2e20 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -9443,6 +9443,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
+ SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
2023-03-31 8:32 [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook Andy Chi
@ 2023-03-31 14:50 ` Takashi Iwai
0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2023-03-31 14:50 UTC (permalink / raw)
To: Andy Chi
Cc: Jaroslav Kysela, Takashi Iwai, Stefan Binding, Tim Crawford,
Meng Tang, Philipp Jungkamp, Kacper Michajłow,
Gabriele Mazzotta, Yuchi Yang, alsa-devel, linux-kernel
On Fri, 31 Mar 2023 10:32:41 +0200,
Andy Chi wrote:
>
> There is a HP ProBook which using ALC236 codec and need the
> ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
> micmute LED work.
>
> Signed-off-by: Andy Chi <andy.chi@canonical.com>
Thanks, applied.
Takashi
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
@ 2023-04-20 3:59 Andy Chi
2023-04-20 5:13 ` Takashi Iwai
0 siblings, 1 reply; 8+ messages in thread
From: Andy Chi @ 2023-04-20 3:59 UTC (permalink / raw)
Cc: andy.chi, Jaroslav Kysela, Takashi Iwai, Stefan Binding,
Tim Crawford, Meng Tang, Philipp Jungkamp, Kacper Michajłow,
Gabriele Mazzotta, Yuchi Yang, alsa-devel, linux-kernel
There is a HP ProBook 455 G10 which using ALC236 codec and need the
ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
micmute LED work.
Signed-off-by: Andy Chi <andy.chi@canonical.com>
---
sound/pci/hda/patch_realtek.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 6a6c72b5ea26..f70d6a33421d 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -9468,6 +9468,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
+ SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook
2023-04-20 3:59 Andy Chi
@ 2023-04-20 5:13 ` Takashi Iwai
0 siblings, 0 replies; 8+ messages in thread
From: Takashi Iwai @ 2023-04-20 5:13 UTC (permalink / raw)
To: Andy Chi
Cc: Jaroslav Kysela, Takashi Iwai, Stefan Binding, Tim Crawford,
Meng Tang, Philipp Jungkamp, Kacper Michajłow,
Gabriele Mazzotta, Yuchi Yang, alsa-devel, linux-kernel
On Thu, 20 Apr 2023 05:59:41 +0200,
Andy Chi wrote:
>
> There is a HP ProBook 455 G10 which using ALC236 codec and need the
> ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF quirk to make mute LED and
> micmute LED work.
>
> Signed-off-by: Andy Chi <andy.chi@canonical.com>
Thanks, applied.
Takashi
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-04-20 5:13 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-31 8:32 [PATCH] ALSA: hda/realtek: fix mute/micmute LEDs for a HP ProBook Andy Chi
2023-03-31 14:50 ` Takashi Iwai
-- strict thread matches above, loose matches on Subject: below --
2023-04-20 3:59 Andy Chi
2023-04-20 5:13 ` Takashi Iwai
2022-11-28 2:28 Andy Chi
2022-11-29 6:58 ` Takashi Iwai
2021-12-14 16:41 Jeremy Szu
2021-12-15 8:35 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox