Skip to content

Commit 7f665b1

Browse files
jackpot51tiwai
authored andcommitted
ALSA: hda/realtek - Headset microphone and internal speaker support for System76 oryp5
On the System76 Oryx Pro (oryp5), there is a headset microphone input attached to 0x19 that does not have a jack detect. In order to get it working, the pin configuration needs to be set correctly, and the ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC fixup needs to be applied. This is similar to the MIC_NO_PRESENCE fixups for some Dell laptops, except we have a separate microphone jack that is already configured correctly. Since the ALC1220 does not have a fixup similar to ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, I have exposed the fixup from the ALC269 in a way that it can be accessed from the alc1220_fixup_system76_oryp5 function. In addition, the alc1220_fixup_clevo_p950 needs to be applied to gain speaker output. Signed-off-by: Jeremy Soller <jeremy@system76.com> Cc: <stable@vger.kernel.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
1 parent 00a399c commit 7f665b1

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1855,6 +1855,8 @@ enum {
18551855
ALC887_FIXUP_BASS_CHMAP,
18561856
ALC1220_FIXUP_GB_DUAL_CODECS,
18571857
ALC1220_FIXUP_CLEVO_P950,
1858+
ALC1220_FIXUP_SYSTEM76_ORYP5,
1859+
ALC1220_FIXUP_SYSTEM76_ORYP5_PINS,
18581860
};
18591861

18601862
static void alc889_fixup_coef(struct hda_codec *codec,
@@ -2056,6 +2058,17 @@ static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
20562058
snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
20572059
}
20582060

2061+
static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2062+
const struct hda_fixup *fix, int action);
2063+
2064+
static void alc1220_fixup_system76_oryp5(struct hda_codec *codec,
2065+
const struct hda_fixup *fix,
2066+
int action)
2067+
{
2068+
alc1220_fixup_clevo_p950(codec, fix, action);
2069+
alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2070+
}
2071+
20592072
static const struct hda_fixup alc882_fixups[] = {
20602073
[ALC882_FIXUP_ABIT_AW9D_MAX] = {
20612074
.type = HDA_FIXUP_PINS,
@@ -2300,6 +2313,19 @@ static const struct hda_fixup alc882_fixups[] = {
23002313
.type = HDA_FIXUP_FUNC,
23012314
.v.func = alc1220_fixup_clevo_p950,
23022315
},
2316+
[ALC1220_FIXUP_SYSTEM76_ORYP5] = {
2317+
.type = HDA_FIXUP_FUNC,
2318+
.v.func = alc1220_fixup_system76_oryp5,
2319+
},
2320+
[ALC1220_FIXUP_SYSTEM76_ORYP5_PINS] = {
2321+
.type = HDA_FIXUP_PINS,
2322+
.v.pins = (const struct hda_pintbl[]) {
2323+
{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2324+
{}
2325+
},
2326+
.chained = true,
2327+
.chain_id = ALC1220_FIXUP_SYSTEM76_ORYP5,
2328+
},
23032329
};
23042330

23052331
static const struct snd_pci_quirk alc882_fixup_tbl[] = {
@@ -2376,6 +2402,8 @@ static const struct snd_pci_quirk alc882_fixup_tbl[] = {
23762402
SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
23772403
SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
23782404
SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2405+
SND_PCI_QUIRK(0x1558, 0x96e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_SYSTEM76_ORYP5_PINS),
2406+
SND_PCI_QUIRK(0x1558, 0x97e1, "System76 Oryx Pro (oryp5)", ALC1220_FIXUP_SYSTEM76_ORYP5_PINS),
23792407
SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
23802408
SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
23812409
SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),

0 commit comments

Comments
 (0)