Skip to content

Commit fc09ea5

Browse files
drosdecktiwai
authored andcommitted
ALSA: hda/realtek: Enable mic on Vaio VJFH52
Vaio VJFH52 is equipped with ACL256, and needs a fix to make the internal mic and headphone mic to work. Also must to limits the internal microphone boost. Signed-off-by: Edson Juliano Drosdeck <[email protected]> Link: https://patch.msgid.link/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 5516e3f commit fc09ea5

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7608,6 +7608,7 @@ enum {
76087608
ALC287_FIXUP_LENOVO_14ARP8_LEGION_IAH7,
76097609
ALC287_FIXUP_LENOVO_SSID_17AA3820,
76107610
ALC245_FIXUP_CLEVO_NOISY_MIC,
7611+
ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE,
76117612
};
76127613

76137614
/* A special fixup for Lenovo C940 and Yoga Duet 7;
@@ -9935,6 +9936,16 @@ static const struct hda_fixup alc269_fixups[] = {
99359936
.chained = true,
99369937
.chain_id = ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
99379938
},
9939+
[ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE] = {
9940+
.type = HDA_FIXUP_PINS,
9941+
.v.pins = (const struct hda_pintbl[]) {
9942+
{ 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
9943+
{ 0x1b, 0x20a11040 }, /* dock mic */
9944+
{ }
9945+
},
9946+
.chained = true,
9947+
.chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
9948+
},
99389949
};
99399950

99409951
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
@@ -10571,6 +10582,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
1057110582
SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1057210583
SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1057310584
SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10585+
SND_PCI_QUIRK(0x1558, 0xa554, "VAIO VJFH52", ALC269_FIXUP_VAIO_VJFH52_MIC_NO_PRESENCE),
1057410586
SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1057510587
SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1057610588
SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),

0 commit comments

Comments
 (0)