summarylogtreecommitdiffstats
path: root/sys-kernel_arch-sources-g14_files-6005-alsa-hda-ga401-ga502-experimental.patch
blob: d2df68c4e217e3b2b8c8b338e055518cbe83854e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
diff --git a/sound/pci/hda/patch_realtek.c b/sound/pci/hda/patch_realtek.c
index 8616c5624870..f0d08502e7ee 100644
--- a/sound/pci/hda/patch_realtek.c
+++ b/sound/pci/hda/patch_realtek.c
@@ -6349,6 +6349,8 @@ enum {
 	ALC269VC_FIXUP_ACER_HEADSET_MIC,
 	ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
 	ALC289_FIXUP_ASUS_GA401,
+	ALC289_FIXUP_ASUS_GA401_SPK,
+	ALC289_FIXUP_ASUS_GA401_HP_MIC,
 	ALC289_FIXUP_ASUS_GA502,
 	ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
 	ALC285_FIXUP_HP_GPIO_AMP_INIT,
@@ -7616,14 +7618,34 @@ static const struct hda_fixup alc269_fixups[] = {
 	},
 	[ALC289_FIXUP_ASUS_GA401] = {
 		.type = HDA_FIXUP_FUNC,
-		.v.func = alc289_fixup_asus_ga401,
+		.v.pins = (const struct hda_pintbl[]) {
+			{ 0x17, 0x90170130 }, /* bass speaker */
+			{ 0x19, 0x03a11050 }, /* headphone mic with jack detect */
+			{ 0x21, 0x03211430 }, /* headphone playback */
+			{ }
+ 		},
 		.chained = true,
-		.chain_id = ALC289_FIXUP_ASUS_GA502,
+		.chain_id = ALC289_FIXUP_ASUS_GA401_SPK,
+	},
+	[ALC289_FIXUP_ASUS_GA401_SPK] = {
+		.type = HDA_FIXUP_FUNC,
+		.v.func = alc295_fixup_disable_dac3,
+		.chained = true,
+		.chain_id = ALC289_FIXUP_ASUS_GA401_HP_MIC
+	},
+	[ALC289_FIXUP_ASUS_GA401_HP_MIC] = {
+		.type = HDA_FIXUP_VERBS,
+		.v.verbs = (const struct hda_verb[]) {
+			// fixes mic detect after win10 reboot
+			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
+			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5289 },
+			{ }
+		},
 	},
 	[ALC289_FIXUP_ASUS_GA502] = {
 		.type = HDA_FIXUP_PINS,
 		.v.pins = (const struct hda_pintbl[]) {
-			{ 0x19, 0x03a11020 }, /* headset mic with jack detect */
+			{ 0x19, 0x03a11050 }, /* headphone mic with jack detect */
 			{ }
 		},
 	},
@@ -7978,7 +8000,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
 	SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
 	SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
 	SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
-	SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
+	SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
 	SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
 	SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
 	SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),