ALSA: hda/realtek - Add support headphone Mic for ALC221 of HP platform
ALC221 HP platform need to support Headphone Mic. This patch will turn on headphone Mic supported. Signed-off-by: Kailang Yang <kailang@realtek.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
8b169cb27c
commit
9eb5d0e635
|
@ -3816,6 +3816,7 @@ static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
|
||||||
case 0x10ec0867:
|
case 0x10ec0867:
|
||||||
alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
|
alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
|
||||||
/* fallthru */
|
/* fallthru */
|
||||||
|
case 0x10ec0221:
|
||||||
case 0x10ec0662:
|
case 0x10ec0662:
|
||||||
snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
|
snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
|
||||||
snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
|
snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
|
||||||
|
@ -4867,6 +4868,7 @@ enum {
|
||||||
ALC298_FIXUP_SPK_VOLUME,
|
ALC298_FIXUP_SPK_VOLUME,
|
||||||
ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
|
ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
|
||||||
ALC269_FIXUP_ATIV_BOOK_8,
|
ALC269_FIXUP_ATIV_BOOK_8,
|
||||||
|
ALC221_FIXUP_HP_MIC_NO_PRESENCE,
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct hda_fixup alc269_fixups[] = {
|
static const struct hda_fixup alc269_fixups[] = {
|
||||||
|
@ -5545,6 +5547,16 @@ static const struct hda_fixup alc269_fixups[] = {
|
||||||
.chained = true,
|
.chained = true,
|
||||||
.chain_id = ALC269_FIXUP_NO_SHUTUP
|
.chain_id = ALC269_FIXUP_NO_SHUTUP
|
||||||
},
|
},
|
||||||
|
[ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
|
||||||
|
.type = HDA_FIXUP_PINS,
|
||||||
|
.v.pins = (const struct hda_pintbl[]) {
|
||||||
|
{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
|
||||||
|
{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
|
||||||
|
{ }
|
||||||
|
},
|
||||||
|
.chained = true,
|
||||||
|
.chain_id = ALC269_FIXUP_HEADSET_MODE
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
||||||
|
@ -5655,6 +5667,8 @@ static const struct snd_pci_quirk alc269_fixup_tbl[] = {
|
||||||
SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
|
||||||
SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
|
SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
|
||||||
SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
|
SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
|
||||||
|
SND_PCI_QUIRK(0x103c, 0x82bf, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
|
||||||
|
SND_PCI_QUIRK(0x103c, 0x82c0, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
|
||||||
SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
|
SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
|
||||||
SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
|
SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
|
||||||
SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
|
SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
|
||||||
|
|
Loading…
Reference in New Issue