* [PATCH] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 7 14AKP10
@ 2026-03-31 3:36 songxiebing
2026-03-31 6:52 ` Takashi Iwai
0 siblings, 1 reply; 3+ messages in thread
From: songxiebing @ 2026-03-31 3:36 UTC (permalink / raw)
To: tiwai, perex; +Cc: linux-sound, linux-kernel, songxiebing, Garcicasti
The Pin Complex 0x17 (bass/woofer speakers) is incorrectly reported as
unconnected in the BIOS (pin default 0x411111f0 = N/A). This causes the
kernel to configure speaker_outs=0, meaning only the tweeters (pin 0x14)
are used. The result is very low, tinny audio with no bass.
The existing quirk ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN (already present
in patch_realtek.c for SSID 0x17aa3801) fixes the issue completely.
Reported-by: Garcicasti <andresgarciacastilla@gmail.com>
Link: https://bugzilla.kernel.org/show_bug.cgi?id=221298
Signed-off-by: songxiebing <songxiebing@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 b6a58852752a..e37cebd99287 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -7657,6 +7657,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
SND_PCI_QUIRK(0x17aa, 0x390d, "Lenovo Yoga Pro 7 14ASP10", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
SND_PCI_QUIRK(0x17aa, 0x3913, "Lenovo 145", ALC236_FIXUP_LENOVO_INV_DMIC),
+ SND_PCI_QUIRK(0x17aa, 0x391a, "Lenovo Yoga Slim 7 14AKP10", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
SND_PCI_QUIRK(0x17aa, 0x391f, "Yoga S990-16 pro Quad YC Quad", ALC287_FIXUP_TXNW2781_I2C),
SND_PCI_QUIRK(0x17aa, 0x3920, "Yoga S990-16 pro Quad VECO Quad", ALC287_FIXUP_TXNW2781_I2C),
SND_PCI_QUIRK(0x17aa, 0x3929, "Thinkbook 13x Gen 5", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
--
2.25.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 7 14AKP10
2026-03-31 3:36 [PATCH] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 7 14AKP10 songxiebing
@ 2026-03-31 6:52 ` Takashi Iwai
[not found] ` <CANp29eOEubst-somoMv46sbZSpbAV_eWs=pKr5Yf1-VQYgz-uQ@mail.gmail.com>
0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2026-03-31 6:52 UTC (permalink / raw)
To: songxiebing; +Cc: tiwai, perex, linux-sound, linux-kernel, Garcicasti
On Tue, 31 Mar 2026 05:36:50 +0200,
songxiebing wrote:
>
> The Pin Complex 0x17 (bass/woofer speakers) is incorrectly reported as
> unconnected in the BIOS (pin default 0x411111f0 = N/A). This causes the
> kernel to configure speaker_outs=0, meaning only the tweeters (pin 0x14)
> are used. The result is very low, tinny audio with no bass.
>
> The existing quirk ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN (already present
> in patch_realtek.c for SSID 0x17aa3801) fixes the issue completely.
>
> Reported-by: Garcicasti <andresgarciacastilla@gmail.com>
> Link: https://bugzilla.kernel.org/show_bug.cgi?id=221298
> Signed-off-by: songxiebing <songxiebing@kylinos.cn>
Applied now. Thanks.
Takashi
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 7 14AKP10
[not found] ` <CANp29eOEubst-somoMv46sbZSpbAV_eWs=pKr5Yf1-VQYgz-uQ@mail.gmail.com>
@ 2026-04-02 9:06 ` Takashi Iwai
0 siblings, 0 replies; 3+ messages in thread
From: Takashi Iwai @ 2026-04-02 9:06 UTC (permalink / raw)
To: Andrés García Castilla
Cc: Takashi Iwai, songxiebing, tiwai, perex, linux-sound,
linux-kernel
On Wed, 01 Apr 2026 21:29:16 +0200,
Andrés García Castilla wrote:
>
>
> Hi there,
>
> Thanks a lot for applying the fix. Sorry if this is a stupid question but I'm
> not familiar with this process. Which kernel version(s) is this patch going to
> be applied to?
It'll be included in the next PR to Linus, so hopefully in 7.0-rc7.
Once after it gets merged, we can request to backport it to older
stable trees if wanted. As we didn't put Cc-to-stable in the patch
description, you can ask stable maintainers to pick it up explicitly,
or wait for a while until they pick it up via AUTOSEL.
Takashi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-04-02 9:06 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-31 3:36 [PATCH] ALSA: hda/realtek: Add quirk for Lenovo Yoga Slim 7 14AKP10 songxiebing
2026-03-31 6:52 ` Takashi Iwai
[not found] ` <CANp29eOEubst-somoMv46sbZSpbAV_eWs=pKr5Yf1-VQYgz-uQ@mail.gmail.com>
2026-04-02 9:06 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox