mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
       [not found] <CGME20230223074852eucas1p2c91d153aa806db963711e1809861f76b@eucas1p2.samsung.com>
@ 2023-02-23  7:47 ` Łukasz Stelmach
       [not found]   ` <CGME20230223075035eucas1p15a1c5f534f932b2b36510a39f6921d99@eucas1p1.samsung.com>
  2023-03-03 13:28   ` Takashi Iwai
  0 siblings, 2 replies; 3+ messages in thread
From: Łukasz Stelmach @ 2023-02-23  7:47 UTC (permalink / raw)
  To: Jaroslav Kysela, Takashi Iwai
  Cc: Marek Szyprowski, Łukasz Stelmach, alsa-devel, linux-kernel

HP EliteDesk 800 G6 Tower PC (103c:870c) requires a quirk for enabling
headset-mic.

Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>
---
 sound/pci/hda/patch_realtek.c | 1 +
 1 file changed, 1 insertion(+)

Verified by

 echo 0x19 0x01a1913c > /sys/class/sound/card0/device/sound/card0/hwC0D0/user_pin_configs
 echo 1 > /sys/class/sound/card0/device/sound/card0/hwC0D0/reconfig 

diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 6fab7c8fc19a..ac196db573e4 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -11599,6 +11599,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
 	SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
 	SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
+	SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
 	SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
 	SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
 	SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
-- 
2.30.2


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
       [not found]   ` <CGME20230223075035eucas1p15a1c5f534f932b2b36510a39f6921d99@eucas1p1.samsung.com>
@ 2023-02-23  7:50     ` Lukasz Stelmach
  0 siblings, 0 replies; 3+ messages in thread
From: Lukasz Stelmach @ 2023-02-23  7:50 UTC (permalink / raw)
  To: Jaroslav Kysela; +Cc: Takashi Iwai, Marek Szyprowski, alsa-devel, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1435 bytes --]

It was <2023-02-23 czw 08:47>, when Łukasz Stelmach wrote:
> HP EliteDesk 800 G6 Tower PC (103c:870c) requires a quirk for enabling
> headset-mic.
>
> Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>

BugLink: https://bugzilla.kernel.org/show_bug.cgi?id=217008

> ---
>  sound/pci/hda/patch_realtek.c | 1 +
>  1 file changed, 1 insertion(+)
>
> Verified by
>
>  echo 0x19 0x01a1913c > /sys/class/sound/card0/device/sound/card0/hwC0D0/user_pin_configs
>  echo 1 > /sys/class/sound/card0/device/sound/card0/hwC0D0/reconfig 
>
> diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
> index 6fab7c8fc19a..ac196db573e4 100644
> --- a/sound/pci/hda/patch_realtek.c
> +++ b/sound/pci/hda/patch_realtek.c
> @@ -11599,6 +11599,7 @@ static const struct snd_pci_quirk alc662_fixup_tbl[] = {
>  	SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
>  	SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
>  	SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
> +	SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
>  	SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
>  	SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
>  	SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),

-- 
Łukasz Stelmach
Samsung R&D Institute Poland
Samsung Electronics

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC
  2023-02-23  7:47 ` [PATCH] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC Łukasz Stelmach
       [not found]   ` <CGME20230223075035eucas1p15a1c5f534f932b2b36510a39f6921d99@eucas1p1.samsung.com>
@ 2023-03-03 13:28   ` Takashi Iwai
  1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2023-03-03 13:28 UTC (permalink / raw)
  To: Łukasz Stelmach
  Cc: Jaroslav Kysela, Takashi Iwai, Marek Szyprowski, alsa-devel,
	linux-kernel

On Thu, 23 Feb 2023 08:47:48 +0100,
Łukasz Stelmach wrote:
> 
> HP EliteDesk 800 G6 Tower PC (103c:870c) requires a quirk for enabling
> headset-mic.
> 
> Signed-off-by: Łukasz Stelmach <l.stelmach@samsung.com>

Thanks, applied now.


Takashi

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2023-03-03 13:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <CGME20230223074852eucas1p2c91d153aa806db963711e1809861f76b@eucas1p2.samsung.com>
2023-02-23  7:47 ` [PATCH] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC Łukasz Stelmach
     [not found]   ` <CGME20230223075035eucas1p15a1c5f534f932b2b36510a39f6921d99@eucas1p1.samsung.com>
2023-02-23  7:50     ` Lukasz Stelmach
2023-03-03 13:28   ` 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®