Skip to content

Commit 8eae7e9

Browse files
starnighttiwai
authored andcommitted
ALSA: hda/realtek - Enable audio jacks of Acer vCopperbox with ALC269VC
The Acer desktop vCopperbox with ALC269VC cannot detect the MIC of headset, the line out and internal speaker until ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS quirk applied. Signed-off-by: Jian-Hong Pan <[email protected]> Signed-off-by: Chris Chiu <[email protected]> Cc: <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Takashi Iwai <[email protected]>
1 parent 9774dc2 commit 8eae7e9

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

sound/pci/hda/patch_realtek.c

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6149,6 +6149,7 @@ enum {
61496149
ALC236_FIXUP_HP_MUTE_LED,
61506150
ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
61516151
ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
6152+
ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
61526153
};
61536154

61546155
static const struct hda_fixup alc269_fixups[] = {
@@ -7327,6 +7328,17 @@ static const struct hda_fixup alc269_fixups[] = {
73277328
.chained = true,
73287329
.chain_id = ALC269_FIXUP_HEADSET_MODE
73297330
},
7331+
[ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
7332+
.type = HDA_FIXUP_PINS,
7333+
.v.pins = (const struct hda_pintbl[]) {
7334+
{ 0x14, 0x90100120 }, /* use as internal speaker */
7335+
{ 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
7336+
{ 0x1a, 0x01011020 }, /* use as line out */
7337+
{ },
7338+
},
7339+
.chained = true,
7340+
.chain_id = ALC269_FIXUP_HEADSET_MIC
7341+
},
73307342
};
73317343

73327344
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
@@ -7346,6 +7358,7 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
73467358
SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
73477359
SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
73487360
SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
7361+
SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
73497362
SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
73507363
SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
73517364
SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),

0 commit comments

Comments
 (0)