Linux Sound subsystem development
 help / color / mirror / Atom feed
* [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10
@ 2026-08-28 10:17 Zhang Heng
  2026-08-28 10:17 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Acer Predator PHN16-72 Zhang Heng
  2026-08-31  8:06 ` [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Takashi Iwai
  0 siblings, 2 replies; 3+ messages in thread
From: Zhang Heng @ 2026-08-28 10:17 UTC (permalink / raw)
  To: tiwai; +Cc: linux-sound, linux-kernel, Zhang Heng

The Lenovo Yoga Slim 9 14ILL10 (83CX) uses ALC287 with CS35L56
amplifiers. Without a matching SSID entry the bass speakers stay silent.
Add PCI SSID 17aa:380b (codec SSID 17aa:3905) to apply
ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=221902
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 e4349743a251..ae5464087625 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -8100,6 +8100,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
 	HDA_CODEC_QUIRK(0x17aa, 0x3802, "DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
 	SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga Pro 9 14IRP8", ALC287_FIXUP_TAS2781_I2C),
+	SND_PCI_QUIRK(0x17aa, 0x380b, "Lenovo Yoga Slim 9 14ILL10", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
 	/* Yoga Pro 9 16IMH9 and Legion 7 16ITHG6 share PCI SSID 17aa:3811
 	 * with Legion S7 15IMH05; use codec SSID to distinguish them
 	 */
-- 
2.25.1


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

* [PATCH 2/2] ALSA: hda/realtek: Add quirk for Acer Predator PHN16-72
  2026-08-28 10:17 [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Zhang Heng
@ 2026-08-28 10:17 ` Zhang Heng
  2026-08-31  8:06 ` [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Takashi Iwai
  1 sibling, 0 replies; 3+ messages in thread
From: Zhang Heng @ 2026-08-28 10:17 UTC (permalink / raw)
  To: tiwai; +Cc: linux-sound, linux-kernel, Zhang Heng

The Acer Predator PHN16-72 (subsystem ID 1025:1731) uses a Realtek
ALC245 codec. The PCI SSID and HDA codec SSID are both 0x10251731,
as confirmed in the system's ALSA diagnostic report. Apply
ALC2XX_FIXUP_HEADSET_MIC to enable the headset microphone.

Link: https://bugzilla.kernel.org/show_bug.cgi?id=221811
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 ae5464087625..039bb4d6f09a 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7155,6 +7155,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1025, 0x1679, "Acer Nitro 16 AN16-41", 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, 0x1731, "Acer Predator PHN16-72", ALC2XX_FIXUP_HEADSET_MIC),
 	SND_PCI_QUIRK(0x1025, 0x173a, "Acer Swift SFG14-73", ALC245_FIXUP_ACER_MICMUTE_LED),
 	SND_PCI_QUIRK(0x1025, 0x1758, "Acer Nitro ANV15-41", ALC245_FIXUP_ACER_MICMUTE_LED),
 	SND_PCI_QUIRK(0x1025, 0x1826, "Acer Helios ZPC", ALC287_FIXUP_PREDATOR_SPK_CS35L41_I2C_2),
-- 
2.25.1


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

* Re: [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10
  2026-08-28 10:17 [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Zhang Heng
  2026-08-28 10:17 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Acer Predator PHN16-72 Zhang Heng
@ 2026-08-31  8:06 ` Takashi Iwai
  1 sibling, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2026-08-31  8:06 UTC (permalink / raw)
  To: Zhang Heng; +Cc: tiwai, linux-sound, linux-kernel

On Fri, 28 Aug 2026 12:17:03 +0200,
Zhang Heng wrote:
> 
> The Lenovo Yoga Slim 9 14ILL10 (83CX) uses ALC287 with CS35L56
> amplifiers. Without a matching SSID entry the bass speakers stay silent.
> Add PCI SSID 17aa:380b (codec SSID 17aa:3905) to apply
> ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN.
> 
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=221902
> Signed-off-by: Zhang Heng <zhangheng@kylinos.cn>

Applied both patches now.  Thanks.


Takashi

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

end of thread, other threads:[~2026-08-31  8:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-28 10:17 [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Zhang Heng
2026-08-28 10:17 ` [PATCH 2/2] ALSA: hda/realtek: Add quirk for Acer Predator PHN16-72 Zhang Heng
2026-08-31  8:06 ` [PATCH 1/2] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 9 14ILL10 Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox