* [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers
@ 2026-01-12 0:06 Aleksandrs Vinarskis
2026-01-13 12:24 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Aleksandrs Vinarskis @ 2026-01-12 0:06 UTC (permalink / raw)
To: Jaroslav Kysela, Takashi Iwai; +Cc: linux-sound, linux-kernel
Just like GA403U, this GA403W needs to remap woofers to DAC1. Similarly to
other Asus devices, headphones/headset MIC is not working, however the pin
config alone is not enough to fix it.
From Windows dump of GA403W:
0x12, 0x90a60140 # Correctly set by codec out of the box
0x13, 0x90a60550
0x14, 0x90170510
0x17, 0x90170120 # Correctly set by codec out of the box
0x19, 0x03a11050 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
0x1a, 0x411115F0
0x1b, 0x03a11c30 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
0x1d, 0x40663A45 # Correctly set by codec out of the box
0x21, 0x03211430
Even with all the values set, MIC of the jack is not detected. Until a
complete solution is found, set ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
for GA403W which fixes audio volume control for woofers. No need to
create new quirk with missing pin config just yet, since its not
making the situation better.
Signed-off-by: Aleksandrs Vinarskis <alex@vinarskis.com>
---
As per commit description, enable quirk to fix woofers.
---
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 e63a555eda6538027b0141c90c1c8de445e359bc..8c1ec2f6da41cd716dc5c45f4a0f6724099686d7 100644
--- a/sound/hda/codecs/realtek/alc269.c
+++ b/sound/hda/codecs/realtek/alc269.c
@@ -6869,6 +6869,7 @@ static const struct hda_quirk alc269_fixup_tbl[] = {
SND_PCI_QUIRK(0x103c, 0x8f42, "HP ZBook 8 G2a 14W", ALC245_FIXUP_HP_TAS2781_I2C_MUTE_LED),
SND_PCI_QUIRK(0x103c, 0x8f57, "HP Trekker G7JC", ALC287_FIXUP_CS35L41_I2C_2),
SND_PCI_QUIRK(0x103c, 0x8f62, "HP ZBook 8 G2a 16W", ALC245_FIXUP_HP_TAS2781_I2C_MUTE_LED),
+ SND_PCI_QUIRK(0x1043, 0x1024, "ASUS Zephyrus G14 2025", ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC),
SND_PCI_QUIRK(0x1043, 0x1032, "ASUS VivoBook X513EA", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
SND_PCI_QUIRK(0x1043, 0x1034, "ASUS GU605C", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1),
SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
---
base-commit: f417b7ffcbef7d76b0d8860518f50dae0e7e5eda
change-id: 20260112-asus-rog-audio-4d3cb114fee5
Best regards,
--
Aleksandrs Vinarskis <alex@vinarskis.com>
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers
2026-01-12 0:06 [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers Aleksandrs Vinarskis
@ 2026-01-13 12:24 ` Takashi Iwai
2026-01-18 17:07 ` Aleksandrs Vinarskis
0 siblings, 1 reply; 4+ messages in thread
From: Takashi Iwai @ 2026-01-13 12:24 UTC (permalink / raw)
To: Aleksandrs Vinarskis
Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel
On Mon, 12 Jan 2026 01:06:37 +0100,
Aleksandrs Vinarskis wrote:
>
> Just like GA403U, this GA403W needs to remap woofers to DAC1. Similarly to
> other Asus devices, headphones/headset MIC is not working, however the pin
> config alone is not enough to fix it.
>
> From Windows dump of GA403W:
> 0x12, 0x90a60140 # Correctly set by codec out of the box
> 0x13, 0x90a60550
> 0x14, 0x90170510
> 0x17, 0x90170120 # Correctly set by codec out of the box
> 0x19, 0x03a11050 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> 0x1a, 0x411115F0
> 0x1b, 0x03a11c30 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> 0x1d, 0x40663A45 # Correctly set by codec out of the box
> 0x21, 0x03211430
>
> Even with all the values set, MIC of the jack is not detected. Until a
> complete solution is found, set ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> for GA403W which fixes audio volume control for woofers. No need to
> create new quirk with missing pin config just yet, since its not
> making the situation better.
>
> Signed-off-by: Aleksandrs Vinarskis <alex@vinarskis.com>
> ---
> As per commit description, enable quirk to fix woofers.
Thanks, applied now.
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers
2026-01-13 12:24 ` Takashi Iwai
@ 2026-01-18 17:07 ` Aleksandrs Vinarskis
2026-01-19 8:09 ` Takashi Iwai
0 siblings, 1 reply; 4+ messages in thread
From: Aleksandrs Vinarskis @ 2026-01-18 17:07 UTC (permalink / raw)
To: Takashi Iwai; +Cc: Jaroslav Kysela, Takashi Iwai, linux-sound, linux-kernel
On Tuesday, January 13th, 2026 at 13:24, Takashi Iwai <tiwai@suse.de> wrote:
>
>
> On Mon, 12 Jan 2026 01:06:37 +0100,
> Aleksandrs Vinarskis wrote:
>
> > Just like GA403U, this GA403W needs to remap woofers to DAC1. Similarly to
> > other Asus devices, headphones/headset MIC is not working, however the pin
> > config alone is not enough to fix it.
> >
> > From Windows dump of GA403W:
> > 0x12, 0x90a60140 # Correctly set by codec out of the box
> > 0x13, 0x90a60550
> > 0x14, 0x90170510
> > 0x17, 0x90170120 # Correctly set by codec out of the box
> > 0x19, 0x03a11050 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > 0x1a, 0x411115F0
> > 0x1b, 0x03a11c30 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > 0x1d, 0x40663A45 # Correctly set by codec out of the box
> > 0x21, 0x03211430
> >
> > Even with all the values set, MIC of the jack is not detected. Until a
> > complete solution is found, set ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > for GA403W which fixes audio volume control for woofers. No need to
> > create new quirk with missing pin config just yet, since its not
> > making the situation better.
> >
> > Signed-off-by: Aleksandrs Vinarskis alex@vinarskis.com
> > ---
> > As per commit description, enable quirk to fix woofers.
>
>
> Thanks, applied now.
Thanks, I see it now landed in linux master. If possible, it would be nice to have it in 6.18, 6.17 stable as well - would you like me to submit backport separately, or would you be able to pick it directly?
Alex
>
>
> Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers
2026-01-18 17:07 ` Aleksandrs Vinarskis
@ 2026-01-19 8:09 ` Takashi Iwai
0 siblings, 0 replies; 4+ messages in thread
From: Takashi Iwai @ 2026-01-19 8:09 UTC (permalink / raw)
To: Aleksandrs Vinarskis
Cc: Takashi Iwai, Jaroslav Kysela, Takashi Iwai, linux-sound,
linux-kernel
On Sun, 18 Jan 2026 18:07:17 +0100,
Aleksandrs Vinarskis wrote:
>
>
>
>
>
>
> On Tuesday, January 13th, 2026 at 13:24, Takashi Iwai <tiwai@suse.de> wrote:
>
> >
> >
> > On Mon, 12 Jan 2026 01:06:37 +0100,
> > Aleksandrs Vinarskis wrote:
> >
> > > Just like GA403U, this GA403W needs to remap woofers to DAC1. Similarly to
> > > other Asus devices, headphones/headset MIC is not working, however the pin
> > > config alone is not enough to fix it.
> > >
> > > From Windows dump of GA403W:
> > > 0x12, 0x90a60140 # Correctly set by codec out of the box
> > > 0x13, 0x90a60550
> > > 0x14, 0x90170510
> > > 0x17, 0x90170120 # Correctly set by codec out of the box
> > > 0x19, 0x03a11050 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > > 0x1a, 0x411115F0
> > > 0x1b, 0x03a11c30 # Set by ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > > 0x1d, 0x40663A45 # Correctly set by codec out of the box
> > > 0x21, 0x03211430
> > >
> > > Even with all the values set, MIC of the jack is not detected. Until a
> > > complete solution is found, set ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC
> > > for GA403W which fixes audio volume control for woofers. No need to
> > > create new quirk with missing pin config just yet, since its not
> > > making the situation better.
> > >
> > > Signed-off-by: Aleksandrs Vinarskis alex@vinarskis.com
> > > ---
> > > As per commit description, enable quirk to fix woofers.
> >
> >
> > Thanks, applied now.
>
> Thanks, I see it now landed in linux master. If possible, it would be nice to have it in 6.18, 6.17 stable as well - would you like me to submit backport separately, or would you be able to pick it directly?
I hope AUTOSEL would pick it up, but if you want to be sure, just ask
Greg & co (via stable ML) to suggest the upstream (Linus tree) commit
id to cherry-pick and tell which stable kernels to be backported.
And, if the fix is intended for stable kernels, at the next time, just
put "Cc: <stable@vger.kernel.org>" line around your Signed-off-by
line in the patch.
thanks,
Takashi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-01-19 8:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-12 0:06 [PATCH] ALSA: hda/realtek: Add quirk for Asus Zephyrus G14 2025 using CS35L56, fix speakers Aleksandrs Vinarskis
2026-01-13 12:24 ` Takashi Iwai
2026-01-18 17:07 ` Aleksandrs Vinarskis
2026-01-19 8:09 ` Takashi Iwai
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox