1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Universal Interface for Intel High Definition Audio Codec
5 * HD audio interface patch for Realtek ALC codecs
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
9 * Takashi Iwai <tiwai@suse.de>
10 * Jonathan Woithe <jwoithe@just42.net>
13 #include <linux/init.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
16 #include <linux/pci.h>
17 #include <linux/dmi.h>
18 #include <linux/module.h>
19 #include <linux/input.h>
20 #include <sound/core.h>
21 #include <sound/jack.h>
22 #include <sound/hda_codec.h>
23 #include "hda_local.h"
24 #include "hda_auto_parser.h"
26 #include "hda_generic.h"
28 /* keep halting ALC5505 DSP, for power saving */
29 #define HALT_REALTEK_ALC5505
31 /* extra amp-initialization sequence types */
39 ALC_HEADSET_MODE_UNKNOWN,
40 ALC_HEADSET_MODE_UNPLUGGED,
41 ALC_HEADSET_MODE_HEADSET,
43 ALC_HEADSET_MODE_HEADPHONE,
47 ALC_HEADSET_TYPE_UNKNOWN,
48 ALC_HEADSET_TYPE_CTIA,
49 ALC_HEADSET_TYPE_OMTP,
53 ALC_KEY_MICMUTE_INDEX,
56 struct alc_customize_define {
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
65 unsigned int override:1;
66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
70 struct hda_gen_spec gen; /* must be at head */
72 /* codec parameterization */
73 struct alc_customize_define cdefine;
74 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
77 unsigned int gpio_mask;
78 unsigned int gpio_dir;
79 unsigned int gpio_data;
80 bool gpio_write_delay; /* add a delay before writing gpio_data */
82 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
83 int mute_led_polarity;
84 hda_nid_t mute_led_nid;
85 hda_nid_t cap_mute_led_nid;
87 unsigned int gpio_mute_led_mask;
88 unsigned int gpio_mic_led_mask;
90 hda_nid_t headset_mic_pin;
91 hda_nid_t headphone_mic_pin;
92 int current_headset_mode;
93 int current_headset_type;
96 void (*init_hook)(struct hda_codec *codec);
98 void (*power_hook)(struct hda_codec *codec);
100 void (*shutup)(struct hda_codec *codec);
101 void (*reboot_notify)(struct hda_codec *codec);
104 int codec_variant; /* flag for other variants */
105 unsigned int has_alc5505_dsp:1;
106 unsigned int no_depop_delay:1;
107 unsigned int done_hp_init:1;
108 unsigned int no_shutup_pins:1;
109 unsigned int ultra_low_power:1;
113 unsigned int pll_coef_idx, pll_coef_bit;
115 struct input_dev *kb_dev;
116 u8 alc_mute_keycode_map[1];
120 * COEF access helper functions
123 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
124 unsigned int coef_idx)
128 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
129 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
133 #define alc_read_coef_idx(codec, coef_idx) \
134 alc_read_coefex_idx(codec, 0x20, coef_idx)
136 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
137 unsigned int coef_idx, unsigned int coef_val)
139 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
140 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
143 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
144 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
146 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
147 unsigned int coef_idx, unsigned int mask,
148 unsigned int bits_set)
150 unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
153 alc_write_coefex_idx(codec, nid, coef_idx,
154 (val & ~mask) | bits_set);
157 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
158 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
160 /* a special bypass for COEF 0; read the cached value at the second time */
161 static unsigned int alc_get_coef0(struct hda_codec *codec)
163 struct alc_spec *spec = codec->spec;
166 spec->coef0 = alc_read_coef_idx(codec, 0);
170 /* coef writes/updates batch */
178 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
179 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
180 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
181 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
182 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
184 static void alc_process_coef_fw(struct hda_codec *codec,
185 const struct coef_fw *fw)
187 for (; fw->nid; fw++) {
188 if (fw->mask == (unsigned short)-1)
189 alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
191 alc_update_coefex_idx(codec, fw->nid, fw->idx,
197 * GPIO setup tables, used in initialization
200 /* Enable GPIO mask and set output */
201 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
203 struct alc_spec *spec = codec->spec;
205 spec->gpio_mask |= mask;
206 spec->gpio_dir |= mask;
207 spec->gpio_data |= mask;
210 static void alc_write_gpio_data(struct hda_codec *codec)
212 struct alc_spec *spec = codec->spec;
214 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
218 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
221 struct alc_spec *spec = codec->spec;
222 unsigned int oldval = spec->gpio_data;
225 spec->gpio_data |= mask;
227 spec->gpio_data &= ~mask;
228 if (oldval != spec->gpio_data)
229 alc_write_gpio_data(codec);
232 static void alc_write_gpio(struct hda_codec *codec)
234 struct alc_spec *spec = codec->spec;
236 if (!spec->gpio_mask)
239 snd_hda_codec_write(codec, codec->core.afg, 0,
240 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
241 snd_hda_codec_write(codec, codec->core.afg, 0,
242 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
243 if (spec->gpio_write_delay)
245 alc_write_gpio_data(codec);
248 static void alc_fixup_gpio(struct hda_codec *codec, int action,
251 if (action == HDA_FIXUP_ACT_PRE_PROBE)
252 alc_setup_gpio(codec, mask);
255 static void alc_fixup_gpio1(struct hda_codec *codec,
256 const struct hda_fixup *fix, int action)
258 alc_fixup_gpio(codec, action, 0x01);
261 static void alc_fixup_gpio2(struct hda_codec *codec,
262 const struct hda_fixup *fix, int action)
264 alc_fixup_gpio(codec, action, 0x02);
267 static void alc_fixup_gpio3(struct hda_codec *codec,
268 const struct hda_fixup *fix, int action)
270 alc_fixup_gpio(codec, action, 0x03);
273 static void alc_fixup_gpio4(struct hda_codec *codec,
274 const struct hda_fixup *fix, int action)
276 alc_fixup_gpio(codec, action, 0x04);
280 * Fix hardware PLL issue
281 * On some codecs, the analog PLL gating control must be off while
282 * the default value is 1.
284 static void alc_fix_pll(struct hda_codec *codec)
286 struct alc_spec *spec = codec->spec;
289 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
290 1 << spec->pll_coef_bit, 0);
293 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
294 unsigned int coef_idx, unsigned int coef_bit)
296 struct alc_spec *spec = codec->spec;
298 spec->pll_coef_idx = coef_idx;
299 spec->pll_coef_bit = coef_bit;
303 /* update the master volume per volume-knob's unsol event */
304 static void alc_update_knob_master(struct hda_codec *codec,
305 struct hda_jack_callback *jack)
308 struct snd_kcontrol *kctl;
309 struct snd_ctl_elem_value *uctl;
311 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
314 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
317 val = snd_hda_codec_read(codec, jack->nid, 0,
318 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
319 val &= HDA_AMP_VOLMASK;
320 uctl->value.integer.value[0] = val;
321 uctl->value.integer.value[1] = val;
322 kctl->put(kctl, uctl);
326 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
328 /* For some reason, the res given from ALC880 is broken.
329 Here we adjust it properly. */
330 snd_hda_jack_unsol_event(codec, res >> 2);
333 /* Change EAPD to verb control */
334 static void alc_fill_eapd_coef(struct hda_codec *codec)
338 coef = alc_get_coef0(codec);
340 switch (codec->core.vendor_id) {
342 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
346 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
349 if ((coef & 0x00f0) == 0x0010)
350 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
351 if ((coef & 0x00f0) == 0x0020)
352 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
353 if ((coef & 0x00f0) == 0x0030)
354 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
360 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
365 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
382 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
385 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
388 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
396 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
399 if ((coef & 0x00f0) == 0x0030)
400 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
409 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
412 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
415 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
418 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
419 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
422 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
428 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
433 /* additional initialization for ALC888 variants */
434 static void alc888_coef_init(struct hda_codec *codec)
436 switch (alc_get_coef0(codec) & 0x00f0) {
441 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
446 /* turn on/off EAPD control (only if available) */
447 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
449 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
451 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
452 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
456 /* turn on/off EAPD controls of the codec */
457 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
459 /* We currently only handle front, HP */
460 static hda_nid_t pins[] = {
461 0x0f, 0x10, 0x14, 0x15, 0x17, 0
464 for (p = pins; *p; p++)
465 set_eapd(codec, *p, on);
468 static int find_ext_mic_pin(struct hda_codec *codec);
470 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
472 const struct hda_pincfg *pin;
473 int mic_pin = find_ext_mic_pin(codec);
476 /* don't shut up pins when unloading the driver; otherwise it breaks
477 * the default pin setup at the next load of the driver
479 if (codec->bus->shutdown)
482 snd_array_for_each(&codec->init_pins, i, pin) {
483 /* use read here for syncing after issuing each verb */
484 if (pin->nid != mic_pin)
485 snd_hda_codec_read(codec, pin->nid, 0,
486 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
489 codec->pins_shutup = 1;
492 static void alc_shutup_pins(struct hda_codec *codec)
494 struct alc_spec *spec = codec->spec;
496 switch (codec->core.vendor_id) {
500 alc_headset_mic_no_shutup(codec);
503 if (!spec->no_shutup_pins)
504 snd_hda_shutup_pins(codec);
509 /* generic shutup callback;
510 * just turning off EAPD and a little pause for avoiding pop-noise
512 static void alc_eapd_shutup(struct hda_codec *codec)
514 struct alc_spec *spec = codec->spec;
516 alc_auto_setup_eapd(codec, false);
517 if (!spec->no_depop_delay)
519 alc_shutup_pins(codec);
522 /* generic EAPD initialization */
523 static void alc_auto_init_amp(struct hda_codec *codec, int type)
525 alc_auto_setup_eapd(codec, true);
526 alc_write_gpio(codec);
528 case ALC_INIT_DEFAULT:
529 switch (codec->core.vendor_id) {
531 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
537 alc_update_coef_idx(codec, 7, 0, 0x2030);
540 alc888_coef_init(codec);
547 /* get a primary headphone pin if available */
548 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
550 if (spec->gen.autocfg.hp_pins[0])
551 return spec->gen.autocfg.hp_pins[0];
552 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
553 return spec->gen.autocfg.line_out_pins[0];
558 * Realtek SSID verification
561 /* Could be any non-zero and even value. When used as fixup, tells
562 * the driver to ignore any present sku defines.
564 #define ALC_FIXUP_SKU_IGNORE (2)
566 static void alc_fixup_sku_ignore(struct hda_codec *codec,
567 const struct hda_fixup *fix, int action)
569 struct alc_spec *spec = codec->spec;
570 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
571 spec->cdefine.fixup = 1;
572 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
576 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
577 const struct hda_fixup *fix, int action)
579 struct alc_spec *spec = codec->spec;
581 if (action == HDA_FIXUP_ACT_PROBE) {
582 spec->no_depop_delay = 1;
583 codec->depop_delay = 0;
587 static int alc_auto_parse_customize_define(struct hda_codec *codec)
589 unsigned int ass, tmp, i;
591 struct alc_spec *spec = codec->spec;
593 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
595 if (spec->cdefine.fixup) {
596 ass = spec->cdefine.sku_cfg;
597 if (ass == ALC_FIXUP_SKU_IGNORE)
602 if (!codec->bus->pci)
604 ass = codec->core.subsystem_id & 0xffff;
605 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
609 if (codec->core.vendor_id == 0x10ec0260)
611 ass = snd_hda_codec_get_pincfg(codec, nid);
614 codec_info(codec, "%s: SKU not ready 0x%08x\n",
615 codec->core.chip_name, ass);
621 for (i = 1; i < 16; i++) {
625 if (((ass >> 16) & 0xf) != tmp)
628 spec->cdefine.port_connectivity = ass >> 30;
629 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
630 spec->cdefine.check_sum = (ass >> 16) & 0xf;
631 spec->cdefine.customization = ass >> 8;
633 spec->cdefine.sku_cfg = ass;
634 spec->cdefine.external_amp = (ass & 0x38) >> 3;
635 spec->cdefine.platform_type = (ass & 0x4) >> 2;
636 spec->cdefine.swap = (ass & 0x2) >> 1;
637 spec->cdefine.override = ass & 0x1;
639 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
640 nid, spec->cdefine.sku_cfg);
641 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
642 spec->cdefine.port_connectivity);
643 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
644 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
645 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
646 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
647 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
648 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
649 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
654 /* return the position of NID in the list, or -1 if not found */
655 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
658 for (i = 0; i < nums; i++)
663 /* return true if the given NID is found in the list */
664 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
666 return find_idx_in_nid_list(nid, list, nums) >= 0;
669 /* check subsystem ID and set up device-specific initialization;
670 * return 1 if initialized, 0 if invalid SSID
672 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
673 * 31 ~ 16 : Manufacture ID
675 * 7 ~ 0 : Assembly ID
676 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
678 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
680 unsigned int ass, tmp, i;
682 struct alc_spec *spec = codec->spec;
684 if (spec->cdefine.fixup) {
685 ass = spec->cdefine.sku_cfg;
686 if (ass == ALC_FIXUP_SKU_IGNORE)
691 ass = codec->core.subsystem_id & 0xffff;
692 if (codec->bus->pci &&
693 ass != codec->bus->pci->subsystem_device && (ass & 1))
696 /* invalid SSID, check the special NID pin defcfg instead */
698 * 31~30 : port connectivity
701 * 19~16 : Check sum (15:1)
706 if (codec->core.vendor_id == 0x10ec0260)
708 ass = snd_hda_codec_get_pincfg(codec, nid);
710 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
714 if ((ass >> 30) != 1) /* no physical connection */
719 for (i = 1; i < 16; i++) {
723 if (((ass >> 16) & 0xf) != tmp)
726 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
727 ass & 0xffff, codec->core.vendor_id);
731 * 2 : 0 --> Desktop, 1 --> Laptop
732 * 3~5 : External Amplifier control
735 tmp = (ass & 0x38) >> 3; /* external Amp control */
736 if (spec->init_amp == ALC_INIT_UNDEFINED) {
739 alc_setup_gpio(codec, 0x01);
742 alc_setup_gpio(codec, 0x02);
745 alc_setup_gpio(codec, 0x03);
749 spec->init_amp = ALC_INIT_DEFAULT;
754 /* is laptop or Desktop and enable the function "Mute internal speaker
755 * when the external headphone out jack is plugged"
760 * 10~8 : Jack location
761 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
763 * 15 : 1 --> enable the function "Mute internal speaker
764 * when the external headphone out jack is plugged"
766 if (!alc_get_hp_pin(spec)) {
768 tmp = (ass >> 11) & 0x3; /* HP to chassis */
770 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
771 spec->gen.autocfg.line_outs))
773 spec->gen.autocfg.hp_pins[0] = nid;
778 /* Check the validity of ALC subsystem-id
779 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
780 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
782 if (!alc_subsystem_id(codec, ports)) {
783 struct alc_spec *spec = codec->spec;
785 "realtek: Enable default setup for auto mode as fallback\n");
786 spec->init_amp = ALC_INIT_DEFAULT;
793 static void alc_fixup_inv_dmic(struct hda_codec *codec,
794 const struct hda_fixup *fix, int action)
796 struct alc_spec *spec = codec->spec;
798 spec->gen.inv_dmic_split = 1;
802 static int alc_build_controls(struct hda_codec *codec)
806 err = snd_hda_gen_build_controls(codec);
810 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
819 static void alc_pre_init(struct hda_codec *codec)
821 alc_fill_eapd_coef(codec);
824 #define is_s3_resume(codec) \
825 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
826 #define is_s4_resume(codec) \
827 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
829 static int alc_init(struct hda_codec *codec)
831 struct alc_spec *spec = codec->spec;
833 /* hibernation resume needs the full chip initialization */
834 if (is_s4_resume(codec))
838 spec->init_hook(codec);
840 snd_hda_gen_init(codec);
842 alc_auto_init_amp(codec, spec->init_amp);
844 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
849 static inline void alc_shutup(struct hda_codec *codec)
851 struct alc_spec *spec = codec->spec;
853 if (!snd_hda_get_bool_hint(codec, "shutup"))
854 return; /* disabled explicitly by hints */
856 if (spec && spec->shutup)
859 alc_shutup_pins(codec);
862 static void alc_reboot_notify(struct hda_codec *codec)
864 struct alc_spec *spec = codec->spec;
866 if (spec && spec->reboot_notify)
867 spec->reboot_notify(codec);
872 #define alc_free snd_hda_gen_free
875 static void alc_power_eapd(struct hda_codec *codec)
877 alc_auto_setup_eapd(codec, false);
880 static int alc_suspend(struct hda_codec *codec)
882 struct alc_spec *spec = codec->spec;
884 if (spec && spec->power_hook)
885 spec->power_hook(codec);
891 static int alc_resume(struct hda_codec *codec)
893 struct alc_spec *spec = codec->spec;
895 if (!spec->no_depop_delay)
896 msleep(150); /* to avoid pop noise */
897 codec->patch_ops.init(codec);
898 regcache_sync(codec->core.regmap);
899 hda_call_check_power_status(codec, 0x01);
906 static const struct hda_codec_ops alc_patch_ops = {
907 .build_controls = alc_build_controls,
908 .build_pcms = snd_hda_gen_build_pcms,
911 .unsol_event = snd_hda_jack_unsol_event,
913 .resume = alc_resume,
914 .suspend = alc_suspend,
915 .check_power_status = snd_hda_gen_check_power_status,
917 .reboot_notify = alc_reboot_notify,
921 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
924 * Rename codecs appropriately from COEF value or subvendor id
926 struct alc_codec_rename_table {
927 unsigned int vendor_id;
928 unsigned short coef_mask;
929 unsigned short coef_bits;
933 struct alc_codec_rename_pci_table {
934 unsigned int codec_vendor_id;
935 unsigned short pci_subvendor;
936 unsigned short pci_subdevice;
940 static struct alc_codec_rename_table rename_tbl[] = {
941 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
942 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
943 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
944 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
945 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
946 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
947 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
948 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
949 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
950 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
951 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
952 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
953 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
954 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
955 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
956 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
957 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
961 static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
962 { 0x10ec0280, 0x1028, 0, "ALC3220" },
963 { 0x10ec0282, 0x1028, 0, "ALC3221" },
964 { 0x10ec0283, 0x1028, 0, "ALC3223" },
965 { 0x10ec0288, 0x1028, 0, "ALC3263" },
966 { 0x10ec0292, 0x1028, 0, "ALC3226" },
967 { 0x10ec0293, 0x1028, 0, "ALC3235" },
968 { 0x10ec0255, 0x1028, 0, "ALC3234" },
969 { 0x10ec0668, 0x1028, 0, "ALC3661" },
970 { 0x10ec0275, 0x1028, 0, "ALC3260" },
971 { 0x10ec0899, 0x1028, 0, "ALC3861" },
972 { 0x10ec0298, 0x1028, 0, "ALC3266" },
973 { 0x10ec0236, 0x1028, 0, "ALC3204" },
974 { 0x10ec0256, 0x1028, 0, "ALC3246" },
975 { 0x10ec0225, 0x1028, 0, "ALC3253" },
976 { 0x10ec0295, 0x1028, 0, "ALC3254" },
977 { 0x10ec0299, 0x1028, 0, "ALC3271" },
978 { 0x10ec0670, 0x1025, 0, "ALC669X" },
979 { 0x10ec0676, 0x1025, 0, "ALC679X" },
980 { 0x10ec0282, 0x1043, 0, "ALC3229" },
981 { 0x10ec0233, 0x1043, 0, "ALC3236" },
982 { 0x10ec0280, 0x103c, 0, "ALC3228" },
983 { 0x10ec0282, 0x103c, 0, "ALC3227" },
984 { 0x10ec0286, 0x103c, 0, "ALC3242" },
985 { 0x10ec0290, 0x103c, 0, "ALC3241" },
986 { 0x10ec0668, 0x103c, 0, "ALC3662" },
987 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
988 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
992 static int alc_codec_rename_from_preset(struct hda_codec *codec)
994 const struct alc_codec_rename_table *p;
995 const struct alc_codec_rename_pci_table *q;
997 for (p = rename_tbl; p->vendor_id; p++) {
998 if (p->vendor_id != codec->core.vendor_id)
1000 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1001 return alc_codec_rename(codec, p->name);
1004 if (!codec->bus->pci)
1006 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1007 if (q->codec_vendor_id != codec->core.vendor_id)
1009 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1011 if (!q->pci_subdevice ||
1012 q->pci_subdevice == codec->bus->pci->subsystem_device)
1013 return alc_codec_rename(codec, q->name);
1021 * Digital-beep handlers
1023 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1025 /* additional beep mixers; private_value will be overwritten */
1026 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1027 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1028 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1031 /* set up and create beep controls */
1032 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1035 struct snd_kcontrol_new *knew;
1036 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1039 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1040 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1041 &alc_beep_mixer[i]);
1044 knew->private_value = beep_amp;
1049 static const struct snd_pci_quirk beep_white_list[] = {
1050 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1051 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1052 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1053 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1054 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1055 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1056 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1057 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1058 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1062 static inline int has_cdefine_beep(struct hda_codec *codec)
1064 struct alc_spec *spec = codec->spec;
1065 const struct snd_pci_quirk *q;
1066 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
1069 return spec->cdefine.enable_pcbeep;
1072 #define set_beep_amp(spec, nid, idx, dir) 0
1073 #define has_cdefine_beep(codec) 0
1076 /* parse the BIOS configuration and set up the alc_spec */
1077 /* return 1 if successful, 0 if the proper config is not found,
1078 * or a negative error code
1080 static int alc_parse_auto_config(struct hda_codec *codec,
1081 const hda_nid_t *ignore_nids,
1082 const hda_nid_t *ssid_nids)
1084 struct alc_spec *spec = codec->spec;
1085 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1088 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1094 alc_ssid_check(codec, ssid_nids);
1096 err = snd_hda_gen_parse_auto_config(codec, cfg);
1103 /* common preparation job for alc_spec */
1104 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1106 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1112 snd_hda_gen_spec_init(&spec->gen);
1113 spec->gen.mixer_nid = mixer_nid;
1114 spec->gen.own_eapd_ctl = 1;
1115 codec->single_adc_amp = 1;
1116 /* FIXME: do we need this for all Realtek codec models? */
1117 codec->spdif_status_reset = 1;
1118 codec->patch_ops = alc_patch_ops;
1120 err = alc_codec_rename_from_preset(codec);
1128 static int alc880_parse_auto_config(struct hda_codec *codec)
1130 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1131 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1132 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1141 ALC880_FIXUP_MEDION_RIM,
1143 ALC880_FIXUP_LG_LW25,
1145 ALC880_FIXUP_EAPD_COEF,
1146 ALC880_FIXUP_TCL_S700,
1147 ALC880_FIXUP_VOL_KNOB,
1148 ALC880_FIXUP_FUJITSU,
1150 ALC880_FIXUP_UNIWILL,
1151 ALC880_FIXUP_UNIWILL_DIG,
1153 ALC880_FIXUP_ASUS_W5A,
1154 ALC880_FIXUP_3ST_BASE,
1156 ALC880_FIXUP_3ST_DIG,
1157 ALC880_FIXUP_5ST_BASE,
1159 ALC880_FIXUP_5ST_DIG,
1160 ALC880_FIXUP_6ST_BASE,
1162 ALC880_FIXUP_6ST_DIG,
1163 ALC880_FIXUP_6ST_AUTOMUTE,
1166 /* enable the volume-knob widget support on NID 0x21 */
1167 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1168 const struct hda_fixup *fix, int action)
1170 if (action == HDA_FIXUP_ACT_PROBE)
1171 snd_hda_jack_detect_enable_callback(codec, 0x21,
1172 alc_update_knob_master);
1175 static const struct hda_fixup alc880_fixups[] = {
1176 [ALC880_FIXUP_GPIO1] = {
1177 .type = HDA_FIXUP_FUNC,
1178 .v.func = alc_fixup_gpio1,
1180 [ALC880_FIXUP_GPIO2] = {
1181 .type = HDA_FIXUP_FUNC,
1182 .v.func = alc_fixup_gpio2,
1184 [ALC880_FIXUP_MEDION_RIM] = {
1185 .type = HDA_FIXUP_VERBS,
1186 .v.verbs = (const struct hda_verb[]) {
1187 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1188 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1192 .chain_id = ALC880_FIXUP_GPIO2,
1194 [ALC880_FIXUP_LG] = {
1195 .type = HDA_FIXUP_PINS,
1196 .v.pins = (const struct hda_pintbl[]) {
1197 /* disable bogus unused pins */
1198 { 0x16, 0x411111f0 },
1199 { 0x18, 0x411111f0 },
1200 { 0x1a, 0x411111f0 },
1204 [ALC880_FIXUP_LG_LW25] = {
1205 .type = HDA_FIXUP_PINS,
1206 .v.pins = (const struct hda_pintbl[]) {
1207 { 0x1a, 0x0181344f }, /* line-in */
1208 { 0x1b, 0x0321403f }, /* headphone */
1212 [ALC880_FIXUP_W810] = {
1213 .type = HDA_FIXUP_PINS,
1214 .v.pins = (const struct hda_pintbl[]) {
1215 /* disable bogus unused pins */
1216 { 0x17, 0x411111f0 },
1220 .chain_id = ALC880_FIXUP_GPIO2,
1222 [ALC880_FIXUP_EAPD_COEF] = {
1223 .type = HDA_FIXUP_VERBS,
1224 .v.verbs = (const struct hda_verb[]) {
1225 /* change to EAPD mode */
1226 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1227 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1231 [ALC880_FIXUP_TCL_S700] = {
1232 .type = HDA_FIXUP_VERBS,
1233 .v.verbs = (const struct hda_verb[]) {
1234 /* change to EAPD mode */
1235 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1236 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1240 .chain_id = ALC880_FIXUP_GPIO2,
1242 [ALC880_FIXUP_VOL_KNOB] = {
1243 .type = HDA_FIXUP_FUNC,
1244 .v.func = alc880_fixup_vol_knob,
1246 [ALC880_FIXUP_FUJITSU] = {
1247 /* override all pins as BIOS on old Amilo is broken */
1248 .type = HDA_FIXUP_PINS,
1249 .v.pins = (const struct hda_pintbl[]) {
1250 { 0x14, 0x0121401f }, /* HP */
1251 { 0x15, 0x99030120 }, /* speaker */
1252 { 0x16, 0x99030130 }, /* bass speaker */
1253 { 0x17, 0x411111f0 }, /* N/A */
1254 { 0x18, 0x411111f0 }, /* N/A */
1255 { 0x19, 0x01a19950 }, /* mic-in */
1256 { 0x1a, 0x411111f0 }, /* N/A */
1257 { 0x1b, 0x411111f0 }, /* N/A */
1258 { 0x1c, 0x411111f0 }, /* N/A */
1259 { 0x1d, 0x411111f0 }, /* N/A */
1260 { 0x1e, 0x01454140 }, /* SPDIF out */
1264 .chain_id = ALC880_FIXUP_VOL_KNOB,
1266 [ALC880_FIXUP_F1734] = {
1267 /* almost compatible with FUJITSU, but no bass and SPDIF */
1268 .type = HDA_FIXUP_PINS,
1269 .v.pins = (const struct hda_pintbl[]) {
1270 { 0x14, 0x0121401f }, /* HP */
1271 { 0x15, 0x99030120 }, /* speaker */
1272 { 0x16, 0x411111f0 }, /* N/A */
1273 { 0x17, 0x411111f0 }, /* N/A */
1274 { 0x18, 0x411111f0 }, /* N/A */
1275 { 0x19, 0x01a19950 }, /* mic-in */
1276 { 0x1a, 0x411111f0 }, /* N/A */
1277 { 0x1b, 0x411111f0 }, /* N/A */
1278 { 0x1c, 0x411111f0 }, /* N/A */
1279 { 0x1d, 0x411111f0 }, /* N/A */
1280 { 0x1e, 0x411111f0 }, /* N/A */
1284 .chain_id = ALC880_FIXUP_VOL_KNOB,
1286 [ALC880_FIXUP_UNIWILL] = {
1287 /* need to fix HP and speaker pins to be parsed correctly */
1288 .type = HDA_FIXUP_PINS,
1289 .v.pins = (const struct hda_pintbl[]) {
1290 { 0x14, 0x0121411f }, /* HP */
1291 { 0x15, 0x99030120 }, /* speaker */
1292 { 0x16, 0x99030130 }, /* bass speaker */
1296 [ALC880_FIXUP_UNIWILL_DIG] = {
1297 .type = HDA_FIXUP_PINS,
1298 .v.pins = (const struct hda_pintbl[]) {
1299 /* disable bogus unused pins */
1300 { 0x17, 0x411111f0 },
1301 { 0x19, 0x411111f0 },
1302 { 0x1b, 0x411111f0 },
1303 { 0x1f, 0x411111f0 },
1307 [ALC880_FIXUP_Z71V] = {
1308 .type = HDA_FIXUP_PINS,
1309 .v.pins = (const struct hda_pintbl[]) {
1310 /* set up the whole pins as BIOS is utterly broken */
1311 { 0x14, 0x99030120 }, /* speaker */
1312 { 0x15, 0x0121411f }, /* HP */
1313 { 0x16, 0x411111f0 }, /* N/A */
1314 { 0x17, 0x411111f0 }, /* N/A */
1315 { 0x18, 0x01a19950 }, /* mic-in */
1316 { 0x19, 0x411111f0 }, /* N/A */
1317 { 0x1a, 0x01813031 }, /* line-in */
1318 { 0x1b, 0x411111f0 }, /* N/A */
1319 { 0x1c, 0x411111f0 }, /* N/A */
1320 { 0x1d, 0x411111f0 }, /* N/A */
1321 { 0x1e, 0x0144111e }, /* SPDIF */
1325 [ALC880_FIXUP_ASUS_W5A] = {
1326 .type = HDA_FIXUP_PINS,
1327 .v.pins = (const struct hda_pintbl[]) {
1328 /* set up the whole pins as BIOS is utterly broken */
1329 { 0x14, 0x0121411f }, /* HP */
1330 { 0x15, 0x411111f0 }, /* N/A */
1331 { 0x16, 0x411111f0 }, /* N/A */
1332 { 0x17, 0x411111f0 }, /* N/A */
1333 { 0x18, 0x90a60160 }, /* mic */
1334 { 0x19, 0x411111f0 }, /* N/A */
1335 { 0x1a, 0x411111f0 }, /* N/A */
1336 { 0x1b, 0x411111f0 }, /* N/A */
1337 { 0x1c, 0x411111f0 }, /* N/A */
1338 { 0x1d, 0x411111f0 }, /* N/A */
1339 { 0x1e, 0xb743111e }, /* SPDIF out */
1343 .chain_id = ALC880_FIXUP_GPIO1,
1345 [ALC880_FIXUP_3ST_BASE] = {
1346 .type = HDA_FIXUP_PINS,
1347 .v.pins = (const struct hda_pintbl[]) {
1348 { 0x14, 0x01014010 }, /* line-out */
1349 { 0x15, 0x411111f0 }, /* N/A */
1350 { 0x16, 0x411111f0 }, /* N/A */
1351 { 0x17, 0x411111f0 }, /* N/A */
1352 { 0x18, 0x01a19c30 }, /* mic-in */
1353 { 0x19, 0x0121411f }, /* HP */
1354 { 0x1a, 0x01813031 }, /* line-in */
1355 { 0x1b, 0x02a19c40 }, /* front-mic */
1356 { 0x1c, 0x411111f0 }, /* N/A */
1357 { 0x1d, 0x411111f0 }, /* N/A */
1358 /* 0x1e is filled in below */
1359 { 0x1f, 0x411111f0 }, /* N/A */
1363 [ALC880_FIXUP_3ST] = {
1364 .type = HDA_FIXUP_PINS,
1365 .v.pins = (const struct hda_pintbl[]) {
1366 { 0x1e, 0x411111f0 }, /* N/A */
1370 .chain_id = ALC880_FIXUP_3ST_BASE,
1372 [ALC880_FIXUP_3ST_DIG] = {
1373 .type = HDA_FIXUP_PINS,
1374 .v.pins = (const struct hda_pintbl[]) {
1375 { 0x1e, 0x0144111e }, /* SPDIF */
1379 .chain_id = ALC880_FIXUP_3ST_BASE,
1381 [ALC880_FIXUP_5ST_BASE] = {
1382 .type = HDA_FIXUP_PINS,
1383 .v.pins = (const struct hda_pintbl[]) {
1384 { 0x14, 0x01014010 }, /* front */
1385 { 0x15, 0x411111f0 }, /* N/A */
1386 { 0x16, 0x01011411 }, /* CLFE */
1387 { 0x17, 0x01016412 }, /* surr */
1388 { 0x18, 0x01a19c30 }, /* mic-in */
1389 { 0x19, 0x0121411f }, /* HP */
1390 { 0x1a, 0x01813031 }, /* line-in */
1391 { 0x1b, 0x02a19c40 }, /* front-mic */
1392 { 0x1c, 0x411111f0 }, /* N/A */
1393 { 0x1d, 0x411111f0 }, /* N/A */
1394 /* 0x1e is filled in below */
1395 { 0x1f, 0x411111f0 }, /* N/A */
1399 [ALC880_FIXUP_5ST] = {
1400 .type = HDA_FIXUP_PINS,
1401 .v.pins = (const struct hda_pintbl[]) {
1402 { 0x1e, 0x411111f0 }, /* N/A */
1406 .chain_id = ALC880_FIXUP_5ST_BASE,
1408 [ALC880_FIXUP_5ST_DIG] = {
1409 .type = HDA_FIXUP_PINS,
1410 .v.pins = (const struct hda_pintbl[]) {
1411 { 0x1e, 0x0144111e }, /* SPDIF */
1415 .chain_id = ALC880_FIXUP_5ST_BASE,
1417 [ALC880_FIXUP_6ST_BASE] = {
1418 .type = HDA_FIXUP_PINS,
1419 .v.pins = (const struct hda_pintbl[]) {
1420 { 0x14, 0x01014010 }, /* front */
1421 { 0x15, 0x01016412 }, /* surr */
1422 { 0x16, 0x01011411 }, /* CLFE */
1423 { 0x17, 0x01012414 }, /* side */
1424 { 0x18, 0x01a19c30 }, /* mic-in */
1425 { 0x19, 0x02a19c40 }, /* front-mic */
1426 { 0x1a, 0x01813031 }, /* line-in */
1427 { 0x1b, 0x0121411f }, /* HP */
1428 { 0x1c, 0x411111f0 }, /* N/A */
1429 { 0x1d, 0x411111f0 }, /* N/A */
1430 /* 0x1e is filled in below */
1431 { 0x1f, 0x411111f0 }, /* N/A */
1435 [ALC880_FIXUP_6ST] = {
1436 .type = HDA_FIXUP_PINS,
1437 .v.pins = (const struct hda_pintbl[]) {
1438 { 0x1e, 0x411111f0 }, /* N/A */
1442 .chain_id = ALC880_FIXUP_6ST_BASE,
1444 [ALC880_FIXUP_6ST_DIG] = {
1445 .type = HDA_FIXUP_PINS,
1446 .v.pins = (const struct hda_pintbl[]) {
1447 { 0x1e, 0x0144111e }, /* SPDIF */
1451 .chain_id = ALC880_FIXUP_6ST_BASE,
1453 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1454 .type = HDA_FIXUP_PINS,
1455 .v.pins = (const struct hda_pintbl[]) {
1456 { 0x1b, 0x0121401f }, /* HP with jack detect */
1459 .chained_before = true,
1460 .chain_id = ALC880_FIXUP_6ST_BASE,
1464 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1465 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1466 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1467 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1468 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1469 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1470 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1471 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1472 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1473 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1474 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1475 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1476 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1477 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1478 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1479 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1480 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1481 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1482 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1483 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1484 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1485 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1486 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1487 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1489 /* Below is the copied entries from alc880_quirks.c.
1490 * It's not quite sure whether BIOS sets the correct pin-config table
1491 * on these machines, thus they are kept to be compatible with
1492 * the old static quirks. Once when it's confirmed to work without
1493 * these overrides, it'd be better to remove.
1495 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1496 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1497 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1498 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1499 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1500 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1501 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1502 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1503 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1504 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1505 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1506 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1507 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1508 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1509 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1510 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1511 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1512 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1513 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1514 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1515 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1516 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1517 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1518 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1519 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1520 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1521 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1522 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1523 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1524 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1525 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1526 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1527 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1529 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1530 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1531 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1535 static const struct hda_model_fixup alc880_fixup_models[] = {
1536 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1537 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1538 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1539 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1540 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1541 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1542 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1548 * OK, here we have finally the patch for ALC880
1550 static int patch_alc880(struct hda_codec *codec)
1552 struct alc_spec *spec;
1555 err = alc_alloc_spec(codec, 0x0b);
1560 spec->gen.need_dac_fix = 1;
1561 spec->gen.beep_nid = 0x01;
1563 codec->patch_ops.unsol_event = alc880_unsol_event;
1565 alc_pre_init(codec);
1567 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1569 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1571 /* automatic parse from the BIOS config */
1572 err = alc880_parse_auto_config(codec);
1576 if (!spec->gen.no_analog) {
1577 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1582 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1595 static int alc260_parse_auto_config(struct hda_codec *codec)
1597 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1598 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1599 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1606 ALC260_FIXUP_HP_DC5750,
1607 ALC260_FIXUP_HP_PIN_0F,
1610 ALC260_FIXUP_GPIO1_TOGGLE,
1611 ALC260_FIXUP_REPLACER,
1612 ALC260_FIXUP_HP_B1900,
1614 ALC260_FIXUP_FSC_S7020,
1615 ALC260_FIXUP_FSC_S7020_JWSE,
1616 ALC260_FIXUP_VAIO_PINS,
1619 static void alc260_gpio1_automute(struct hda_codec *codec)
1621 struct alc_spec *spec = codec->spec;
1623 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1626 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1627 const struct hda_fixup *fix, int action)
1629 struct alc_spec *spec = codec->spec;
1630 if (action == HDA_FIXUP_ACT_PROBE) {
1631 /* although the machine has only one output pin, we need to
1632 * toggle GPIO1 according to the jack state
1634 spec->gen.automute_hook = alc260_gpio1_automute;
1635 spec->gen.detect_hp = 1;
1636 spec->gen.automute_speaker = 1;
1637 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1638 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1639 snd_hda_gen_hp_automute);
1640 alc_setup_gpio(codec, 0x01);
1644 static void alc260_fixup_kn1(struct hda_codec *codec,
1645 const struct hda_fixup *fix, int action)
1647 struct alc_spec *spec = codec->spec;
1648 static const struct hda_pintbl pincfgs[] = {
1649 { 0x0f, 0x02214000 }, /* HP/speaker */
1650 { 0x12, 0x90a60160 }, /* int mic */
1651 { 0x13, 0x02a19000 }, /* ext mic */
1652 { 0x18, 0x01446000 }, /* SPDIF out */
1653 /* disable bogus I/O pins */
1654 { 0x10, 0x411111f0 },
1655 { 0x11, 0x411111f0 },
1656 { 0x14, 0x411111f0 },
1657 { 0x15, 0x411111f0 },
1658 { 0x16, 0x411111f0 },
1659 { 0x17, 0x411111f0 },
1660 { 0x19, 0x411111f0 },
1665 case HDA_FIXUP_ACT_PRE_PROBE:
1666 snd_hda_apply_pincfgs(codec, pincfgs);
1667 spec->init_amp = ALC_INIT_NONE;
1672 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1673 const struct hda_fixup *fix, int action)
1675 struct alc_spec *spec = codec->spec;
1676 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1677 spec->init_amp = ALC_INIT_NONE;
1680 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1681 const struct hda_fixup *fix, int action)
1683 struct alc_spec *spec = codec->spec;
1684 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1685 spec->gen.add_jack_modes = 1;
1686 spec->gen.hp_mic = 1;
1690 static const struct hda_fixup alc260_fixups[] = {
1691 [ALC260_FIXUP_HP_DC5750] = {
1692 .type = HDA_FIXUP_PINS,
1693 .v.pins = (const struct hda_pintbl[]) {
1694 { 0x11, 0x90130110 }, /* speaker */
1698 [ALC260_FIXUP_HP_PIN_0F] = {
1699 .type = HDA_FIXUP_PINS,
1700 .v.pins = (const struct hda_pintbl[]) {
1701 { 0x0f, 0x01214000 }, /* HP */
1705 [ALC260_FIXUP_COEF] = {
1706 .type = HDA_FIXUP_VERBS,
1707 .v.verbs = (const struct hda_verb[]) {
1708 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1709 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1713 [ALC260_FIXUP_GPIO1] = {
1714 .type = HDA_FIXUP_FUNC,
1715 .v.func = alc_fixup_gpio1,
1717 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1718 .type = HDA_FIXUP_FUNC,
1719 .v.func = alc260_fixup_gpio1_toggle,
1721 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1723 [ALC260_FIXUP_REPLACER] = {
1724 .type = HDA_FIXUP_VERBS,
1725 .v.verbs = (const struct hda_verb[]) {
1726 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1727 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1731 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1733 [ALC260_FIXUP_HP_B1900] = {
1734 .type = HDA_FIXUP_FUNC,
1735 .v.func = alc260_fixup_gpio1_toggle,
1737 .chain_id = ALC260_FIXUP_COEF,
1739 [ALC260_FIXUP_KN1] = {
1740 .type = HDA_FIXUP_FUNC,
1741 .v.func = alc260_fixup_kn1,
1743 [ALC260_FIXUP_FSC_S7020] = {
1744 .type = HDA_FIXUP_FUNC,
1745 .v.func = alc260_fixup_fsc_s7020,
1747 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1748 .type = HDA_FIXUP_FUNC,
1749 .v.func = alc260_fixup_fsc_s7020_jwse,
1751 .chain_id = ALC260_FIXUP_FSC_S7020,
1753 [ALC260_FIXUP_VAIO_PINS] = {
1754 .type = HDA_FIXUP_PINS,
1755 .v.pins = (const struct hda_pintbl[]) {
1756 /* Pin configs are missing completely on some VAIOs */
1757 { 0x0f, 0x01211020 },
1758 { 0x10, 0x0001003f },
1759 { 0x11, 0x411111f0 },
1760 { 0x12, 0x01a15930 },
1761 { 0x13, 0x411111f0 },
1762 { 0x14, 0x411111f0 },
1763 { 0x15, 0x411111f0 },
1764 { 0x16, 0x411111f0 },
1765 { 0x17, 0x411111f0 },
1766 { 0x18, 0x411111f0 },
1767 { 0x19, 0x411111f0 },
1773 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1774 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1775 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1776 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1777 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1778 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1779 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1780 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1781 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1782 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1783 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1784 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1785 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1789 static const struct hda_model_fixup alc260_fixup_models[] = {
1790 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1791 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1792 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1793 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1799 static int patch_alc260(struct hda_codec *codec)
1801 struct alc_spec *spec;
1804 err = alc_alloc_spec(codec, 0x07);
1809 /* as quite a few machines require HP amp for speaker outputs,
1810 * it's easier to enable it unconditionally; even if it's unneeded,
1811 * it's almost harmless.
1813 spec->gen.prefer_hp_amp = 1;
1814 spec->gen.beep_nid = 0x01;
1816 spec->shutup = alc_eapd_shutup;
1818 alc_pre_init(codec);
1820 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1822 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1824 /* automatic parse from the BIOS config */
1825 err = alc260_parse_auto_config(codec);
1829 if (!spec->gen.no_analog) {
1830 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1835 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1846 * ALC882/883/885/888/889 support
1848 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1849 * configuration. Each pin widget can choose any input DACs and a mixer.
1850 * Each ADC is connected from a mixer of all inputs. This makes possible
1851 * 6-channel independent captures.
1853 * In addition, an independent DAC for the multi-playback (not used in this
1861 ALC882_FIXUP_ABIT_AW9D_MAX,
1862 ALC882_FIXUP_LENOVO_Y530,
1863 ALC882_FIXUP_PB_M5210,
1864 ALC882_FIXUP_ACER_ASPIRE_7736,
1865 ALC882_FIXUP_ASUS_W90V,
1867 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1868 ALC889_FIXUP_VAIO_TT,
1869 ALC888_FIXUP_EEE1601,
1872 ALC883_FIXUP_ACER_EAPD,
1877 ALC882_FIXUP_ASUS_W2JC,
1878 ALC882_FIXUP_ACER_ASPIRE_4930G,
1879 ALC882_FIXUP_ACER_ASPIRE_8930G,
1880 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1881 ALC885_FIXUP_MACPRO_GPIO,
1882 ALC889_FIXUP_DAC_ROUTE,
1883 ALC889_FIXUP_MBP_VREF,
1884 ALC889_FIXUP_IMAC91_VREF,
1885 ALC889_FIXUP_MBA11_VREF,
1886 ALC889_FIXUP_MBA21_VREF,
1887 ALC889_FIXUP_MP11_VREF,
1888 ALC889_FIXUP_MP41_VREF,
1889 ALC882_FIXUP_INV_DMIC,
1890 ALC882_FIXUP_NO_PRIMARY_HP,
1891 ALC887_FIXUP_ASUS_BASS,
1892 ALC887_FIXUP_BASS_CHMAP,
1893 ALC1220_FIXUP_GB_DUAL_CODECS,
1894 ALC1220_FIXUP_CLEVO_P950,
1895 ALC1220_FIXUP_CLEVO_PB51ED,
1896 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1899 static void alc889_fixup_coef(struct hda_codec *codec,
1900 const struct hda_fixup *fix, int action)
1902 if (action != HDA_FIXUP_ACT_INIT)
1904 alc_update_coef_idx(codec, 7, 0, 0x2030);
1907 /* set up GPIO at initialization */
1908 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1909 const struct hda_fixup *fix, int action)
1911 struct alc_spec *spec = codec->spec;
1913 spec->gpio_write_delay = true;
1914 alc_fixup_gpio3(codec, fix, action);
1917 /* Fix the connection of some pins for ALC889:
1918 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1919 * work correctly (bko#42740)
1921 static void alc889_fixup_dac_route(struct hda_codec *codec,
1922 const struct hda_fixup *fix, int action)
1924 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1925 /* fake the connections during parsing the tree */
1926 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1927 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1928 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1929 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1930 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1931 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1932 } else if (action == HDA_FIXUP_ACT_PROBE) {
1933 /* restore the connections */
1934 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1935 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1936 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1937 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1938 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1942 /* Set VREF on HP pin */
1943 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1944 const struct hda_fixup *fix, int action)
1946 struct alc_spec *spec = codec->spec;
1947 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
1950 if (action != HDA_FIXUP_ACT_INIT)
1952 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1953 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1954 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1956 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1957 val |= AC_PINCTL_VREF_80;
1958 snd_hda_set_pin_ctl(codec, nids[i], val);
1959 spec->gen.keep_vref_in_automute = 1;
1964 static void alc889_fixup_mac_pins(struct hda_codec *codec,
1965 const hda_nid_t *nids, int num_nids)
1967 struct alc_spec *spec = codec->spec;
1970 for (i = 0; i < num_nids; i++) {
1972 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1973 val |= AC_PINCTL_VREF_50;
1974 snd_hda_set_pin_ctl(codec, nids[i], val);
1976 spec->gen.keep_vref_in_automute = 1;
1979 /* Set VREF on speaker pins on imac91 */
1980 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1981 const struct hda_fixup *fix, int action)
1983 static hda_nid_t nids[2] = { 0x18, 0x1a };
1985 if (action == HDA_FIXUP_ACT_INIT)
1986 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1989 /* Set VREF on speaker pins on mba11 */
1990 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
1991 const struct hda_fixup *fix, int action)
1993 static hda_nid_t nids[1] = { 0x18 };
1995 if (action == HDA_FIXUP_ACT_INIT)
1996 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1999 /* Set VREF on speaker pins on mba21 */
2000 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2001 const struct hda_fixup *fix, int action)
2003 static hda_nid_t nids[2] = { 0x18, 0x19 };
2005 if (action == HDA_FIXUP_ACT_INIT)
2006 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2009 /* Don't take HP output as primary
2010 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2011 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2013 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2014 const struct hda_fixup *fix, int action)
2016 struct alc_spec *spec = codec->spec;
2017 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2018 spec->gen.no_primary_hp = 1;
2019 spec->gen.no_multi_io = 1;
2023 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2024 const struct hda_fixup *fix, int action);
2026 /* For dual-codec configuration, we need to disable some features to avoid
2027 * conflicts of kctls and PCM streams
2029 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2030 const struct hda_fixup *fix, int action)
2032 struct alc_spec *spec = codec->spec;
2034 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2036 /* disable vmaster */
2037 spec->gen.suppress_vmaster = 1;
2038 /* auto-mute and auto-mic switch don't work with multiple codecs */
2039 spec->gen.suppress_auto_mute = 1;
2040 spec->gen.suppress_auto_mic = 1;
2041 /* disable aamix as well */
2042 spec->gen.mixer_nid = 0;
2043 /* add location prefix to avoid conflicts */
2044 codec->force_pin_prefix = 1;
2047 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2048 const char *newname)
2050 struct snd_kcontrol *kctl;
2052 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2054 strcpy(kctl->id.name, newname);
2057 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2058 const struct hda_fixup *fix,
2061 alc_fixup_dual_codecs(codec, fix, action);
2063 case HDA_FIXUP_ACT_PRE_PROBE:
2064 /* override card longname to provide a unique UCM profile */
2065 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2067 case HDA_FIXUP_ACT_BUILD:
2068 /* rename Capture controls depending on the codec */
2069 rename_ctl(codec, "Capture Volume",
2071 "Rear-Panel Capture Volume" :
2072 "Front-Panel Capture Volume");
2073 rename_ctl(codec, "Capture Switch",
2075 "Rear-Panel Capture Switch" :
2076 "Front-Panel Capture Switch");
2081 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2082 const struct hda_fixup *fix,
2085 hda_nid_t conn1[1] = { 0x0c };
2087 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2090 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2091 /* We therefore want to make sure 0x14 (front headphone) and
2092 * 0x1b (speakers) use the stereo DAC 0x02
2094 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
2095 snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
2098 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2099 const struct hda_fixup *fix, int action);
2101 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2102 const struct hda_fixup *fix,
2105 alc1220_fixup_clevo_p950(codec, fix, action);
2106 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2109 static const struct hda_fixup alc882_fixups[] = {
2110 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2111 .type = HDA_FIXUP_PINS,
2112 .v.pins = (const struct hda_pintbl[]) {
2113 { 0x15, 0x01080104 }, /* side */
2114 { 0x16, 0x01011012 }, /* rear */
2115 { 0x17, 0x01016011 }, /* clfe */
2119 [ALC882_FIXUP_LENOVO_Y530] = {
2120 .type = HDA_FIXUP_PINS,
2121 .v.pins = (const struct hda_pintbl[]) {
2122 { 0x15, 0x99130112 }, /* rear int speakers */
2123 { 0x16, 0x99130111 }, /* subwoofer */
2127 [ALC882_FIXUP_PB_M5210] = {
2128 .type = HDA_FIXUP_PINCTLS,
2129 .v.pins = (const struct hda_pintbl[]) {
2130 { 0x19, PIN_VREF50 },
2134 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2135 .type = HDA_FIXUP_FUNC,
2136 .v.func = alc_fixup_sku_ignore,
2138 [ALC882_FIXUP_ASUS_W90V] = {
2139 .type = HDA_FIXUP_PINS,
2140 .v.pins = (const struct hda_pintbl[]) {
2141 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2145 [ALC889_FIXUP_CD] = {
2146 .type = HDA_FIXUP_PINS,
2147 .v.pins = (const struct hda_pintbl[]) {
2148 { 0x1c, 0x993301f0 }, /* CD */
2152 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2153 .type = HDA_FIXUP_PINS,
2154 .v.pins = (const struct hda_pintbl[]) {
2155 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2159 .chain_id = ALC889_FIXUP_CD,
2161 [ALC889_FIXUP_VAIO_TT] = {
2162 .type = HDA_FIXUP_PINS,
2163 .v.pins = (const struct hda_pintbl[]) {
2164 { 0x17, 0x90170111 }, /* hidden surround speaker */
2168 [ALC888_FIXUP_EEE1601] = {
2169 .type = HDA_FIXUP_VERBS,
2170 .v.verbs = (const struct hda_verb[]) {
2171 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2172 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2176 [ALC882_FIXUP_EAPD] = {
2177 .type = HDA_FIXUP_VERBS,
2178 .v.verbs = (const struct hda_verb[]) {
2179 /* change to EAPD mode */
2180 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2181 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2185 [ALC883_FIXUP_EAPD] = {
2186 .type = HDA_FIXUP_VERBS,
2187 .v.verbs = (const struct hda_verb[]) {
2188 /* change to EAPD mode */
2189 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2190 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2194 [ALC883_FIXUP_ACER_EAPD] = {
2195 .type = HDA_FIXUP_VERBS,
2196 .v.verbs = (const struct hda_verb[]) {
2197 /* eanable EAPD on Acer laptops */
2198 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2199 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2203 [ALC882_FIXUP_GPIO1] = {
2204 .type = HDA_FIXUP_FUNC,
2205 .v.func = alc_fixup_gpio1,
2207 [ALC882_FIXUP_GPIO2] = {
2208 .type = HDA_FIXUP_FUNC,
2209 .v.func = alc_fixup_gpio2,
2211 [ALC882_FIXUP_GPIO3] = {
2212 .type = HDA_FIXUP_FUNC,
2213 .v.func = alc_fixup_gpio3,
2215 [ALC882_FIXUP_ASUS_W2JC] = {
2216 .type = HDA_FIXUP_FUNC,
2217 .v.func = alc_fixup_gpio1,
2219 .chain_id = ALC882_FIXUP_EAPD,
2221 [ALC889_FIXUP_COEF] = {
2222 .type = HDA_FIXUP_FUNC,
2223 .v.func = alc889_fixup_coef,
2225 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2226 .type = HDA_FIXUP_PINS,
2227 .v.pins = (const struct hda_pintbl[]) {
2228 { 0x16, 0x99130111 }, /* CLFE speaker */
2229 { 0x17, 0x99130112 }, /* surround speaker */
2233 .chain_id = ALC882_FIXUP_GPIO1,
2235 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2236 .type = HDA_FIXUP_PINS,
2237 .v.pins = (const struct hda_pintbl[]) {
2238 { 0x16, 0x99130111 }, /* CLFE speaker */
2239 { 0x1b, 0x99130112 }, /* surround speaker */
2243 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2245 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2246 /* additional init verbs for Acer Aspire 8930G */
2247 .type = HDA_FIXUP_VERBS,
2248 .v.verbs = (const struct hda_verb[]) {
2249 /* Enable all DACs */
2250 /* DAC DISABLE/MUTE 1? */
2251 /* setting bits 1-5 disables DAC nids 0x02-0x06
2252 * apparently. Init=0x38 */
2253 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2254 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2255 /* DAC DISABLE/MUTE 2? */
2256 /* some bit here disables the other DACs.
2258 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2259 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2261 * This laptop has a stereo digital microphone.
2262 * The mics are only 1cm apart which makes the stereo
2263 * useless. However, either the mic or the ALC889
2264 * makes the signal become a difference/sum signal
2265 * instead of standard stereo, which is annoying.
2266 * So instead we flip this bit which makes the
2267 * codec replicate the sum signal to both channels,
2268 * turning it into a normal mono mic.
2270 /* DMIC_CONTROL? Init value = 0x0001 */
2271 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2272 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2273 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2274 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2278 .chain_id = ALC882_FIXUP_GPIO1,
2280 [ALC885_FIXUP_MACPRO_GPIO] = {
2281 .type = HDA_FIXUP_FUNC,
2282 .v.func = alc885_fixup_macpro_gpio,
2284 [ALC889_FIXUP_DAC_ROUTE] = {
2285 .type = HDA_FIXUP_FUNC,
2286 .v.func = alc889_fixup_dac_route,
2288 [ALC889_FIXUP_MBP_VREF] = {
2289 .type = HDA_FIXUP_FUNC,
2290 .v.func = alc889_fixup_mbp_vref,
2292 .chain_id = ALC882_FIXUP_GPIO1,
2294 [ALC889_FIXUP_IMAC91_VREF] = {
2295 .type = HDA_FIXUP_FUNC,
2296 .v.func = alc889_fixup_imac91_vref,
2298 .chain_id = ALC882_FIXUP_GPIO1,
2300 [ALC889_FIXUP_MBA11_VREF] = {
2301 .type = HDA_FIXUP_FUNC,
2302 .v.func = alc889_fixup_mba11_vref,
2304 .chain_id = ALC889_FIXUP_MBP_VREF,
2306 [ALC889_FIXUP_MBA21_VREF] = {
2307 .type = HDA_FIXUP_FUNC,
2308 .v.func = alc889_fixup_mba21_vref,
2310 .chain_id = ALC889_FIXUP_MBP_VREF,
2312 [ALC889_FIXUP_MP11_VREF] = {
2313 .type = HDA_FIXUP_FUNC,
2314 .v.func = alc889_fixup_mba11_vref,
2316 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2318 [ALC889_FIXUP_MP41_VREF] = {
2319 .type = HDA_FIXUP_FUNC,
2320 .v.func = alc889_fixup_mbp_vref,
2322 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2324 [ALC882_FIXUP_INV_DMIC] = {
2325 .type = HDA_FIXUP_FUNC,
2326 .v.func = alc_fixup_inv_dmic,
2328 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2329 .type = HDA_FIXUP_FUNC,
2330 .v.func = alc882_fixup_no_primary_hp,
2332 [ALC887_FIXUP_ASUS_BASS] = {
2333 .type = HDA_FIXUP_PINS,
2334 .v.pins = (const struct hda_pintbl[]) {
2335 {0x16, 0x99130130}, /* bass speaker */
2339 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2341 [ALC887_FIXUP_BASS_CHMAP] = {
2342 .type = HDA_FIXUP_FUNC,
2343 .v.func = alc_fixup_bass_chmap,
2345 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2346 .type = HDA_FIXUP_FUNC,
2347 .v.func = alc1220_fixup_gb_dual_codecs,
2349 [ALC1220_FIXUP_CLEVO_P950] = {
2350 .type = HDA_FIXUP_FUNC,
2351 .v.func = alc1220_fixup_clevo_p950,
2353 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2354 .type = HDA_FIXUP_FUNC,
2355 .v.func = alc1220_fixup_clevo_pb51ed,
2357 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2358 .type = HDA_FIXUP_PINS,
2359 .v.pins = (const struct hda_pintbl[]) {
2360 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2364 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2368 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2369 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2370 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2371 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2372 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2373 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2374 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2375 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2376 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2377 ALC882_FIXUP_ACER_ASPIRE_4930G),
2378 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2379 ALC882_FIXUP_ACER_ASPIRE_4930G),
2380 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2381 ALC882_FIXUP_ACER_ASPIRE_8930G),
2382 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2383 ALC882_FIXUP_ACER_ASPIRE_8930G),
2384 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2385 ALC882_FIXUP_ACER_ASPIRE_4930G),
2386 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2387 ALC882_FIXUP_ACER_ASPIRE_4930G),
2388 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2389 ALC882_FIXUP_ACER_ASPIRE_4930G),
2390 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2391 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2392 ALC882_FIXUP_ACER_ASPIRE_4930G),
2393 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2394 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2395 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2396 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2397 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2398 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2399 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2400 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2401 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2402 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2403 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2404 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2405 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2406 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2408 /* All Apple entries are in codec SSIDs */
2409 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2410 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2411 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2412 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2413 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2414 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2415 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2416 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2417 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2418 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2419 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2420 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2421 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2422 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2423 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2424 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2425 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2426 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2427 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2428 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2429 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2430 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2432 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2433 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2434 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2435 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2436 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2437 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2438 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2439 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2440 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2441 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2442 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2443 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2444 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2445 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2446 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2447 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2448 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2449 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2453 static const struct hda_model_fixup alc882_fixup_models[] = {
2454 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2455 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2456 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2457 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2458 {.id = ALC889_FIXUP_CD, .name = "cd"},
2459 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2460 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2461 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2462 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2463 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2464 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2465 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2466 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2467 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2468 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2469 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2470 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2471 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2472 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2473 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2474 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2475 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2476 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2477 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2478 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2479 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2480 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2481 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2482 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2483 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2484 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2489 * BIOS auto configuration
2491 /* almost identical with ALC880 parser... */
2492 static int alc882_parse_auto_config(struct hda_codec *codec)
2494 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2495 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2496 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2501 static int patch_alc882(struct hda_codec *codec)
2503 struct alc_spec *spec;
2506 err = alc_alloc_spec(codec, 0x0b);
2512 switch (codec->core.vendor_id) {
2519 /* ALC883 and variants */
2520 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2524 alc_pre_init(codec);
2526 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2528 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2530 alc_auto_parse_customize_define(codec);
2532 if (has_cdefine_beep(codec))
2533 spec->gen.beep_nid = 0x01;
2535 /* automatic parse from the BIOS config */
2536 err = alc882_parse_auto_config(codec);
2540 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2541 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2546 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2559 static int alc262_parse_auto_config(struct hda_codec *codec)
2561 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2562 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2563 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2570 ALC262_FIXUP_FSC_H270,
2571 ALC262_FIXUP_FSC_S7110,
2572 ALC262_FIXUP_HP_Z200,
2574 ALC262_FIXUP_LENOVO_3000,
2576 ALC262_FIXUP_BENQ_T31,
2577 ALC262_FIXUP_INV_DMIC,
2578 ALC262_FIXUP_INTEL_BAYLEYBAY,
2581 static const struct hda_fixup alc262_fixups[] = {
2582 [ALC262_FIXUP_FSC_H270] = {
2583 .type = HDA_FIXUP_PINS,
2584 .v.pins = (const struct hda_pintbl[]) {
2585 { 0x14, 0x99130110 }, /* speaker */
2586 { 0x15, 0x0221142f }, /* front HP */
2587 { 0x1b, 0x0121141f }, /* rear HP */
2591 [ALC262_FIXUP_FSC_S7110] = {
2592 .type = HDA_FIXUP_PINS,
2593 .v.pins = (const struct hda_pintbl[]) {
2594 { 0x15, 0x90170110 }, /* speaker */
2598 .chain_id = ALC262_FIXUP_BENQ,
2600 [ALC262_FIXUP_HP_Z200] = {
2601 .type = HDA_FIXUP_PINS,
2602 .v.pins = (const struct hda_pintbl[]) {
2603 { 0x16, 0x99130120 }, /* internal speaker */
2607 [ALC262_FIXUP_TYAN] = {
2608 .type = HDA_FIXUP_PINS,
2609 .v.pins = (const struct hda_pintbl[]) {
2610 { 0x14, 0x1993e1f0 }, /* int AUX */
2614 [ALC262_FIXUP_LENOVO_3000] = {
2615 .type = HDA_FIXUP_PINCTLS,
2616 .v.pins = (const struct hda_pintbl[]) {
2617 { 0x19, PIN_VREF50 },
2621 .chain_id = ALC262_FIXUP_BENQ,
2623 [ALC262_FIXUP_BENQ] = {
2624 .type = HDA_FIXUP_VERBS,
2625 .v.verbs = (const struct hda_verb[]) {
2626 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2627 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2631 [ALC262_FIXUP_BENQ_T31] = {
2632 .type = HDA_FIXUP_VERBS,
2633 .v.verbs = (const struct hda_verb[]) {
2634 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2635 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2639 [ALC262_FIXUP_INV_DMIC] = {
2640 .type = HDA_FIXUP_FUNC,
2641 .v.func = alc_fixup_inv_dmic,
2643 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2644 .type = HDA_FIXUP_FUNC,
2645 .v.func = alc_fixup_no_depop_delay,
2649 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2650 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2651 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2652 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2653 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2654 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2655 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2656 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2657 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2658 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2659 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2663 static const struct hda_model_fixup alc262_fixup_models[] = {
2664 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2665 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2666 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2667 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2668 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2669 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2670 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2671 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2672 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2678 static int patch_alc262(struct hda_codec *codec)
2680 struct alc_spec *spec;
2683 err = alc_alloc_spec(codec, 0x0b);
2688 spec->gen.shared_mic_vref_pin = 0x18;
2690 spec->shutup = alc_eapd_shutup;
2693 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2696 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2698 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2700 alc_pre_init(codec);
2702 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2704 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2706 alc_auto_parse_customize_define(codec);
2708 if (has_cdefine_beep(codec))
2709 spec->gen.beep_nid = 0x01;
2711 /* automatic parse from the BIOS config */
2712 err = alc262_parse_auto_config(codec);
2716 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2717 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2722 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2734 /* bind Beep switches of both NID 0x0f and 0x10 */
2735 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2736 struct snd_ctl_elem_value *ucontrol)
2738 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2742 mutex_lock(&codec->control_mutex);
2743 pval = kcontrol->private_value;
2744 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2745 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2747 kcontrol->private_value = (pval & ~0xff) | 0x10;
2748 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2750 kcontrol->private_value = pval;
2751 mutex_unlock(&codec->control_mutex);
2755 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2756 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2758 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2759 .name = "Beep Playback Switch",
2760 .subdevice = HDA_SUBDEV_AMP_FLAG,
2761 .info = snd_hda_mixer_amp_switch_info,
2762 .get = snd_hda_mixer_amp_switch_get,
2763 .put = alc268_beep_switch_put,
2764 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2768 /* set PCBEEP vol = 0, mute connections */
2769 static const struct hda_verb alc268_beep_init_verbs[] = {
2770 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2771 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2772 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2777 ALC268_FIXUP_INV_DMIC,
2778 ALC268_FIXUP_HP_EAPD,
2782 static const struct hda_fixup alc268_fixups[] = {
2783 [ALC268_FIXUP_INV_DMIC] = {
2784 .type = HDA_FIXUP_FUNC,
2785 .v.func = alc_fixup_inv_dmic,
2787 [ALC268_FIXUP_HP_EAPD] = {
2788 .type = HDA_FIXUP_VERBS,
2789 .v.verbs = (const struct hda_verb[]) {
2790 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2794 [ALC268_FIXUP_SPDIF] = {
2795 .type = HDA_FIXUP_PINS,
2796 .v.pins = (const struct hda_pintbl[]) {
2797 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2803 static const struct hda_model_fixup alc268_fixup_models[] = {
2804 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2805 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2806 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
2810 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2811 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2812 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2813 /* below is codec SSID since multiple Toshiba laptops have the
2814 * same PCI SSID 1179:ff00
2816 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2821 * BIOS auto configuration
2823 static int alc268_parse_auto_config(struct hda_codec *codec)
2825 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2826 return alc_parse_auto_config(codec, NULL, alc268_ssids);
2831 static int patch_alc268(struct hda_codec *codec)
2833 struct alc_spec *spec;
2836 /* ALC268 has no aa-loopback mixer */
2837 err = alc_alloc_spec(codec, 0);
2842 spec->gen.beep_nid = 0x01;
2844 spec->shutup = alc_eapd_shutup;
2846 alc_pre_init(codec);
2848 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2849 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2851 /* automatic parse from the BIOS config */
2852 err = alc268_parse_auto_config(codec);
2856 if (err > 0 && !spec->gen.no_analog &&
2857 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2858 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
2859 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
2860 &alc268_beep_mixer[i])) {
2865 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2866 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2867 /* override the amp caps for beep generator */
2868 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2869 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2870 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2871 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2872 (0 << AC_AMPCAP_MUTE_SHIFT));
2875 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2888 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2889 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2892 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2893 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2896 /* different alc269-variants */
2898 ALC269_TYPE_ALC269VA,
2899 ALC269_TYPE_ALC269VB,
2900 ALC269_TYPE_ALC269VC,
2901 ALC269_TYPE_ALC269VD,
2920 * BIOS auto configuration
2922 static int alc269_parse_auto_config(struct hda_codec *codec)
2924 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2925 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2926 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2927 struct alc_spec *spec = codec->spec;
2928 const hda_nid_t *ssids;
2930 switch (spec->codec_variant) {
2931 case ALC269_TYPE_ALC269VA:
2932 case ALC269_TYPE_ALC269VC:
2933 case ALC269_TYPE_ALC280:
2934 case ALC269_TYPE_ALC284:
2935 case ALC269_TYPE_ALC293:
2936 ssids = alc269va_ssids;
2938 case ALC269_TYPE_ALC269VB:
2939 case ALC269_TYPE_ALC269VD:
2940 case ALC269_TYPE_ALC282:
2941 case ALC269_TYPE_ALC283:
2942 case ALC269_TYPE_ALC286:
2943 case ALC269_TYPE_ALC298:
2944 case ALC269_TYPE_ALC255:
2945 case ALC269_TYPE_ALC256:
2946 case ALC269_TYPE_ALC257:
2947 case ALC269_TYPE_ALC215:
2948 case ALC269_TYPE_ALC225:
2949 case ALC269_TYPE_ALC294:
2950 case ALC269_TYPE_ALC300:
2951 case ALC269_TYPE_ALC700:
2952 ssids = alc269_ssids;
2955 ssids = alc269_ssids;
2959 return alc_parse_auto_config(codec, alc269_ignore, ssids);
2962 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2964 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
2967 static void alc269_shutup(struct hda_codec *codec)
2969 struct alc_spec *spec = codec->spec;
2971 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2972 alc269vb_toggle_power_output(codec, 0);
2973 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2974 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2977 alc_shutup_pins(codec);
2980 static struct coef_fw alc282_coefs[] = {
2981 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2982 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2983 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2984 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2985 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2986 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2987 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2988 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
2989 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2990 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2991 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
2992 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
2993 WRITE_COEF(0x34, 0xa0c0), /* ANC */
2994 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
2995 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2996 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2997 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2998 WRITE_COEF(0x63, 0x2902), /* PLL */
2999 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3000 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3001 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3002 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3003 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3004 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3005 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3006 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3007 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3008 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3009 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3013 static void alc282_restore_default_value(struct hda_codec *codec)
3015 alc_process_coef_fw(codec, alc282_coefs);
3018 static void alc282_init(struct hda_codec *codec)
3020 struct alc_spec *spec = codec->spec;
3021 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3025 alc282_restore_default_value(codec);
3029 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3030 coef78 = alc_read_coef_idx(codec, 0x78);
3032 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3033 /* Headphone capless set to high power mode */
3034 alc_write_coef_idx(codec, 0x78, 0x9004);
3039 snd_hda_codec_write(codec, hp_pin, 0,
3040 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3045 snd_hda_codec_write(codec, hp_pin, 0,
3046 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3051 /* Headphone capless set to normal mode */
3052 alc_write_coef_idx(codec, 0x78, coef78);
3055 static void alc282_shutup(struct hda_codec *codec)
3057 struct alc_spec *spec = codec->spec;
3058 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3063 alc269_shutup(codec);
3067 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3068 coef78 = alc_read_coef_idx(codec, 0x78);
3069 alc_write_coef_idx(codec, 0x78, 0x9004);
3074 snd_hda_codec_write(codec, hp_pin, 0,
3075 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3080 if (!spec->no_shutup_pins)
3081 snd_hda_codec_write(codec, hp_pin, 0,
3082 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3087 alc_auto_setup_eapd(codec, false);
3088 alc_shutup_pins(codec);
3089 alc_write_coef_idx(codec, 0x78, coef78);
3092 static struct coef_fw alc283_coefs[] = {
3093 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3094 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3095 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3096 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3097 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3098 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3099 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3100 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3101 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3102 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3103 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3104 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3105 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3106 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3107 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3108 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3109 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3110 WRITE_COEF(0x2e, 0x2902), /* PLL */
3111 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3112 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3113 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3114 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3115 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3116 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3117 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3118 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3119 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3120 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3121 WRITE_COEF(0x49, 0x0), /* test mode */
3122 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3123 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3124 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3125 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3129 static void alc283_restore_default_value(struct hda_codec *codec)
3131 alc_process_coef_fw(codec, alc283_coefs);
3134 static void alc283_init(struct hda_codec *codec)
3136 struct alc_spec *spec = codec->spec;
3137 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3140 alc283_restore_default_value(codec);
3146 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3148 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3149 /* Headphone capless set to high power mode */
3150 alc_write_coef_idx(codec, 0x43, 0x9004);
3152 snd_hda_codec_write(codec, hp_pin, 0,
3153 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3158 snd_hda_codec_write(codec, hp_pin, 0,
3159 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3163 /* Index 0x46 Combo jack auto switch control 2 */
3164 /* 3k pull low control for Headset jack. */
3165 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3166 /* Headphone capless set to normal mode */
3167 alc_write_coef_idx(codec, 0x43, 0x9614);
3170 static void alc283_shutup(struct hda_codec *codec)
3172 struct alc_spec *spec = codec->spec;
3173 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3177 alc269_shutup(codec);
3181 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3183 alc_write_coef_idx(codec, 0x43, 0x9004);
3185 /*depop hp during suspend*/
3186 alc_write_coef_idx(codec, 0x06, 0x2100);
3188 snd_hda_codec_write(codec, hp_pin, 0,
3189 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3194 if (!spec->no_shutup_pins)
3195 snd_hda_codec_write(codec, hp_pin, 0,
3196 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3198 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3202 alc_auto_setup_eapd(codec, false);
3203 alc_shutup_pins(codec);
3204 alc_write_coef_idx(codec, 0x43, 0x9614);
3207 static void alc256_init(struct hda_codec *codec)
3209 struct alc_spec *spec = codec->spec;
3210 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3218 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3223 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3224 if (spec->ultra_low_power) {
3225 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3226 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3227 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3228 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3229 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3233 snd_hda_codec_write(codec, hp_pin, 0,
3234 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3236 if (hp_pin_sense || spec->ultra_low_power)
3239 snd_hda_codec_write(codec, hp_pin, 0,
3240 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3242 if (hp_pin_sense || spec->ultra_low_power)
3245 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3246 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3247 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3248 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3249 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
3252 static void alc256_shutup(struct hda_codec *codec)
3254 struct alc_spec *spec = codec->spec;
3255 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3261 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3266 snd_hda_codec_write(codec, hp_pin, 0,
3267 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3269 if (hp_pin_sense || spec->ultra_low_power)
3272 /* 3k pull low control for Headset jack. */
3273 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3274 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3276 if (!spec->no_shutup_pins)
3277 snd_hda_codec_write(codec, hp_pin, 0,
3278 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3280 if (hp_pin_sense || spec->ultra_low_power)
3283 alc_auto_setup_eapd(codec, false);
3284 alc_shutup_pins(codec);
3285 if (spec->ultra_low_power) {
3287 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3288 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3289 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3290 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3291 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3296 static void alc225_init(struct hda_codec *codec)
3298 struct alc_spec *spec = codec->spec;
3299 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3300 bool hp1_pin_sense, hp2_pin_sense;
3306 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3307 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3309 if (hp1_pin_sense || hp2_pin_sense)
3312 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3313 if (spec->ultra_low_power) {
3314 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3315 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3316 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3320 if (hp1_pin_sense || spec->ultra_low_power)
3321 snd_hda_codec_write(codec, hp_pin, 0,
3322 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3324 snd_hda_codec_write(codec, 0x16, 0,
3325 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3327 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3330 if (hp1_pin_sense || spec->ultra_low_power)
3331 snd_hda_codec_write(codec, hp_pin, 0,
3332 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3334 snd_hda_codec_write(codec, 0x16, 0,
3335 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3337 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3340 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3341 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3344 static void alc225_shutup(struct hda_codec *codec)
3346 struct alc_spec *spec = codec->spec;
3347 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3348 bool hp1_pin_sense, hp2_pin_sense;
3352 /* 3k pull low control for Headset jack. */
3353 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3355 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3356 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3358 if (hp1_pin_sense || hp2_pin_sense)
3361 if (hp1_pin_sense || spec->ultra_low_power)
3362 snd_hda_codec_write(codec, hp_pin, 0,
3363 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3365 snd_hda_codec_write(codec, 0x16, 0,
3366 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3368 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3371 if (hp1_pin_sense || spec->ultra_low_power)
3372 snd_hda_codec_write(codec, hp_pin, 0,
3373 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3375 snd_hda_codec_write(codec, 0x16, 0,
3376 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3378 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3381 alc_auto_setup_eapd(codec, false);
3382 alc_shutup_pins(codec);
3383 if (spec->ultra_low_power) {
3385 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3386 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3387 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3388 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3393 static void alc_default_init(struct hda_codec *codec)
3395 struct alc_spec *spec = codec->spec;
3396 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3404 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3409 snd_hda_codec_write(codec, hp_pin, 0,
3410 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3415 snd_hda_codec_write(codec, hp_pin, 0,
3416 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3422 static void alc_default_shutup(struct hda_codec *codec)
3424 struct alc_spec *spec = codec->spec;
3425 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3429 alc269_shutup(codec);
3433 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3438 snd_hda_codec_write(codec, hp_pin, 0,
3439 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3444 if (!spec->no_shutup_pins)
3445 snd_hda_codec_write(codec, hp_pin, 0,
3446 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3451 alc_auto_setup_eapd(codec, false);
3452 alc_shutup_pins(codec);
3455 static void alc294_hp_init(struct hda_codec *codec)
3457 struct alc_spec *spec = codec->spec;
3458 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3464 snd_hda_codec_write(codec, hp_pin, 0,
3465 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3469 if (!spec->no_shutup_pins)
3470 snd_hda_codec_write(codec, hp_pin, 0,
3471 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3473 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3474 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3476 /* Wait for depop procedure finish */
3477 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3478 for (i = 0; i < 20 && val & 0x0080; i++) {
3480 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3482 /* Set HP depop to auto mode */
3483 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3487 static void alc294_init(struct hda_codec *codec)
3489 struct alc_spec *spec = codec->spec;
3491 /* required only at boot or S4 resume time */
3492 if (!spec->done_hp_init ||
3493 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3494 alc294_hp_init(codec);
3495 spec->done_hp_init = true;
3497 alc_default_init(codec);
3500 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3503 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3504 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3505 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3508 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3512 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3513 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3515 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3520 static void alc5505_dsp_halt(struct hda_codec *codec)
3524 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3525 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3526 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3527 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3528 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3529 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3530 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3531 val = alc5505_coef_get(codec, 0x6220);
3532 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3535 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3537 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3538 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3539 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3540 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3541 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3542 alc5505_coef_set(codec, 0x880c, 0x00000004);
3545 static void alc5505_dsp_init(struct hda_codec *codec)
3549 alc5505_dsp_halt(codec);
3550 alc5505_dsp_back_from_halt(codec);
3551 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3552 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3553 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3554 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3555 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3556 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3557 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3558 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3559 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3560 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3561 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3562 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3563 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3565 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3567 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3569 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3571 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3572 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3573 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3574 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3575 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3576 alc5505_coef_set(codec, 0x880c, 0x00000003);
3577 alc5505_coef_set(codec, 0x880c, 0x00000010);
3579 #ifdef HALT_REALTEK_ALC5505
3580 alc5505_dsp_halt(codec);
3584 #ifdef HALT_REALTEK_ALC5505
3585 #define alc5505_dsp_suspend(codec) /* NOP */
3586 #define alc5505_dsp_resume(codec) /* NOP */
3588 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3589 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3593 static int alc269_suspend(struct hda_codec *codec)
3595 struct alc_spec *spec = codec->spec;
3597 if (spec->has_alc5505_dsp)
3598 alc5505_dsp_suspend(codec);
3599 return alc_suspend(codec);
3602 static int alc269_resume(struct hda_codec *codec)
3604 struct alc_spec *spec = codec->spec;
3606 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3607 alc269vb_toggle_power_output(codec, 0);
3608 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3609 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3613 codec->patch_ops.init(codec);
3615 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3616 alc269vb_toggle_power_output(codec, 1);
3617 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3618 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
3622 regcache_sync(codec->core.regmap);
3623 hda_call_check_power_status(codec, 0x01);
3625 /* on some machine, the BIOS will clear the codec gpio data when enter
3626 * suspend, and won't restore the data after resume, so we restore it
3629 if (spec->gpio_data)
3630 alc_write_gpio_data(codec);
3632 if (spec->has_alc5505_dsp)
3633 alc5505_dsp_resume(codec);
3637 #endif /* CONFIG_PM */
3639 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
3640 const struct hda_fixup *fix, int action)
3642 struct alc_spec *spec = codec->spec;
3644 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3645 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3648 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
3649 const struct hda_fixup *fix,
3652 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
3653 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
3655 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
3656 snd_hda_codec_set_pincfg(codec, 0x19,
3657 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
3658 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
3661 static void alc269_fixup_hweq(struct hda_codec *codec,
3662 const struct hda_fixup *fix, int action)
3664 if (action == HDA_FIXUP_ACT_INIT)
3665 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
3668 static void alc269_fixup_headset_mic(struct hda_codec *codec,
3669 const struct hda_fixup *fix, int action)
3671 struct alc_spec *spec = codec->spec;
3673 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3674 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3677 static void alc271_fixup_dmic(struct hda_codec *codec,
3678 const struct hda_fixup *fix, int action)
3680 static const struct hda_verb verbs[] = {
3681 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3682 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3687 if (strcmp(codec->core.chip_name, "ALC271X") &&
3688 strcmp(codec->core.chip_name, "ALC269VB"))
3690 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3691 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3692 snd_hda_sequence_write(codec, verbs);
3695 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
3696 const struct hda_fixup *fix, int action)
3698 struct alc_spec *spec = codec->spec;
3700 if (action != HDA_FIXUP_ACT_PROBE)
3703 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3704 * fix the sample rate of analog I/O to 44.1kHz
3706 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3707 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
3710 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3711 const struct hda_fixup *fix, int action)
3713 /* The digital-mic unit sends PDM (differential signal) instead of
3714 * the standard PCM, thus you can't record a valid mono stream as is.
3715 * Below is a workaround specific to ALC269 to control the dmic
3716 * signal source as mono.
3718 if (action == HDA_FIXUP_ACT_INIT)
3719 alc_update_coef_idx(codec, 0x07, 0, 0x80);
3722 static void alc269_quanta_automute(struct hda_codec *codec)
3724 snd_hda_gen_update_outputs(codec);
3726 alc_write_coef_idx(codec, 0x0c, 0x680);
3727 alc_write_coef_idx(codec, 0x0c, 0x480);
3730 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3731 const struct hda_fixup *fix, int action)
3733 struct alc_spec *spec = codec->spec;
3734 if (action != HDA_FIXUP_ACT_PROBE)
3736 spec->gen.automute_hook = alc269_quanta_automute;
3739 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3740 struct hda_jack_callback *jack)
3742 struct alc_spec *spec = codec->spec;
3745 snd_hda_gen_hp_automute(codec, jack);
3747 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3749 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3752 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3756 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3757 const struct hda_fixup *fix, int action)
3759 struct alc_spec *spec = codec->spec;
3760 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3761 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3762 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3767 /* update mute-LED according to the speaker mute state via mic VREF pin */
3768 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3770 struct hda_codec *codec = private_data;
3771 struct alc_spec *spec = codec->spec;
3772 unsigned int pinval;
3774 if (spec->mute_led_polarity)
3776 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3777 pinval &= ~AC_PINCTL_VREFEN;
3778 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3779 if (spec->mute_led_nid) {
3780 /* temporarily power up/down for setting VREF */
3781 snd_hda_power_up_pm(codec);
3782 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3783 snd_hda_power_down_pm(codec);
3787 /* Make sure the led works even in runtime suspend */
3788 static unsigned int led_power_filter(struct hda_codec *codec,
3790 unsigned int power_state)
3792 struct alc_spec *spec = codec->spec;
3794 if (power_state != AC_PWRST_D3 || nid == 0 ||
3795 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
3798 /* Set pin ctl again, it might have just been set to 0 */
3799 snd_hda_set_pin_ctl(codec, nid,
3800 snd_hda_codec_get_pin_target(codec, nid));
3802 return snd_hda_gen_path_power_filter(codec, nid, power_state);
3805 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3806 const struct hda_fixup *fix, int action)
3808 struct alc_spec *spec = codec->spec;
3809 const struct dmi_device *dev = NULL;
3811 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3814 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3816 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3818 if (pin < 0x0a || pin >= 0x10)
3820 spec->mute_led_polarity = pol;
3821 spec->mute_led_nid = pin - 0x0a + 0x18;
3822 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3823 spec->gen.vmaster_mute_enum = 1;
3824 codec->power_filter = led_power_filter;
3826 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
3827 spec->mute_led_polarity);
3832 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
3833 const struct hda_fixup *fix,
3834 int action, hda_nid_t pin)
3836 struct alc_spec *spec = codec->spec;
3838 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3839 spec->mute_led_polarity = 0;
3840 spec->mute_led_nid = pin;
3841 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3842 spec->gen.vmaster_mute_enum = 1;
3843 codec->power_filter = led_power_filter;
3847 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3848 const struct hda_fixup *fix, int action)
3850 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
3853 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3854 const struct hda_fixup *fix, int action)
3856 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
3859 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
3860 const struct hda_fixup *fix, int action)
3862 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
3865 /* update LED status via GPIO */
3866 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3869 struct alc_spec *spec = codec->spec;
3871 if (spec->mute_led_polarity)
3873 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
3876 /* turn on/off mute LED via GPIO per vmaster hook */
3877 static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
3879 struct hda_codec *codec = private_data;
3880 struct alc_spec *spec = codec->spec;
3882 alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3885 /* turn on/off mic-mute LED via GPIO per capture hook */
3886 static void alc_gpio_micmute_update(struct hda_codec *codec)
3888 struct alc_spec *spec = codec->spec;
3890 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3891 spec->gen.micmute_led.led_value);
3894 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
3895 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
3897 unsigned int mute_mask,
3898 unsigned int micmute_mask)
3900 struct alc_spec *spec = codec->spec;
3902 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
3904 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3907 spec->gpio_mute_led_mask = mute_mask;
3908 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3911 spec->gpio_mic_led_mask = micmute_mask;
3912 snd_hda_gen_add_micmute_led(codec, alc_gpio_micmute_update);
3916 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3917 const struct hda_fixup *fix, int action)
3919 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
3922 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
3923 const struct hda_fixup *fix, int action)
3925 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
3928 /* turn on/off mic-mute LED per capture hook */
3929 static void alc_cap_micmute_update(struct hda_codec *codec)
3931 struct alc_spec *spec = codec->spec;
3932 unsigned int pinval;
3934 if (!spec->cap_mute_led_nid)
3936 pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
3937 pinval &= ~AC_PINCTL_VREFEN;
3938 if (spec->gen.micmute_led.led_value)
3939 pinval |= AC_PINCTL_VREF_80;
3941 pinval |= AC_PINCTL_VREF_HIZ;
3942 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
3945 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
3946 const struct hda_fixup *fix, int action)
3948 struct alc_spec *spec = codec->spec;
3950 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
3951 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3952 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
3953 * enable headphone amp
3955 spec->gpio_mask |= 0x10;
3956 spec->gpio_dir |= 0x10;
3957 spec->cap_mute_led_nid = 0x18;
3958 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
3959 codec->power_filter = led_power_filter;
3963 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
3964 const struct hda_fixup *fix, int action)
3966 struct alc_spec *spec = codec->spec;
3968 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
3969 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3970 spec->cap_mute_led_nid = 0x18;
3971 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
3972 codec->power_filter = led_power_filter;
3976 #if IS_REACHABLE(CONFIG_INPUT)
3977 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
3978 struct hda_jack_callback *event)
3980 struct alc_spec *spec = codec->spec;
3982 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3983 send both key on and key off event for every interrupt. */
3984 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
3985 input_sync(spec->kb_dev);
3986 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
3987 input_sync(spec->kb_dev);
3990 static int alc_register_micmute_input_device(struct hda_codec *codec)
3992 struct alc_spec *spec = codec->spec;
3995 spec->kb_dev = input_allocate_device();
3996 if (!spec->kb_dev) {
3997 codec_err(codec, "Out of memory (input_allocate_device)\n");
4001 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4003 spec->kb_dev->name = "Microphone Mute Button";
4004 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4005 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4006 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4007 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4008 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4009 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4011 if (input_register_device(spec->kb_dev)) {
4012 codec_err(codec, "input_register_device failed\n");
4013 input_free_device(spec->kb_dev);
4014 spec->kb_dev = NULL;
4021 /* GPIO1 = set according to SKU external amp
4022 * GPIO2 = mic mute hotkey
4024 * GPIO4 = mic mute LED
4026 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4027 const struct hda_fixup *fix, int action)
4029 struct alc_spec *spec = codec->spec;
4031 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4032 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4033 spec->init_amp = ALC_INIT_DEFAULT;
4034 if (alc_register_micmute_input_device(codec) != 0)
4037 spec->gpio_mask |= 0x06;
4038 spec->gpio_dir |= 0x02;
4039 spec->gpio_data |= 0x02;
4040 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4041 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4042 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4043 gpio2_mic_hotkey_event);
4051 case HDA_FIXUP_ACT_FREE:
4052 input_unregister_device(spec->kb_dev);
4053 spec->kb_dev = NULL;
4057 /* Line2 = mic mute hotkey
4058 * GPIO2 = mic mute LED
4060 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4061 const struct hda_fixup *fix, int action)
4063 struct alc_spec *spec = codec->spec;
4065 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4066 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4067 spec->init_amp = ALC_INIT_DEFAULT;
4068 if (alc_register_micmute_input_device(codec) != 0)
4071 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4072 gpio2_mic_hotkey_event);
4080 case HDA_FIXUP_ACT_FREE:
4081 input_unregister_device(spec->kb_dev);
4082 spec->kb_dev = NULL;
4086 #define alc280_fixup_hp_gpio2_mic_hotkey NULL
4087 #define alc233_fixup_lenovo_line2_mic_hotkey NULL
4090 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4091 const struct hda_fixup *fix, int action)
4093 struct alc_spec *spec = codec->spec;
4095 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4096 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4097 spec->cap_mute_led_nid = 0x18;
4098 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
4102 static struct coef_fw alc225_pre_hsmode[] = {
4103 UPDATE_COEF(0x4a, 1<<8, 0),
4104 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4105 UPDATE_COEF(0x63, 3<<14, 3<<14),
4106 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4107 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4108 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4109 UPDATE_COEF(0x4a, 3<<10, 0),
4113 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4115 static struct coef_fw coef0255[] = {
4116 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4117 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4118 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4119 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4120 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4123 static struct coef_fw coef0256[] = {
4124 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4125 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4126 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4127 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4128 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4131 static struct coef_fw coef0233[] = {
4132 WRITE_COEF(0x1b, 0x0c0b),
4133 WRITE_COEF(0x45, 0xc429),
4134 UPDATE_COEF(0x35, 0x4000, 0),
4135 WRITE_COEF(0x06, 0x2104),
4136 WRITE_COEF(0x1a, 0x0001),
4137 WRITE_COEF(0x26, 0x0004),
4138 WRITE_COEF(0x32, 0x42a3),
4141 static struct coef_fw coef0288[] = {
4142 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4143 UPDATE_COEF(0x50, 0x2000, 0x2000),
4144 UPDATE_COEF(0x56, 0x0006, 0x0006),
4145 UPDATE_COEF(0x66, 0x0008, 0),
4146 UPDATE_COEF(0x67, 0x2000, 0),
4149 static struct coef_fw coef0298[] = {
4150 UPDATE_COEF(0x19, 0x1300, 0x0300),
4153 static struct coef_fw coef0292[] = {
4154 WRITE_COEF(0x76, 0x000e),
4155 WRITE_COEF(0x6c, 0x2400),
4156 WRITE_COEF(0x18, 0x7308),
4157 WRITE_COEF(0x6b, 0xc429),
4160 static struct coef_fw coef0293[] = {
4161 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4162 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4163 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4164 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4165 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4166 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4169 static struct coef_fw coef0668[] = {
4170 WRITE_COEF(0x15, 0x0d40),
4171 WRITE_COEF(0xb7, 0x802b),
4174 static struct coef_fw coef0225[] = {
4175 UPDATE_COEF(0x63, 3<<14, 0),
4178 static struct coef_fw coef0274[] = {
4179 UPDATE_COEF(0x4a, 0x0100, 0),
4180 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4181 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4182 UPDATE_COEF(0x4a, 0x0010, 0),
4183 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4184 WRITE_COEF(0x45, 0x5289),
4185 UPDATE_COEF(0x4a, 0x0c00, 0),
4189 switch (codec->core.vendor_id) {
4191 alc_process_coef_fw(codec, coef0255);
4195 alc_process_coef_fw(codec, coef0256);
4200 alc_process_coef_fw(codec, coef0274);
4204 alc_process_coef_fw(codec, coef0233);
4208 alc_process_coef_fw(codec, coef0288);
4211 alc_process_coef_fw(codec, coef0298);
4212 alc_process_coef_fw(codec, coef0288);
4215 alc_process_coef_fw(codec, coef0292);
4218 alc_process_coef_fw(codec, coef0293);
4221 alc_process_coef_fw(codec, coef0668);
4229 alc_process_coef_fw(codec, alc225_pre_hsmode);
4230 alc_process_coef_fw(codec, coef0225);
4233 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4236 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
4240 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4243 static struct coef_fw coef0255[] = {
4244 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4245 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4248 static struct coef_fw coef0256[] = {
4249 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
4250 WRITE_COEFEX(0x57, 0x03, 0x09a3),
4251 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4254 static struct coef_fw coef0233[] = {
4255 UPDATE_COEF(0x35, 0, 1<<14),
4256 WRITE_COEF(0x06, 0x2100),
4257 WRITE_COEF(0x1a, 0x0021),
4258 WRITE_COEF(0x26, 0x008c),
4261 static struct coef_fw coef0288[] = {
4262 UPDATE_COEF(0x4f, 0x00c0, 0),
4263 UPDATE_COEF(0x50, 0x2000, 0),
4264 UPDATE_COEF(0x56, 0x0006, 0),
4265 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4266 UPDATE_COEF(0x66, 0x0008, 0x0008),
4267 UPDATE_COEF(0x67, 0x2000, 0x2000),
4270 static struct coef_fw coef0292[] = {
4271 WRITE_COEF(0x19, 0xa208),
4272 WRITE_COEF(0x2e, 0xacf0),
4275 static struct coef_fw coef0293[] = {
4276 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4277 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4278 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4281 static struct coef_fw coef0688[] = {
4282 WRITE_COEF(0xb7, 0x802b),
4283 WRITE_COEF(0xb5, 0x1040),
4284 UPDATE_COEF(0xc3, 0, 1<<12),
4287 static struct coef_fw coef0225[] = {
4288 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4289 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4290 UPDATE_COEF(0x63, 3<<14, 0),
4293 static struct coef_fw coef0274[] = {
4294 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
4295 UPDATE_COEF(0x4a, 0x0010, 0),
4296 UPDATE_COEF(0x6b, 0xf000, 0),
4300 switch (codec->core.vendor_id) {
4302 alc_write_coef_idx(codec, 0x45, 0xc489);
4303 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4304 alc_process_coef_fw(codec, coef0255);
4305 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4309 alc_write_coef_idx(codec, 0x45, 0xc489);
4310 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4311 alc_process_coef_fw(codec, coef0256);
4312 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4317 alc_write_coef_idx(codec, 0x45, 0x4689);
4318 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4319 alc_process_coef_fw(codec, coef0274);
4320 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4324 alc_write_coef_idx(codec, 0x45, 0xc429);
4325 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4326 alc_process_coef_fw(codec, coef0233);
4327 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4332 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4333 alc_process_coef_fw(codec, coef0288);
4334 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4337 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4338 alc_process_coef_fw(codec, coef0292);
4341 /* Set to TRS mode */
4342 alc_write_coef_idx(codec, 0x45, 0xc429);
4343 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4344 alc_process_coef_fw(codec, coef0293);
4345 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4348 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
4352 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4353 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4356 alc_write_coef_idx(codec, 0x11, 0x0001);
4357 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4358 alc_process_coef_fw(codec, coef0688);
4359 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4367 alc_process_coef_fw(codec, alc225_pre_hsmode);
4368 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
4369 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4370 alc_process_coef_fw(codec, coef0225);
4371 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4374 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
4377 static void alc_headset_mode_default(struct hda_codec *codec)
4379 static struct coef_fw coef0225[] = {
4380 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
4381 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
4382 UPDATE_COEF(0x49, 3<<8, 0<<8),
4383 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4384 UPDATE_COEF(0x63, 3<<14, 0),
4385 UPDATE_COEF(0x67, 0xf000, 0x3000),
4388 static struct coef_fw coef0255[] = {
4389 WRITE_COEF(0x45, 0xc089),
4390 WRITE_COEF(0x45, 0xc489),
4391 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4392 WRITE_COEF(0x49, 0x0049),
4395 static struct coef_fw coef0256[] = {
4396 WRITE_COEF(0x45, 0xc489),
4397 WRITE_COEFEX(0x57, 0x03, 0x0da3),
4398 WRITE_COEF(0x49, 0x0049),
4399 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4400 WRITE_COEF(0x06, 0x6100),
4403 static struct coef_fw coef0233[] = {
4404 WRITE_COEF(0x06, 0x2100),
4405 WRITE_COEF(0x32, 0x4ea3),
4408 static struct coef_fw coef0288[] = {
4409 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
4410 UPDATE_COEF(0x50, 0x2000, 0x2000),
4411 UPDATE_COEF(0x56, 0x0006, 0x0006),
4412 UPDATE_COEF(0x66, 0x0008, 0),
4413 UPDATE_COEF(0x67, 0x2000, 0),
4416 static struct coef_fw coef0292[] = {
4417 WRITE_COEF(0x76, 0x000e),
4418 WRITE_COEF(0x6c, 0x2400),
4419 WRITE_COEF(0x6b, 0xc429),
4420 WRITE_COEF(0x18, 0x7308),
4423 static struct coef_fw coef0293[] = {
4424 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4425 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
4426 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4429 static struct coef_fw coef0688[] = {
4430 WRITE_COEF(0x11, 0x0041),
4431 WRITE_COEF(0x15, 0x0d40),
4432 WRITE_COEF(0xb7, 0x802b),
4435 static struct coef_fw coef0274[] = {
4436 WRITE_COEF(0x45, 0x4289),
4437 UPDATE_COEF(0x4a, 0x0010, 0x0010),
4438 UPDATE_COEF(0x6b, 0x0f00, 0),
4439 UPDATE_COEF(0x49, 0x0300, 0x0300),
4443 switch (codec->core.vendor_id) {
4450 alc_process_coef_fw(codec, alc225_pre_hsmode);
4451 alc_process_coef_fw(codec, coef0225);
4454 alc_process_coef_fw(codec, coef0255);
4458 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4459 alc_write_coef_idx(codec, 0x45, 0xc089);
4461 alc_process_coef_fw(codec, coef0256);
4466 alc_process_coef_fw(codec, coef0274);
4470 alc_process_coef_fw(codec, coef0233);
4475 alc_process_coef_fw(codec, coef0288);
4478 alc_process_coef_fw(codec, coef0292);
4481 alc_process_coef_fw(codec, coef0293);
4484 alc_process_coef_fw(codec, coef0688);
4487 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4490 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
4494 static void alc_headset_mode_ctia(struct hda_codec *codec)
4498 static struct coef_fw coef0255[] = {
4499 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4500 WRITE_COEF(0x1b, 0x0c2b),
4501 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4504 static struct coef_fw coef0256[] = {
4505 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4506 WRITE_COEF(0x1b, 0x0e6b),
4509 static struct coef_fw coef0233[] = {
4510 WRITE_COEF(0x45, 0xd429),
4511 WRITE_COEF(0x1b, 0x0c2b),
4512 WRITE_COEF(0x32, 0x4ea3),
4515 static struct coef_fw coef0288[] = {
4516 UPDATE_COEF(0x50, 0x2000, 0x2000),
4517 UPDATE_COEF(0x56, 0x0006, 0x0006),
4518 UPDATE_COEF(0x66, 0x0008, 0),
4519 UPDATE_COEF(0x67, 0x2000, 0),
4522 static struct coef_fw coef0292[] = {
4523 WRITE_COEF(0x6b, 0xd429),
4524 WRITE_COEF(0x76, 0x0008),
4525 WRITE_COEF(0x18, 0x7388),
4528 static struct coef_fw coef0293[] = {
4529 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
4530 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4533 static struct coef_fw coef0688[] = {
4534 WRITE_COEF(0x11, 0x0001),
4535 WRITE_COEF(0x15, 0x0d60),
4536 WRITE_COEF(0xc3, 0x0000),
4539 static struct coef_fw coef0225_1[] = {
4540 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4541 UPDATE_COEF(0x63, 3<<14, 2<<14),
4544 static struct coef_fw coef0225_2[] = {
4545 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4546 UPDATE_COEF(0x63, 3<<14, 1<<14),
4550 switch (codec->core.vendor_id) {
4552 alc_process_coef_fw(codec, coef0255);
4556 alc_process_coef_fw(codec, coef0256);
4561 alc_write_coef_idx(codec, 0x45, 0xd689);
4565 alc_process_coef_fw(codec, coef0233);
4568 val = alc_read_coef_idx(codec, 0x50);
4569 if (val & (1 << 12)) {
4570 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4571 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4574 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4575 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4581 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4583 alc_process_coef_fw(codec, coef0288);
4586 alc_process_coef_fw(codec, coef0292);
4589 alc_process_coef_fw(codec, coef0293);
4592 alc_process_coef_fw(codec, coef0688);
4600 val = alc_read_coef_idx(codec, 0x45);
4602 alc_process_coef_fw(codec, coef0225_2);
4604 alc_process_coef_fw(codec, coef0225_1);
4607 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4610 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
4614 static void alc_headset_mode_omtp(struct hda_codec *codec)
4616 static struct coef_fw coef0255[] = {
4617 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4618 WRITE_COEF(0x1b, 0x0c2b),
4619 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4622 static struct coef_fw coef0256[] = {
4623 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4624 WRITE_COEF(0x1b, 0x0e6b),
4627 static struct coef_fw coef0233[] = {
4628 WRITE_COEF(0x45, 0xe429),
4629 WRITE_COEF(0x1b, 0x0c2b),
4630 WRITE_COEF(0x32, 0x4ea3),
4633 static struct coef_fw coef0288[] = {
4634 UPDATE_COEF(0x50, 0x2000, 0x2000),
4635 UPDATE_COEF(0x56, 0x0006, 0x0006),
4636 UPDATE_COEF(0x66, 0x0008, 0),
4637 UPDATE_COEF(0x67, 0x2000, 0),
4640 static struct coef_fw coef0292[] = {
4641 WRITE_COEF(0x6b, 0xe429),
4642 WRITE_COEF(0x76, 0x0008),
4643 WRITE_COEF(0x18, 0x7388),
4646 static struct coef_fw coef0293[] = {
4647 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4648 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4651 static struct coef_fw coef0688[] = {
4652 WRITE_COEF(0x11, 0x0001),
4653 WRITE_COEF(0x15, 0x0d50),
4654 WRITE_COEF(0xc3, 0x0000),
4657 static struct coef_fw coef0225[] = {
4658 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
4659 UPDATE_COEF(0x63, 3<<14, 2<<14),
4663 switch (codec->core.vendor_id) {
4665 alc_process_coef_fw(codec, coef0255);
4669 alc_process_coef_fw(codec, coef0256);
4674 alc_write_coef_idx(codec, 0x45, 0xe689);
4678 alc_process_coef_fw(codec, coef0233);
4681 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
4682 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4687 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4689 alc_process_coef_fw(codec, coef0288);
4692 alc_process_coef_fw(codec, coef0292);
4695 alc_process_coef_fw(codec, coef0293);
4698 alc_process_coef_fw(codec, coef0688);
4706 alc_process_coef_fw(codec, coef0225);
4709 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
4712 static void alc_determine_headset_type(struct hda_codec *codec)
4715 bool is_ctia = false;
4716 struct alc_spec *spec = codec->spec;
4717 static struct coef_fw coef0255[] = {
4718 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4719 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4723 static struct coef_fw coef0288[] = {
4724 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4727 static struct coef_fw coef0298[] = {
4728 UPDATE_COEF(0x50, 0x2000, 0x2000),
4729 UPDATE_COEF(0x56, 0x0006, 0x0006),
4730 UPDATE_COEF(0x66, 0x0008, 0),
4731 UPDATE_COEF(0x67, 0x2000, 0),
4732 UPDATE_COEF(0x19, 0x1300, 0x1300),
4735 static struct coef_fw coef0293[] = {
4736 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4737 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4740 static struct coef_fw coef0688[] = {
4741 WRITE_COEF(0x11, 0x0001),
4742 WRITE_COEF(0xb7, 0x802b),
4743 WRITE_COEF(0x15, 0x0d60),
4744 WRITE_COEF(0xc3, 0x0c00),
4747 static struct coef_fw coef0274[] = {
4748 UPDATE_COEF(0x4a, 0x0010, 0),
4749 UPDATE_COEF(0x4a, 0x8000, 0),
4750 WRITE_COEF(0x45, 0xd289),
4751 UPDATE_COEF(0x49, 0x0300, 0x0300),
4755 switch (codec->core.vendor_id) {
4757 alc_process_coef_fw(codec, coef0255);
4759 val = alc_read_coef_idx(codec, 0x46);
4760 is_ctia = (val & 0x0070) == 0x0070;
4764 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4765 alc_write_coef_idx(codec, 0x06, 0x6104);
4766 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
4768 snd_hda_codec_write(codec, 0x21, 0,
4769 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4771 snd_hda_codec_write(codec, 0x21, 0,
4772 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4774 alc_process_coef_fw(codec, coef0255);
4776 val = alc_read_coef_idx(codec, 0x46);
4777 is_ctia = (val & 0x0070) == 0x0070;
4779 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
4780 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4782 snd_hda_codec_write(codec, 0x21, 0,
4783 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4785 snd_hda_codec_write(codec, 0x21, 0,
4786 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4791 alc_process_coef_fw(codec, coef0274);
4793 val = alc_read_coef_idx(codec, 0x46);
4794 is_ctia = (val & 0x00f0) == 0x00f0;
4798 alc_write_coef_idx(codec, 0x45, 0xd029);
4800 val = alc_read_coef_idx(codec, 0x46);
4801 is_ctia = (val & 0x0070) == 0x0070;
4804 snd_hda_codec_write(codec, 0x21, 0,
4805 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4807 snd_hda_codec_write(codec, 0x21, 0,
4808 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4811 val = alc_read_coef_idx(codec, 0x50);
4812 if (val & (1 << 12)) {
4813 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4814 alc_process_coef_fw(codec, coef0288);
4816 val = alc_read_coef_idx(codec, 0x50);
4817 is_ctia = (val & 0x0070) == 0x0070;
4819 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4820 alc_process_coef_fw(codec, coef0288);
4822 val = alc_read_coef_idx(codec, 0x50);
4823 is_ctia = (val & 0x0070) == 0x0070;
4825 alc_process_coef_fw(codec, coef0298);
4826 snd_hda_codec_write(codec, 0x21, 0,
4827 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4829 snd_hda_codec_write(codec, 0x21, 0,
4830 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4834 alc_process_coef_fw(codec, coef0288);
4836 val = alc_read_coef_idx(codec, 0x50);
4837 is_ctia = (val & 0x0070) == 0x0070;
4840 alc_write_coef_idx(codec, 0x6b, 0xd429);
4842 val = alc_read_coef_idx(codec, 0x6c);
4843 is_ctia = (val & 0x001c) == 0x001c;
4846 alc_process_coef_fw(codec, coef0293);
4848 val = alc_read_coef_idx(codec, 0x46);
4849 is_ctia = (val & 0x0070) == 0x0070;
4852 alc_process_coef_fw(codec, coef0688);
4854 val = alc_read_coef_idx(codec, 0xbe);
4855 is_ctia = (val & 0x1c02) == 0x1c02;
4863 snd_hda_codec_write(codec, 0x21, 0,
4864 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4866 snd_hda_codec_write(codec, 0x21, 0,
4867 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4869 alc_process_coef_fw(codec, alc225_pre_hsmode);
4870 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
4871 val = alc_read_coef_idx(codec, 0x45);
4872 if (val & (1 << 9)) {
4873 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4874 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
4876 val = alc_read_coef_idx(codec, 0x46);
4877 is_ctia = (val & 0x00f0) == 0x00f0;
4879 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4880 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
4882 val = alc_read_coef_idx(codec, 0x46);
4883 is_ctia = (val & 0x00f0) == 0x00f0;
4885 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
4886 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
4887 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
4889 snd_hda_codec_write(codec, 0x21, 0,
4890 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4892 snd_hda_codec_write(codec, 0x21, 0,
4893 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4900 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
4901 is_ctia ? "yes" : "no");
4902 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
4905 static void alc_update_headset_mode(struct hda_codec *codec)
4907 struct alc_spec *spec = codec->spec;
4909 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
4910 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4912 int new_headset_mode;
4914 if (!snd_hda_jack_detect(codec, hp_pin))
4915 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
4916 else if (mux_pin == spec->headset_mic_pin)
4917 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
4918 else if (mux_pin == spec->headphone_mic_pin)
4919 new_headset_mode = ALC_HEADSET_MODE_MIC;
4921 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
4923 if (new_headset_mode == spec->current_headset_mode) {
4924 snd_hda_gen_update_outputs(codec);
4928 switch (new_headset_mode) {
4929 case ALC_HEADSET_MODE_UNPLUGGED:
4930 alc_headset_mode_unplugged(codec);
4931 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
4932 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
4933 spec->gen.hp_jack_present = false;
4935 case ALC_HEADSET_MODE_HEADSET:
4936 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
4937 alc_determine_headset_type(codec);
4938 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
4939 alc_headset_mode_ctia(codec);
4940 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
4941 alc_headset_mode_omtp(codec);
4942 spec->gen.hp_jack_present = true;
4944 case ALC_HEADSET_MODE_MIC:
4945 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
4946 spec->gen.hp_jack_present = false;
4948 case ALC_HEADSET_MODE_HEADPHONE:
4949 alc_headset_mode_default(codec);
4950 spec->gen.hp_jack_present = true;
4953 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
4954 snd_hda_set_pin_ctl_cache(codec, hp_pin,
4955 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
4956 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
4957 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
4960 spec->current_headset_mode = new_headset_mode;
4962 snd_hda_gen_update_outputs(codec);
4965 static void alc_update_headset_mode_hook(struct hda_codec *codec,
4966 struct snd_kcontrol *kcontrol,
4967 struct snd_ctl_elem_value *ucontrol)
4969 alc_update_headset_mode(codec);
4972 static void alc_update_headset_jack_cb(struct hda_codec *codec,
4973 struct hda_jack_callback *jack)
4975 snd_hda_gen_hp_automute(codec, jack);
4978 static void alc_probe_headset_mode(struct hda_codec *codec)
4981 struct alc_spec *spec = codec->spec;
4982 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4985 for (i = 0; i < cfg->num_inputs; i++) {
4986 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
4987 spec->headset_mic_pin = cfg->inputs[i].pin;
4988 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
4989 spec->headphone_mic_pin = cfg->inputs[i].pin;
4992 WARN_ON(spec->gen.cap_sync_hook);
4993 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
4994 spec->gen.automute_hook = alc_update_headset_mode;
4995 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
4998 static void alc_fixup_headset_mode(struct hda_codec *codec,
4999 const struct hda_fixup *fix, int action)
5001 struct alc_spec *spec = codec->spec;
5004 case HDA_FIXUP_ACT_PRE_PROBE:
5005 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5007 case HDA_FIXUP_ACT_PROBE:
5008 alc_probe_headset_mode(codec);
5010 case HDA_FIXUP_ACT_INIT:
5011 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5012 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5013 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5015 alc_update_headset_mode(codec);
5020 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5021 const struct hda_fixup *fix, int action)
5023 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5024 struct alc_spec *spec = codec->spec;
5025 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5028 alc_fixup_headset_mode(codec, fix, action);
5031 static void alc255_set_default_jack_type(struct hda_codec *codec)
5033 /* Set to iphone type */
5034 static struct coef_fw alc255fw[] = {
5035 WRITE_COEF(0x1b, 0x880b),
5036 WRITE_COEF(0x45, 0xd089),
5037 WRITE_COEF(0x1b, 0x080b),
5038 WRITE_COEF(0x46, 0x0004),
5039 WRITE_COEF(0x1b, 0x0c0b),
5042 static struct coef_fw alc256fw[] = {
5043 WRITE_COEF(0x1b, 0x884b),
5044 WRITE_COEF(0x45, 0xd089),
5045 WRITE_COEF(0x1b, 0x084b),
5046 WRITE_COEF(0x46, 0x0004),
5047 WRITE_COEF(0x1b, 0x0c4b),
5050 switch (codec->core.vendor_id) {
5052 alc_process_coef_fw(codec, alc255fw);
5056 alc_process_coef_fw(codec, alc256fw);
5062 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5063 const struct hda_fixup *fix, int action)
5065 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5066 alc255_set_default_jack_type(codec);
5068 alc_fixup_headset_mode(codec, fix, action);
5071 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5072 const struct hda_fixup *fix, int action)
5074 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5075 struct alc_spec *spec = codec->spec;
5076 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5077 alc255_set_default_jack_type(codec);
5080 alc_fixup_headset_mode(codec, fix, action);
5083 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5084 struct hda_jack_callback *jack)
5086 struct alc_spec *spec = codec->spec;
5088 alc_update_headset_jack_cb(codec, jack);
5089 /* Headset Mic enable or disable, only for Dell Dino */
5090 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5093 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5094 const struct hda_fixup *fix, int action)
5096 alc_fixup_headset_mode(codec, fix, action);
5097 if (action == HDA_FIXUP_ACT_PROBE) {
5098 struct alc_spec *spec = codec->spec;
5099 /* toggled via hp_automute_hook */
5100 spec->gpio_mask |= 0x40;
5101 spec->gpio_dir |= 0x40;
5102 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5106 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5107 const struct hda_fixup *fix, int action)
5109 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5110 struct alc_spec *spec = codec->spec;
5111 spec->gen.auto_mute_via_amp = 1;
5115 static void alc_fixup_no_shutup(struct hda_codec *codec,
5116 const struct hda_fixup *fix, int action)
5118 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5119 struct alc_spec *spec = codec->spec;
5120 spec->no_shutup_pins = 1;
5124 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5125 const struct hda_fixup *fix, int action)
5127 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5128 struct alc_spec *spec = codec->spec;
5129 /* Disable AA-loopback as it causes white noise */
5130 spec->gen.mixer_nid = 0;
5134 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5135 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5136 const struct hda_fixup *fix, int action)
5138 static const struct hda_pintbl pincfgs[] = {
5139 { 0x16, 0x21211010 }, /* dock headphone */
5140 { 0x19, 0x21a11010 }, /* dock mic */
5143 struct alc_spec *spec = codec->spec;
5145 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5146 spec->reboot_notify = snd_hda_gen_reboot_notify; /* reduce noise */
5147 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5148 codec->power_save_node = 0; /* avoid click noises */
5149 snd_hda_apply_pincfgs(codec, pincfgs);
5153 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5154 const struct hda_fixup *fix, int action)
5156 static const struct hda_pintbl pincfgs[] = {
5157 { 0x17, 0x21211010 }, /* dock headphone */
5158 { 0x19, 0x21a11010 }, /* dock mic */
5161 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
5162 * the speaker output becomes too low by some reason on Thinkpads with
5165 static hda_nid_t preferred_pairs[] = {
5166 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
5169 struct alc_spec *spec = codec->spec;
5171 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5172 spec->gen.preferred_dacs = preferred_pairs;
5173 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5174 snd_hda_apply_pincfgs(codec, pincfgs);
5175 } else if (action == HDA_FIXUP_ACT_INIT) {
5176 /* Enable DOCK device */
5177 snd_hda_codec_write(codec, 0x17, 0,
5178 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5179 /* Enable DOCK device */
5180 snd_hda_codec_write(codec, 0x19, 0,
5181 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5185 static void alc_shutup_dell_xps13(struct hda_codec *codec)
5187 struct alc_spec *spec = codec->spec;
5188 int hp_pin = alc_get_hp_pin(spec);
5190 /* Prevent pop noises when headphones are plugged in */
5191 snd_hda_codec_write(codec, hp_pin, 0,
5192 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5196 static void alc_fixup_dell_xps13(struct hda_codec *codec,
5197 const struct hda_fixup *fix, int action)
5199 struct alc_spec *spec = codec->spec;
5200 struct hda_input_mux *imux = &spec->gen.input_mux;
5204 case HDA_FIXUP_ACT_PRE_PROBE:
5205 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5206 * it causes a click noise at start up
5208 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5209 spec->shutup = alc_shutup_dell_xps13;
5211 case HDA_FIXUP_ACT_PROBE:
5212 /* Make the internal mic the default input source. */
5213 for (i = 0; i < imux->num_items; i++) {
5214 if (spec->gen.imux_pins[i] == 0x12) {
5215 spec->gen.cur_mux[0] = i;
5223 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5224 const struct hda_fixup *fix, int action)
5226 struct alc_spec *spec = codec->spec;
5228 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5229 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5230 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
5232 /* Disable boost for mic-in permanently. (This code is only called
5233 from quirks that guarantee that the headphone is at NID 0x1b.) */
5234 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
5235 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
5237 alc_fixup_headset_mode(codec, fix, action);
5240 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
5241 const struct hda_fixup *fix, int action)
5243 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5244 alc_write_coef_idx(codec, 0xc4, 0x8000);
5245 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
5246 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
5248 alc_fixup_headset_mode(codec, fix, action);
5251 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
5252 static int find_ext_mic_pin(struct hda_codec *codec)
5254 struct alc_spec *spec = codec->spec;
5255 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5257 unsigned int defcfg;
5260 for (i = 0; i < cfg->num_inputs; i++) {
5261 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5263 nid = cfg->inputs[i].pin;
5264 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5265 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
5273 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
5274 const struct hda_fixup *fix,
5277 struct alc_spec *spec = codec->spec;
5279 if (action == HDA_FIXUP_ACT_PROBE) {
5280 int mic_pin = find_ext_mic_pin(codec);
5281 int hp_pin = alc_get_hp_pin(spec);
5283 if (snd_BUG_ON(!mic_pin || !hp_pin))
5285 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
5289 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
5290 const struct hda_fixup *fix,
5293 struct alc_spec *spec = codec->spec;
5294 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5297 /* The mic boosts on level 2 and 3 are too noisy
5298 on the internal mic input.
5299 Therefore limit the boost to 0 or 1. */
5301 if (action != HDA_FIXUP_ACT_PROBE)
5304 for (i = 0; i < cfg->num_inputs; i++) {
5305 hda_nid_t nid = cfg->inputs[i].pin;
5306 unsigned int defcfg;
5307 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5309 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5310 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
5313 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
5314 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
5315 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5316 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
5317 (0 << AC_AMPCAP_MUTE_SHIFT));
5321 static void alc283_hp_automute_hook(struct hda_codec *codec,
5322 struct hda_jack_callback *jack)
5324 struct alc_spec *spec = codec->spec;
5328 snd_hda_gen_hp_automute(codec, jack);
5330 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
5333 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5337 static void alc283_fixup_chromebook(struct hda_codec *codec,
5338 const struct hda_fixup *fix, int action)
5340 struct alc_spec *spec = codec->spec;
5343 case HDA_FIXUP_ACT_PRE_PROBE:
5344 snd_hda_override_wcaps(codec, 0x03, 0);
5345 /* Disable AA-loopback as it causes white noise */
5346 spec->gen.mixer_nid = 0;
5348 case HDA_FIXUP_ACT_INIT:
5349 /* MIC2-VREF control */
5350 /* Set to manual mode */
5351 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
5352 /* Enable Line1 input control by verb */
5353 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
5358 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
5359 const struct hda_fixup *fix, int action)
5361 struct alc_spec *spec = codec->spec;
5364 case HDA_FIXUP_ACT_PRE_PROBE:
5365 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
5367 case HDA_FIXUP_ACT_INIT:
5368 /* MIC2-VREF control */
5369 /* Set to manual mode */
5370 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
5375 /* mute tablet speaker pin (0x14) via dock plugging in addition */
5376 static void asus_tx300_automute(struct hda_codec *codec)
5378 struct alc_spec *spec = codec->spec;
5379 snd_hda_gen_update_outputs(codec);
5380 if (snd_hda_jack_detect(codec, 0x1b))
5381 spec->gen.mute_bits |= (1ULL << 0x14);
5384 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
5385 const struct hda_fixup *fix, int action)
5387 struct alc_spec *spec = codec->spec;
5388 static const struct hda_pintbl dock_pins[] = {
5389 { 0x1b, 0x21114000 }, /* dock speaker pin */
5394 case HDA_FIXUP_ACT_PRE_PROBE:
5395 spec->init_amp = ALC_INIT_DEFAULT;
5396 /* TX300 needs to set up GPIO2 for the speaker amp */
5397 alc_setup_gpio(codec, 0x04);
5398 snd_hda_apply_pincfgs(codec, dock_pins);
5399 spec->gen.auto_mute_via_amp = 1;
5400 spec->gen.automute_hook = asus_tx300_automute;
5401 snd_hda_jack_detect_enable_callback(codec, 0x1b,
5402 snd_hda_gen_hp_automute);
5404 case HDA_FIXUP_ACT_PROBE:
5405 spec->init_amp = ALC_INIT_DEFAULT;
5407 case HDA_FIXUP_ACT_BUILD:
5408 /* this is a bit tricky; give more sane names for the main
5409 * (tablet) speaker and the dock speaker, respectively
5411 rename_ctl(codec, "Speaker Playback Switch",
5412 "Dock Speaker Playback Switch");
5413 rename_ctl(codec, "Bass Speaker Playback Switch",
5414 "Speaker Playback Switch");
5419 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
5420 const struct hda_fixup *fix, int action)
5422 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5423 /* DAC node 0x03 is giving mono output. We therefore want to
5424 make sure 0x14 (front speaker) and 0x15 (headphones) use the
5425 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
5426 hda_nid_t conn1[2] = { 0x0c };
5427 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5428 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
5432 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
5433 const struct hda_fixup *fix, int action)
5435 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5436 /* The speaker is routed to the Node 0x06 by a mistake, as a result
5437 we can't adjust the speaker's volume since this node does not has
5438 Amp-out capability. we change the speaker's route to:
5439 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
5440 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
5441 speaker's volume now. */
5443 hda_nid_t conn1[1] = { 0x0c };
5444 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
5448 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
5449 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
5450 const struct hda_fixup *fix, int action)
5452 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5453 hda_nid_t conn[2] = { 0x02, 0x03 };
5454 snd_hda_override_conn_list(codec, 0x17, 2, conn);
5458 /* Hook to update amp GPIO4 for automute */
5459 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
5460 struct hda_jack_callback *jack)
5462 struct alc_spec *spec = codec->spec;
5464 snd_hda_gen_hp_automute(codec, jack);
5465 /* mute_led_polarity is set to 0, so we pass inverted value here */
5466 alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
5469 /* Manage GPIOs for HP EliteBook Folio 9480m.
5471 * GPIO4 is the headphone amplifier power control
5472 * GPIO3 is the audio output mute indicator LED
5475 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
5476 const struct hda_fixup *fix,
5479 struct alc_spec *spec = codec->spec;
5481 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
5482 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5483 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
5484 spec->gpio_mask |= 0x10;
5485 spec->gpio_dir |= 0x10;
5486 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
5490 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
5491 const struct hda_fixup *fix,
5494 struct alc_spec *spec = codec->spec;
5496 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5497 spec->gpio_mask |= 0x04;
5498 spec->gpio_dir |= 0x04;
5499 /* set data bit low */
5503 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
5504 const struct hda_fixup *fix,
5507 alc_fixup_dual_codecs(codec, fix, action);
5509 case HDA_FIXUP_ACT_PRE_PROBE:
5510 /* override card longname to provide a unique UCM profile */
5511 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
5513 case HDA_FIXUP_ACT_BUILD:
5514 /* rename Capture controls depending on the codec */
5515 rename_ctl(codec, "Capture Volume",
5517 "Rear-Panel Capture Volume" :
5518 "Front-Panel Capture Volume");
5519 rename_ctl(codec, "Capture Switch",
5521 "Rear-Panel Capture Switch" :
5522 "Front-Panel Capture Switch");
5527 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
5528 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
5529 const struct hda_fixup *fix, int action)
5531 struct alc_spec *spec = codec->spec;
5532 static hda_nid_t preferred_pairs[] = {
5533 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
5537 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5540 spec->gen.preferred_dacs = preferred_pairs;
5541 spec->gen.auto_mute_via_amp = 1;
5542 codec->power_save_node = 0;
5545 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
5546 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
5547 const struct hda_fixup *fix, int action)
5549 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5552 snd_hda_override_wcaps(codec, 0x03, 0);
5555 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
5556 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
5557 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
5558 { SND_JACK_BTN_2, KEY_VOLUMEUP },
5559 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
5563 static void alc_headset_btn_callback(struct hda_codec *codec,
5564 struct hda_jack_callback *jack)
5568 if (jack->unsol_res & (7 << 13))
5569 report |= SND_JACK_BTN_0;
5571 if (jack->unsol_res & (1 << 16 | 3 << 8))
5572 report |= SND_JACK_BTN_1;
5575 if (jack->unsol_res & (7 << 23))
5576 report |= SND_JACK_BTN_2;
5578 /* Volume down key */
5579 if (jack->unsol_res & (7 << 10))
5580 report |= SND_JACK_BTN_3;
5582 jack->jack->button_state = report;
5585 static void alc_fixup_headset_jack(struct hda_codec *codec,
5586 const struct hda_fixup *fix, int action)
5590 case HDA_FIXUP_ACT_PRE_PROBE:
5591 snd_hda_jack_detect_enable_callback(codec, 0x55,
5592 alc_headset_btn_callback);
5593 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", false,
5594 SND_JACK_HEADSET, alc_headset_btn_keymap);
5596 case HDA_FIXUP_ACT_INIT:
5597 switch (codec->core.vendor_id) {
5601 alc_write_coef_idx(codec, 0x48, 0xd011);
5602 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5603 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
5607 alc_write_coef_idx(codec, 0x48, 0xd011);
5608 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5615 static void alc295_fixup_chromebook(struct hda_codec *codec,
5616 const struct hda_fixup *fix, int action)
5618 struct alc_spec *spec = codec->spec;
5621 case HDA_FIXUP_ACT_PRE_PROBE:
5622 spec->ultra_low_power = true;
5624 case HDA_FIXUP_ACT_INIT:
5625 switch (codec->core.vendor_id) {
5627 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
5628 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
5631 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
5632 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
5639 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
5640 const struct hda_fixup *fix, int action)
5642 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5643 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5646 /* for hda_fixup_thinkpad_acpi() */
5647 #include "thinkpad_helper.c"
5649 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
5650 const struct hda_fixup *fix, int action)
5652 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
5653 hda_fixup_thinkpad_acpi(codec, fix, action);
5656 /* for alc295_fixup_hp_top_speakers */
5657 #include "hp_x360_helper.c"
5660 ALC269_FIXUP_SONY_VAIO,
5661 ALC275_FIXUP_SONY_VAIO_GPIO2,
5662 ALC269_FIXUP_DELL_M101Z,
5663 ALC269_FIXUP_SKU_IGNORE,
5664 ALC269_FIXUP_ASUS_G73JW,
5665 ALC269_FIXUP_LENOVO_EAPD,
5666 ALC275_FIXUP_SONY_HWEQ,
5667 ALC275_FIXUP_SONY_DISABLE_AAMIX,
5669 ALC269_FIXUP_PCM_44K,
5670 ALC269_FIXUP_STEREO_DMIC,
5671 ALC269_FIXUP_HEADSET_MIC,
5672 ALC269_FIXUP_QUANTA_MUTE,
5673 ALC269_FIXUP_LIFEBOOK,
5674 ALC269_FIXUP_LIFEBOOK_EXTMIC,
5675 ALC269_FIXUP_LIFEBOOK_HP_PIN,
5676 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
5677 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
5680 ALC269VB_FIXUP_AMIC,
5681 ALC269VB_FIXUP_DMIC,
5682 ALC269_FIXUP_HP_MUTE_LED,
5683 ALC269_FIXUP_HP_MUTE_LED_MIC1,
5684 ALC269_FIXUP_HP_MUTE_LED_MIC2,
5685 ALC269_FIXUP_HP_MUTE_LED_MIC3,
5686 ALC269_FIXUP_HP_GPIO_LED,
5687 ALC269_FIXUP_HP_GPIO_MIC1_LED,
5688 ALC269_FIXUP_HP_LINE1_MIC1_LED,
5689 ALC269_FIXUP_INV_DMIC,
5690 ALC269_FIXUP_LENOVO_DOCK,
5691 ALC269_FIXUP_NO_SHUTUP,
5692 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
5693 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
5694 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5695 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
5696 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5697 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
5698 ALC269_FIXUP_HEADSET_MODE,
5699 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
5700 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
5701 ALC269_FIXUP_ASUS_X101_FUNC,
5702 ALC269_FIXUP_ASUS_X101_VERB,
5703 ALC269_FIXUP_ASUS_X101,
5704 ALC271_FIXUP_AMIC_MIC2,
5705 ALC271_FIXUP_HP_GATE_MIC_JACK,
5706 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
5707 ALC269_FIXUP_ACER_AC700,
5708 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
5709 ALC269VB_FIXUP_ASUS_ZENBOOK,
5710 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
5711 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
5712 ALC269VB_FIXUP_ORDISSIMO_EVE2,
5713 ALC283_FIXUP_CHROME_BOOK,
5714 ALC283_FIXUP_SENSE_COMBO_JACK,
5715 ALC282_FIXUP_ASUS_TX300,
5716 ALC283_FIXUP_INT_MIC,
5717 ALC290_FIXUP_MONO_SPEAKERS,
5718 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5719 ALC290_FIXUP_SUBWOOFER,
5720 ALC290_FIXUP_SUBWOOFER_HSJACK,
5721 ALC269_FIXUP_THINKPAD_ACPI,
5722 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5723 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
5724 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
5725 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5726 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
5727 ALC255_FIXUP_HEADSET_MODE,
5728 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
5729 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
5730 ALC292_FIXUP_TPT440_DOCK,
5731 ALC292_FIXUP_TPT440,
5732 ALC283_FIXUP_HEADSET_MIC,
5733 ALC255_FIXUP_MIC_MUTE_LED,
5734 ALC282_FIXUP_ASPIRE_V5_PINS,
5735 ALC280_FIXUP_HP_GPIO4,
5736 ALC286_FIXUP_HP_GPIO_LED,
5737 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
5738 ALC280_FIXUP_HP_DOCK_PINS,
5739 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
5740 ALC280_FIXUP_HP_9480M,
5741 ALC288_FIXUP_DELL_HEADSET_MODE,
5742 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
5743 ALC288_FIXUP_DELL_XPS_13,
5744 ALC288_FIXUP_DISABLE_AAMIX,
5745 ALC292_FIXUP_DELL_E7X,
5746 ALC292_FIXUP_DISABLE_AAMIX,
5747 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
5748 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5749 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
5750 ALC275_FIXUP_DELL_XPS,
5751 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
5752 ALC293_FIXUP_LENOVO_SPK_NOISE,
5753 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
5754 ALC255_FIXUP_DELL_SPK_NOISE,
5755 ALC225_FIXUP_DISABLE_MIC_VREF,
5756 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
5757 ALC295_FIXUP_DISABLE_DAC3,
5758 ALC280_FIXUP_HP_HEADSET_MIC,
5759 ALC221_FIXUP_HP_FRONT_MIC,
5760 ALC292_FIXUP_TPT460,
5761 ALC298_FIXUP_SPK_VOLUME,
5762 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
5763 ALC269_FIXUP_ATIV_BOOK_8,
5764 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
5765 ALC256_FIXUP_ASUS_HEADSET_MODE,
5766 ALC256_FIXUP_ASUS_MIC,
5767 ALC256_FIXUP_ASUS_AIO_GPIO2,
5768 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5769 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
5770 ALC233_FIXUP_LENOVO_MULTI_CODECS,
5771 ALC233_FIXUP_ACER_HEADSET_MIC,
5772 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5773 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
5774 ALC700_FIXUP_INTEL_REFERENCE,
5775 ALC274_FIXUP_DELL_BIND_DACS,
5776 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
5777 ALC298_FIXUP_TPT470_DOCK,
5778 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
5779 ALC255_FIXUP_DELL_HEADSET_MIC,
5780 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
5781 ALC295_FIXUP_HP_X360,
5782 ALC221_FIXUP_HP_HEADSET_MIC,
5783 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
5784 ALC295_FIXUP_HP_AUTO_MUTE,
5785 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
5786 ALC294_FIXUP_ASUS_MIC,
5787 ALC294_FIXUP_ASUS_HEADSET_MIC,
5788 ALC294_FIXUP_ASUS_SPK,
5789 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
5790 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
5791 ALC255_FIXUP_ACER_HEADSET_MIC,
5792 ALC295_FIXUP_CHROME_BOOK,
5793 ALC225_FIXUP_HEADSET_JACK,
5794 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
5795 ALC225_FIXUP_WYSE_AUTO_MUTE,
5796 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
5797 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
5798 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
5799 ALC299_FIXUP_PREDATOR_SPK,
5802 static const struct hda_fixup alc269_fixups[] = {
5803 [ALC269_FIXUP_SONY_VAIO] = {
5804 .type = HDA_FIXUP_PINCTLS,
5805 .v.pins = (const struct hda_pintbl[]) {
5806 {0x19, PIN_VREFGRD},
5810 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5811 .type = HDA_FIXUP_FUNC,
5812 .v.func = alc275_fixup_gpio4_off,
5814 .chain_id = ALC269_FIXUP_SONY_VAIO
5816 [ALC269_FIXUP_DELL_M101Z] = {
5817 .type = HDA_FIXUP_VERBS,
5818 .v.verbs = (const struct hda_verb[]) {
5819 /* Enables internal speaker */
5820 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5821 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5825 [ALC269_FIXUP_SKU_IGNORE] = {
5826 .type = HDA_FIXUP_FUNC,
5827 .v.func = alc_fixup_sku_ignore,
5829 [ALC269_FIXUP_ASUS_G73JW] = {
5830 .type = HDA_FIXUP_PINS,
5831 .v.pins = (const struct hda_pintbl[]) {
5832 { 0x17, 0x99130111 }, /* subwoofer */
5836 [ALC269_FIXUP_LENOVO_EAPD] = {
5837 .type = HDA_FIXUP_VERBS,
5838 .v.verbs = (const struct hda_verb[]) {
5839 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5843 [ALC275_FIXUP_SONY_HWEQ] = {
5844 .type = HDA_FIXUP_FUNC,
5845 .v.func = alc269_fixup_hweq,
5847 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5849 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5850 .type = HDA_FIXUP_FUNC,
5851 .v.func = alc_fixup_disable_aamix,
5853 .chain_id = ALC269_FIXUP_SONY_VAIO
5855 [ALC271_FIXUP_DMIC] = {
5856 .type = HDA_FIXUP_FUNC,
5857 .v.func = alc271_fixup_dmic,
5859 [ALC269_FIXUP_PCM_44K] = {
5860 .type = HDA_FIXUP_FUNC,
5861 .v.func = alc269_fixup_pcm_44k,
5863 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5865 [ALC269_FIXUP_STEREO_DMIC] = {
5866 .type = HDA_FIXUP_FUNC,
5867 .v.func = alc269_fixup_stereo_dmic,
5869 [ALC269_FIXUP_HEADSET_MIC] = {
5870 .type = HDA_FIXUP_FUNC,
5871 .v.func = alc269_fixup_headset_mic,
5873 [ALC269_FIXUP_QUANTA_MUTE] = {
5874 .type = HDA_FIXUP_FUNC,
5875 .v.func = alc269_fixup_quanta_mute,
5877 [ALC269_FIXUP_LIFEBOOK] = {
5878 .type = HDA_FIXUP_PINS,
5879 .v.pins = (const struct hda_pintbl[]) {
5880 { 0x1a, 0x2101103f }, /* dock line-out */
5881 { 0x1b, 0x23a11040 }, /* dock mic-in */
5885 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5887 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
5888 .type = HDA_FIXUP_PINS,
5889 .v.pins = (const struct hda_pintbl[]) {
5890 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
5894 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
5895 .type = HDA_FIXUP_PINS,
5896 .v.pins = (const struct hda_pintbl[]) {
5897 { 0x21, 0x0221102f }, /* HP out */
5901 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
5902 .type = HDA_FIXUP_FUNC,
5903 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5905 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
5906 .type = HDA_FIXUP_FUNC,
5907 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
5909 [ALC269_FIXUP_AMIC] = {
5910 .type = HDA_FIXUP_PINS,
5911 .v.pins = (const struct hda_pintbl[]) {
5912 { 0x14, 0x99130110 }, /* speaker */
5913 { 0x15, 0x0121401f }, /* HP out */
5914 { 0x18, 0x01a19c20 }, /* mic */
5915 { 0x19, 0x99a3092f }, /* int-mic */
5919 [ALC269_FIXUP_DMIC] = {
5920 .type = HDA_FIXUP_PINS,
5921 .v.pins = (const struct hda_pintbl[]) {
5922 { 0x12, 0x99a3092f }, /* int-mic */
5923 { 0x14, 0x99130110 }, /* speaker */
5924 { 0x15, 0x0121401f }, /* HP out */
5925 { 0x18, 0x01a19c20 }, /* mic */
5929 [ALC269VB_FIXUP_AMIC] = {
5930 .type = HDA_FIXUP_PINS,
5931 .v.pins = (const struct hda_pintbl[]) {
5932 { 0x14, 0x99130110 }, /* speaker */
5933 { 0x18, 0x01a19c20 }, /* mic */
5934 { 0x19, 0x99a3092f }, /* int-mic */
5935 { 0x21, 0x0121401f }, /* HP out */
5939 [ALC269VB_FIXUP_DMIC] = {
5940 .type = HDA_FIXUP_PINS,
5941 .v.pins = (const struct hda_pintbl[]) {
5942 { 0x12, 0x99a3092f }, /* int-mic */
5943 { 0x14, 0x99130110 }, /* speaker */
5944 { 0x18, 0x01a19c20 }, /* mic */
5945 { 0x21, 0x0121401f }, /* HP out */
5949 [ALC269_FIXUP_HP_MUTE_LED] = {
5950 .type = HDA_FIXUP_FUNC,
5951 .v.func = alc269_fixup_hp_mute_led,
5953 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
5954 .type = HDA_FIXUP_FUNC,
5955 .v.func = alc269_fixup_hp_mute_led_mic1,
5957 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
5958 .type = HDA_FIXUP_FUNC,
5959 .v.func = alc269_fixup_hp_mute_led_mic2,
5961 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
5962 .type = HDA_FIXUP_FUNC,
5963 .v.func = alc269_fixup_hp_mute_led_mic3,
5965 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
5967 [ALC269_FIXUP_HP_GPIO_LED] = {
5968 .type = HDA_FIXUP_FUNC,
5969 .v.func = alc269_fixup_hp_gpio_led,
5971 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
5972 .type = HDA_FIXUP_FUNC,
5973 .v.func = alc269_fixup_hp_gpio_mic1_led,
5975 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
5976 .type = HDA_FIXUP_FUNC,
5977 .v.func = alc269_fixup_hp_line1_mic1_led,
5979 [ALC269_FIXUP_INV_DMIC] = {
5980 .type = HDA_FIXUP_FUNC,
5981 .v.func = alc_fixup_inv_dmic,
5983 [ALC269_FIXUP_NO_SHUTUP] = {
5984 .type = HDA_FIXUP_FUNC,
5985 .v.func = alc_fixup_no_shutup,
5987 [ALC269_FIXUP_LENOVO_DOCK] = {
5988 .type = HDA_FIXUP_PINS,
5989 .v.pins = (const struct hda_pintbl[]) {
5990 { 0x19, 0x23a11040 }, /* dock mic */
5991 { 0x1b, 0x2121103f }, /* dock headphone */
5995 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
5997 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
5998 .type = HDA_FIXUP_FUNC,
5999 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6001 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6003 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6004 .type = HDA_FIXUP_PINS,
6005 .v.pins = (const struct hda_pintbl[]) {
6006 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6007 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6011 .chain_id = ALC269_FIXUP_HEADSET_MODE
6013 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6014 .type = HDA_FIXUP_PINS,
6015 .v.pins = (const struct hda_pintbl[]) {
6016 { 0x16, 0x21014020 }, /* dock line out */
6017 { 0x19, 0x21a19030 }, /* dock mic */
6018 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6022 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6024 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
6025 .type = HDA_FIXUP_PINS,
6026 .v.pins = (const struct hda_pintbl[]) {
6027 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6031 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6033 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
6034 .type = HDA_FIXUP_PINS,
6035 .v.pins = (const struct hda_pintbl[]) {
6036 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6037 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6041 .chain_id = ALC269_FIXUP_HEADSET_MODE
6043 [ALC269_FIXUP_HEADSET_MODE] = {
6044 .type = HDA_FIXUP_FUNC,
6045 .v.func = alc_fixup_headset_mode,
6047 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6049 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6050 .type = HDA_FIXUP_FUNC,
6051 .v.func = alc_fixup_headset_mode_no_hp_mic,
6053 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
6054 .type = HDA_FIXUP_PINS,
6055 .v.pins = (const struct hda_pintbl[]) {
6056 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
6060 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6062 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
6063 .type = HDA_FIXUP_PINS,
6064 .v.pins = (const struct hda_pintbl[]) {
6065 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6069 .chain_id = ALC269_FIXUP_HEADSET_MIC
6071 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
6072 .type = HDA_FIXUP_PINS,
6073 .v.pins = (const struct hda_pintbl[]) {
6087 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6089 [ALC269_FIXUP_ASUS_X101_FUNC] = {
6090 .type = HDA_FIXUP_FUNC,
6091 .v.func = alc269_fixup_x101_headset_mic,
6093 [ALC269_FIXUP_ASUS_X101_VERB] = {
6094 .type = HDA_FIXUP_VERBS,
6095 .v.verbs = (const struct hda_verb[]) {
6096 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
6097 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
6098 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
6102 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
6104 [ALC269_FIXUP_ASUS_X101] = {
6105 .type = HDA_FIXUP_PINS,
6106 .v.pins = (const struct hda_pintbl[]) {
6107 { 0x18, 0x04a1182c }, /* Headset mic */
6111 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
6113 [ALC271_FIXUP_AMIC_MIC2] = {
6114 .type = HDA_FIXUP_PINS,
6115 .v.pins = (const struct hda_pintbl[]) {
6116 { 0x14, 0x99130110 }, /* speaker */
6117 { 0x19, 0x01a19c20 }, /* mic */
6118 { 0x1b, 0x99a7012f }, /* int-mic */
6119 { 0x21, 0x0121401f }, /* HP out */
6123 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
6124 .type = HDA_FIXUP_FUNC,
6125 .v.func = alc271_hp_gate_mic_jack,
6127 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6129 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
6130 .type = HDA_FIXUP_FUNC,
6131 .v.func = alc269_fixup_limit_int_mic_boost,
6133 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
6135 [ALC269_FIXUP_ACER_AC700] = {
6136 .type = HDA_FIXUP_PINS,
6137 .v.pins = (const struct hda_pintbl[]) {
6138 { 0x12, 0x99a3092f }, /* int-mic */
6139 { 0x14, 0x99130110 }, /* speaker */
6140 { 0x18, 0x03a11c20 }, /* mic */
6141 { 0x1e, 0x0346101e }, /* SPDIF1 */
6142 { 0x21, 0x0321101f }, /* HP out */
6146 .chain_id = ALC271_FIXUP_DMIC,
6148 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
6149 .type = HDA_FIXUP_FUNC,
6150 .v.func = alc269_fixup_limit_int_mic_boost,
6152 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6154 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
6155 .type = HDA_FIXUP_FUNC,
6156 .v.func = alc269_fixup_limit_int_mic_boost,
6158 .chain_id = ALC269VB_FIXUP_DMIC,
6160 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
6161 .type = HDA_FIXUP_VERBS,
6162 .v.verbs = (const struct hda_verb[]) {
6163 /* class-D output amp +5dB */
6164 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
6165 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
6169 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
6171 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
6172 .type = HDA_FIXUP_FUNC,
6173 .v.func = alc269_fixup_limit_int_mic_boost,
6175 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
6177 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
6178 .type = HDA_FIXUP_PINS,
6179 .v.pins = (const struct hda_pintbl[]) {
6180 { 0x12, 0x99a3092f }, /* int-mic */
6181 { 0x18, 0x03a11d20 }, /* mic */
6182 { 0x19, 0x411111f0 }, /* Unused bogus pin */
6186 [ALC283_FIXUP_CHROME_BOOK] = {
6187 .type = HDA_FIXUP_FUNC,
6188 .v.func = alc283_fixup_chromebook,
6190 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
6191 .type = HDA_FIXUP_FUNC,
6192 .v.func = alc283_fixup_sense_combo_jack,
6194 .chain_id = ALC283_FIXUP_CHROME_BOOK,
6196 [ALC282_FIXUP_ASUS_TX300] = {
6197 .type = HDA_FIXUP_FUNC,
6198 .v.func = alc282_fixup_asus_tx300,
6200 [ALC283_FIXUP_INT_MIC] = {
6201 .type = HDA_FIXUP_VERBS,
6202 .v.verbs = (const struct hda_verb[]) {
6203 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
6204 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
6208 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6210 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
6211 .type = HDA_FIXUP_PINS,
6212 .v.pins = (const struct hda_pintbl[]) {
6213 { 0x17, 0x90170112 }, /* subwoofer */
6217 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6219 [ALC290_FIXUP_SUBWOOFER] = {
6220 .type = HDA_FIXUP_PINS,
6221 .v.pins = (const struct hda_pintbl[]) {
6222 { 0x17, 0x90170112 }, /* subwoofer */
6226 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
6228 [ALC290_FIXUP_MONO_SPEAKERS] = {
6229 .type = HDA_FIXUP_FUNC,
6230 .v.func = alc290_fixup_mono_speakers,
6232 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
6233 .type = HDA_FIXUP_FUNC,
6234 .v.func = alc290_fixup_mono_speakers,
6236 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6238 [ALC269_FIXUP_THINKPAD_ACPI] = {
6239 .type = HDA_FIXUP_FUNC,
6240 .v.func = alc_fixup_thinkpad_acpi,
6242 .chain_id = ALC269_FIXUP_SKU_IGNORE,
6244 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
6245 .type = HDA_FIXUP_FUNC,
6246 .v.func = alc_fixup_inv_dmic,
6248 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6250 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
6251 .type = HDA_FIXUP_PINS,
6252 .v.pins = (const struct hda_pintbl[]) {
6253 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6257 .chain_id = ALC255_FIXUP_HEADSET_MODE
6259 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6260 .type = HDA_FIXUP_PINS,
6261 .v.pins = (const struct hda_pintbl[]) {
6262 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6266 .chain_id = ALC255_FIXUP_HEADSET_MODE
6268 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6269 .type = HDA_FIXUP_PINS,
6270 .v.pins = (const struct hda_pintbl[]) {
6271 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6272 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6276 .chain_id = ALC255_FIXUP_HEADSET_MODE
6278 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6279 .type = HDA_FIXUP_PINS,
6280 .v.pins = (const struct hda_pintbl[]) {
6281 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6285 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6287 [ALC255_FIXUP_HEADSET_MODE] = {
6288 .type = HDA_FIXUP_FUNC,
6289 .v.func = alc_fixup_headset_mode_alc255,
6291 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6293 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6294 .type = HDA_FIXUP_FUNC,
6295 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
6297 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6298 .type = HDA_FIXUP_PINS,
6299 .v.pins = (const struct hda_pintbl[]) {
6300 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6301 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6305 .chain_id = ALC269_FIXUP_HEADSET_MODE
6307 [ALC292_FIXUP_TPT440_DOCK] = {
6308 .type = HDA_FIXUP_FUNC,
6309 .v.func = alc_fixup_tpt440_dock,
6311 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6313 [ALC292_FIXUP_TPT440] = {
6314 .type = HDA_FIXUP_FUNC,
6315 .v.func = alc_fixup_disable_aamix,
6317 .chain_id = ALC292_FIXUP_TPT440_DOCK,
6319 [ALC283_FIXUP_HEADSET_MIC] = {
6320 .type = HDA_FIXUP_PINS,
6321 .v.pins = (const struct hda_pintbl[]) {
6322 { 0x19, 0x04a110f0 },
6326 [ALC255_FIXUP_MIC_MUTE_LED] = {
6327 .type = HDA_FIXUP_FUNC,
6328 .v.func = snd_hda_gen_fixup_micmute_led,
6330 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
6331 .type = HDA_FIXUP_PINS,
6332 .v.pins = (const struct hda_pintbl[]) {
6333 { 0x12, 0x90a60130 },
6334 { 0x14, 0x90170110 },
6335 { 0x17, 0x40000008 },
6336 { 0x18, 0x411111f0 },
6337 { 0x19, 0x01a1913c },
6338 { 0x1a, 0x411111f0 },
6339 { 0x1b, 0x411111f0 },
6340 { 0x1d, 0x40f89b2d },
6341 { 0x1e, 0x411111f0 },
6342 { 0x21, 0x0321101f },
6346 [ALC280_FIXUP_HP_GPIO4] = {
6347 .type = HDA_FIXUP_FUNC,
6348 .v.func = alc280_fixup_hp_gpio4,
6350 [ALC286_FIXUP_HP_GPIO_LED] = {
6351 .type = HDA_FIXUP_FUNC,
6352 .v.func = alc286_fixup_hp_gpio_led,
6354 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
6355 .type = HDA_FIXUP_FUNC,
6356 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
6358 [ALC280_FIXUP_HP_DOCK_PINS] = {
6359 .type = HDA_FIXUP_PINS,
6360 .v.pins = (const struct hda_pintbl[]) {
6361 { 0x1b, 0x21011020 }, /* line-out */
6362 { 0x1a, 0x01a1903c }, /* headset mic */
6363 { 0x18, 0x2181103f }, /* line-in */
6367 .chain_id = ALC280_FIXUP_HP_GPIO4
6369 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
6370 .type = HDA_FIXUP_PINS,
6371 .v.pins = (const struct hda_pintbl[]) {
6372 { 0x1b, 0x21011020 }, /* line-out */
6373 { 0x18, 0x2181103f }, /* line-in */
6377 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
6379 [ALC280_FIXUP_HP_9480M] = {
6380 .type = HDA_FIXUP_FUNC,
6381 .v.func = alc280_fixup_hp_9480m,
6383 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
6384 .type = HDA_FIXUP_FUNC,
6385 .v.func = alc_fixup_headset_mode_dell_alc288,
6387 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6389 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6390 .type = HDA_FIXUP_PINS,
6391 .v.pins = (const struct hda_pintbl[]) {
6392 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6393 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6397 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
6399 [ALC288_FIXUP_DISABLE_AAMIX] = {
6400 .type = HDA_FIXUP_FUNC,
6401 .v.func = alc_fixup_disable_aamix,
6403 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
6405 [ALC288_FIXUP_DELL_XPS_13] = {
6406 .type = HDA_FIXUP_FUNC,
6407 .v.func = alc_fixup_dell_xps13,
6409 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
6411 [ALC292_FIXUP_DISABLE_AAMIX] = {
6412 .type = HDA_FIXUP_FUNC,
6413 .v.func = alc_fixup_disable_aamix,
6415 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
6417 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
6418 .type = HDA_FIXUP_FUNC,
6419 .v.func = alc_fixup_disable_aamix,
6421 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
6423 [ALC292_FIXUP_DELL_E7X] = {
6424 .type = HDA_FIXUP_FUNC,
6425 .v.func = alc_fixup_dell_xps13,
6427 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
6429 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6430 .type = HDA_FIXUP_PINS,
6431 .v.pins = (const struct hda_pintbl[]) {
6432 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6433 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6437 .chain_id = ALC269_FIXUP_HEADSET_MODE
6439 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
6440 .type = HDA_FIXUP_PINS,
6441 .v.pins = (const struct hda_pintbl[]) {
6442 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6446 .chain_id = ALC269_FIXUP_HEADSET_MODE
6448 [ALC275_FIXUP_DELL_XPS] = {
6449 .type = HDA_FIXUP_VERBS,
6450 .v.verbs = (const struct hda_verb[]) {
6451 /* Enables internal speaker */
6452 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
6453 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
6454 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
6455 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
6459 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
6460 .type = HDA_FIXUP_VERBS,
6461 .v.verbs = (const struct hda_verb[]) {
6462 /* Disable pass-through path for FRONT 14h */
6463 {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
6464 {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
6468 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6470 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
6471 .type = HDA_FIXUP_FUNC,
6472 .v.func = alc_fixup_disable_aamix,
6474 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6476 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
6477 .type = HDA_FIXUP_FUNC,
6478 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
6480 [ALC255_FIXUP_DELL_SPK_NOISE] = {
6481 .type = HDA_FIXUP_FUNC,
6482 .v.func = alc_fixup_disable_aamix,
6484 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6486 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
6487 .type = HDA_FIXUP_FUNC,
6488 .v.func = alc_fixup_disable_mic_vref,
6490 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6492 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6493 .type = HDA_FIXUP_VERBS,
6494 .v.verbs = (const struct hda_verb[]) {
6495 /* Disable pass-through path for FRONT 14h */
6496 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6497 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6501 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
6503 [ALC280_FIXUP_HP_HEADSET_MIC] = {
6504 .type = HDA_FIXUP_FUNC,
6505 .v.func = alc_fixup_disable_aamix,
6507 .chain_id = ALC269_FIXUP_HEADSET_MIC,
6509 [ALC221_FIXUP_HP_FRONT_MIC] = {
6510 .type = HDA_FIXUP_PINS,
6511 .v.pins = (const struct hda_pintbl[]) {
6512 { 0x19, 0x02a19020 }, /* Front Mic */
6516 [ALC292_FIXUP_TPT460] = {
6517 .type = HDA_FIXUP_FUNC,
6518 .v.func = alc_fixup_tpt440_dock,
6520 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6522 [ALC298_FIXUP_SPK_VOLUME] = {
6523 .type = HDA_FIXUP_FUNC,
6524 .v.func = alc298_fixup_speaker_volume,
6526 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6528 [ALC295_FIXUP_DISABLE_DAC3] = {
6529 .type = HDA_FIXUP_FUNC,
6530 .v.func = alc295_fixup_disable_dac3,
6532 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6533 .type = HDA_FIXUP_PINS,
6534 .v.pins = (const struct hda_pintbl[]) {
6535 { 0x1b, 0x90170151 },
6539 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6541 [ALC269_FIXUP_ATIV_BOOK_8] = {
6542 .type = HDA_FIXUP_FUNC,
6543 .v.func = alc_fixup_auto_mute_via_amp,
6545 .chain_id = ALC269_FIXUP_NO_SHUTUP
6547 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6548 .type = HDA_FIXUP_PINS,
6549 .v.pins = (const struct hda_pintbl[]) {
6550 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6551 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6555 .chain_id = ALC269_FIXUP_HEADSET_MODE
6557 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6558 .type = HDA_FIXUP_FUNC,
6559 .v.func = alc_fixup_headset_mode,
6561 [ALC256_FIXUP_ASUS_MIC] = {
6562 .type = HDA_FIXUP_PINS,
6563 .v.pins = (const struct hda_pintbl[]) {
6564 { 0x13, 0x90a60160 }, /* use as internal mic */
6565 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6569 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6571 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
6572 .type = HDA_FIXUP_FUNC,
6573 /* Set up GPIO2 for the speaker amp */
6574 .v.func = alc_fixup_gpio4,
6576 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6577 .type = HDA_FIXUP_PINS,
6578 .v.pins = (const struct hda_pintbl[]) {
6579 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6583 .chain_id = ALC269_FIXUP_HEADSET_MIC
6585 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6586 .type = HDA_FIXUP_VERBS,
6587 .v.verbs = (const struct hda_verb[]) {
6588 /* Enables internal speaker */
6589 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6590 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6594 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6596 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6597 .type = HDA_FIXUP_FUNC,
6598 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6600 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
6601 .type = HDA_FIXUP_VERBS,
6602 .v.verbs = (const struct hda_verb[]) {
6603 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
6604 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
6608 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6610 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6611 .type = HDA_FIXUP_PINS,
6612 .v.pins = (const struct hda_pintbl[]) {
6613 /* Change the mic location from front to right, otherwise there are
6614 two front mics with the same name, pulseaudio can't handle them.
6615 This is just a temporary workaround, after applying this fixup,
6616 there will be one "Front Mic" and one "Mic" in this machine.
6618 { 0x1a, 0x04a19040 },
6622 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6623 .type = HDA_FIXUP_PINS,
6624 .v.pins = (const struct hda_pintbl[]) {
6625 { 0x16, 0x0101102f }, /* Rear Headset HP */
6626 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6627 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6628 { 0x1b, 0x02011020 },
6632 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6634 [ALC700_FIXUP_INTEL_REFERENCE] = {
6635 .type = HDA_FIXUP_VERBS,
6636 .v.verbs = (const struct hda_verb[]) {
6637 /* Enables internal speaker */
6638 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
6639 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
6640 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
6641 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
6642 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
6643 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
6644 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
6645 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
6649 [ALC274_FIXUP_DELL_BIND_DACS] = {
6650 .type = HDA_FIXUP_FUNC,
6651 .v.func = alc274_fixup_bind_dacs,
6653 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6655 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6656 .type = HDA_FIXUP_PINS,
6657 .v.pins = (const struct hda_pintbl[]) {
6658 { 0x1b, 0x0401102f },
6662 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6664 [ALC298_FIXUP_TPT470_DOCK] = {
6665 .type = HDA_FIXUP_FUNC,
6666 .v.func = alc_fixup_tpt470_dock,
6668 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
6670 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
6671 .type = HDA_FIXUP_PINS,
6672 .v.pins = (const struct hda_pintbl[]) {
6673 { 0x14, 0x0201101f },
6677 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6679 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
6680 .type = HDA_FIXUP_PINS,
6681 .v.pins = (const struct hda_pintbl[]) {
6682 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6686 .chain_id = ALC269_FIXUP_HEADSET_MIC
6688 [ALC295_FIXUP_HP_X360] = {
6689 .type = HDA_FIXUP_FUNC,
6690 .v.func = alc295_fixup_hp_top_speakers,
6692 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
6694 [ALC221_FIXUP_HP_HEADSET_MIC] = {
6695 .type = HDA_FIXUP_PINS,
6696 .v.pins = (const struct hda_pintbl[]) {
6697 { 0x19, 0x0181313f},
6701 .chain_id = ALC269_FIXUP_HEADSET_MIC
6703 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
6704 .type = HDA_FIXUP_FUNC,
6705 .v.func = alc285_fixup_invalidate_dacs,
6707 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6709 [ALC295_FIXUP_HP_AUTO_MUTE] = {
6710 .type = HDA_FIXUP_FUNC,
6711 .v.func = alc_fixup_auto_mute_via_amp,
6713 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
6714 .type = HDA_FIXUP_PINS,
6715 .v.pins = (const struct hda_pintbl[]) {
6716 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6720 .chain_id = ALC269_FIXUP_HEADSET_MIC
6722 [ALC294_FIXUP_ASUS_MIC] = {
6723 .type = HDA_FIXUP_PINS,
6724 .v.pins = (const struct hda_pintbl[]) {
6725 { 0x13, 0x90a60160 }, /* use as internal mic */
6726 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6730 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6732 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
6733 .type = HDA_FIXUP_PINS,
6734 .v.pins = (const struct hda_pintbl[]) {
6735 { 0x19, 0x01a1103c }, /* use as headset mic */
6739 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6741 [ALC294_FIXUP_ASUS_SPK] = {
6742 .type = HDA_FIXUP_VERBS,
6743 .v.verbs = (const struct hda_verb[]) {
6745 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
6746 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
6750 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
6752 [ALC295_FIXUP_CHROME_BOOK] = {
6753 .type = HDA_FIXUP_FUNC,
6754 .v.func = alc295_fixup_chromebook,
6756 .chain_id = ALC225_FIXUP_HEADSET_JACK
6758 [ALC225_FIXUP_HEADSET_JACK] = {
6759 .type = HDA_FIXUP_FUNC,
6760 .v.func = alc_fixup_headset_jack,
6762 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
6763 .type = HDA_FIXUP_PINS,
6764 .v.pins = (const struct hda_pintbl[]) {
6765 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6769 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6771 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
6772 .type = HDA_FIXUP_VERBS,
6773 .v.verbs = (const struct hda_verb[]) {
6774 /* Disable PCBEEP-IN passthrough */
6775 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6776 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6780 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
6782 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
6783 .type = HDA_FIXUP_PINS,
6784 .v.pins = (const struct hda_pintbl[]) {
6785 { 0x19, 0x03a11130 },
6786 { 0x1a, 0x90a60140 }, /* use as internal mic */
6790 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6792 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
6793 .type = HDA_FIXUP_PINS,
6794 .v.pins = (const struct hda_pintbl[]) {
6795 { 0x16, 0x01011020 }, /* Rear Line out */
6796 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
6800 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
6802 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
6803 .type = HDA_FIXUP_FUNC,
6804 .v.func = alc_fixup_auto_mute_via_amp,
6806 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
6808 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
6809 .type = HDA_FIXUP_FUNC,
6810 .v.func = alc_fixup_disable_mic_vref,
6812 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6814 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
6815 .type = HDA_FIXUP_VERBS,
6816 .v.verbs = (const struct hda_verb[]) {
6817 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
6818 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
6822 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
6824 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6825 .type = HDA_FIXUP_PINS,
6826 .v.pins = (const struct hda_pintbl[]) {
6827 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6831 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6833 [ALC299_FIXUP_PREDATOR_SPK] = {
6834 .type = HDA_FIXUP_PINS,
6835 .v.pins = (const struct hda_pintbl[]) {
6836 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
6842 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
6843 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
6844 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6845 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
6846 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
6847 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6848 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6849 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
6850 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
6851 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6852 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6853 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
6854 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
6855 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
6856 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
6857 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
6858 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
6859 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6860 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6861 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6862 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6863 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
6864 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
6865 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6866 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
6867 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
6868 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
6869 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
6870 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
6871 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
6872 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6873 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6874 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6875 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6876 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6877 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
6878 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
6879 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
6880 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6881 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6882 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
6883 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
6884 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
6885 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
6886 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6887 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6888 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6889 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6890 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6891 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6892 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6893 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
6894 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
6895 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
6896 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
6897 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
6898 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
6899 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
6900 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
6901 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
6902 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
6903 SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
6904 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
6905 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
6906 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
6907 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
6908 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
6909 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
6910 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
6911 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
6912 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6913 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6914 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
6915 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
6916 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
6917 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
6919 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6920 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6921 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6922 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6923 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6924 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6925 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6926 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6927 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6928 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6929 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6930 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6931 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
6932 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
6933 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
6934 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6935 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6936 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6937 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6938 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6939 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
6940 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6941 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6943 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6944 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6945 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6946 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6947 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6948 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6949 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6950 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6951 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6952 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
6953 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6954 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6955 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6956 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6957 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6958 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6959 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6960 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6961 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6962 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6963 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6964 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6965 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6966 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6967 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6968 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6969 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6970 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6971 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6972 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
6973 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6974 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6975 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
6976 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
6977 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
6978 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6979 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6980 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
6981 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
6982 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
6983 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
6984 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6985 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
6986 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
6987 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6988 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6989 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6990 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
6991 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
6992 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
6993 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
6994 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
6995 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
6996 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
6997 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6998 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
6999 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
7000 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
7001 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7002 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7003 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
7004 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
7005 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
7006 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
7007 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7008 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7009 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
7010 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
7011 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
7012 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
7013 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7014 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7015 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
7016 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
7017 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
7018 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
7019 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
7020 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
7021 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
7022 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
7023 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
7024 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
7025 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
7026 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
7027 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
7028 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
7029 SND_PCI_QUIRK(0x1558, 0x1325, "System76 Darter Pro (darp5)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7030 SND_PCI_QUIRK(0x1558, 0x8550, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7031 SND_PCI_QUIRK(0x1558, 0x8551, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7032 SND_PCI_QUIRK(0x1558, 0x8560, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7033 SND_PCI_QUIRK(0x1558, 0x8561, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7034 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
7035 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
7036 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
7037 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
7038 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
7039 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
7040 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
7041 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
7042 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
7043 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
7044 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
7045 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
7046 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
7047 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
7048 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
7049 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
7050 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7051 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
7052 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7053 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
7054 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
7055 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
7056 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7057 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7058 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
7059 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
7060 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
7061 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7062 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7063 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
7064 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7065 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7066 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7067 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7068 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
7069 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
7070 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7071 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7072 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7073 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7074 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7075 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
7076 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
7077 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
7078 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7079 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
7080 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
7081 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7082 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
7083 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
7084 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
7085 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
7086 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
7087 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
7088 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
7089 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
7090 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7091 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7092 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7093 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7094 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7095 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7096 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
7097 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
7098 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
7099 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
7102 /* Below is a quirk table taken from the old code.
7103 * Basically the device should work as is without the fixup table.
7104 * If BIOS doesn't give a proper info, enable the corresponding
7107 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
7109 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
7110 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
7111 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
7112 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
7113 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
7114 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
7115 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
7116 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
7117 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
7118 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
7119 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
7120 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
7121 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
7122 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
7123 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
7124 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
7125 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
7126 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
7127 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
7128 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
7129 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
7130 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
7131 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
7132 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
7133 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
7134 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
7135 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
7136 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
7137 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
7138 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
7139 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
7140 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
7141 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
7142 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
7143 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
7144 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
7145 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
7146 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
7147 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
7152 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
7153 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
7154 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
7155 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
7156 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
7157 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
7161 static const struct hda_model_fixup alc269_fixup_models[] = {
7162 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
7163 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
7164 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
7165 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
7166 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7167 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
7168 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
7169 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
7170 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
7171 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7172 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
7173 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
7174 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
7175 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
7176 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
7177 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
7178 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
7179 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
7180 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
7181 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
7182 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
7183 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
7184 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
7185 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
7186 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
7187 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
7188 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
7189 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
7190 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
7191 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
7192 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
7193 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
7194 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
7195 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
7196 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
7197 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
7198 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
7199 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
7200 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
7201 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
7202 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
7203 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
7204 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
7205 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
7206 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
7207 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
7208 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
7209 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
7210 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
7211 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
7212 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
7213 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
7214 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
7215 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
7216 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
7217 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
7218 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
7219 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
7220 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
7221 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
7222 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
7223 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
7224 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
7225 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
7226 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
7227 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
7228 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7229 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
7230 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
7231 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
7232 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
7233 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
7234 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
7235 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
7236 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
7237 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
7238 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
7239 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
7240 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
7241 {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"},
7242 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
7243 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
7244 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
7245 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
7246 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
7247 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
7248 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
7249 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
7250 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
7251 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
7252 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
7253 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
7254 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
7255 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
7256 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
7257 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
7258 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
7259 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
7260 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
7261 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
7262 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
7263 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
7264 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
7265 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
7266 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
7269 #define ALC225_STANDARD_PINS \
7272 #define ALC256_STANDARD_PINS \
7273 {0x12, 0x90a60140}, \
7274 {0x14, 0x90170110}, \
7277 #define ALC282_STANDARD_PINS \
7280 #define ALC290_STANDARD_PINS \
7283 #define ALC292_STANDARD_PINS \
7284 {0x14, 0x90170110}, \
7287 #define ALC295_STANDARD_PINS \
7288 {0x12, 0xb7a60130}, \
7289 {0x14, 0x90170110}, \
7292 #define ALC298_STANDARD_PINS \
7293 {0x12, 0x90a60130}, \
7296 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
7297 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
7302 {0x21, 0x0221102f}),
7303 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7306 {0x21, 0x02211030}),
7307 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7310 {0x21, 0x03211020}),
7311 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7314 {0x21, 0x03211020}),
7315 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7316 ALC225_STANDARD_PINS,
7318 {0x14, 0x901701a0}),
7319 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7320 ALC225_STANDARD_PINS,
7322 {0x14, 0x901701b0}),
7323 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7324 ALC225_STANDARD_PINS,
7326 {0x14, 0x901701a0}),
7327 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7328 ALC225_STANDARD_PINS,
7330 {0x14, 0x901701b0}),
7331 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7332 ALC225_STANDARD_PINS,
7334 {0x1b, 0x90170110}),
7335 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7338 {0x21, 0x02211020}),
7339 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7343 {0x21, 0x02211020}),
7344 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7349 {0x21, 0x0221101f}),
7350 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7355 {0x21, 0x0221101f}),
7356 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7360 {0x21, 0x0221101f}),
7361 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7364 {0x21, 0x02211020}),
7365 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7368 {0x21, 0x02211020}),
7369 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7370 {0x21, 0x02211020}),
7371 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7374 {0x21, 0x02211020}),
7375 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7377 {0x21, 0x02211020}),
7378 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7380 {0x21, 0x02211040}),
7381 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7384 {0x21, 0x02211020}),
7385 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7388 {0x21, 0x02211030}),
7389 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7392 {0x21, 0x0221101f}),
7393 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7396 {0x21, 0x0221101f}),
7397 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7400 {0x21, 0x0221103f}),
7401 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7404 {0x21, 0x0221103f}),
7405 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7408 {0x21, 0x0221103f}),
7409 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7412 {0x21, 0x0221105f}),
7413 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7416 {0x21, 0x0221101f}),
7417 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7421 {0x21, 0x0321102f}),
7422 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7425 {0x21, 0x02211040}),
7426 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7429 {0x21, 0x02211050}),
7430 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7433 {0x21, 0x02211030}),
7434 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7437 {0x21, 0x02211040}),
7438 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7441 {0x21, 0x02211040}),
7442 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7445 {0x21, 0x02211050}),
7446 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7449 {0x21, 0x02211040}),
7450 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7453 {0x21, 0x02211030}),
7454 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7456 {0x21, 0x02211010}),
7457 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7461 {0x21, 0x0221101f}),
7462 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7465 {0x21, 0x02211030}),
7466 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7469 {0x21, 0x02211030}),
7470 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7473 {0x21, 0x02211030}),
7474 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7477 {0x21, 0x02211020}),
7478 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7482 {0x21, 0x0221101f}),
7483 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7484 ALC256_STANDARD_PINS),
7485 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7488 {0x21, 0x0221101f}),
7489 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7492 {0x21, 0x04211020}),
7493 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7496 {0x21, 0x03211020}),
7497 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7500 {0x21, 0x03211020}),
7501 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7504 {0x21, 0x04211020}),
7505 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7508 {0x21, 0x03211020}),
7509 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7513 {0x21, 0x04211020}),
7514 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
7518 {0x1a, 0x04a11020}),
7519 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
7525 {0x1b, 0x02011020}),
7526 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7527 ALC282_STANDARD_PINS,
7530 {0x21, 0x0321101f}),
7531 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7532 ALC282_STANDARD_PINS,
7535 {0x21, 0x03211040}),
7536 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7537 ALC282_STANDARD_PINS,
7540 {0x21, 0x03211020}),
7541 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7542 ALC282_STANDARD_PINS,
7545 {0x21, 0x0421101f}),
7546 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
7547 ALC282_STANDARD_PINS,
7550 {0x21, 0x04211020}),
7551 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7552 ALC282_STANDARD_PINS,
7554 {0x21, 0x0321101f}),
7555 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7558 {0x21, 0x02211030}),
7559 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7560 ALC282_STANDARD_PINS,
7563 {0x21, 0x0321101f}),
7564 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7568 {0x21, 0x04211020}),
7569 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7572 {0x21, 0x02211020}),
7573 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7576 {0x21, 0x0321101f}),
7577 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7580 {0x21, 0x04211020}),
7581 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7582 ALC290_STANDARD_PINS,
7585 {0x1a, 0x04a11020}),
7586 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7587 ALC290_STANDARD_PINS,
7590 {0x1a, 0x04a11020}),
7591 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7592 ALC290_STANDARD_PINS,
7594 {0x1a, 0x04a11020}),
7595 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7596 ALC290_STANDARD_PINS,
7598 {0x1a, 0x04a11040}),
7599 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7600 ALC290_STANDARD_PINS,
7603 {0x1a, 0x04a11040}),
7604 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7605 ALC290_STANDARD_PINS,
7608 {0x1a, 0x04a11020}),
7609 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7610 ALC290_STANDARD_PINS,
7613 {0x1a, 0x04a11020}),
7614 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7615 ALC292_STANDARD_PINS,
7618 {0x19, 0x01a19030}),
7619 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7620 ALC292_STANDARD_PINS,
7624 {0x19, 0x01a1903e}),
7625 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7626 ALC292_STANDARD_PINS,
7627 {0x12, 0x90a60140}),
7628 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7629 ALC292_STANDARD_PINS,
7632 {0x19, 0x21a19030}),
7633 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7634 ALC292_STANDARD_PINS,
7635 {0x13, 0x90a60140}),
7636 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
7639 {0x21, 0x04211020}),
7640 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7643 {0x21, 0x03211020}),
7644 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7647 {0x21, 0x04211020}),
7648 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7651 {0x21, 0x03211020}),
7652 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7654 {0x21, 0x04211020}),
7655 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7657 {0x21, 0x04211030}),
7658 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7659 ALC295_STANDARD_PINS,
7661 {0x18, 0x21a19030}),
7662 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7663 ALC295_STANDARD_PINS,
7665 {0x18, 0x21a19050}),
7666 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7667 ALC295_STANDARD_PINS),
7668 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7669 ALC298_STANDARD_PINS,
7670 {0x17, 0x90170110}),
7671 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7672 ALC298_STANDARD_PINS,
7673 {0x17, 0x90170140}),
7674 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7675 ALC298_STANDARD_PINS,
7676 {0x17, 0x90170150}),
7677 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
7682 {0x21, 0x03211030}),
7683 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7684 ALC225_STANDARD_PINS,
7686 {0x17, 0x90170110}),
7690 static void alc269_fill_coef(struct hda_codec *codec)
7692 struct alc_spec *spec = codec->spec;
7695 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
7698 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
7699 alc_write_coef_idx(codec, 0xf, 0x960b);
7700 alc_write_coef_idx(codec, 0xe, 0x8817);
7703 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
7704 alc_write_coef_idx(codec, 0xf, 0x960b);
7705 alc_write_coef_idx(codec, 0xe, 0x8814);
7708 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
7709 /* Power up output pin */
7710 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
7713 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
7714 val = alc_read_coef_idx(codec, 0xd);
7715 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
7716 /* Capless ramp up clock control */
7717 alc_write_coef_idx(codec, 0xd, val | (1<<10));
7719 val = alc_read_coef_idx(codec, 0x17);
7720 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
7721 /* Class D power on reset */
7722 alc_write_coef_idx(codec, 0x17, val | (1<<7));
7727 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
7732 static int patch_alc269(struct hda_codec *codec)
7734 struct alc_spec *spec;
7737 err = alc_alloc_spec(codec, 0x0b);
7742 spec->gen.shared_mic_vref_pin = 0x18;
7743 codec->power_save_node = 0;
7746 codec->patch_ops.suspend = alc269_suspend;
7747 codec->patch_ops.resume = alc269_resume;
7749 spec->shutup = alc_default_shutup;
7750 spec->init_hook = alc_default_init;
7752 switch (codec->core.vendor_id) {
7754 spec->codec_variant = ALC269_TYPE_ALC269VA;
7755 switch (alc_get_coef0(codec) & 0x00f0) {
7757 if (codec->bus->pci &&
7758 codec->bus->pci->subsystem_vendor == 0x1025 &&
7759 spec->cdefine.platform_type == 1)
7760 err = alc_codec_rename(codec, "ALC271X");
7761 spec->codec_variant = ALC269_TYPE_ALC269VB;
7764 if (codec->bus->pci &&
7765 codec->bus->pci->subsystem_vendor == 0x17aa &&
7766 codec->bus->pci->subsystem_device == 0x21f3)
7767 err = alc_codec_rename(codec, "ALC3202");
7768 spec->codec_variant = ALC269_TYPE_ALC269VC;
7771 spec->codec_variant = ALC269_TYPE_ALC269VD;
7774 alc_fix_pll_init(codec, 0x20, 0x04, 15);
7778 spec->shutup = alc269_shutup;
7779 spec->init_hook = alc269_fill_coef;
7780 alc269_fill_coef(codec);
7785 spec->codec_variant = ALC269_TYPE_ALC280;
7788 spec->codec_variant = ALC269_TYPE_ALC282;
7789 spec->shutup = alc282_shutup;
7790 spec->init_hook = alc282_init;
7794 spec->codec_variant = ALC269_TYPE_ALC283;
7795 spec->shutup = alc283_shutup;
7796 spec->init_hook = alc283_init;
7800 spec->codec_variant = ALC269_TYPE_ALC284;
7803 spec->codec_variant = ALC269_TYPE_ALC293;
7807 spec->codec_variant = ALC269_TYPE_ALC286;
7810 spec->codec_variant = ALC269_TYPE_ALC298;
7814 spec->codec_variant = ALC269_TYPE_ALC255;
7815 spec->shutup = alc256_shutup;
7816 spec->init_hook = alc256_init;
7820 spec->codec_variant = ALC269_TYPE_ALC256;
7821 spec->shutup = alc256_shutup;
7822 spec->init_hook = alc256_init;
7823 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
7826 spec->codec_variant = ALC269_TYPE_ALC257;
7827 spec->shutup = alc256_shutup;
7828 spec->init_hook = alc256_init;
7829 spec->gen.mixer_nid = 0;
7834 spec->codec_variant = ALC269_TYPE_ALC215;
7835 spec->shutup = alc225_shutup;
7836 spec->init_hook = alc225_init;
7837 spec->gen.mixer_nid = 0;
7842 spec->codec_variant = ALC269_TYPE_ALC225;
7843 spec->shutup = alc225_shutup;
7844 spec->init_hook = alc225_init;
7845 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
7850 spec->codec_variant = ALC269_TYPE_ALC294;
7851 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
7852 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
7853 spec->init_hook = alc294_init;
7856 spec->codec_variant = ALC269_TYPE_ALC300;
7857 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
7862 spec->codec_variant = ALC269_TYPE_ALC700;
7863 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
7864 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
7865 spec->init_hook = alc294_init;
7870 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
7871 spec->has_alc5505_dsp = 1;
7872 spec->init_hook = alc5505_dsp_init;
7875 alc_pre_init(codec);
7877 snd_hda_pick_fixup(codec, alc269_fixup_models,
7878 alc269_fixup_tbl, alc269_fixups);
7879 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups);
7880 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
7882 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
7884 alc_auto_parse_customize_define(codec);
7886 if (has_cdefine_beep(codec))
7887 spec->gen.beep_nid = 0x01;
7889 /* automatic parse from the BIOS config */
7890 err = alc269_parse_auto_config(codec);
7894 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
7895 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
7900 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
7913 static int alc861_parse_auto_config(struct hda_codec *codec)
7915 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
7916 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
7917 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
7920 /* Pin config fixes */
7922 ALC861_FIXUP_FSC_AMILO_PI1505,
7923 ALC861_FIXUP_AMP_VREF_0F,
7924 ALC861_FIXUP_NO_JACK_DETECT,
7925 ALC861_FIXUP_ASUS_A6RP,
7926 ALC660_FIXUP_ASUS_W7J,
7929 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
7930 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
7931 const struct hda_fixup *fix, int action)
7933 struct alc_spec *spec = codec->spec;
7936 if (action != HDA_FIXUP_ACT_INIT)
7938 val = snd_hda_codec_get_pin_target(codec, 0x0f);
7939 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
7940 val |= AC_PINCTL_IN_EN;
7941 val |= AC_PINCTL_VREF_50;
7942 snd_hda_set_pin_ctl(codec, 0x0f, val);
7943 spec->gen.keep_vref_in_automute = 1;
7946 /* suppress the jack-detection */
7947 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
7948 const struct hda_fixup *fix, int action)
7950 if (action == HDA_FIXUP_ACT_PRE_PROBE)
7951 codec->no_jack_detect = 1;
7954 static const struct hda_fixup alc861_fixups[] = {
7955 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
7956 .type = HDA_FIXUP_PINS,
7957 .v.pins = (const struct hda_pintbl[]) {
7958 { 0x0b, 0x0221101f }, /* HP */
7959 { 0x0f, 0x90170310 }, /* speaker */
7963 [ALC861_FIXUP_AMP_VREF_0F] = {
7964 .type = HDA_FIXUP_FUNC,
7965 .v.func = alc861_fixup_asus_amp_vref_0f,
7967 [ALC861_FIXUP_NO_JACK_DETECT] = {
7968 .type = HDA_FIXUP_FUNC,
7969 .v.func = alc_fixup_no_jack_detect,
7971 [ALC861_FIXUP_ASUS_A6RP] = {
7972 .type = HDA_FIXUP_FUNC,
7973 .v.func = alc861_fixup_asus_amp_vref_0f,
7975 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
7977 [ALC660_FIXUP_ASUS_W7J] = {
7978 .type = HDA_FIXUP_VERBS,
7979 .v.verbs = (const struct hda_verb[]) {
7980 /* ASUS W7J needs a magic pin setup on unused NID 0x10
7981 * for enabling outputs
7983 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7989 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
7990 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
7991 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
7992 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
7993 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
7994 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
7995 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
7996 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
7997 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
8003 static int patch_alc861(struct hda_codec *codec)
8005 struct alc_spec *spec;
8008 err = alc_alloc_spec(codec, 0x15);
8013 spec->gen.beep_nid = 0x23;
8016 spec->power_hook = alc_power_eapd;
8019 alc_pre_init(codec);
8021 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
8022 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8024 /* automatic parse from the BIOS config */
8025 err = alc861_parse_auto_config(codec);
8029 if (!spec->gen.no_analog) {
8030 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
8035 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8049 * In addition, an independent DAC
8051 static int alc861vd_parse_auto_config(struct hda_codec *codec)
8053 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
8054 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8055 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
8059 ALC660VD_FIX_ASUS_GPIO1,
8060 ALC861VD_FIX_DALLAS,
8063 /* exclude VREF80 */
8064 static void alc861vd_fixup_dallas(struct hda_codec *codec,
8065 const struct hda_fixup *fix, int action)
8067 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8068 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
8069 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8074 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
8075 const struct hda_fixup *fix, int action)
8077 struct alc_spec *spec = codec->spec;
8079 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8080 spec->gpio_mask |= 0x02;
8081 alc_fixup_gpio(codec, action, 0x01);
8084 static const struct hda_fixup alc861vd_fixups[] = {
8085 [ALC660VD_FIX_ASUS_GPIO1] = {
8086 .type = HDA_FIXUP_FUNC,
8087 .v.func = alc660vd_fixup_asus_gpio1,
8089 [ALC861VD_FIX_DALLAS] = {
8090 .type = HDA_FIXUP_FUNC,
8091 .v.func = alc861vd_fixup_dallas,
8095 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8096 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
8097 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8098 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
8104 static int patch_alc861vd(struct hda_codec *codec)
8106 struct alc_spec *spec;
8109 err = alc_alloc_spec(codec, 0x0b);
8114 spec->gen.beep_nid = 0x23;
8116 spec->shutup = alc_eapd_shutup;
8118 alc_pre_init(codec);
8120 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
8121 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8123 /* automatic parse from the BIOS config */
8124 err = alc861vd_parse_auto_config(codec);
8128 if (!spec->gen.no_analog) {
8129 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
8134 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8146 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
8147 * configuration. Each pin widget can choose any input DACs and a mixer.
8148 * Each ADC is connected from a mixer of all inputs. This makes possible
8149 * 6-channel independent captures.
8151 * In addition, an independent DAC for the multi-playback (not used in this
8156 * BIOS auto configuration
8159 static int alc662_parse_auto_config(struct hda_codec *codec)
8161 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
8162 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
8163 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8164 const hda_nid_t *ssids;
8166 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
8167 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
8168 codec->core.vendor_id == 0x10ec0671)
8169 ssids = alc663_ssids;
8171 ssids = alc662_ssids;
8172 return alc_parse_auto_config(codec, alc662_ignore, ssids);
8175 static void alc272_fixup_mario(struct hda_codec *codec,
8176 const struct hda_fixup *fix, int action)
8178 if (action != HDA_FIXUP_ACT_PRE_PROBE)
8180 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
8181 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
8182 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
8183 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
8184 (0 << AC_AMPCAP_MUTE_SHIFT)))
8185 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
8188 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
8190 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
8192 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
8193 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
8197 /* override the 2.1 chmap */
8198 static void alc_fixup_bass_chmap(struct hda_codec *codec,
8199 const struct hda_fixup *fix, int action)
8201 if (action == HDA_FIXUP_ACT_BUILD) {
8202 struct alc_spec *spec = codec->spec;
8203 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8207 /* avoid D3 for keeping GPIO up */
8208 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
8210 unsigned int power_state)
8212 struct alc_spec *spec = codec->spec;
8213 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
8218 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
8219 const struct hda_fixup *fix, int action)
8221 struct alc_spec *spec = codec->spec;
8223 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
8224 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8225 spec->mute_led_polarity = 1;
8226 codec->power_filter = gpio_led_power_filter;
8230 static void alc662_usi_automute_hook(struct hda_codec *codec,
8231 struct hda_jack_callback *jack)
8233 struct alc_spec *spec = codec->spec;
8236 snd_hda_gen_hp_automute(codec, jack);
8238 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
8240 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8244 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
8245 const struct hda_fixup *fix, int action)
8247 struct alc_spec *spec = codec->spec;
8248 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8249 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
8250 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
8254 static struct coef_fw alc668_coefs[] = {
8255 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
8256 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
8257 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
8258 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
8259 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
8260 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
8261 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
8262 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
8263 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
8264 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
8265 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
8266 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
8267 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
8268 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
8269 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
8270 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
8271 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
8272 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
8273 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
8274 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
8278 static void alc668_restore_default_value(struct hda_codec *codec)
8280 alc_process_coef_fw(codec, alc668_coefs);
8284 ALC662_FIXUP_ASPIRE,
8285 ALC662_FIXUP_LED_GPIO1,
8286 ALC662_FIXUP_IDEAPAD,
8288 ALC662_FIXUP_CZC_P10T,
8289 ALC662_FIXUP_SKU_IGNORE,
8290 ALC662_FIXUP_HP_RP5800,
8291 ALC662_FIXUP_ASUS_MODE1,
8292 ALC662_FIXUP_ASUS_MODE2,
8293 ALC662_FIXUP_ASUS_MODE3,
8294 ALC662_FIXUP_ASUS_MODE4,
8295 ALC662_FIXUP_ASUS_MODE5,
8296 ALC662_FIXUP_ASUS_MODE6,
8297 ALC662_FIXUP_ASUS_MODE7,
8298 ALC662_FIXUP_ASUS_MODE8,
8299 ALC662_FIXUP_NO_JACK_DETECT,
8300 ALC662_FIXUP_ZOTAC_Z68,
8301 ALC662_FIXUP_INV_DMIC,
8302 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
8303 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
8304 ALC662_FIXUP_HEADSET_MODE,
8305 ALC668_FIXUP_HEADSET_MODE,
8306 ALC662_FIXUP_BASS_MODE4_CHMAP,
8307 ALC662_FIXUP_BASS_16,
8308 ALC662_FIXUP_BASS_1A,
8309 ALC662_FIXUP_BASS_CHMAP,
8310 ALC668_FIXUP_AUTO_MUTE,
8311 ALC668_FIXUP_DELL_DISABLE_AAMIX,
8312 ALC668_FIXUP_DELL_XPS13,
8313 ALC662_FIXUP_ASUS_Nx50,
8314 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
8315 ALC668_FIXUP_ASUS_Nx51,
8316 ALC668_FIXUP_MIC_COEF,
8317 ALC668_FIXUP_ASUS_G751,
8318 ALC891_FIXUP_HEADSET_MODE,
8319 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8320 ALC662_FIXUP_ACER_VERITON,
8321 ALC892_FIXUP_ASROCK_MOBO,
8322 ALC662_FIXUP_USI_FUNC,
8323 ALC662_FIXUP_USI_HEADSET_MODE,
8324 ALC662_FIXUP_LENOVO_MULTI_CODECS,
8327 static const struct hda_fixup alc662_fixups[] = {
8328 [ALC662_FIXUP_ASPIRE] = {
8329 .type = HDA_FIXUP_PINS,
8330 .v.pins = (const struct hda_pintbl[]) {
8331 { 0x15, 0x99130112 }, /* subwoofer */
8335 [ALC662_FIXUP_LED_GPIO1] = {
8336 .type = HDA_FIXUP_FUNC,
8337 .v.func = alc662_fixup_led_gpio1,
8339 [ALC662_FIXUP_IDEAPAD] = {
8340 .type = HDA_FIXUP_PINS,
8341 .v.pins = (const struct hda_pintbl[]) {
8342 { 0x17, 0x99130112 }, /* subwoofer */
8346 .chain_id = ALC662_FIXUP_LED_GPIO1,
8348 [ALC272_FIXUP_MARIO] = {
8349 .type = HDA_FIXUP_FUNC,
8350 .v.func = alc272_fixup_mario,
8352 [ALC662_FIXUP_CZC_P10T] = {
8353 .type = HDA_FIXUP_VERBS,
8354 .v.verbs = (const struct hda_verb[]) {
8355 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
8359 [ALC662_FIXUP_SKU_IGNORE] = {
8360 .type = HDA_FIXUP_FUNC,
8361 .v.func = alc_fixup_sku_ignore,
8363 [ALC662_FIXUP_HP_RP5800] = {
8364 .type = HDA_FIXUP_PINS,
8365 .v.pins = (const struct hda_pintbl[]) {
8366 { 0x14, 0x0221201f }, /* HP out */
8370 .chain_id = ALC662_FIXUP_SKU_IGNORE
8372 [ALC662_FIXUP_ASUS_MODE1] = {
8373 .type = HDA_FIXUP_PINS,
8374 .v.pins = (const struct hda_pintbl[]) {
8375 { 0x14, 0x99130110 }, /* speaker */
8376 { 0x18, 0x01a19c20 }, /* mic */
8377 { 0x19, 0x99a3092f }, /* int-mic */
8378 { 0x21, 0x0121401f }, /* HP out */
8382 .chain_id = ALC662_FIXUP_SKU_IGNORE
8384 [ALC662_FIXUP_ASUS_MODE2] = {
8385 .type = HDA_FIXUP_PINS,
8386 .v.pins = (const struct hda_pintbl[]) {
8387 { 0x14, 0x99130110 }, /* speaker */
8388 { 0x18, 0x01a19820 }, /* mic */
8389 { 0x19, 0x99a3092f }, /* int-mic */
8390 { 0x1b, 0x0121401f }, /* HP out */
8394 .chain_id = ALC662_FIXUP_SKU_IGNORE
8396 [ALC662_FIXUP_ASUS_MODE3] = {
8397 .type = HDA_FIXUP_PINS,
8398 .v.pins = (const struct hda_pintbl[]) {
8399 { 0x14, 0x99130110 }, /* speaker */
8400 { 0x15, 0x0121441f }, /* HP */
8401 { 0x18, 0x01a19840 }, /* mic */
8402 { 0x19, 0x99a3094f }, /* int-mic */
8403 { 0x21, 0x01211420 }, /* HP2 */
8407 .chain_id = ALC662_FIXUP_SKU_IGNORE
8409 [ALC662_FIXUP_ASUS_MODE4] = {
8410 .type = HDA_FIXUP_PINS,
8411 .v.pins = (const struct hda_pintbl[]) {
8412 { 0x14, 0x99130110 }, /* speaker */
8413 { 0x16, 0x99130111 }, /* speaker */
8414 { 0x18, 0x01a19840 }, /* mic */
8415 { 0x19, 0x99a3094f }, /* int-mic */
8416 { 0x21, 0x0121441f }, /* HP */
8420 .chain_id = ALC662_FIXUP_SKU_IGNORE
8422 [ALC662_FIXUP_ASUS_MODE5] = {
8423 .type = HDA_FIXUP_PINS,
8424 .v.pins = (const struct hda_pintbl[]) {
8425 { 0x14, 0x99130110 }, /* speaker */
8426 { 0x15, 0x0121441f }, /* HP */
8427 { 0x16, 0x99130111 }, /* speaker */
8428 { 0x18, 0x01a19840 }, /* mic */
8429 { 0x19, 0x99a3094f }, /* int-mic */
8433 .chain_id = ALC662_FIXUP_SKU_IGNORE
8435 [ALC662_FIXUP_ASUS_MODE6] = {
8436 .type = HDA_FIXUP_PINS,
8437 .v.pins = (const struct hda_pintbl[]) {
8438 { 0x14, 0x99130110 }, /* speaker */
8439 { 0x15, 0x01211420 }, /* HP2 */
8440 { 0x18, 0x01a19840 }, /* mic */
8441 { 0x19, 0x99a3094f }, /* int-mic */
8442 { 0x1b, 0x0121441f }, /* HP */
8446 .chain_id = ALC662_FIXUP_SKU_IGNORE
8448 [ALC662_FIXUP_ASUS_MODE7] = {
8449 .type = HDA_FIXUP_PINS,
8450 .v.pins = (const struct hda_pintbl[]) {
8451 { 0x14, 0x99130110 }, /* speaker */
8452 { 0x17, 0x99130111 }, /* speaker */
8453 { 0x18, 0x01a19840 }, /* mic */
8454 { 0x19, 0x99a3094f }, /* int-mic */
8455 { 0x1b, 0x01214020 }, /* HP */
8456 { 0x21, 0x0121401f }, /* HP */
8460 .chain_id = ALC662_FIXUP_SKU_IGNORE
8462 [ALC662_FIXUP_ASUS_MODE8] = {
8463 .type = HDA_FIXUP_PINS,
8464 .v.pins = (const struct hda_pintbl[]) {
8465 { 0x14, 0x99130110 }, /* speaker */
8466 { 0x12, 0x99a30970 }, /* int-mic */
8467 { 0x15, 0x01214020 }, /* HP */
8468 { 0x17, 0x99130111 }, /* speaker */
8469 { 0x18, 0x01a19840 }, /* mic */
8470 { 0x21, 0x0121401f }, /* HP */
8474 .chain_id = ALC662_FIXUP_SKU_IGNORE
8476 [ALC662_FIXUP_NO_JACK_DETECT] = {
8477 .type = HDA_FIXUP_FUNC,
8478 .v.func = alc_fixup_no_jack_detect,
8480 [ALC662_FIXUP_ZOTAC_Z68] = {
8481 .type = HDA_FIXUP_PINS,
8482 .v.pins = (const struct hda_pintbl[]) {
8483 { 0x1b, 0x02214020 }, /* Front HP */
8487 [ALC662_FIXUP_INV_DMIC] = {
8488 .type = HDA_FIXUP_FUNC,
8489 .v.func = alc_fixup_inv_dmic,
8491 [ALC668_FIXUP_DELL_XPS13] = {
8492 .type = HDA_FIXUP_FUNC,
8493 .v.func = alc_fixup_dell_xps13,
8495 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
8497 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
8498 .type = HDA_FIXUP_FUNC,
8499 .v.func = alc_fixup_disable_aamix,
8501 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8503 [ALC668_FIXUP_AUTO_MUTE] = {
8504 .type = HDA_FIXUP_FUNC,
8505 .v.func = alc_fixup_auto_mute_via_amp,
8507 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8509 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
8510 .type = HDA_FIXUP_PINS,
8511 .v.pins = (const struct hda_pintbl[]) {
8512 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8513 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
8517 .chain_id = ALC662_FIXUP_HEADSET_MODE
8519 [ALC662_FIXUP_HEADSET_MODE] = {
8520 .type = HDA_FIXUP_FUNC,
8521 .v.func = alc_fixup_headset_mode_alc662,
8523 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
8524 .type = HDA_FIXUP_PINS,
8525 .v.pins = (const struct hda_pintbl[]) {
8526 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8527 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8531 .chain_id = ALC668_FIXUP_HEADSET_MODE
8533 [ALC668_FIXUP_HEADSET_MODE] = {
8534 .type = HDA_FIXUP_FUNC,
8535 .v.func = alc_fixup_headset_mode_alc668,
8537 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8538 .type = HDA_FIXUP_FUNC,
8539 .v.func = alc_fixup_bass_chmap,
8541 .chain_id = ALC662_FIXUP_ASUS_MODE4
8543 [ALC662_FIXUP_BASS_16] = {
8544 .type = HDA_FIXUP_PINS,
8545 .v.pins = (const struct hda_pintbl[]) {
8546 {0x16, 0x80106111}, /* bass speaker */
8550 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8552 [ALC662_FIXUP_BASS_1A] = {
8553 .type = HDA_FIXUP_PINS,
8554 .v.pins = (const struct hda_pintbl[]) {
8555 {0x1a, 0x80106111}, /* bass speaker */
8559 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8561 [ALC662_FIXUP_BASS_CHMAP] = {
8562 .type = HDA_FIXUP_FUNC,
8563 .v.func = alc_fixup_bass_chmap,
8565 [ALC662_FIXUP_ASUS_Nx50] = {
8566 .type = HDA_FIXUP_FUNC,
8567 .v.func = alc_fixup_auto_mute_via_amp,
8569 .chain_id = ALC662_FIXUP_BASS_1A
8571 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
8572 .type = HDA_FIXUP_FUNC,
8573 .v.func = alc_fixup_headset_mode_alc668,
8574 .chain_id = ALC662_FIXUP_BASS_CHMAP
8576 [ALC668_FIXUP_ASUS_Nx51] = {
8577 .type = HDA_FIXUP_PINS,
8578 .v.pins = (const struct hda_pintbl[]) {
8579 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8580 { 0x1a, 0x90170151 }, /* bass speaker */
8581 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8585 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
8587 [ALC668_FIXUP_MIC_COEF] = {
8588 .type = HDA_FIXUP_VERBS,
8589 .v.verbs = (const struct hda_verb[]) {
8590 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
8591 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
8595 [ALC668_FIXUP_ASUS_G751] = {
8596 .type = HDA_FIXUP_PINS,
8597 .v.pins = (const struct hda_pintbl[]) {
8598 { 0x16, 0x0421101f }, /* HP */
8602 .chain_id = ALC668_FIXUP_MIC_COEF
8604 [ALC891_FIXUP_HEADSET_MODE] = {
8605 .type = HDA_FIXUP_FUNC,
8606 .v.func = alc_fixup_headset_mode,
8608 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
8609 .type = HDA_FIXUP_PINS,
8610 .v.pins = (const struct hda_pintbl[]) {
8611 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8612 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8616 .chain_id = ALC891_FIXUP_HEADSET_MODE
8618 [ALC662_FIXUP_ACER_VERITON] = {
8619 .type = HDA_FIXUP_PINS,
8620 .v.pins = (const struct hda_pintbl[]) {
8621 { 0x15, 0x50170120 }, /* no internal speaker */
8625 [ALC892_FIXUP_ASROCK_MOBO] = {
8626 .type = HDA_FIXUP_PINS,
8627 .v.pins = (const struct hda_pintbl[]) {
8628 { 0x15, 0x40f000f0 }, /* disabled */
8629 { 0x16, 0x40f000f0 }, /* disabled */
8633 [ALC662_FIXUP_USI_FUNC] = {
8634 .type = HDA_FIXUP_FUNC,
8635 .v.func = alc662_fixup_usi_headset_mic,
8637 [ALC662_FIXUP_USI_HEADSET_MODE] = {
8638 .type = HDA_FIXUP_PINS,
8639 .v.pins = (const struct hda_pintbl[]) {
8640 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
8641 { 0x18, 0x01a1903d },
8645 .chain_id = ALC662_FIXUP_USI_FUNC
8647 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
8648 .type = HDA_FIXUP_FUNC,
8649 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8653 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
8654 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
8655 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
8656 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
8657 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
8658 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
8659 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
8660 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
8661 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
8662 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8663 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8664 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
8665 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
8666 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
8667 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8668 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8669 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8670 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8671 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8672 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
8673 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
8674 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
8675 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
8676 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
8677 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
8678 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
8679 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
8680 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
8681 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
8682 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
8683 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8684 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
8685 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
8686 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
8687 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
8688 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
8689 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
8690 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
8691 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
8692 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
8693 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
8694 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
8695 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
8698 /* Below is a quirk table taken from the old code.
8699 * Basically the device should work as is without the fixup table.
8700 * If BIOS doesn't give a proper info, enable the corresponding
8703 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
8704 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
8705 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
8706 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
8707 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8708 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8709 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8710 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
8711 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
8712 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8713 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
8714 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
8715 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
8716 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
8717 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
8718 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8719 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
8720 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
8721 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8722 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8723 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8724 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8725 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
8726 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
8727 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
8728 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8729 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
8730 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8731 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8732 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
8733 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8734 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8735 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
8736 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
8737 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
8738 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
8739 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
8740 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
8741 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
8742 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8743 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
8744 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
8745 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8746 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
8747 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
8748 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
8749 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
8750 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
8751 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8752 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
8757 static const struct hda_model_fixup alc662_fixup_models[] = {
8758 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
8759 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
8760 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
8761 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
8762 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
8763 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
8764 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
8765 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
8766 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
8767 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
8768 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
8769 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
8770 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
8771 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
8772 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
8773 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
8774 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
8775 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
8776 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
8777 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
8778 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
8779 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
8780 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
8781 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
8782 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
8783 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
8784 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
8785 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
8786 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
8787 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
8788 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
8792 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
8793 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8797 {0x21, 0x01014020}),
8798 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8802 {0x21, 0x01014020}),
8803 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
8807 {0x1b, 0x0221401f}),
8808 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8812 {0x16, 0x03011020}),
8813 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8817 {0x16, 0x03011020}),
8818 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8822 {0x16, 0x03011020}),
8823 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8826 {0x16, 0x03011020}),
8827 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
8830 {0x15, 0x0321101f}),
8836 static int patch_alc662(struct hda_codec *codec)
8838 struct alc_spec *spec;
8841 err = alc_alloc_spec(codec, 0x0b);
8847 spec->shutup = alc_eapd_shutup;
8849 /* handle multiple HPs as is */
8850 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
8852 alc_fix_pll_init(codec, 0x20, 0x04, 15);
8854 switch (codec->core.vendor_id) {
8856 spec->init_hook = alc668_restore_default_value;
8860 alc_pre_init(codec);
8862 snd_hda_pick_fixup(codec, alc662_fixup_models,
8863 alc662_fixup_tbl, alc662_fixups);
8864 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups);
8865 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8867 alc_auto_parse_customize_define(codec);
8869 if (has_cdefine_beep(codec))
8870 spec->gen.beep_nid = 0x01;
8872 if ((alc_get_coef0(codec) & (1 << 14)) &&
8873 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
8874 spec->cdefine.platform_type == 1) {
8875 err = alc_codec_rename(codec, "ALC272X");
8880 /* automatic parse from the BIOS config */
8881 err = alc662_parse_auto_config(codec);
8885 if (!spec->gen.no_analog && spec->gen.beep_nid) {
8886 switch (codec->core.vendor_id) {
8888 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
8894 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
8897 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
8904 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8917 static int alc680_parse_auto_config(struct hda_codec *codec)
8919 return alc_parse_auto_config(codec, NULL, NULL);
8924 static int patch_alc680(struct hda_codec *codec)
8928 /* ALC680 has no aa-loopback mixer */
8929 err = alc_alloc_spec(codec, 0);
8933 /* automatic parse from the BIOS config */
8934 err = alc680_parse_auto_config(codec);
8946 static const struct hda_device_id snd_hda_id_realtek[] = {
8947 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
8948 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
8949 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
8950 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
8951 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
8952 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
8953 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
8954 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
8955 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
8956 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
8957 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
8958 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
8959 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
8960 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
8961 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
8962 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
8963 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
8964 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
8965 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
8966 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
8967 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
8968 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
8969 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
8970 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
8971 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
8972 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
8973 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
8974 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
8975 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
8976 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
8977 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
8978 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
8979 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
8980 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
8981 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
8982 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
8983 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
8984 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
8985 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
8986 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
8987 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
8988 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
8989 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
8990 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
8991 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
8992 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
8993 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
8994 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
8995 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
8996 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
8997 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
8998 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
8999 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
9000 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
9001 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
9002 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
9003 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
9004 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
9005 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
9006 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
9007 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
9008 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
9009 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
9010 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
9011 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
9012 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
9013 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
9014 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
9015 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
9016 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
9019 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
9021 MODULE_LICENSE("GPL");
9022 MODULE_DESCRIPTION("Realtek HD-audio codec");
9024 static struct hda_codec_driver realtek_driver = {
9025 .id = snd_hda_id_realtek,
9028 module_hda_codec_driver(realtek_driver);