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 <linux/leds.h>
21 #include <linux/ctype.h>
22 #include <sound/core.h>
23 #include <sound/jack.h>
24 #include <sound/hda_codec.h>
25 #include "hda_local.h"
26 #include "hda_auto_parser.h"
28 #include "hda_generic.h"
29 #include "hda_component.h"
31 /* keep halting ALC5505 DSP, for power saving */
32 #define HALT_REALTEK_ALC5505
34 /* extra amp-initialization sequence types */
42 ALC_HEADSET_MODE_UNKNOWN,
43 ALC_HEADSET_MODE_UNPLUGGED,
44 ALC_HEADSET_MODE_HEADSET,
46 ALC_HEADSET_MODE_HEADPHONE,
50 ALC_HEADSET_TYPE_UNKNOWN,
51 ALC_HEADSET_TYPE_CTIA,
52 ALC_HEADSET_TYPE_OMTP,
56 ALC_KEY_MICMUTE_INDEX,
59 struct alc_customize_define {
61 unsigned char port_connectivity;
62 unsigned char check_sum;
63 unsigned char customization;
64 unsigned char external_amp;
65 unsigned int enable_pcbeep:1;
66 unsigned int platform_type:1;
68 unsigned int override:1;
69 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
80 struct hda_gen_spec gen; /* must be at head */
82 /* codec parameterization */
83 struct alc_customize_define cdefine;
84 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
87 unsigned int gpio_mask;
88 unsigned int gpio_dir;
89 unsigned int gpio_data;
90 bool gpio_write_delay; /* add a delay before writing gpio_data */
92 /* mute LED for HP laptops, see vref_mute_led_set() */
93 int mute_led_polarity;
94 int micmute_led_polarity;
95 hda_nid_t mute_led_nid;
96 hda_nid_t cap_mute_led_nid;
98 unsigned int gpio_mute_led_mask;
99 unsigned int gpio_mic_led_mask;
100 struct alc_coef_led mute_led_coef;
101 struct alc_coef_led mic_led_coef;
102 struct mutex coef_mutex;
104 hda_nid_t headset_mic_pin;
105 hda_nid_t headphone_mic_pin;
106 int current_headset_mode;
107 int current_headset_type;
110 void (*init_hook)(struct hda_codec *codec);
112 void (*power_hook)(struct hda_codec *codec);
114 void (*shutup)(struct hda_codec *codec);
117 int codec_variant; /* flag for other variants */
118 unsigned int has_alc5505_dsp:1;
119 unsigned int no_depop_delay:1;
120 unsigned int done_hp_init:1;
121 unsigned int no_shutup_pins:1;
122 unsigned int ultra_low_power:1;
123 unsigned int has_hs_key:1;
124 unsigned int no_internal_mic_pin:1;
125 unsigned int en_3kpull_low:1;
129 unsigned int pll_coef_idx, pll_coef_bit;
131 struct input_dev *kb_dev;
132 u8 alc_mute_keycode_map[1];
134 /* component binding */
135 struct component_match *match;
136 struct hda_component comps[HDA_MAX_COMPONENTS];
140 * COEF access helper functions
143 static void coef_mutex_lock(struct hda_codec *codec)
145 struct alc_spec *spec = codec->spec;
147 snd_hda_power_up_pm(codec);
148 mutex_lock(&spec->coef_mutex);
151 static void coef_mutex_unlock(struct hda_codec *codec)
153 struct alc_spec *spec = codec->spec;
155 mutex_unlock(&spec->coef_mutex);
156 snd_hda_power_down_pm(codec);
159 static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
160 unsigned int coef_idx)
164 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
165 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
169 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
170 unsigned int coef_idx)
174 coef_mutex_lock(codec);
175 val = __alc_read_coefex_idx(codec, nid, coef_idx);
176 coef_mutex_unlock(codec);
180 #define alc_read_coef_idx(codec, coef_idx) \
181 alc_read_coefex_idx(codec, 0x20, coef_idx)
183 static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
184 unsigned int coef_idx, unsigned int coef_val)
186 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
187 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
190 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
191 unsigned int coef_idx, unsigned int coef_val)
193 coef_mutex_lock(codec);
194 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
195 coef_mutex_unlock(codec);
198 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
199 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
201 static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
202 unsigned int coef_idx, unsigned int mask,
203 unsigned int bits_set)
205 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
208 __alc_write_coefex_idx(codec, nid, coef_idx,
209 (val & ~mask) | bits_set);
212 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
213 unsigned int coef_idx, unsigned int mask,
214 unsigned int bits_set)
216 coef_mutex_lock(codec);
217 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
218 coef_mutex_unlock(codec);
221 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
222 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
224 /* a special bypass for COEF 0; read the cached value at the second time */
225 static unsigned int alc_get_coef0(struct hda_codec *codec)
227 struct alc_spec *spec = codec->spec;
230 spec->coef0 = alc_read_coef_idx(codec, 0);
234 /* coef writes/updates batch */
242 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
243 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
244 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
245 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
246 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
248 static void alc_process_coef_fw(struct hda_codec *codec,
249 const struct coef_fw *fw)
251 coef_mutex_lock(codec);
252 for (; fw->nid; fw++) {
253 if (fw->mask == (unsigned short)-1)
254 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
256 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
259 coef_mutex_unlock(codec);
263 * GPIO setup tables, used in initialization
266 /* Enable GPIO mask and set output */
267 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
269 struct alc_spec *spec = codec->spec;
271 spec->gpio_mask |= mask;
272 spec->gpio_dir |= mask;
273 spec->gpio_data |= mask;
276 static void alc_write_gpio_data(struct hda_codec *codec)
278 struct alc_spec *spec = codec->spec;
280 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
284 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
287 struct alc_spec *spec = codec->spec;
288 unsigned int oldval = spec->gpio_data;
291 spec->gpio_data |= mask;
293 spec->gpio_data &= ~mask;
294 if (oldval != spec->gpio_data)
295 alc_write_gpio_data(codec);
298 static void alc_write_gpio(struct hda_codec *codec)
300 struct alc_spec *spec = codec->spec;
302 if (!spec->gpio_mask)
305 snd_hda_codec_write(codec, codec->core.afg, 0,
306 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
307 snd_hda_codec_write(codec, codec->core.afg, 0,
308 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
309 if (spec->gpio_write_delay)
311 alc_write_gpio_data(codec);
314 static void alc_fixup_gpio(struct hda_codec *codec, int action,
317 if (action == HDA_FIXUP_ACT_PRE_PROBE)
318 alc_setup_gpio(codec, mask);
321 static void alc_fixup_gpio1(struct hda_codec *codec,
322 const struct hda_fixup *fix, int action)
324 alc_fixup_gpio(codec, action, 0x01);
327 static void alc_fixup_gpio2(struct hda_codec *codec,
328 const struct hda_fixup *fix, int action)
330 alc_fixup_gpio(codec, action, 0x02);
333 static void alc_fixup_gpio3(struct hda_codec *codec,
334 const struct hda_fixup *fix, int action)
336 alc_fixup_gpio(codec, action, 0x03);
339 static void alc_fixup_gpio4(struct hda_codec *codec,
340 const struct hda_fixup *fix, int action)
342 alc_fixup_gpio(codec, action, 0x04);
345 static void alc_fixup_micmute_led(struct hda_codec *codec,
346 const struct hda_fixup *fix, int action)
348 if (action == HDA_FIXUP_ACT_PRE_PROBE)
349 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
353 * Fix hardware PLL issue
354 * On some codecs, the analog PLL gating control must be off while
355 * the default value is 1.
357 static void alc_fix_pll(struct hda_codec *codec)
359 struct alc_spec *spec = codec->spec;
362 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
363 1 << spec->pll_coef_bit, 0);
366 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
367 unsigned int coef_idx, unsigned int coef_bit)
369 struct alc_spec *spec = codec->spec;
371 spec->pll_coef_idx = coef_idx;
372 spec->pll_coef_bit = coef_bit;
376 /* update the master volume per volume-knob's unsol event */
377 static void alc_update_knob_master(struct hda_codec *codec,
378 struct hda_jack_callback *jack)
381 struct snd_kcontrol *kctl;
382 struct snd_ctl_elem_value *uctl;
384 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
387 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
390 val = snd_hda_codec_read(codec, jack->nid, 0,
391 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
392 val &= HDA_AMP_VOLMASK;
393 uctl->value.integer.value[0] = val;
394 uctl->value.integer.value[1] = val;
395 kctl->put(kctl, uctl);
399 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
401 /* For some reason, the res given from ALC880 is broken.
402 Here we adjust it properly. */
403 snd_hda_jack_unsol_event(codec, res >> 2);
406 /* Change EAPD to verb control */
407 static void alc_fill_eapd_coef(struct hda_codec *codec)
411 coef = alc_get_coef0(codec);
413 switch (codec->core.vendor_id) {
415 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
419 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
422 if ((coef & 0x00f0) == 0x0010)
423 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
424 if ((coef & 0x00f0) == 0x0020)
425 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
426 if ((coef & 0x00f0) == 0x0030)
427 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
433 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
438 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
458 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
461 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
464 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
465 alc_write_coef_idx(codec, 0x8, 0x4ab7);
468 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
477 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
480 if ((coef & 0x00f0) == 0x0030)
481 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
490 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
494 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
497 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
500 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
503 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
504 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
508 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
515 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
520 /* additional initialization for ALC888 variants */
521 static void alc888_coef_init(struct hda_codec *codec)
523 switch (alc_get_coef0(codec) & 0x00f0) {
528 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
533 /* turn on/off EAPD control (only if available) */
534 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
536 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
538 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
539 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
543 /* turn on/off EAPD controls of the codec */
544 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
546 /* We currently only handle front, HP */
547 static const hda_nid_t pins[] = {
548 0x0f, 0x10, 0x14, 0x15, 0x17, 0
551 for (p = pins; *p; p++)
552 set_eapd(codec, *p, on);
555 static int find_ext_mic_pin(struct hda_codec *codec);
557 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
559 const struct hda_pincfg *pin;
560 int mic_pin = find_ext_mic_pin(codec);
563 /* don't shut up pins when unloading the driver; otherwise it breaks
564 * the default pin setup at the next load of the driver
566 if (codec->bus->shutdown)
569 snd_array_for_each(&codec->init_pins, i, pin) {
570 /* use read here for syncing after issuing each verb */
571 if (pin->nid != mic_pin)
572 snd_hda_codec_read(codec, pin->nid, 0,
573 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
576 codec->pins_shutup = 1;
579 static void alc_shutup_pins(struct hda_codec *codec)
581 struct alc_spec *spec = codec->spec;
583 switch (codec->core.vendor_id) {
591 alc_headset_mic_no_shutup(codec);
594 if (!spec->no_shutup_pins)
595 snd_hda_shutup_pins(codec);
600 /* generic shutup callback;
601 * just turning off EAPD and a little pause for avoiding pop-noise
603 static void alc_eapd_shutup(struct hda_codec *codec)
605 struct alc_spec *spec = codec->spec;
607 alc_auto_setup_eapd(codec, false);
608 if (!spec->no_depop_delay)
610 alc_shutup_pins(codec);
613 /* generic EAPD initialization */
614 static void alc_auto_init_amp(struct hda_codec *codec, int type)
616 alc_auto_setup_eapd(codec, true);
617 alc_write_gpio(codec);
619 case ALC_INIT_DEFAULT:
620 switch (codec->core.vendor_id) {
622 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
628 alc_update_coef_idx(codec, 7, 0, 0x2030);
631 alc888_coef_init(codec);
638 /* get a primary headphone pin if available */
639 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
641 if (spec->gen.autocfg.hp_pins[0])
642 return spec->gen.autocfg.hp_pins[0];
643 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
644 return spec->gen.autocfg.line_out_pins[0];
649 * Realtek SSID verification
652 /* Could be any non-zero and even value. When used as fixup, tells
653 * the driver to ignore any present sku defines.
655 #define ALC_FIXUP_SKU_IGNORE (2)
657 static void alc_fixup_sku_ignore(struct hda_codec *codec,
658 const struct hda_fixup *fix, int action)
660 struct alc_spec *spec = codec->spec;
661 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
662 spec->cdefine.fixup = 1;
663 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
667 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
668 const struct hda_fixup *fix, int action)
670 struct alc_spec *spec = codec->spec;
672 if (action == HDA_FIXUP_ACT_PROBE) {
673 spec->no_depop_delay = 1;
674 codec->depop_delay = 0;
678 static int alc_auto_parse_customize_define(struct hda_codec *codec)
680 unsigned int ass, tmp, i;
682 struct alc_spec *spec = codec->spec;
684 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
686 if (spec->cdefine.fixup) {
687 ass = spec->cdefine.sku_cfg;
688 if (ass == ALC_FIXUP_SKU_IGNORE)
693 if (!codec->bus->pci)
695 ass = codec->core.subsystem_id & 0xffff;
696 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
700 if (codec->core.vendor_id == 0x10ec0260)
702 ass = snd_hda_codec_get_pincfg(codec, nid);
705 codec_info(codec, "%s: SKU not ready 0x%08x\n",
706 codec->core.chip_name, ass);
712 for (i = 1; i < 16; i++) {
716 if (((ass >> 16) & 0xf) != tmp)
719 spec->cdefine.port_connectivity = ass >> 30;
720 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
721 spec->cdefine.check_sum = (ass >> 16) & 0xf;
722 spec->cdefine.customization = ass >> 8;
724 spec->cdefine.sku_cfg = ass;
725 spec->cdefine.external_amp = (ass & 0x38) >> 3;
726 spec->cdefine.platform_type = (ass & 0x4) >> 2;
727 spec->cdefine.swap = (ass & 0x2) >> 1;
728 spec->cdefine.override = ass & 0x1;
730 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
731 nid, spec->cdefine.sku_cfg);
732 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
733 spec->cdefine.port_connectivity);
734 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
735 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
736 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
737 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
738 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
739 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
740 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
745 /* return the position of NID in the list, or -1 if not found */
746 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
749 for (i = 0; i < nums; i++)
754 /* return true if the given NID is found in the list */
755 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
757 return find_idx_in_nid_list(nid, list, nums) >= 0;
760 /* check subsystem ID and set up device-specific initialization;
761 * return 1 if initialized, 0 if invalid SSID
763 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
764 * 31 ~ 16 : Manufacture ID
766 * 7 ~ 0 : Assembly ID
767 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
769 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
771 unsigned int ass, tmp, i;
773 struct alc_spec *spec = codec->spec;
775 if (spec->cdefine.fixup) {
776 ass = spec->cdefine.sku_cfg;
777 if (ass == ALC_FIXUP_SKU_IGNORE)
782 ass = codec->core.subsystem_id & 0xffff;
783 if (codec->bus->pci &&
784 ass != codec->bus->pci->subsystem_device && (ass & 1))
787 /* invalid SSID, check the special NID pin defcfg instead */
789 * 31~30 : port connectivity
792 * 19~16 : Check sum (15:1)
797 if (codec->core.vendor_id == 0x10ec0260)
799 ass = snd_hda_codec_get_pincfg(codec, nid);
801 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
805 if ((ass >> 30) != 1) /* no physical connection */
810 for (i = 1; i < 16; i++) {
814 if (((ass >> 16) & 0xf) != tmp)
817 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
818 ass & 0xffff, codec->core.vendor_id);
822 * 2 : 0 --> Desktop, 1 --> Laptop
823 * 3~5 : External Amplifier control
826 tmp = (ass & 0x38) >> 3; /* external Amp control */
827 if (spec->init_amp == ALC_INIT_UNDEFINED) {
830 alc_setup_gpio(codec, 0x01);
833 alc_setup_gpio(codec, 0x02);
836 alc_setup_gpio(codec, 0x04);
840 spec->init_amp = ALC_INIT_DEFAULT;
845 /* is laptop or Desktop and enable the function "Mute internal speaker
846 * when the external headphone out jack is plugged"
851 * 10~8 : Jack location
852 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
854 * 15 : 1 --> enable the function "Mute internal speaker
855 * when the external headphone out jack is plugged"
857 if (!alc_get_hp_pin(spec)) {
859 tmp = (ass >> 11) & 0x3; /* HP to chassis */
861 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
862 spec->gen.autocfg.line_outs))
864 spec->gen.autocfg.hp_pins[0] = nid;
869 /* Check the validity of ALC subsystem-id
870 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
871 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
873 if (!alc_subsystem_id(codec, ports)) {
874 struct alc_spec *spec = codec->spec;
875 if (spec->init_amp == ALC_INIT_UNDEFINED) {
877 "realtek: Enable default setup for auto mode as fallback\n");
878 spec->init_amp = ALC_INIT_DEFAULT;
886 static void alc_fixup_inv_dmic(struct hda_codec *codec,
887 const struct hda_fixup *fix, int action)
889 struct alc_spec *spec = codec->spec;
891 spec->gen.inv_dmic_split = 1;
895 static int alc_build_controls(struct hda_codec *codec)
899 err = snd_hda_gen_build_controls(codec);
903 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
912 static void alc_pre_init(struct hda_codec *codec)
914 alc_fill_eapd_coef(codec);
917 #define is_s3_resume(codec) \
918 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
919 #define is_s4_resume(codec) \
920 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
922 static int alc_init(struct hda_codec *codec)
924 struct alc_spec *spec = codec->spec;
926 /* hibernation resume needs the full chip initialization */
927 if (is_s4_resume(codec))
931 spec->init_hook(codec);
933 spec->gen.skip_verbs = 1; /* applied in below */
934 snd_hda_gen_init(codec);
936 alc_auto_init_amp(codec, spec->init_amp);
937 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
939 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
944 #define alc_free snd_hda_gen_free
947 static inline void alc_shutup(struct hda_codec *codec)
949 struct alc_spec *spec = codec->spec;
951 if (!snd_hda_get_bool_hint(codec, "shutup"))
952 return; /* disabled explicitly by hints */
954 if (spec && spec->shutup)
957 alc_shutup_pins(codec);
960 static void alc_power_eapd(struct hda_codec *codec)
962 alc_auto_setup_eapd(codec, false);
965 static int alc_suspend(struct hda_codec *codec)
967 struct alc_spec *spec = codec->spec;
969 if (spec && spec->power_hook)
970 spec->power_hook(codec);
974 static int alc_resume(struct hda_codec *codec)
976 struct alc_spec *spec = codec->spec;
978 if (!spec->no_depop_delay)
979 msleep(150); /* to avoid pop noise */
980 codec->patch_ops.init(codec);
981 snd_hda_regmap_sync(codec);
982 hda_call_check_power_status(codec, 0x01);
989 static const struct hda_codec_ops alc_patch_ops = {
990 .build_controls = alc_build_controls,
991 .build_pcms = snd_hda_gen_build_pcms,
994 .unsol_event = snd_hda_jack_unsol_event,
996 .resume = alc_resume,
997 .suspend = alc_suspend,
998 .check_power_status = snd_hda_gen_check_power_status,
1003 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1006 * Rename codecs appropriately from COEF value or subvendor id
1008 struct alc_codec_rename_table {
1009 unsigned int vendor_id;
1010 unsigned short coef_mask;
1011 unsigned short coef_bits;
1015 struct alc_codec_rename_pci_table {
1016 unsigned int codec_vendor_id;
1017 unsigned short pci_subvendor;
1018 unsigned short pci_subdevice;
1022 static const struct alc_codec_rename_table rename_tbl[] = {
1023 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1024 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1025 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1026 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1027 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1028 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1029 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1030 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1031 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1032 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1033 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1034 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1035 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1036 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1037 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1038 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1039 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1040 { } /* terminator */
1043 static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
1044 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1045 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1046 { 0x10ec0283, 0x1028, 0, "ALC3223" },
1047 { 0x10ec0288, 0x1028, 0, "ALC3263" },
1048 { 0x10ec0292, 0x1028, 0, "ALC3226" },
1049 { 0x10ec0293, 0x1028, 0, "ALC3235" },
1050 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1051 { 0x10ec0668, 0x1028, 0, "ALC3661" },
1052 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1053 { 0x10ec0899, 0x1028, 0, "ALC3861" },
1054 { 0x10ec0298, 0x1028, 0, "ALC3266" },
1055 { 0x10ec0236, 0x1028, 0, "ALC3204" },
1056 { 0x10ec0256, 0x1028, 0, "ALC3246" },
1057 { 0x10ec0225, 0x1028, 0, "ALC3253" },
1058 { 0x10ec0295, 0x1028, 0, "ALC3254" },
1059 { 0x10ec0299, 0x1028, 0, "ALC3271" },
1060 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1061 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1062 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1063 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1064 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1065 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1066 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1067 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1068 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1069 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1070 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1071 { } /* terminator */
1074 static int alc_codec_rename_from_preset(struct hda_codec *codec)
1076 const struct alc_codec_rename_table *p;
1077 const struct alc_codec_rename_pci_table *q;
1079 for (p = rename_tbl; p->vendor_id; p++) {
1080 if (p->vendor_id != codec->core.vendor_id)
1082 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1083 return alc_codec_rename(codec, p->name);
1086 if (!codec->bus->pci)
1088 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1089 if (q->codec_vendor_id != codec->core.vendor_id)
1091 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1093 if (!q->pci_subdevice ||
1094 q->pci_subdevice == codec->bus->pci->subsystem_device)
1095 return alc_codec_rename(codec, q->name);
1103 * Digital-beep handlers
1105 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1107 /* additional beep mixers; private_value will be overwritten */
1108 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1109 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1110 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1113 /* set up and create beep controls */
1114 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1117 struct snd_kcontrol_new *knew;
1118 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1121 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1122 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1123 &alc_beep_mixer[i]);
1126 knew->private_value = beep_amp;
1131 static const struct snd_pci_quirk beep_allow_list[] = {
1132 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1133 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1134 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1135 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1136 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1137 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1138 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1139 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1140 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1141 /* denylist -- no beep available */
1142 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1143 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1147 static inline int has_cdefine_beep(struct hda_codec *codec)
1149 struct alc_spec *spec = codec->spec;
1150 const struct snd_pci_quirk *q;
1151 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1154 return spec->cdefine.enable_pcbeep;
1157 #define set_beep_amp(spec, nid, idx, dir) 0
1158 #define has_cdefine_beep(codec) 0
1161 /* parse the BIOS configuration and set up the alc_spec */
1162 /* return 1 if successful, 0 if the proper config is not found,
1163 * or a negative error code
1165 static int alc_parse_auto_config(struct hda_codec *codec,
1166 const hda_nid_t *ignore_nids,
1167 const hda_nid_t *ssid_nids)
1169 struct alc_spec *spec = codec->spec;
1170 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1173 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1179 alc_ssid_check(codec, ssid_nids);
1181 err = snd_hda_gen_parse_auto_config(codec, cfg);
1188 /* common preparation job for alc_spec */
1189 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1191 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1197 snd_hda_gen_spec_init(&spec->gen);
1198 spec->gen.mixer_nid = mixer_nid;
1199 spec->gen.own_eapd_ctl = 1;
1200 codec->single_adc_amp = 1;
1201 /* FIXME: do we need this for all Realtek codec models? */
1202 codec->spdif_status_reset = 1;
1203 codec->forced_resume = 1;
1204 codec->patch_ops = alc_patch_ops;
1205 mutex_init(&spec->coef_mutex);
1207 err = alc_codec_rename_from_preset(codec);
1215 static int alc880_parse_auto_config(struct hda_codec *codec)
1217 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1218 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1219 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1228 ALC880_FIXUP_MEDION_RIM,
1230 ALC880_FIXUP_LG_LW25,
1232 ALC880_FIXUP_EAPD_COEF,
1233 ALC880_FIXUP_TCL_S700,
1234 ALC880_FIXUP_VOL_KNOB,
1235 ALC880_FIXUP_FUJITSU,
1237 ALC880_FIXUP_UNIWILL,
1238 ALC880_FIXUP_UNIWILL_DIG,
1240 ALC880_FIXUP_ASUS_W5A,
1241 ALC880_FIXUP_3ST_BASE,
1243 ALC880_FIXUP_3ST_DIG,
1244 ALC880_FIXUP_5ST_BASE,
1246 ALC880_FIXUP_5ST_DIG,
1247 ALC880_FIXUP_6ST_BASE,
1249 ALC880_FIXUP_6ST_DIG,
1250 ALC880_FIXUP_6ST_AUTOMUTE,
1253 /* enable the volume-knob widget support on NID 0x21 */
1254 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1255 const struct hda_fixup *fix, int action)
1257 if (action == HDA_FIXUP_ACT_PROBE)
1258 snd_hda_jack_detect_enable_callback(codec, 0x21,
1259 alc_update_knob_master);
1262 static const struct hda_fixup alc880_fixups[] = {
1263 [ALC880_FIXUP_GPIO1] = {
1264 .type = HDA_FIXUP_FUNC,
1265 .v.func = alc_fixup_gpio1,
1267 [ALC880_FIXUP_GPIO2] = {
1268 .type = HDA_FIXUP_FUNC,
1269 .v.func = alc_fixup_gpio2,
1271 [ALC880_FIXUP_MEDION_RIM] = {
1272 .type = HDA_FIXUP_VERBS,
1273 .v.verbs = (const struct hda_verb[]) {
1274 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1275 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1279 .chain_id = ALC880_FIXUP_GPIO2,
1281 [ALC880_FIXUP_LG] = {
1282 .type = HDA_FIXUP_PINS,
1283 .v.pins = (const struct hda_pintbl[]) {
1284 /* disable bogus unused pins */
1285 { 0x16, 0x411111f0 },
1286 { 0x18, 0x411111f0 },
1287 { 0x1a, 0x411111f0 },
1291 [ALC880_FIXUP_LG_LW25] = {
1292 .type = HDA_FIXUP_PINS,
1293 .v.pins = (const struct hda_pintbl[]) {
1294 { 0x1a, 0x0181344f }, /* line-in */
1295 { 0x1b, 0x0321403f }, /* headphone */
1299 [ALC880_FIXUP_W810] = {
1300 .type = HDA_FIXUP_PINS,
1301 .v.pins = (const struct hda_pintbl[]) {
1302 /* disable bogus unused pins */
1303 { 0x17, 0x411111f0 },
1307 .chain_id = ALC880_FIXUP_GPIO2,
1309 [ALC880_FIXUP_EAPD_COEF] = {
1310 .type = HDA_FIXUP_VERBS,
1311 .v.verbs = (const struct hda_verb[]) {
1312 /* change to EAPD mode */
1313 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1314 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1318 [ALC880_FIXUP_TCL_S700] = {
1319 .type = HDA_FIXUP_VERBS,
1320 .v.verbs = (const struct hda_verb[]) {
1321 /* change to EAPD mode */
1322 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1323 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1327 .chain_id = ALC880_FIXUP_GPIO2,
1329 [ALC880_FIXUP_VOL_KNOB] = {
1330 .type = HDA_FIXUP_FUNC,
1331 .v.func = alc880_fixup_vol_knob,
1333 [ALC880_FIXUP_FUJITSU] = {
1334 /* override all pins as BIOS on old Amilo is broken */
1335 .type = HDA_FIXUP_PINS,
1336 .v.pins = (const struct hda_pintbl[]) {
1337 { 0x14, 0x0121401f }, /* HP */
1338 { 0x15, 0x99030120 }, /* speaker */
1339 { 0x16, 0x99030130 }, /* bass speaker */
1340 { 0x17, 0x411111f0 }, /* N/A */
1341 { 0x18, 0x411111f0 }, /* N/A */
1342 { 0x19, 0x01a19950 }, /* mic-in */
1343 { 0x1a, 0x411111f0 }, /* N/A */
1344 { 0x1b, 0x411111f0 }, /* N/A */
1345 { 0x1c, 0x411111f0 }, /* N/A */
1346 { 0x1d, 0x411111f0 }, /* N/A */
1347 { 0x1e, 0x01454140 }, /* SPDIF out */
1351 .chain_id = ALC880_FIXUP_VOL_KNOB,
1353 [ALC880_FIXUP_F1734] = {
1354 /* almost compatible with FUJITSU, but no bass and SPDIF */
1355 .type = HDA_FIXUP_PINS,
1356 .v.pins = (const struct hda_pintbl[]) {
1357 { 0x14, 0x0121401f }, /* HP */
1358 { 0x15, 0x99030120 }, /* speaker */
1359 { 0x16, 0x411111f0 }, /* N/A */
1360 { 0x17, 0x411111f0 }, /* N/A */
1361 { 0x18, 0x411111f0 }, /* N/A */
1362 { 0x19, 0x01a19950 }, /* mic-in */
1363 { 0x1a, 0x411111f0 }, /* N/A */
1364 { 0x1b, 0x411111f0 }, /* N/A */
1365 { 0x1c, 0x411111f0 }, /* N/A */
1366 { 0x1d, 0x411111f0 }, /* N/A */
1367 { 0x1e, 0x411111f0 }, /* N/A */
1371 .chain_id = ALC880_FIXUP_VOL_KNOB,
1373 [ALC880_FIXUP_UNIWILL] = {
1374 /* need to fix HP and speaker pins to be parsed correctly */
1375 .type = HDA_FIXUP_PINS,
1376 .v.pins = (const struct hda_pintbl[]) {
1377 { 0x14, 0x0121411f }, /* HP */
1378 { 0x15, 0x99030120 }, /* speaker */
1379 { 0x16, 0x99030130 }, /* bass speaker */
1383 [ALC880_FIXUP_UNIWILL_DIG] = {
1384 .type = HDA_FIXUP_PINS,
1385 .v.pins = (const struct hda_pintbl[]) {
1386 /* disable bogus unused pins */
1387 { 0x17, 0x411111f0 },
1388 { 0x19, 0x411111f0 },
1389 { 0x1b, 0x411111f0 },
1390 { 0x1f, 0x411111f0 },
1394 [ALC880_FIXUP_Z71V] = {
1395 .type = HDA_FIXUP_PINS,
1396 .v.pins = (const struct hda_pintbl[]) {
1397 /* set up the whole pins as BIOS is utterly broken */
1398 { 0x14, 0x99030120 }, /* speaker */
1399 { 0x15, 0x0121411f }, /* HP */
1400 { 0x16, 0x411111f0 }, /* N/A */
1401 { 0x17, 0x411111f0 }, /* N/A */
1402 { 0x18, 0x01a19950 }, /* mic-in */
1403 { 0x19, 0x411111f0 }, /* N/A */
1404 { 0x1a, 0x01813031 }, /* line-in */
1405 { 0x1b, 0x411111f0 }, /* N/A */
1406 { 0x1c, 0x411111f0 }, /* N/A */
1407 { 0x1d, 0x411111f0 }, /* N/A */
1408 { 0x1e, 0x0144111e }, /* SPDIF */
1412 [ALC880_FIXUP_ASUS_W5A] = {
1413 .type = HDA_FIXUP_PINS,
1414 .v.pins = (const struct hda_pintbl[]) {
1415 /* set up the whole pins as BIOS is utterly broken */
1416 { 0x14, 0x0121411f }, /* HP */
1417 { 0x15, 0x411111f0 }, /* N/A */
1418 { 0x16, 0x411111f0 }, /* N/A */
1419 { 0x17, 0x411111f0 }, /* N/A */
1420 { 0x18, 0x90a60160 }, /* mic */
1421 { 0x19, 0x411111f0 }, /* N/A */
1422 { 0x1a, 0x411111f0 }, /* N/A */
1423 { 0x1b, 0x411111f0 }, /* N/A */
1424 { 0x1c, 0x411111f0 }, /* N/A */
1425 { 0x1d, 0x411111f0 }, /* N/A */
1426 { 0x1e, 0xb743111e }, /* SPDIF out */
1430 .chain_id = ALC880_FIXUP_GPIO1,
1432 [ALC880_FIXUP_3ST_BASE] = {
1433 .type = HDA_FIXUP_PINS,
1434 .v.pins = (const struct hda_pintbl[]) {
1435 { 0x14, 0x01014010 }, /* line-out */
1436 { 0x15, 0x411111f0 }, /* N/A */
1437 { 0x16, 0x411111f0 }, /* N/A */
1438 { 0x17, 0x411111f0 }, /* N/A */
1439 { 0x18, 0x01a19c30 }, /* mic-in */
1440 { 0x19, 0x0121411f }, /* HP */
1441 { 0x1a, 0x01813031 }, /* line-in */
1442 { 0x1b, 0x02a19c40 }, /* front-mic */
1443 { 0x1c, 0x411111f0 }, /* N/A */
1444 { 0x1d, 0x411111f0 }, /* N/A */
1445 /* 0x1e is filled in below */
1446 { 0x1f, 0x411111f0 }, /* N/A */
1450 [ALC880_FIXUP_3ST] = {
1451 .type = HDA_FIXUP_PINS,
1452 .v.pins = (const struct hda_pintbl[]) {
1453 { 0x1e, 0x411111f0 }, /* N/A */
1457 .chain_id = ALC880_FIXUP_3ST_BASE,
1459 [ALC880_FIXUP_3ST_DIG] = {
1460 .type = HDA_FIXUP_PINS,
1461 .v.pins = (const struct hda_pintbl[]) {
1462 { 0x1e, 0x0144111e }, /* SPDIF */
1466 .chain_id = ALC880_FIXUP_3ST_BASE,
1468 [ALC880_FIXUP_5ST_BASE] = {
1469 .type = HDA_FIXUP_PINS,
1470 .v.pins = (const struct hda_pintbl[]) {
1471 { 0x14, 0x01014010 }, /* front */
1472 { 0x15, 0x411111f0 }, /* N/A */
1473 { 0x16, 0x01011411 }, /* CLFE */
1474 { 0x17, 0x01016412 }, /* surr */
1475 { 0x18, 0x01a19c30 }, /* mic-in */
1476 { 0x19, 0x0121411f }, /* HP */
1477 { 0x1a, 0x01813031 }, /* line-in */
1478 { 0x1b, 0x02a19c40 }, /* front-mic */
1479 { 0x1c, 0x411111f0 }, /* N/A */
1480 { 0x1d, 0x411111f0 }, /* N/A */
1481 /* 0x1e is filled in below */
1482 { 0x1f, 0x411111f0 }, /* N/A */
1486 [ALC880_FIXUP_5ST] = {
1487 .type = HDA_FIXUP_PINS,
1488 .v.pins = (const struct hda_pintbl[]) {
1489 { 0x1e, 0x411111f0 }, /* N/A */
1493 .chain_id = ALC880_FIXUP_5ST_BASE,
1495 [ALC880_FIXUP_5ST_DIG] = {
1496 .type = HDA_FIXUP_PINS,
1497 .v.pins = (const struct hda_pintbl[]) {
1498 { 0x1e, 0x0144111e }, /* SPDIF */
1502 .chain_id = ALC880_FIXUP_5ST_BASE,
1504 [ALC880_FIXUP_6ST_BASE] = {
1505 .type = HDA_FIXUP_PINS,
1506 .v.pins = (const struct hda_pintbl[]) {
1507 { 0x14, 0x01014010 }, /* front */
1508 { 0x15, 0x01016412 }, /* surr */
1509 { 0x16, 0x01011411 }, /* CLFE */
1510 { 0x17, 0x01012414 }, /* side */
1511 { 0x18, 0x01a19c30 }, /* mic-in */
1512 { 0x19, 0x02a19c40 }, /* front-mic */
1513 { 0x1a, 0x01813031 }, /* line-in */
1514 { 0x1b, 0x0121411f }, /* HP */
1515 { 0x1c, 0x411111f0 }, /* N/A */
1516 { 0x1d, 0x411111f0 }, /* N/A */
1517 /* 0x1e is filled in below */
1518 { 0x1f, 0x411111f0 }, /* N/A */
1522 [ALC880_FIXUP_6ST] = {
1523 .type = HDA_FIXUP_PINS,
1524 .v.pins = (const struct hda_pintbl[]) {
1525 { 0x1e, 0x411111f0 }, /* N/A */
1529 .chain_id = ALC880_FIXUP_6ST_BASE,
1531 [ALC880_FIXUP_6ST_DIG] = {
1532 .type = HDA_FIXUP_PINS,
1533 .v.pins = (const struct hda_pintbl[]) {
1534 { 0x1e, 0x0144111e }, /* SPDIF */
1538 .chain_id = ALC880_FIXUP_6ST_BASE,
1540 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1541 .type = HDA_FIXUP_PINS,
1542 .v.pins = (const struct hda_pintbl[]) {
1543 { 0x1b, 0x0121401f }, /* HP with jack detect */
1546 .chained_before = true,
1547 .chain_id = ALC880_FIXUP_6ST_BASE,
1551 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1552 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1553 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1554 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1555 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1556 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1557 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1558 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1559 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1560 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1561 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1562 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1563 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1564 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1565 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1566 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1567 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1568 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1569 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1570 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1571 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1572 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1573 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1574 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1576 /* Below is the copied entries from alc880_quirks.c.
1577 * It's not quite sure whether BIOS sets the correct pin-config table
1578 * on these machines, thus they are kept to be compatible with
1579 * the old static quirks. Once when it's confirmed to work without
1580 * these overrides, it'd be better to remove.
1582 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1583 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1584 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1585 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1586 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1587 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1588 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1589 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1590 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1591 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1592 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1593 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1594 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1595 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1596 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1597 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1598 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1599 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1600 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1601 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1602 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1603 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1604 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1605 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1607 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1613 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1614 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1616 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1617 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1618 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1622 static const struct hda_model_fixup alc880_fixup_models[] = {
1623 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1624 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1625 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1626 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1627 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1628 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1629 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1635 * OK, here we have finally the patch for ALC880
1637 static int patch_alc880(struct hda_codec *codec)
1639 struct alc_spec *spec;
1642 err = alc_alloc_spec(codec, 0x0b);
1647 spec->gen.need_dac_fix = 1;
1648 spec->gen.beep_nid = 0x01;
1650 codec->patch_ops.unsol_event = alc880_unsol_event;
1652 alc_pre_init(codec);
1654 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1656 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1658 /* automatic parse from the BIOS config */
1659 err = alc880_parse_auto_config(codec);
1663 if (!spec->gen.no_analog) {
1664 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1669 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1682 static int alc260_parse_auto_config(struct hda_codec *codec)
1684 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1685 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1686 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1693 ALC260_FIXUP_HP_DC5750,
1694 ALC260_FIXUP_HP_PIN_0F,
1697 ALC260_FIXUP_GPIO1_TOGGLE,
1698 ALC260_FIXUP_REPLACER,
1699 ALC260_FIXUP_HP_B1900,
1701 ALC260_FIXUP_FSC_S7020,
1702 ALC260_FIXUP_FSC_S7020_JWSE,
1703 ALC260_FIXUP_VAIO_PINS,
1706 static void alc260_gpio1_automute(struct hda_codec *codec)
1708 struct alc_spec *spec = codec->spec;
1710 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1713 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1714 const struct hda_fixup *fix, int action)
1716 struct alc_spec *spec = codec->spec;
1717 if (action == HDA_FIXUP_ACT_PROBE) {
1718 /* although the machine has only one output pin, we need to
1719 * toggle GPIO1 according to the jack state
1721 spec->gen.automute_hook = alc260_gpio1_automute;
1722 spec->gen.detect_hp = 1;
1723 spec->gen.automute_speaker = 1;
1724 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1725 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1726 snd_hda_gen_hp_automute);
1727 alc_setup_gpio(codec, 0x01);
1731 static void alc260_fixup_kn1(struct hda_codec *codec,
1732 const struct hda_fixup *fix, int action)
1734 struct alc_spec *spec = codec->spec;
1735 static const struct hda_pintbl pincfgs[] = {
1736 { 0x0f, 0x02214000 }, /* HP/speaker */
1737 { 0x12, 0x90a60160 }, /* int mic */
1738 { 0x13, 0x02a19000 }, /* ext mic */
1739 { 0x18, 0x01446000 }, /* SPDIF out */
1740 /* disable bogus I/O pins */
1741 { 0x10, 0x411111f0 },
1742 { 0x11, 0x411111f0 },
1743 { 0x14, 0x411111f0 },
1744 { 0x15, 0x411111f0 },
1745 { 0x16, 0x411111f0 },
1746 { 0x17, 0x411111f0 },
1747 { 0x19, 0x411111f0 },
1752 case HDA_FIXUP_ACT_PRE_PROBE:
1753 snd_hda_apply_pincfgs(codec, pincfgs);
1754 spec->init_amp = ALC_INIT_NONE;
1759 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1760 const struct hda_fixup *fix, int action)
1762 struct alc_spec *spec = codec->spec;
1763 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1764 spec->init_amp = ALC_INIT_NONE;
1767 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1768 const struct hda_fixup *fix, int action)
1770 struct alc_spec *spec = codec->spec;
1771 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1772 spec->gen.add_jack_modes = 1;
1773 spec->gen.hp_mic = 1;
1777 static const struct hda_fixup alc260_fixups[] = {
1778 [ALC260_FIXUP_HP_DC5750] = {
1779 .type = HDA_FIXUP_PINS,
1780 .v.pins = (const struct hda_pintbl[]) {
1781 { 0x11, 0x90130110 }, /* speaker */
1785 [ALC260_FIXUP_HP_PIN_0F] = {
1786 .type = HDA_FIXUP_PINS,
1787 .v.pins = (const struct hda_pintbl[]) {
1788 { 0x0f, 0x01214000 }, /* HP */
1792 [ALC260_FIXUP_COEF] = {
1793 .type = HDA_FIXUP_VERBS,
1794 .v.verbs = (const struct hda_verb[]) {
1795 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1796 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1800 [ALC260_FIXUP_GPIO1] = {
1801 .type = HDA_FIXUP_FUNC,
1802 .v.func = alc_fixup_gpio1,
1804 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1805 .type = HDA_FIXUP_FUNC,
1806 .v.func = alc260_fixup_gpio1_toggle,
1808 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1810 [ALC260_FIXUP_REPLACER] = {
1811 .type = HDA_FIXUP_VERBS,
1812 .v.verbs = (const struct hda_verb[]) {
1813 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1814 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1818 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1820 [ALC260_FIXUP_HP_B1900] = {
1821 .type = HDA_FIXUP_FUNC,
1822 .v.func = alc260_fixup_gpio1_toggle,
1824 .chain_id = ALC260_FIXUP_COEF,
1826 [ALC260_FIXUP_KN1] = {
1827 .type = HDA_FIXUP_FUNC,
1828 .v.func = alc260_fixup_kn1,
1830 [ALC260_FIXUP_FSC_S7020] = {
1831 .type = HDA_FIXUP_FUNC,
1832 .v.func = alc260_fixup_fsc_s7020,
1834 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1835 .type = HDA_FIXUP_FUNC,
1836 .v.func = alc260_fixup_fsc_s7020_jwse,
1838 .chain_id = ALC260_FIXUP_FSC_S7020,
1840 [ALC260_FIXUP_VAIO_PINS] = {
1841 .type = HDA_FIXUP_PINS,
1842 .v.pins = (const struct hda_pintbl[]) {
1843 /* Pin configs are missing completely on some VAIOs */
1844 { 0x0f, 0x01211020 },
1845 { 0x10, 0x0001003f },
1846 { 0x11, 0x411111f0 },
1847 { 0x12, 0x01a15930 },
1848 { 0x13, 0x411111f0 },
1849 { 0x14, 0x411111f0 },
1850 { 0x15, 0x411111f0 },
1851 { 0x16, 0x411111f0 },
1852 { 0x17, 0x411111f0 },
1853 { 0x18, 0x411111f0 },
1854 { 0x19, 0x411111f0 },
1860 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1861 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1862 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1863 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1864 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1865 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1866 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1867 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1868 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1869 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1870 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1871 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1872 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1876 static const struct hda_model_fixup alc260_fixup_models[] = {
1877 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1878 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1879 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1880 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1886 static int patch_alc260(struct hda_codec *codec)
1888 struct alc_spec *spec;
1891 err = alc_alloc_spec(codec, 0x07);
1896 /* as quite a few machines require HP amp for speaker outputs,
1897 * it's easier to enable it unconditionally; even if it's unneeded,
1898 * it's almost harmless.
1900 spec->gen.prefer_hp_amp = 1;
1901 spec->gen.beep_nid = 0x01;
1903 spec->shutup = alc_eapd_shutup;
1905 alc_pre_init(codec);
1907 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1909 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1911 /* automatic parse from the BIOS config */
1912 err = alc260_parse_auto_config(codec);
1916 if (!spec->gen.no_analog) {
1917 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1922 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1933 * ALC882/883/885/888/889 support
1935 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1936 * configuration. Each pin widget can choose any input DACs and a mixer.
1937 * Each ADC is connected from a mixer of all inputs. This makes possible
1938 * 6-channel independent captures.
1940 * In addition, an independent DAC for the multi-playback (not used in this
1948 ALC882_FIXUP_ABIT_AW9D_MAX,
1949 ALC882_FIXUP_LENOVO_Y530,
1950 ALC882_FIXUP_PB_M5210,
1951 ALC882_FIXUP_ACER_ASPIRE_7736,
1952 ALC882_FIXUP_ASUS_W90V,
1954 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1955 ALC889_FIXUP_VAIO_TT,
1956 ALC888_FIXUP_EEE1601,
1960 ALC883_FIXUP_ACER_EAPD,
1965 ALC882_FIXUP_ASUS_W2JC,
1966 ALC882_FIXUP_ACER_ASPIRE_4930G,
1967 ALC882_FIXUP_ACER_ASPIRE_8930G,
1968 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1969 ALC885_FIXUP_MACPRO_GPIO,
1970 ALC889_FIXUP_DAC_ROUTE,
1971 ALC889_FIXUP_MBP_VREF,
1972 ALC889_FIXUP_IMAC91_VREF,
1973 ALC889_FIXUP_MBA11_VREF,
1974 ALC889_FIXUP_MBA21_VREF,
1975 ALC889_FIXUP_MP11_VREF,
1976 ALC889_FIXUP_MP41_VREF,
1977 ALC882_FIXUP_INV_DMIC,
1978 ALC882_FIXUP_NO_PRIMARY_HP,
1979 ALC887_FIXUP_ASUS_BASS,
1980 ALC887_FIXUP_BASS_CHMAP,
1981 ALC1220_FIXUP_GB_DUAL_CODECS,
1982 ALC1220_FIXUP_GB_X570,
1983 ALC1220_FIXUP_CLEVO_P950,
1984 ALC1220_FIXUP_CLEVO_PB51ED,
1985 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1986 ALC887_FIXUP_ASUS_AUDIO,
1987 ALC887_FIXUP_ASUS_HMIC,
1988 ALCS1200A_FIXUP_MIC_VREF,
1991 static void alc889_fixup_coef(struct hda_codec *codec,
1992 const struct hda_fixup *fix, int action)
1994 if (action != HDA_FIXUP_ACT_INIT)
1996 alc_update_coef_idx(codec, 7, 0, 0x2030);
1999 /* set up GPIO at initialization */
2000 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
2001 const struct hda_fixup *fix, int action)
2003 struct alc_spec *spec = codec->spec;
2005 spec->gpio_write_delay = true;
2006 alc_fixup_gpio3(codec, fix, action);
2009 /* Fix the connection of some pins for ALC889:
2010 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2011 * work correctly (bko#42740)
2013 static void alc889_fixup_dac_route(struct hda_codec *codec,
2014 const struct hda_fixup *fix, int action)
2016 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2017 /* fake the connections during parsing the tree */
2018 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2019 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2020 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2021 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2022 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2023 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
2024 } else if (action == HDA_FIXUP_ACT_PROBE) {
2025 /* restore the connections */
2026 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2027 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2028 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2029 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2030 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
2034 /* Set VREF on HP pin */
2035 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
2036 const struct hda_fixup *fix, int action)
2038 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
2039 struct alc_spec *spec = codec->spec;
2042 if (action != HDA_FIXUP_ACT_INIT)
2044 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2045 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2046 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2048 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2049 val |= AC_PINCTL_VREF_80;
2050 snd_hda_set_pin_ctl(codec, nids[i], val);
2051 spec->gen.keep_vref_in_automute = 1;
2056 static void alc889_fixup_mac_pins(struct hda_codec *codec,
2057 const hda_nid_t *nids, int num_nids)
2059 struct alc_spec *spec = codec->spec;
2062 for (i = 0; i < num_nids; i++) {
2064 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2065 val |= AC_PINCTL_VREF_50;
2066 snd_hda_set_pin_ctl(codec, nids[i], val);
2068 spec->gen.keep_vref_in_automute = 1;
2071 /* Set VREF on speaker pins on imac91 */
2072 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2073 const struct hda_fixup *fix, int action)
2075 static const hda_nid_t nids[] = { 0x18, 0x1a };
2077 if (action == HDA_FIXUP_ACT_INIT)
2078 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2081 /* Set VREF on speaker pins on mba11 */
2082 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2083 const struct hda_fixup *fix, int action)
2085 static const hda_nid_t nids[] = { 0x18 };
2087 if (action == HDA_FIXUP_ACT_INIT)
2088 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2091 /* Set VREF on speaker pins on mba21 */
2092 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2093 const struct hda_fixup *fix, int action)
2095 static const hda_nid_t nids[] = { 0x18, 0x19 };
2097 if (action == HDA_FIXUP_ACT_INIT)
2098 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2101 /* Don't take HP output as primary
2102 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2103 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2105 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2106 const struct hda_fixup *fix, int action)
2108 struct alc_spec *spec = codec->spec;
2109 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2110 spec->gen.no_primary_hp = 1;
2111 spec->gen.no_multi_io = 1;
2115 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2116 const struct hda_fixup *fix, int action);
2118 /* For dual-codec configuration, we need to disable some features to avoid
2119 * conflicts of kctls and PCM streams
2121 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2122 const struct hda_fixup *fix, int action)
2124 struct alc_spec *spec = codec->spec;
2126 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2128 /* disable vmaster */
2129 spec->gen.suppress_vmaster = 1;
2130 /* auto-mute and auto-mic switch don't work with multiple codecs */
2131 spec->gen.suppress_auto_mute = 1;
2132 spec->gen.suppress_auto_mic = 1;
2133 /* disable aamix as well */
2134 spec->gen.mixer_nid = 0;
2135 /* add location prefix to avoid conflicts */
2136 codec->force_pin_prefix = 1;
2139 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2140 const char *newname)
2142 struct snd_kcontrol *kctl;
2144 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2146 snd_ctl_rename(codec->card, kctl, newname);
2149 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2150 const struct hda_fixup *fix,
2153 alc_fixup_dual_codecs(codec, fix, action);
2155 case HDA_FIXUP_ACT_PRE_PROBE:
2156 /* override card longname to provide a unique UCM profile */
2157 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2159 case HDA_FIXUP_ACT_BUILD:
2160 /* rename Capture controls depending on the codec */
2161 rename_ctl(codec, "Capture Volume",
2163 "Rear-Panel Capture Volume" :
2164 "Front-Panel Capture Volume");
2165 rename_ctl(codec, "Capture Switch",
2167 "Rear-Panel Capture Switch" :
2168 "Front-Panel Capture Switch");
2173 static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2174 const struct hda_fixup *fix,
2177 static const hda_nid_t conn1[] = { 0x0c };
2178 static const struct coef_fw gb_x570_coefs[] = {
2179 WRITE_COEF(0x07, 0x03c0),
2180 WRITE_COEF(0x1a, 0x01c1),
2181 WRITE_COEF(0x1b, 0x0202),
2182 WRITE_COEF(0x43, 0x3005),
2187 case HDA_FIXUP_ACT_PRE_PROBE:
2188 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2189 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2191 case HDA_FIXUP_ACT_INIT:
2192 alc_process_coef_fw(codec, gb_x570_coefs);
2197 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2198 const struct hda_fixup *fix,
2201 static const hda_nid_t conn1[] = { 0x0c };
2203 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2206 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2207 /* We therefore want to make sure 0x14 (front headphone) and
2208 * 0x1b (speakers) use the stereo DAC 0x02
2210 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2211 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2214 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2215 const struct hda_fixup *fix, int action);
2217 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2218 const struct hda_fixup *fix,
2221 alc1220_fixup_clevo_p950(codec, fix, action);
2222 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2225 static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2226 struct hda_jack_callback *jack)
2228 struct alc_spec *spec = codec->spec;
2231 snd_hda_gen_hp_automute(codec, jack);
2233 if (spec->gen.hp_jack_present)
2234 vref = AC_PINCTL_VREF_80;
2236 vref = AC_PINCTL_VREF_HIZ;
2237 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2240 static void alc887_fixup_asus_jack(struct hda_codec *codec,
2241 const struct hda_fixup *fix, int action)
2243 struct alc_spec *spec = codec->spec;
2244 if (action != HDA_FIXUP_ACT_PROBE)
2246 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2247 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2250 static const struct hda_fixup alc882_fixups[] = {
2251 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2252 .type = HDA_FIXUP_PINS,
2253 .v.pins = (const struct hda_pintbl[]) {
2254 { 0x15, 0x01080104 }, /* side */
2255 { 0x16, 0x01011012 }, /* rear */
2256 { 0x17, 0x01016011 }, /* clfe */
2260 [ALC882_FIXUP_LENOVO_Y530] = {
2261 .type = HDA_FIXUP_PINS,
2262 .v.pins = (const struct hda_pintbl[]) {
2263 { 0x15, 0x99130112 }, /* rear int speakers */
2264 { 0x16, 0x99130111 }, /* subwoofer */
2268 [ALC882_FIXUP_PB_M5210] = {
2269 .type = HDA_FIXUP_PINCTLS,
2270 .v.pins = (const struct hda_pintbl[]) {
2271 { 0x19, PIN_VREF50 },
2275 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2276 .type = HDA_FIXUP_FUNC,
2277 .v.func = alc_fixup_sku_ignore,
2279 [ALC882_FIXUP_ASUS_W90V] = {
2280 .type = HDA_FIXUP_PINS,
2281 .v.pins = (const struct hda_pintbl[]) {
2282 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2286 [ALC889_FIXUP_CD] = {
2287 .type = HDA_FIXUP_PINS,
2288 .v.pins = (const struct hda_pintbl[]) {
2289 { 0x1c, 0x993301f0 }, /* CD */
2293 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2294 .type = HDA_FIXUP_PINS,
2295 .v.pins = (const struct hda_pintbl[]) {
2296 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2300 .chain_id = ALC889_FIXUP_CD,
2302 [ALC889_FIXUP_VAIO_TT] = {
2303 .type = HDA_FIXUP_PINS,
2304 .v.pins = (const struct hda_pintbl[]) {
2305 { 0x17, 0x90170111 }, /* hidden surround speaker */
2309 [ALC888_FIXUP_EEE1601] = {
2310 .type = HDA_FIXUP_VERBS,
2311 .v.verbs = (const struct hda_verb[]) {
2312 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2313 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2317 [ALC886_FIXUP_EAPD] = {
2318 .type = HDA_FIXUP_VERBS,
2319 .v.verbs = (const struct hda_verb[]) {
2320 /* change to EAPD mode */
2321 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2322 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2326 [ALC882_FIXUP_EAPD] = {
2327 .type = HDA_FIXUP_VERBS,
2328 .v.verbs = (const struct hda_verb[]) {
2329 /* change to EAPD mode */
2330 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2331 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2335 [ALC883_FIXUP_EAPD] = {
2336 .type = HDA_FIXUP_VERBS,
2337 .v.verbs = (const struct hda_verb[]) {
2338 /* change to EAPD mode */
2339 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2340 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2344 [ALC883_FIXUP_ACER_EAPD] = {
2345 .type = HDA_FIXUP_VERBS,
2346 .v.verbs = (const struct hda_verb[]) {
2347 /* eanable EAPD on Acer laptops */
2348 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2349 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2353 [ALC882_FIXUP_GPIO1] = {
2354 .type = HDA_FIXUP_FUNC,
2355 .v.func = alc_fixup_gpio1,
2357 [ALC882_FIXUP_GPIO2] = {
2358 .type = HDA_FIXUP_FUNC,
2359 .v.func = alc_fixup_gpio2,
2361 [ALC882_FIXUP_GPIO3] = {
2362 .type = HDA_FIXUP_FUNC,
2363 .v.func = alc_fixup_gpio3,
2365 [ALC882_FIXUP_ASUS_W2JC] = {
2366 .type = HDA_FIXUP_FUNC,
2367 .v.func = alc_fixup_gpio1,
2369 .chain_id = ALC882_FIXUP_EAPD,
2371 [ALC889_FIXUP_COEF] = {
2372 .type = HDA_FIXUP_FUNC,
2373 .v.func = alc889_fixup_coef,
2375 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2376 .type = HDA_FIXUP_PINS,
2377 .v.pins = (const struct hda_pintbl[]) {
2378 { 0x16, 0x99130111 }, /* CLFE speaker */
2379 { 0x17, 0x99130112 }, /* surround speaker */
2383 .chain_id = ALC882_FIXUP_GPIO1,
2385 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2386 .type = HDA_FIXUP_PINS,
2387 .v.pins = (const struct hda_pintbl[]) {
2388 { 0x16, 0x99130111 }, /* CLFE speaker */
2389 { 0x1b, 0x99130112 }, /* surround speaker */
2393 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2395 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2396 /* additional init verbs for Acer Aspire 8930G */
2397 .type = HDA_FIXUP_VERBS,
2398 .v.verbs = (const struct hda_verb[]) {
2399 /* Enable all DACs */
2400 /* DAC DISABLE/MUTE 1? */
2401 /* setting bits 1-5 disables DAC nids 0x02-0x06
2402 * apparently. Init=0x38 */
2403 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2404 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2405 /* DAC DISABLE/MUTE 2? */
2406 /* some bit here disables the other DACs.
2408 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2409 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2411 * This laptop has a stereo digital microphone.
2412 * The mics are only 1cm apart which makes the stereo
2413 * useless. However, either the mic or the ALC889
2414 * makes the signal become a difference/sum signal
2415 * instead of standard stereo, which is annoying.
2416 * So instead we flip this bit which makes the
2417 * codec replicate the sum signal to both channels,
2418 * turning it into a normal mono mic.
2420 /* DMIC_CONTROL? Init value = 0x0001 */
2421 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2422 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2423 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2424 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2428 .chain_id = ALC882_FIXUP_GPIO1,
2430 [ALC885_FIXUP_MACPRO_GPIO] = {
2431 .type = HDA_FIXUP_FUNC,
2432 .v.func = alc885_fixup_macpro_gpio,
2434 [ALC889_FIXUP_DAC_ROUTE] = {
2435 .type = HDA_FIXUP_FUNC,
2436 .v.func = alc889_fixup_dac_route,
2438 [ALC889_FIXUP_MBP_VREF] = {
2439 .type = HDA_FIXUP_FUNC,
2440 .v.func = alc889_fixup_mbp_vref,
2442 .chain_id = ALC882_FIXUP_GPIO1,
2444 [ALC889_FIXUP_IMAC91_VREF] = {
2445 .type = HDA_FIXUP_FUNC,
2446 .v.func = alc889_fixup_imac91_vref,
2448 .chain_id = ALC882_FIXUP_GPIO1,
2450 [ALC889_FIXUP_MBA11_VREF] = {
2451 .type = HDA_FIXUP_FUNC,
2452 .v.func = alc889_fixup_mba11_vref,
2454 .chain_id = ALC889_FIXUP_MBP_VREF,
2456 [ALC889_FIXUP_MBA21_VREF] = {
2457 .type = HDA_FIXUP_FUNC,
2458 .v.func = alc889_fixup_mba21_vref,
2460 .chain_id = ALC889_FIXUP_MBP_VREF,
2462 [ALC889_FIXUP_MP11_VREF] = {
2463 .type = HDA_FIXUP_FUNC,
2464 .v.func = alc889_fixup_mba11_vref,
2466 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2468 [ALC889_FIXUP_MP41_VREF] = {
2469 .type = HDA_FIXUP_FUNC,
2470 .v.func = alc889_fixup_mbp_vref,
2472 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2474 [ALC882_FIXUP_INV_DMIC] = {
2475 .type = HDA_FIXUP_FUNC,
2476 .v.func = alc_fixup_inv_dmic,
2478 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2479 .type = HDA_FIXUP_FUNC,
2480 .v.func = alc882_fixup_no_primary_hp,
2482 [ALC887_FIXUP_ASUS_BASS] = {
2483 .type = HDA_FIXUP_PINS,
2484 .v.pins = (const struct hda_pintbl[]) {
2485 {0x16, 0x99130130}, /* bass speaker */
2489 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2491 [ALC887_FIXUP_BASS_CHMAP] = {
2492 .type = HDA_FIXUP_FUNC,
2493 .v.func = alc_fixup_bass_chmap,
2495 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2496 .type = HDA_FIXUP_FUNC,
2497 .v.func = alc1220_fixup_gb_dual_codecs,
2499 [ALC1220_FIXUP_GB_X570] = {
2500 .type = HDA_FIXUP_FUNC,
2501 .v.func = alc1220_fixup_gb_x570,
2503 [ALC1220_FIXUP_CLEVO_P950] = {
2504 .type = HDA_FIXUP_FUNC,
2505 .v.func = alc1220_fixup_clevo_p950,
2507 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2508 .type = HDA_FIXUP_FUNC,
2509 .v.func = alc1220_fixup_clevo_pb51ed,
2511 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2512 .type = HDA_FIXUP_PINS,
2513 .v.pins = (const struct hda_pintbl[]) {
2514 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2518 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2520 [ALC887_FIXUP_ASUS_AUDIO] = {
2521 .type = HDA_FIXUP_PINS,
2522 .v.pins = (const struct hda_pintbl[]) {
2523 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2524 { 0x19, 0x22219420 },
2528 [ALC887_FIXUP_ASUS_HMIC] = {
2529 .type = HDA_FIXUP_FUNC,
2530 .v.func = alc887_fixup_asus_jack,
2532 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2534 [ALCS1200A_FIXUP_MIC_VREF] = {
2535 .type = HDA_FIXUP_PINCTLS,
2536 .v.pins = (const struct hda_pintbl[]) {
2537 { 0x18, PIN_VREF50 }, /* rear mic */
2538 { 0x19, PIN_VREF50 }, /* front mic */
2544 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2545 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2546 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2547 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2548 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2549 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2550 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2551 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2552 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2553 ALC882_FIXUP_ACER_ASPIRE_4930G),
2554 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2555 ALC882_FIXUP_ACER_ASPIRE_4930G),
2556 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2557 ALC882_FIXUP_ACER_ASPIRE_8930G),
2558 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2559 ALC882_FIXUP_ACER_ASPIRE_8930G),
2560 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2561 ALC882_FIXUP_ACER_ASPIRE_4930G),
2562 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2563 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2564 ALC882_FIXUP_ACER_ASPIRE_4930G),
2565 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2566 ALC882_FIXUP_ACER_ASPIRE_4930G),
2567 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2568 ALC882_FIXUP_ACER_ASPIRE_4930G),
2569 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2570 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2571 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2572 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2573 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2574 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2575 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
2576 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2577 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2578 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2579 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
2580 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2581 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2582 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2583 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2584 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2586 /* All Apple entries are in codec SSIDs */
2587 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2588 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2589 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2590 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2591 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2592 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2593 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2594 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2595 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2596 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2597 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2598 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2599 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2600 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2601 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2602 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2603 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2604 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2605 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2606 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2607 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2608 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2610 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2611 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
2612 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2613 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2614 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
2615 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
2616 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
2617 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
2618 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
2619 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
2620 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
2621 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
2622 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
2623 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2624 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
2625 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2626 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2627 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2628 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2629 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2630 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2631 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2632 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2633 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2634 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2635 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2636 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2637 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2638 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2639 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2640 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2641 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2643 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2644 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
2645 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2646 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
2647 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
2648 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2649 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2650 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2651 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2652 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2653 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
2654 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2655 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2656 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
2657 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2658 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2659 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2660 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2661 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2665 static const struct hda_model_fixup alc882_fixup_models[] = {
2666 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2667 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2668 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2669 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2670 {.id = ALC889_FIXUP_CD, .name = "cd"},
2671 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2672 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2673 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2674 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2675 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2676 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2677 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2678 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2679 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2680 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2681 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2682 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2683 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2684 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2685 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2686 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2687 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2688 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2689 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2690 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2691 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2692 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2693 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2694 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2695 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2696 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
2697 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2701 static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2702 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2710 {0x1e, 0x01456130}),
2711 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2719 {0x1e, 0x01451130}),
2724 * BIOS auto configuration
2726 /* almost identical with ALC880 parser... */
2727 static int alc882_parse_auto_config(struct hda_codec *codec)
2729 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2730 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2731 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2736 static int patch_alc882(struct hda_codec *codec)
2738 struct alc_spec *spec;
2741 err = alc_alloc_spec(codec, 0x0b);
2747 switch (codec->core.vendor_id) {
2755 /* ALC883 and variants */
2756 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2760 alc_pre_init(codec);
2762 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2764 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
2765 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2767 alc_auto_parse_customize_define(codec);
2769 if (has_cdefine_beep(codec))
2770 spec->gen.beep_nid = 0x01;
2772 /* automatic parse from the BIOS config */
2773 err = alc882_parse_auto_config(codec);
2777 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2778 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2783 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2796 static int alc262_parse_auto_config(struct hda_codec *codec)
2798 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2799 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2800 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2807 ALC262_FIXUP_FSC_H270,
2808 ALC262_FIXUP_FSC_S7110,
2809 ALC262_FIXUP_HP_Z200,
2811 ALC262_FIXUP_LENOVO_3000,
2813 ALC262_FIXUP_BENQ_T31,
2814 ALC262_FIXUP_INV_DMIC,
2815 ALC262_FIXUP_INTEL_BAYLEYBAY,
2818 static const struct hda_fixup alc262_fixups[] = {
2819 [ALC262_FIXUP_FSC_H270] = {
2820 .type = HDA_FIXUP_PINS,
2821 .v.pins = (const struct hda_pintbl[]) {
2822 { 0x14, 0x99130110 }, /* speaker */
2823 { 0x15, 0x0221142f }, /* front HP */
2824 { 0x1b, 0x0121141f }, /* rear HP */
2828 [ALC262_FIXUP_FSC_S7110] = {
2829 .type = HDA_FIXUP_PINS,
2830 .v.pins = (const struct hda_pintbl[]) {
2831 { 0x15, 0x90170110 }, /* speaker */
2835 .chain_id = ALC262_FIXUP_BENQ,
2837 [ALC262_FIXUP_HP_Z200] = {
2838 .type = HDA_FIXUP_PINS,
2839 .v.pins = (const struct hda_pintbl[]) {
2840 { 0x16, 0x99130120 }, /* internal speaker */
2844 [ALC262_FIXUP_TYAN] = {
2845 .type = HDA_FIXUP_PINS,
2846 .v.pins = (const struct hda_pintbl[]) {
2847 { 0x14, 0x1993e1f0 }, /* int AUX */
2851 [ALC262_FIXUP_LENOVO_3000] = {
2852 .type = HDA_FIXUP_PINCTLS,
2853 .v.pins = (const struct hda_pintbl[]) {
2854 { 0x19, PIN_VREF50 },
2858 .chain_id = ALC262_FIXUP_BENQ,
2860 [ALC262_FIXUP_BENQ] = {
2861 .type = HDA_FIXUP_VERBS,
2862 .v.verbs = (const struct hda_verb[]) {
2863 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2864 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2868 [ALC262_FIXUP_BENQ_T31] = {
2869 .type = HDA_FIXUP_VERBS,
2870 .v.verbs = (const struct hda_verb[]) {
2871 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2872 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2876 [ALC262_FIXUP_INV_DMIC] = {
2877 .type = HDA_FIXUP_FUNC,
2878 .v.func = alc_fixup_inv_dmic,
2880 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2881 .type = HDA_FIXUP_FUNC,
2882 .v.func = alc_fixup_no_depop_delay,
2886 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2887 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2888 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2889 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2890 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2891 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2892 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2893 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2894 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2895 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2896 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2900 static const struct hda_model_fixup alc262_fixup_models[] = {
2901 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2902 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2903 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2904 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2905 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2906 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2907 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2908 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2909 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2915 static int patch_alc262(struct hda_codec *codec)
2917 struct alc_spec *spec;
2920 err = alc_alloc_spec(codec, 0x0b);
2925 spec->gen.shared_mic_vref_pin = 0x18;
2927 spec->shutup = alc_eapd_shutup;
2930 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2933 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2935 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2937 alc_pre_init(codec);
2939 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2941 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2943 alc_auto_parse_customize_define(codec);
2945 if (has_cdefine_beep(codec))
2946 spec->gen.beep_nid = 0x01;
2948 /* automatic parse from the BIOS config */
2949 err = alc262_parse_auto_config(codec);
2953 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2954 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2959 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2971 /* bind Beep switches of both NID 0x0f and 0x10 */
2972 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2973 struct snd_ctl_elem_value *ucontrol)
2975 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2979 mutex_lock(&codec->control_mutex);
2980 pval = kcontrol->private_value;
2981 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2982 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2984 kcontrol->private_value = (pval & ~0xff) | 0x10;
2985 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2987 kcontrol->private_value = pval;
2988 mutex_unlock(&codec->control_mutex);
2992 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2993 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2995 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2996 .name = "Beep Playback Switch",
2997 .subdevice = HDA_SUBDEV_AMP_FLAG,
2998 .info = snd_hda_mixer_amp_switch_info,
2999 .get = snd_hda_mixer_amp_switch_get,
3000 .put = alc268_beep_switch_put,
3001 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3005 /* set PCBEEP vol = 0, mute connections */
3006 static const struct hda_verb alc268_beep_init_verbs[] = {
3007 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3008 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3009 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3014 ALC268_FIXUP_INV_DMIC,
3015 ALC268_FIXUP_HP_EAPD,
3019 static const struct hda_fixup alc268_fixups[] = {
3020 [ALC268_FIXUP_INV_DMIC] = {
3021 .type = HDA_FIXUP_FUNC,
3022 .v.func = alc_fixup_inv_dmic,
3024 [ALC268_FIXUP_HP_EAPD] = {
3025 .type = HDA_FIXUP_VERBS,
3026 .v.verbs = (const struct hda_verb[]) {
3027 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3031 [ALC268_FIXUP_SPDIF] = {
3032 .type = HDA_FIXUP_PINS,
3033 .v.pins = (const struct hda_pintbl[]) {
3034 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3040 static const struct hda_model_fixup alc268_fixup_models[] = {
3041 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
3042 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
3043 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
3047 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
3048 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
3049 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
3050 /* below is codec SSID since multiple Toshiba laptops have the
3051 * same PCI SSID 1179:ff00
3053 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
3058 * BIOS auto configuration
3060 static int alc268_parse_auto_config(struct hda_codec *codec)
3062 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3063 return alc_parse_auto_config(codec, NULL, alc268_ssids);
3068 static int patch_alc268(struct hda_codec *codec)
3070 struct alc_spec *spec;
3073 /* ALC268 has no aa-loopback mixer */
3074 err = alc_alloc_spec(codec, 0);
3079 if (has_cdefine_beep(codec))
3080 spec->gen.beep_nid = 0x01;
3082 spec->shutup = alc_eapd_shutup;
3084 alc_pre_init(codec);
3086 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3087 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3089 /* automatic parse from the BIOS config */
3090 err = alc268_parse_auto_config(codec);
3094 if (err > 0 && !spec->gen.no_analog &&
3095 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3096 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3097 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3098 &alc268_beep_mixer[i])) {
3103 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
3104 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3105 /* override the amp caps for beep generator */
3106 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3107 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3108 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3109 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3110 (0 << AC_AMPCAP_MUTE_SHIFT));
3113 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3126 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
3127 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3130 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
3131 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3134 /* different alc269-variants */
3136 ALC269_TYPE_ALC269VA,
3137 ALC269_TYPE_ALC269VB,
3138 ALC269_TYPE_ALC269VC,
3139 ALC269_TYPE_ALC269VD,
3161 * BIOS auto configuration
3163 static int alc269_parse_auto_config(struct hda_codec *codec)
3165 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3166 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3167 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3168 struct alc_spec *spec = codec->spec;
3169 const hda_nid_t *ssids;
3171 switch (spec->codec_variant) {
3172 case ALC269_TYPE_ALC269VA:
3173 case ALC269_TYPE_ALC269VC:
3174 case ALC269_TYPE_ALC280:
3175 case ALC269_TYPE_ALC284:
3176 case ALC269_TYPE_ALC293:
3177 ssids = alc269va_ssids;
3179 case ALC269_TYPE_ALC269VB:
3180 case ALC269_TYPE_ALC269VD:
3181 case ALC269_TYPE_ALC282:
3182 case ALC269_TYPE_ALC283:
3183 case ALC269_TYPE_ALC286:
3184 case ALC269_TYPE_ALC298:
3185 case ALC269_TYPE_ALC255:
3186 case ALC269_TYPE_ALC256:
3187 case ALC269_TYPE_ALC257:
3188 case ALC269_TYPE_ALC215:
3189 case ALC269_TYPE_ALC225:
3190 case ALC269_TYPE_ALC245:
3191 case ALC269_TYPE_ALC287:
3192 case ALC269_TYPE_ALC294:
3193 case ALC269_TYPE_ALC300:
3194 case ALC269_TYPE_ALC623:
3195 case ALC269_TYPE_ALC700:
3196 ssids = alc269_ssids;
3199 ssids = alc269_ssids;
3203 return alc_parse_auto_config(codec, alc269_ignore, ssids);
3206 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3207 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3208 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3209 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3210 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3214 static void alc_headset_btn_callback(struct hda_codec *codec,
3215 struct hda_jack_callback *jack)
3219 if (jack->unsol_res & (7 << 13))
3220 report |= SND_JACK_BTN_0;
3222 if (jack->unsol_res & (1 << 16 | 3 << 8))
3223 report |= SND_JACK_BTN_1;
3226 if (jack->unsol_res & (7 << 23))
3227 report |= SND_JACK_BTN_2;
3229 /* Volume down key */
3230 if (jack->unsol_res & (7 << 10))
3231 report |= SND_JACK_BTN_3;
3233 snd_hda_jack_set_button_state(codec, jack->nid, report);
3236 static void alc_disable_headset_jack_key(struct hda_codec *codec)
3238 struct alc_spec *spec = codec->spec;
3240 if (!spec->has_hs_key)
3243 switch (codec->core.vendor_id) {
3251 alc_write_coef_idx(codec, 0x48, 0x0);
3252 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3253 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3259 alc_write_coef_idx(codec, 0x48, 0x0);
3260 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3265 static void alc_enable_headset_jack_key(struct hda_codec *codec)
3267 struct alc_spec *spec = codec->spec;
3269 if (!spec->has_hs_key)
3272 switch (codec->core.vendor_id) {
3280 alc_write_coef_idx(codec, 0x48, 0xd011);
3281 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3282 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3288 alc_write_coef_idx(codec, 0x48, 0xd011);
3289 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3294 static void alc_fixup_headset_jack(struct hda_codec *codec,
3295 const struct hda_fixup *fix, int action)
3297 struct alc_spec *spec = codec->spec;
3301 case HDA_FIXUP_ACT_PRE_PROBE:
3302 spec->has_hs_key = 1;
3303 snd_hda_jack_detect_enable_callback(codec, 0x55,
3304 alc_headset_btn_callback);
3306 case HDA_FIXUP_ACT_BUILD:
3307 hp_pin = alc_get_hp_pin(spec);
3308 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3309 alc_headset_btn_keymap,
3311 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3312 false, SND_JACK_HEADSET,
3313 alc_headset_btn_keymap);
3315 alc_enable_headset_jack_key(codec);
3320 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
3322 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
3325 static void alc269_shutup(struct hda_codec *codec)
3327 struct alc_spec *spec = codec->spec;
3329 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3330 alc269vb_toggle_power_output(codec, 0);
3331 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3332 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3335 alc_shutup_pins(codec);
3338 static const struct coef_fw alc282_coefs[] = {
3339 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3340 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3341 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3342 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3343 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3344 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3345 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3346 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3347 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3348 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3349 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3350 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3351 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3352 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3353 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3354 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3355 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3356 WRITE_COEF(0x63, 0x2902), /* PLL */
3357 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3358 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3359 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3360 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3361 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3362 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3363 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3364 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3365 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3366 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3367 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3371 static void alc282_restore_default_value(struct hda_codec *codec)
3373 alc_process_coef_fw(codec, alc282_coefs);
3376 static void alc282_init(struct hda_codec *codec)
3378 struct alc_spec *spec = codec->spec;
3379 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3383 alc282_restore_default_value(codec);
3387 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3388 coef78 = alc_read_coef_idx(codec, 0x78);
3390 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3391 /* Headphone capless set to high power mode */
3392 alc_write_coef_idx(codec, 0x78, 0x9004);
3397 snd_hda_codec_write(codec, hp_pin, 0,
3398 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3403 snd_hda_codec_write(codec, hp_pin, 0,
3404 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3409 /* Headphone capless set to normal mode */
3410 alc_write_coef_idx(codec, 0x78, coef78);
3413 static void alc282_shutup(struct hda_codec *codec)
3415 struct alc_spec *spec = codec->spec;
3416 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3421 alc269_shutup(codec);
3425 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3426 coef78 = alc_read_coef_idx(codec, 0x78);
3427 alc_write_coef_idx(codec, 0x78, 0x9004);
3432 snd_hda_codec_write(codec, hp_pin, 0,
3433 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3438 if (!spec->no_shutup_pins)
3439 snd_hda_codec_write(codec, hp_pin, 0,
3440 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3445 alc_auto_setup_eapd(codec, false);
3446 alc_shutup_pins(codec);
3447 alc_write_coef_idx(codec, 0x78, coef78);
3450 static const struct coef_fw alc283_coefs[] = {
3451 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3452 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3453 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3454 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3455 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3456 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3457 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3458 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3459 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3460 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3461 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3462 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3463 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3464 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3465 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3466 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3467 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3468 WRITE_COEF(0x2e, 0x2902), /* PLL */
3469 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3470 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3471 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3472 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3473 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3474 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3475 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3476 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3477 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3478 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3479 WRITE_COEF(0x49, 0x0), /* test mode */
3480 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3481 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3482 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3483 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3487 static void alc283_restore_default_value(struct hda_codec *codec)
3489 alc_process_coef_fw(codec, alc283_coefs);
3492 static void alc283_init(struct hda_codec *codec)
3494 struct alc_spec *spec = codec->spec;
3495 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3498 alc283_restore_default_value(codec);
3504 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3506 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3507 /* Headphone capless set to high power mode */
3508 alc_write_coef_idx(codec, 0x43, 0x9004);
3510 snd_hda_codec_write(codec, hp_pin, 0,
3511 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3516 snd_hda_codec_write(codec, hp_pin, 0,
3517 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3521 /* Index 0x46 Combo jack auto switch control 2 */
3522 /* 3k pull low control for Headset jack. */
3523 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3524 /* Headphone capless set to normal mode */
3525 alc_write_coef_idx(codec, 0x43, 0x9614);
3528 static void alc283_shutup(struct hda_codec *codec)
3530 struct alc_spec *spec = codec->spec;
3531 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3535 alc269_shutup(codec);
3539 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3541 alc_write_coef_idx(codec, 0x43, 0x9004);
3543 /*depop hp during suspend*/
3544 alc_write_coef_idx(codec, 0x06, 0x2100);
3546 snd_hda_codec_write(codec, hp_pin, 0,
3547 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3552 if (!spec->no_shutup_pins)
3553 snd_hda_codec_write(codec, hp_pin, 0,
3554 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3556 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3560 alc_auto_setup_eapd(codec, false);
3561 alc_shutup_pins(codec);
3562 alc_write_coef_idx(codec, 0x43, 0x9614);
3565 static void alc256_init(struct hda_codec *codec)
3567 struct alc_spec *spec = codec->spec;
3568 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3571 if (spec->ultra_low_power) {
3572 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3573 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3574 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3575 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3576 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3585 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3590 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3592 snd_hda_codec_write(codec, hp_pin, 0,
3593 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3595 if (hp_pin_sense || spec->ultra_low_power)
3598 snd_hda_codec_write(codec, hp_pin, 0,
3599 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3601 if (hp_pin_sense || spec->ultra_low_power)
3604 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3605 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3606 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3607 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3609 * Expose headphone mic (or possibly Line In on some machines) instead
3610 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3611 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3614 alc_write_coef_idx(codec, 0x36, 0x5757);
3617 static void alc256_shutup(struct hda_codec *codec)
3619 struct alc_spec *spec = codec->spec;
3620 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3626 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3627 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3632 snd_hda_codec_write(codec, hp_pin, 0,
3633 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3635 if (hp_pin_sense || spec->ultra_low_power)
3638 /* 3k pull low control for Headset jack. */
3639 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3640 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3641 * when booting with headset plugged. So skip setting it for the codec alc257
3643 if (spec->en_3kpull_low)
3644 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3646 if (!spec->no_shutup_pins)
3647 snd_hda_codec_write(codec, hp_pin, 0,
3648 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3650 if (hp_pin_sense || spec->ultra_low_power)
3653 alc_auto_setup_eapd(codec, false);
3654 alc_shutup_pins(codec);
3655 if (spec->ultra_low_power) {
3657 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3658 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3659 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3660 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3661 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3666 static void alc285_hp_init(struct hda_codec *codec)
3668 struct alc_spec *spec = codec->spec;
3669 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3671 int coef38, coef0d, coef36;
3673 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3674 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3675 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3676 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3677 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3678 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3680 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3683 snd_hda_codec_write(codec, hp_pin, 0,
3684 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3687 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3688 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3691 snd_hda_codec_write(codec, hp_pin, 0,
3692 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3694 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3695 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3696 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3697 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3699 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3700 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3701 for (i = 0; i < 20 && val & 0x8000; i++) {
3703 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3704 } /* Wait for depop procedure finish */
3706 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3707 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3708 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3709 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3712 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3715 static void alc225_init(struct hda_codec *codec)
3717 struct alc_spec *spec = codec->spec;
3718 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3719 bool hp1_pin_sense, hp2_pin_sense;
3721 if (spec->ultra_low_power) {
3722 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3723 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3724 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3728 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3729 spec->codec_variant != ALC269_TYPE_ALC245)
3730 /* required only at boot or S3 and S4 resume time */
3731 if (!spec->done_hp_init ||
3732 is_s3_resume(codec) ||
3733 is_s4_resume(codec)) {
3734 alc285_hp_init(codec);
3735 spec->done_hp_init = true;
3742 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3743 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3745 if (hp1_pin_sense || hp2_pin_sense)
3748 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3750 if (hp1_pin_sense || spec->ultra_low_power)
3751 snd_hda_codec_write(codec, hp_pin, 0,
3752 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3754 snd_hda_codec_write(codec, 0x16, 0,
3755 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3757 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3760 if (hp1_pin_sense || spec->ultra_low_power)
3761 snd_hda_codec_write(codec, hp_pin, 0,
3762 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3764 snd_hda_codec_write(codec, 0x16, 0,
3765 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3767 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3770 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3771 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3774 static void alc225_shutup(struct hda_codec *codec)
3776 struct alc_spec *spec = codec->spec;
3777 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3778 bool hp1_pin_sense, hp2_pin_sense;
3783 alc_disable_headset_jack_key(codec);
3784 /* 3k pull low control for Headset jack. */
3785 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3787 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3788 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3790 if (hp1_pin_sense || hp2_pin_sense)
3793 if (hp1_pin_sense || spec->ultra_low_power)
3794 snd_hda_codec_write(codec, hp_pin, 0,
3795 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3797 snd_hda_codec_write(codec, 0x16, 0,
3798 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3800 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3803 if (hp1_pin_sense || spec->ultra_low_power)
3804 snd_hda_codec_write(codec, hp_pin, 0,
3805 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3807 snd_hda_codec_write(codec, 0x16, 0,
3808 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3810 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3813 alc_auto_setup_eapd(codec, false);
3814 alc_shutup_pins(codec);
3815 if (spec->ultra_low_power) {
3817 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3818 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3819 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3820 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3824 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3825 alc_enable_headset_jack_key(codec);
3828 static void alc_default_init(struct hda_codec *codec)
3830 struct alc_spec *spec = codec->spec;
3831 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3839 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3844 snd_hda_codec_write(codec, hp_pin, 0,
3845 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3850 snd_hda_codec_write(codec, hp_pin, 0,
3851 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3857 static void alc_default_shutup(struct hda_codec *codec)
3859 struct alc_spec *spec = codec->spec;
3860 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3864 alc269_shutup(codec);
3868 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3873 snd_hda_codec_write(codec, hp_pin, 0,
3874 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3879 if (!spec->no_shutup_pins)
3880 snd_hda_codec_write(codec, hp_pin, 0,
3881 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3886 alc_auto_setup_eapd(codec, false);
3887 alc_shutup_pins(codec);
3890 static void alc294_hp_init(struct hda_codec *codec)
3892 struct alc_spec *spec = codec->spec;
3893 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3899 snd_hda_codec_write(codec, hp_pin, 0,
3900 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3904 if (!spec->no_shutup_pins)
3905 snd_hda_codec_write(codec, hp_pin, 0,
3906 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3908 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3909 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3911 /* Wait for depop procedure finish */
3912 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3913 for (i = 0; i < 20 && val & 0x0080; i++) {
3915 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3917 /* Set HP depop to auto mode */
3918 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3922 static void alc294_init(struct hda_codec *codec)
3924 struct alc_spec *spec = codec->spec;
3926 /* required only at boot or S4 resume time */
3927 if (!spec->done_hp_init ||
3928 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3929 alc294_hp_init(codec);
3930 spec->done_hp_init = true;
3932 alc_default_init(codec);
3935 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3938 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3939 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3940 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3943 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3947 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3948 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3950 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3955 static void alc5505_dsp_halt(struct hda_codec *codec)
3959 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3960 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3961 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3962 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3963 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3964 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3965 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3966 val = alc5505_coef_get(codec, 0x6220);
3967 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3970 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3972 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3973 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3974 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3975 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3976 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3977 alc5505_coef_set(codec, 0x880c, 0x00000004);
3980 static void alc5505_dsp_init(struct hda_codec *codec)
3984 alc5505_dsp_halt(codec);
3985 alc5505_dsp_back_from_halt(codec);
3986 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3987 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3988 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3989 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3990 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3991 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3992 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3993 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3994 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3995 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3996 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3997 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3998 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4000 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4002 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4004 alc5505_coef_set(codec, 0x6220, 0x6002018f);
4006 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4007 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4008 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4009 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4010 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4011 alc5505_coef_set(codec, 0x880c, 0x00000003);
4012 alc5505_coef_set(codec, 0x880c, 0x00000010);
4014 #ifdef HALT_REALTEK_ALC5505
4015 alc5505_dsp_halt(codec);
4019 #ifdef HALT_REALTEK_ALC5505
4020 #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4021 #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
4023 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4024 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4028 static int alc269_suspend(struct hda_codec *codec)
4030 struct alc_spec *spec = codec->spec;
4032 if (spec->has_alc5505_dsp)
4033 alc5505_dsp_suspend(codec);
4035 return alc_suspend(codec);
4038 static int alc269_resume(struct hda_codec *codec)
4040 struct alc_spec *spec = codec->spec;
4042 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4043 alc269vb_toggle_power_output(codec, 0);
4044 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4045 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
4049 codec->patch_ops.init(codec);
4051 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4052 alc269vb_toggle_power_output(codec, 1);
4053 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4054 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
4058 snd_hda_regmap_sync(codec);
4059 hda_call_check_power_status(codec, 0x01);
4061 /* on some machine, the BIOS will clear the codec gpio data when enter
4062 * suspend, and won't restore the data after resume, so we restore it
4065 if (spec->gpio_data)
4066 alc_write_gpio_data(codec);
4068 if (spec->has_alc5505_dsp)
4069 alc5505_dsp_resume(codec);
4073 #endif /* CONFIG_PM */
4075 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
4076 const struct hda_fixup *fix, int action)
4078 struct alc_spec *spec = codec->spec;
4080 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4081 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4084 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4085 const struct hda_fixup *fix,
4088 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4089 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4091 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4092 snd_hda_codec_set_pincfg(codec, 0x19,
4093 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4094 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4097 static void alc269_fixup_hweq(struct hda_codec *codec,
4098 const struct hda_fixup *fix, int action)
4100 if (action == HDA_FIXUP_ACT_INIT)
4101 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
4104 static void alc269_fixup_headset_mic(struct hda_codec *codec,
4105 const struct hda_fixup *fix, int action)
4107 struct alc_spec *spec = codec->spec;
4109 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4110 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4113 static void alc271_fixup_dmic(struct hda_codec *codec,
4114 const struct hda_fixup *fix, int action)
4116 static const struct hda_verb verbs[] = {
4117 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4118 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4123 if (strcmp(codec->core.chip_name, "ALC271X") &&
4124 strcmp(codec->core.chip_name, "ALC269VB"))
4126 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4127 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4128 snd_hda_sequence_write(codec, verbs);
4131 /* Fix the speaker amp after resume, etc */
4132 static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4133 const struct hda_fixup *fix,
4136 if (action == HDA_FIXUP_ACT_INIT)
4137 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4140 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4141 const struct hda_fixup *fix, int action)
4143 struct alc_spec *spec = codec->spec;
4145 if (action != HDA_FIXUP_ACT_PROBE)
4148 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4149 * fix the sample rate of analog I/O to 44.1kHz
4151 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4152 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
4155 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4156 const struct hda_fixup *fix, int action)
4158 /* The digital-mic unit sends PDM (differential signal) instead of
4159 * the standard PCM, thus you can't record a valid mono stream as is.
4160 * Below is a workaround specific to ALC269 to control the dmic
4161 * signal source as mono.
4163 if (action == HDA_FIXUP_ACT_INIT)
4164 alc_update_coef_idx(codec, 0x07, 0, 0x80);
4167 static void alc269_quanta_automute(struct hda_codec *codec)
4169 snd_hda_gen_update_outputs(codec);
4171 alc_write_coef_idx(codec, 0x0c, 0x680);
4172 alc_write_coef_idx(codec, 0x0c, 0x480);
4175 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4176 const struct hda_fixup *fix, int action)
4178 struct alc_spec *spec = codec->spec;
4179 if (action != HDA_FIXUP_ACT_PROBE)
4181 spec->gen.automute_hook = alc269_quanta_automute;
4184 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
4185 struct hda_jack_callback *jack)
4187 struct alc_spec *spec = codec->spec;
4190 snd_hda_gen_hp_automute(codec, jack);
4192 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4194 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4197 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4202 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4204 struct hda_alc298_mbxinit {
4205 unsigned char value_0x23;
4206 unsigned char value_0x25;
4209 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4210 const struct hda_alc298_mbxinit *initval,
4213 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4214 alc_write_coef_idx(codec, 0x26, 0xb000);
4217 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4219 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4220 alc_write_coef_idx(codec, 0x26, 0xf000);
4221 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4223 if (initval->value_0x23 != 0x1e)
4224 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4226 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4227 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4230 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4231 const struct hda_fixup *fix,
4234 /* Initialization magic */
4235 static const struct hda_alc298_mbxinit dac_init[] = {
4236 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4237 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4238 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4239 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4240 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4241 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4243 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4244 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4245 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4248 const struct hda_alc298_mbxinit *seq;
4250 if (action != HDA_FIXUP_ACT_INIT)
4254 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4255 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4256 alc_write_coef_idx(codec, 0x26, 0xf000);
4257 alc_write_coef_idx(codec, 0x22, 0x31);
4258 alc_write_coef_idx(codec, 0x23, 0x0b);
4259 alc_write_coef_idx(codec, 0x25, 0x00);
4260 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4261 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4263 for (seq = dac_init; seq->value_0x23; seq++)
4264 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4267 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4268 const struct hda_fixup *fix, int action)
4270 struct alc_spec *spec = codec->spec;
4271 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4272 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4273 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4277 static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4278 bool polarity, bool on)
4280 unsigned int pinval;
4286 pinval = snd_hda_codec_get_pin_target(codec, pin);
4287 pinval &= ~AC_PINCTL_VREFEN;
4288 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4289 /* temporarily power up/down for setting VREF */
4290 snd_hda_power_up_pm(codec);
4291 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4292 snd_hda_power_down_pm(codec);
4295 /* update mute-LED according to the speaker mute state via mic VREF pin */
4296 static int vref_mute_led_set(struct led_classdev *led_cdev,
4297 enum led_brightness brightness)
4299 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4300 struct alc_spec *spec = codec->spec;
4302 alc_update_vref_led(codec, spec->mute_led_nid,
4303 spec->mute_led_polarity, brightness);
4307 /* Make sure the led works even in runtime suspend */
4308 static unsigned int led_power_filter(struct hda_codec *codec,
4310 unsigned int power_state)
4312 struct alc_spec *spec = codec->spec;
4314 if (power_state != AC_PWRST_D3 || nid == 0 ||
4315 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
4318 /* Set pin ctl again, it might have just been set to 0 */
4319 snd_hda_set_pin_ctl(codec, nid,
4320 snd_hda_codec_get_pin_target(codec, nid));
4322 return snd_hda_gen_path_power_filter(codec, nid, power_state);
4325 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4326 const struct hda_fixup *fix, int action)
4328 struct alc_spec *spec = codec->spec;
4329 const struct dmi_device *dev = NULL;
4331 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4334 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4336 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4338 if (pin < 0x0a || pin >= 0x10)
4340 spec->mute_led_polarity = pol;
4341 spec->mute_led_nid = pin - 0x0a + 0x18;
4342 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4343 codec->power_filter = led_power_filter;
4345 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
4346 spec->mute_led_polarity);
4351 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4352 const struct hda_fixup *fix,
4353 int action, hda_nid_t pin)
4355 struct alc_spec *spec = codec->spec;
4357 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4358 spec->mute_led_polarity = 0;
4359 spec->mute_led_nid = pin;
4360 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4361 codec->power_filter = led_power_filter;
4365 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4366 const struct hda_fixup *fix, int action)
4368 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4371 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4372 const struct hda_fixup *fix, int action)
4374 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
4377 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4378 const struct hda_fixup *fix, int action)
4380 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
4383 /* update LED status via GPIO */
4384 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
4385 int polarity, bool enabled)
4389 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
4392 /* turn on/off mute LED via GPIO per vmaster hook */
4393 static int gpio_mute_led_set(struct led_classdev *led_cdev,
4394 enum led_brightness brightness)
4396 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4397 struct alc_spec *spec = codec->spec;
4399 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
4400 spec->mute_led_polarity, !brightness);
4404 /* turn on/off mic-mute LED via GPIO per capture hook */
4405 static int micmute_led_set(struct led_classdev *led_cdev,
4406 enum led_brightness brightness)
4408 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4409 struct alc_spec *spec = codec->spec;
4411 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
4412 spec->micmute_led_polarity, !brightness);
4416 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
4417 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4419 unsigned int mute_mask,
4420 unsigned int micmute_mask)
4422 struct alc_spec *spec = codec->spec;
4424 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4426 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4429 spec->gpio_mute_led_mask = mute_mask;
4430 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
4433 spec->gpio_mic_led_mask = micmute_mask;
4434 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
4438 static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4439 const struct hda_fixup *fix, int action)
4441 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4444 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
4445 const struct hda_fixup *fix, int action)
4447 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4450 static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4451 const struct hda_fixup *fix, int action)
4453 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
4456 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4457 const struct hda_fixup *fix, int action)
4459 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4462 static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4463 const struct hda_fixup *fix, int action)
4465 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4468 static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4469 const struct hda_fixup *fix, int action)
4471 struct alc_spec *spec = codec->spec;
4473 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4474 spec->micmute_led_polarity = 1;
4475 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4478 /* turn on/off mic-mute LED per capture hook via VREF change */
4479 static int vref_micmute_led_set(struct led_classdev *led_cdev,
4480 enum led_brightness brightness)
4482 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4483 struct alc_spec *spec = codec->spec;
4485 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4486 spec->micmute_led_polarity, brightness);
4490 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4491 const struct hda_fixup *fix, int action)
4493 struct alc_spec *spec = codec->spec;
4495 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4496 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4497 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4498 * enable headphone amp
4500 spec->gpio_mask |= 0x10;
4501 spec->gpio_dir |= 0x10;
4502 spec->cap_mute_led_nid = 0x18;
4503 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4504 codec->power_filter = led_power_filter;
4508 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4509 const struct hda_fixup *fix, int action)
4511 struct alc_spec *spec = codec->spec;
4513 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4514 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4515 spec->cap_mute_led_nid = 0x18;
4516 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4517 codec->power_filter = led_power_filter;
4521 /* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4522 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4524 static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4525 const struct hda_fixup *fix, int action)
4527 struct alc_spec *spec = codec->spec;
4530 case HDA_FIXUP_ACT_PRE_PROBE:
4531 spec->gpio_mask |= 0x01;
4532 spec->gpio_dir |= 0x01;
4534 case HDA_FIXUP_ACT_INIT:
4535 /* need to toggle GPIO to enable the amp */
4536 alc_update_gpio_data(codec, 0x01, true);
4538 alc_update_gpio_data(codec, 0x01, false);
4543 /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4544 static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4545 struct hda_codec *codec,
4546 struct snd_pcm_substream *substream,
4550 case HDA_GEN_PCM_ACT_PREPARE:
4551 alc_update_gpio_data(codec, 0x04, true);
4553 case HDA_GEN_PCM_ACT_CLEANUP:
4554 alc_update_gpio_data(codec, 0x04, false);
4559 static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4560 const struct hda_fixup *fix,
4563 struct alc_spec *spec = codec->spec;
4565 if (action == HDA_FIXUP_ACT_PROBE) {
4566 spec->gpio_mask |= 0x04;
4567 spec->gpio_dir |= 0x04;
4568 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4572 static void alc_update_coef_led(struct hda_codec *codec,
4573 struct alc_coef_led *led,
4574 bool polarity, bool on)
4578 /* temporarily power up/down for setting COEF bit */
4579 alc_update_coef_idx(codec, led->idx, led->mask,
4580 on ? led->on : led->off);
4583 /* update mute-LED according to the speaker mute state via COEF bit */
4584 static int coef_mute_led_set(struct led_classdev *led_cdev,
4585 enum led_brightness brightness)
4587 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4588 struct alc_spec *spec = codec->spec;
4590 alc_update_coef_led(codec, &spec->mute_led_coef,
4591 spec->mute_led_polarity, brightness);
4595 static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4596 const struct hda_fixup *fix,
4599 struct alc_spec *spec = codec->spec;
4601 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4602 spec->mute_led_polarity = 0;
4603 spec->mute_led_coef.idx = 0x0b;
4604 spec->mute_led_coef.mask = 1 << 3;
4605 spec->mute_led_coef.on = 1 << 3;
4606 spec->mute_led_coef.off = 0;
4607 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4611 static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4612 const struct hda_fixup *fix,
4615 struct alc_spec *spec = codec->spec;
4617 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4618 spec->mute_led_polarity = 0;
4619 spec->mute_led_coef.idx = 0x34;
4620 spec->mute_led_coef.mask = 1 << 5;
4621 spec->mute_led_coef.on = 0;
4622 spec->mute_led_coef.off = 1 << 5;
4623 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4627 static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4628 const struct hda_fixup *fix, int action)
4630 struct alc_spec *spec = codec->spec;
4632 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4633 spec->mute_led_polarity = 0;
4634 spec->mute_led_coef.idx = 0x07;
4635 spec->mute_led_coef.mask = 1;
4636 spec->mute_led_coef.on = 1;
4637 spec->mute_led_coef.off = 0;
4638 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4642 static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4643 const struct hda_fixup *fix,
4646 struct alc_spec *spec = codec->spec;
4648 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4649 spec->mute_led_polarity = 0;
4650 spec->mute_led_coef.idx = 0x0b;
4651 spec->mute_led_coef.mask = 3 << 2;
4652 spec->mute_led_coef.on = 2 << 2;
4653 spec->mute_led_coef.off = 1 << 2;
4654 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4658 /* turn on/off mic-mute LED per capture hook by coef bit */
4659 static int coef_micmute_led_set(struct led_classdev *led_cdev,
4660 enum led_brightness brightness)
4662 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4663 struct alc_spec *spec = codec->spec;
4665 alc_update_coef_led(codec, &spec->mic_led_coef,
4666 spec->micmute_led_polarity, brightness);
4670 static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4671 const struct hda_fixup *fix, int action)
4673 struct alc_spec *spec = codec->spec;
4675 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4676 spec->mic_led_coef.idx = 0x19;
4677 spec->mic_led_coef.mask = 1 << 13;
4678 spec->mic_led_coef.on = 1 << 13;
4679 spec->mic_led_coef.off = 0;
4680 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4684 static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4685 const struct hda_fixup *fix, int action)
4687 struct alc_spec *spec = codec->spec;
4689 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4690 spec->micmute_led_polarity = 1;
4691 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4694 static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4695 const struct hda_fixup *fix, int action)
4697 struct alc_spec *spec = codec->spec;
4699 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4700 spec->mic_led_coef.idx = 0x35;
4701 spec->mic_led_coef.mask = 3 << 2;
4702 spec->mic_led_coef.on = 2 << 2;
4703 spec->mic_led_coef.off = 1 << 2;
4704 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4708 static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4709 const struct hda_fixup *fix, int action)
4711 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4712 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4715 static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4716 const struct hda_fixup *fix, int action)
4718 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4719 alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4722 static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4723 const struct hda_fixup *fix, int action)
4725 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4726 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4729 static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4730 const struct hda_fixup *fix, int action)
4732 struct alc_spec *spec = codec->spec;
4734 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4735 spec->cap_mute_led_nid = 0x1a;
4736 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4737 codec->power_filter = led_power_filter;
4741 static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4742 const struct hda_fixup *fix, int action)
4744 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4745 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4748 static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4749 const unsigned short coefs[2])
4751 alc_write_coef_idx(codec, 0x23, coefs[0]);
4752 alc_write_coef_idx(codec, 0x25, coefs[1]);
4753 alc_write_coef_idx(codec, 0x26, 0xb011);
4756 struct alc298_samsung_amp_desc {
4758 unsigned short init_seq[2][2];
4761 static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4762 const struct hda_fixup *fix, int action)
4765 static const unsigned short init_seq[][2] = {
4766 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4767 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4768 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4769 { 0x41, 0x07 }, { 0x400, 0x1 }
4771 static const struct alc298_samsung_amp_desc amps[] = {
4772 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4773 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4776 if (action != HDA_FIXUP_ACT_INIT)
4779 for (i = 0; i < ARRAY_SIZE(amps); i++) {
4780 alc_write_coef_idx(codec, 0x22, amps[i].nid);
4782 for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4783 alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4785 for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4786 alc298_samsung_write_coef_pack(codec, init_seq[j]);
4790 #if IS_REACHABLE(CONFIG_INPUT)
4791 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4792 struct hda_jack_callback *event)
4794 struct alc_spec *spec = codec->spec;
4796 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4797 send both key on and key off event for every interrupt. */
4798 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4799 input_sync(spec->kb_dev);
4800 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4801 input_sync(spec->kb_dev);
4804 static int alc_register_micmute_input_device(struct hda_codec *codec)
4806 struct alc_spec *spec = codec->spec;
4809 spec->kb_dev = input_allocate_device();
4810 if (!spec->kb_dev) {
4811 codec_err(codec, "Out of memory (input_allocate_device)\n");
4815 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4817 spec->kb_dev->name = "Microphone Mute Button";
4818 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4819 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4820 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4821 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4822 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4823 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4825 if (input_register_device(spec->kb_dev)) {
4826 codec_err(codec, "input_register_device failed\n");
4827 input_free_device(spec->kb_dev);
4828 spec->kb_dev = NULL;
4835 /* GPIO1 = set according to SKU external amp
4836 * GPIO2 = mic mute hotkey
4838 * GPIO4 = mic mute LED
4840 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4841 const struct hda_fixup *fix, int action)
4843 struct alc_spec *spec = codec->spec;
4845 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4846 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4847 spec->init_amp = ALC_INIT_DEFAULT;
4848 if (alc_register_micmute_input_device(codec) != 0)
4851 spec->gpio_mask |= 0x06;
4852 spec->gpio_dir |= 0x02;
4853 spec->gpio_data |= 0x02;
4854 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4855 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4856 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4857 gpio2_mic_hotkey_event);
4865 case HDA_FIXUP_ACT_FREE:
4866 input_unregister_device(spec->kb_dev);
4867 spec->kb_dev = NULL;
4871 /* Line2 = mic mute hotkey
4872 * GPIO2 = mic mute LED
4874 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4875 const struct hda_fixup *fix, int action)
4877 struct alc_spec *spec = codec->spec;
4879 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4880 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4881 spec->init_amp = ALC_INIT_DEFAULT;
4882 if (alc_register_micmute_input_device(codec) != 0)
4885 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4886 gpio2_mic_hotkey_event);
4894 case HDA_FIXUP_ACT_FREE:
4895 input_unregister_device(spec->kb_dev);
4896 spec->kb_dev = NULL;
4900 #define alc280_fixup_hp_gpio2_mic_hotkey NULL
4901 #define alc233_fixup_lenovo_line2_mic_hotkey NULL
4904 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4905 const struct hda_fixup *fix, int action)
4907 struct alc_spec *spec = codec->spec;
4909 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4910 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4911 spec->cap_mute_led_nid = 0x18;
4912 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4916 static const struct coef_fw alc225_pre_hsmode[] = {
4917 UPDATE_COEF(0x4a, 1<<8, 0),
4918 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4919 UPDATE_COEF(0x63, 3<<14, 3<<14),
4920 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4921 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4922 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4923 UPDATE_COEF(0x4a, 3<<10, 0),
4927 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4929 struct alc_spec *spec = codec->spec;
4930 static const struct coef_fw coef0255[] = {
4931 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4932 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4933 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4934 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4935 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4938 static const struct coef_fw coef0256[] = {
4939 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4940 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4941 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4942 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4943 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4946 static const struct coef_fw coef0233[] = {
4947 WRITE_COEF(0x1b, 0x0c0b),
4948 WRITE_COEF(0x45, 0xc429),
4949 UPDATE_COEF(0x35, 0x4000, 0),
4950 WRITE_COEF(0x06, 0x2104),
4951 WRITE_COEF(0x1a, 0x0001),
4952 WRITE_COEF(0x26, 0x0004),
4953 WRITE_COEF(0x32, 0x42a3),
4956 static const struct coef_fw coef0288[] = {
4957 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4958 UPDATE_COEF(0x50, 0x2000, 0x2000),
4959 UPDATE_COEF(0x56, 0x0006, 0x0006),
4960 UPDATE_COEF(0x66, 0x0008, 0),
4961 UPDATE_COEF(0x67, 0x2000, 0),
4964 static const struct coef_fw coef0298[] = {
4965 UPDATE_COEF(0x19, 0x1300, 0x0300),
4968 static const struct coef_fw coef0292[] = {
4969 WRITE_COEF(0x76, 0x000e),
4970 WRITE_COEF(0x6c, 0x2400),
4971 WRITE_COEF(0x18, 0x7308),
4972 WRITE_COEF(0x6b, 0xc429),
4975 static const struct coef_fw coef0293[] = {
4976 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4977 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4978 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4979 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4980 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4981 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4984 static const struct coef_fw coef0668[] = {
4985 WRITE_COEF(0x15, 0x0d40),
4986 WRITE_COEF(0xb7, 0x802b),
4989 static const struct coef_fw coef0225[] = {
4990 UPDATE_COEF(0x63, 3<<14, 0),
4993 static const struct coef_fw coef0274[] = {
4994 UPDATE_COEF(0x4a, 0x0100, 0),
4995 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4996 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4997 UPDATE_COEF(0x4a, 0x0010, 0),
4998 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4999 WRITE_COEF(0x45, 0x5289),
5000 UPDATE_COEF(0x4a, 0x0c00, 0),
5004 if (spec->no_internal_mic_pin) {
5005 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5009 switch (codec->core.vendor_id) {
5011 alc_process_coef_fw(codec, coef0255);
5017 alc_process_coef_fw(codec, coef0256);
5022 alc_process_coef_fw(codec, coef0274);
5026 alc_process_coef_fw(codec, coef0233);
5030 alc_process_coef_fw(codec, coef0288);
5033 alc_process_coef_fw(codec, coef0298);
5034 alc_process_coef_fw(codec, coef0288);
5037 alc_process_coef_fw(codec, coef0292);
5040 alc_process_coef_fw(codec, coef0293);
5043 alc_process_coef_fw(codec, coef0668);
5051 alc_process_coef_fw(codec, alc225_pre_hsmode);
5052 alc_process_coef_fw(codec, coef0225);
5055 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5058 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
5062 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5065 static const struct coef_fw coef0255[] = {
5066 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5067 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5070 static const struct coef_fw coef0256[] = {
5071 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5072 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5073 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5076 static const struct coef_fw coef0233[] = {
5077 UPDATE_COEF(0x35, 0, 1<<14),
5078 WRITE_COEF(0x06, 0x2100),
5079 WRITE_COEF(0x1a, 0x0021),
5080 WRITE_COEF(0x26, 0x008c),
5083 static const struct coef_fw coef0288[] = {
5084 UPDATE_COEF(0x4f, 0x00c0, 0),
5085 UPDATE_COEF(0x50, 0x2000, 0),
5086 UPDATE_COEF(0x56, 0x0006, 0),
5087 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5088 UPDATE_COEF(0x66, 0x0008, 0x0008),
5089 UPDATE_COEF(0x67, 0x2000, 0x2000),
5092 static const struct coef_fw coef0292[] = {
5093 WRITE_COEF(0x19, 0xa208),
5094 WRITE_COEF(0x2e, 0xacf0),
5097 static const struct coef_fw coef0293[] = {
5098 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5099 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5100 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5103 static const struct coef_fw coef0688[] = {
5104 WRITE_COEF(0xb7, 0x802b),
5105 WRITE_COEF(0xb5, 0x1040),
5106 UPDATE_COEF(0xc3, 0, 1<<12),
5109 static const struct coef_fw coef0225[] = {
5110 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5111 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5112 UPDATE_COEF(0x63, 3<<14, 0),
5115 static const struct coef_fw coef0274[] = {
5116 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5117 UPDATE_COEF(0x4a, 0x0010, 0),
5118 UPDATE_COEF(0x6b, 0xf000, 0),
5122 switch (codec->core.vendor_id) {
5124 alc_write_coef_idx(codec, 0x45, 0xc489);
5125 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5126 alc_process_coef_fw(codec, coef0255);
5127 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5133 alc_write_coef_idx(codec, 0x45, 0xc489);
5134 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5135 alc_process_coef_fw(codec, coef0256);
5136 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5141 alc_write_coef_idx(codec, 0x45, 0x4689);
5142 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5143 alc_process_coef_fw(codec, coef0274);
5144 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5148 alc_write_coef_idx(codec, 0x45, 0xc429);
5149 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5150 alc_process_coef_fw(codec, coef0233);
5151 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5156 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5157 alc_process_coef_fw(codec, coef0288);
5158 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5161 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5162 alc_process_coef_fw(codec, coef0292);
5165 /* Set to TRS mode */
5166 alc_write_coef_idx(codec, 0x45, 0xc429);
5167 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5168 alc_process_coef_fw(codec, coef0293);
5169 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5172 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
5176 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5177 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5180 alc_write_coef_idx(codec, 0x11, 0x0001);
5181 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5182 alc_process_coef_fw(codec, coef0688);
5183 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5191 alc_process_coef_fw(codec, alc225_pre_hsmode);
5192 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5193 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5194 alc_process_coef_fw(codec, coef0225);
5195 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5198 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
5201 static void alc_headset_mode_default(struct hda_codec *codec)
5203 static const struct coef_fw coef0225[] = {
5204 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5205 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5206 UPDATE_COEF(0x49, 3<<8, 0<<8),
5207 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5208 UPDATE_COEF(0x63, 3<<14, 0),
5209 UPDATE_COEF(0x67, 0xf000, 0x3000),
5212 static const struct coef_fw coef0255[] = {
5213 WRITE_COEF(0x45, 0xc089),
5214 WRITE_COEF(0x45, 0xc489),
5215 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5216 WRITE_COEF(0x49, 0x0049),
5219 static const struct coef_fw coef0256[] = {
5220 WRITE_COEF(0x45, 0xc489),
5221 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5222 WRITE_COEF(0x49, 0x0049),
5223 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5224 WRITE_COEF(0x06, 0x6100),
5227 static const struct coef_fw coef0233[] = {
5228 WRITE_COEF(0x06, 0x2100),
5229 WRITE_COEF(0x32, 0x4ea3),
5232 static const struct coef_fw coef0288[] = {
5233 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5234 UPDATE_COEF(0x50, 0x2000, 0x2000),
5235 UPDATE_COEF(0x56, 0x0006, 0x0006),
5236 UPDATE_COEF(0x66, 0x0008, 0),
5237 UPDATE_COEF(0x67, 0x2000, 0),
5240 static const struct coef_fw coef0292[] = {
5241 WRITE_COEF(0x76, 0x000e),
5242 WRITE_COEF(0x6c, 0x2400),
5243 WRITE_COEF(0x6b, 0xc429),
5244 WRITE_COEF(0x18, 0x7308),
5247 static const struct coef_fw coef0293[] = {
5248 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5249 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5250 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5253 static const struct coef_fw coef0688[] = {
5254 WRITE_COEF(0x11, 0x0041),
5255 WRITE_COEF(0x15, 0x0d40),
5256 WRITE_COEF(0xb7, 0x802b),
5259 static const struct coef_fw coef0274[] = {
5260 WRITE_COEF(0x45, 0x4289),
5261 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5262 UPDATE_COEF(0x6b, 0x0f00, 0),
5263 UPDATE_COEF(0x49, 0x0300, 0x0300),
5267 switch (codec->core.vendor_id) {
5274 alc_process_coef_fw(codec, alc225_pre_hsmode);
5275 alc_process_coef_fw(codec, coef0225);
5278 alc_process_coef_fw(codec, coef0255);
5284 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5285 alc_write_coef_idx(codec, 0x45, 0xc089);
5287 alc_process_coef_fw(codec, coef0256);
5292 alc_process_coef_fw(codec, coef0274);
5296 alc_process_coef_fw(codec, coef0233);
5301 alc_process_coef_fw(codec, coef0288);
5304 alc_process_coef_fw(codec, coef0292);
5307 alc_process_coef_fw(codec, coef0293);
5310 alc_process_coef_fw(codec, coef0688);
5313 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5316 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
5320 static void alc_headset_mode_ctia(struct hda_codec *codec)
5324 static const struct coef_fw coef0255[] = {
5325 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5326 WRITE_COEF(0x1b, 0x0c2b),
5327 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5330 static const struct coef_fw coef0256[] = {
5331 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5332 WRITE_COEF(0x1b, 0x0e6b),
5335 static const struct coef_fw coef0233[] = {
5336 WRITE_COEF(0x45, 0xd429),
5337 WRITE_COEF(0x1b, 0x0c2b),
5338 WRITE_COEF(0x32, 0x4ea3),
5341 static const struct coef_fw coef0288[] = {
5342 UPDATE_COEF(0x50, 0x2000, 0x2000),
5343 UPDATE_COEF(0x56, 0x0006, 0x0006),
5344 UPDATE_COEF(0x66, 0x0008, 0),
5345 UPDATE_COEF(0x67, 0x2000, 0),
5348 static const struct coef_fw coef0292[] = {
5349 WRITE_COEF(0x6b, 0xd429),
5350 WRITE_COEF(0x76, 0x0008),
5351 WRITE_COEF(0x18, 0x7388),
5354 static const struct coef_fw coef0293[] = {
5355 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5356 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5359 static const struct coef_fw coef0688[] = {
5360 WRITE_COEF(0x11, 0x0001),
5361 WRITE_COEF(0x15, 0x0d60),
5362 WRITE_COEF(0xc3, 0x0000),
5365 static const struct coef_fw coef0225_1[] = {
5366 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5367 UPDATE_COEF(0x63, 3<<14, 2<<14),
5370 static const struct coef_fw coef0225_2[] = {
5371 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5372 UPDATE_COEF(0x63, 3<<14, 1<<14),
5376 switch (codec->core.vendor_id) {
5378 alc_process_coef_fw(codec, coef0255);
5384 alc_process_coef_fw(codec, coef0256);
5389 alc_write_coef_idx(codec, 0x45, 0xd689);
5393 alc_process_coef_fw(codec, coef0233);
5396 val = alc_read_coef_idx(codec, 0x50);
5397 if (val & (1 << 12)) {
5398 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5399 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5402 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5403 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5409 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5411 alc_process_coef_fw(codec, coef0288);
5414 alc_process_coef_fw(codec, coef0292);
5417 alc_process_coef_fw(codec, coef0293);
5420 alc_process_coef_fw(codec, coef0688);
5428 val = alc_read_coef_idx(codec, 0x45);
5430 alc_process_coef_fw(codec, coef0225_2);
5432 alc_process_coef_fw(codec, coef0225_1);
5435 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5438 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
5442 static void alc_headset_mode_omtp(struct hda_codec *codec)
5444 static const struct coef_fw coef0255[] = {
5445 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5446 WRITE_COEF(0x1b, 0x0c2b),
5447 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5450 static const struct coef_fw coef0256[] = {
5451 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5452 WRITE_COEF(0x1b, 0x0e6b),
5455 static const struct coef_fw coef0233[] = {
5456 WRITE_COEF(0x45, 0xe429),
5457 WRITE_COEF(0x1b, 0x0c2b),
5458 WRITE_COEF(0x32, 0x4ea3),
5461 static const struct coef_fw coef0288[] = {
5462 UPDATE_COEF(0x50, 0x2000, 0x2000),
5463 UPDATE_COEF(0x56, 0x0006, 0x0006),
5464 UPDATE_COEF(0x66, 0x0008, 0),
5465 UPDATE_COEF(0x67, 0x2000, 0),
5468 static const struct coef_fw coef0292[] = {
5469 WRITE_COEF(0x6b, 0xe429),
5470 WRITE_COEF(0x76, 0x0008),
5471 WRITE_COEF(0x18, 0x7388),
5474 static const struct coef_fw coef0293[] = {
5475 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5476 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5479 static const struct coef_fw coef0688[] = {
5480 WRITE_COEF(0x11, 0x0001),
5481 WRITE_COEF(0x15, 0x0d50),
5482 WRITE_COEF(0xc3, 0x0000),
5485 static const struct coef_fw coef0225[] = {
5486 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5487 UPDATE_COEF(0x63, 3<<14, 2<<14),
5491 switch (codec->core.vendor_id) {
5493 alc_process_coef_fw(codec, coef0255);
5499 alc_process_coef_fw(codec, coef0256);
5504 alc_write_coef_idx(codec, 0x45, 0xe689);
5508 alc_process_coef_fw(codec, coef0233);
5511 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5512 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5517 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5519 alc_process_coef_fw(codec, coef0288);
5522 alc_process_coef_fw(codec, coef0292);
5525 alc_process_coef_fw(codec, coef0293);
5528 alc_process_coef_fw(codec, coef0688);
5536 alc_process_coef_fw(codec, coef0225);
5539 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
5542 static void alc_determine_headset_type(struct hda_codec *codec)
5545 bool is_ctia = false;
5546 struct alc_spec *spec = codec->spec;
5547 static const struct coef_fw coef0255[] = {
5548 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5549 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5553 static const struct coef_fw coef0288[] = {
5554 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5557 static const struct coef_fw coef0298[] = {
5558 UPDATE_COEF(0x50, 0x2000, 0x2000),
5559 UPDATE_COEF(0x56, 0x0006, 0x0006),
5560 UPDATE_COEF(0x66, 0x0008, 0),
5561 UPDATE_COEF(0x67, 0x2000, 0),
5562 UPDATE_COEF(0x19, 0x1300, 0x1300),
5565 static const struct coef_fw coef0293[] = {
5566 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5567 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5570 static const struct coef_fw coef0688[] = {
5571 WRITE_COEF(0x11, 0x0001),
5572 WRITE_COEF(0xb7, 0x802b),
5573 WRITE_COEF(0x15, 0x0d60),
5574 WRITE_COEF(0xc3, 0x0c00),
5577 static const struct coef_fw coef0274[] = {
5578 UPDATE_COEF(0x4a, 0x0010, 0),
5579 UPDATE_COEF(0x4a, 0x8000, 0),
5580 WRITE_COEF(0x45, 0xd289),
5581 UPDATE_COEF(0x49, 0x0300, 0x0300),
5585 if (spec->no_internal_mic_pin) {
5586 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5590 switch (codec->core.vendor_id) {
5592 alc_process_coef_fw(codec, coef0255);
5594 val = alc_read_coef_idx(codec, 0x46);
5595 is_ctia = (val & 0x0070) == 0x0070;
5601 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5602 alc_write_coef_idx(codec, 0x06, 0x6104);
5603 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5605 snd_hda_codec_write(codec, 0x21, 0,
5606 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5608 snd_hda_codec_write(codec, 0x21, 0,
5609 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5611 alc_process_coef_fw(codec, coef0255);
5613 val = alc_read_coef_idx(codec, 0x46);
5614 is_ctia = (val & 0x0070) == 0x0070;
5616 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5617 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5619 snd_hda_codec_write(codec, 0x21, 0,
5620 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5622 snd_hda_codec_write(codec, 0x21, 0,
5623 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5628 alc_process_coef_fw(codec, coef0274);
5630 val = alc_read_coef_idx(codec, 0x46);
5631 is_ctia = (val & 0x00f0) == 0x00f0;
5635 alc_write_coef_idx(codec, 0x45, 0xd029);
5637 val = alc_read_coef_idx(codec, 0x46);
5638 is_ctia = (val & 0x0070) == 0x0070;
5641 snd_hda_codec_write(codec, 0x21, 0,
5642 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5644 snd_hda_codec_write(codec, 0x21, 0,
5645 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5648 val = alc_read_coef_idx(codec, 0x50);
5649 if (val & (1 << 12)) {
5650 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5651 alc_process_coef_fw(codec, coef0288);
5653 val = alc_read_coef_idx(codec, 0x50);
5654 is_ctia = (val & 0x0070) == 0x0070;
5656 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5657 alc_process_coef_fw(codec, coef0288);
5659 val = alc_read_coef_idx(codec, 0x50);
5660 is_ctia = (val & 0x0070) == 0x0070;
5662 alc_process_coef_fw(codec, coef0298);
5663 snd_hda_codec_write(codec, 0x21, 0,
5664 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5666 snd_hda_codec_write(codec, 0x21, 0,
5667 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5671 alc_process_coef_fw(codec, coef0288);
5673 val = alc_read_coef_idx(codec, 0x50);
5674 is_ctia = (val & 0x0070) == 0x0070;
5677 alc_write_coef_idx(codec, 0x6b, 0xd429);
5679 val = alc_read_coef_idx(codec, 0x6c);
5680 is_ctia = (val & 0x001c) == 0x001c;
5683 alc_process_coef_fw(codec, coef0293);
5685 val = alc_read_coef_idx(codec, 0x46);
5686 is_ctia = (val & 0x0070) == 0x0070;
5689 alc_process_coef_fw(codec, coef0688);
5691 val = alc_read_coef_idx(codec, 0xbe);
5692 is_ctia = (val & 0x1c02) == 0x1c02;
5700 snd_hda_codec_write(codec, 0x21, 0,
5701 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5703 snd_hda_codec_write(codec, 0x21, 0,
5704 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5706 alc_process_coef_fw(codec, alc225_pre_hsmode);
5707 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5708 val = alc_read_coef_idx(codec, 0x45);
5709 if (val & (1 << 9)) {
5710 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5711 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5713 val = alc_read_coef_idx(codec, 0x46);
5714 is_ctia = (val & 0x00f0) == 0x00f0;
5716 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5717 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5719 val = alc_read_coef_idx(codec, 0x46);
5720 is_ctia = (val & 0x00f0) == 0x00f0;
5722 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5723 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5724 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
5726 snd_hda_codec_write(codec, 0x21, 0,
5727 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5729 snd_hda_codec_write(codec, 0x21, 0,
5730 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5737 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
5738 is_ctia ? "yes" : "no");
5739 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5742 static void alc_update_headset_mode(struct hda_codec *codec)
5744 struct alc_spec *spec = codec->spec;
5746 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
5747 hda_nid_t hp_pin = alc_get_hp_pin(spec);
5749 int new_headset_mode;
5751 if (!snd_hda_jack_detect(codec, hp_pin))
5752 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5753 else if (mux_pin == spec->headset_mic_pin)
5754 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5755 else if (mux_pin == spec->headphone_mic_pin)
5756 new_headset_mode = ALC_HEADSET_MODE_MIC;
5758 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5760 if (new_headset_mode == spec->current_headset_mode) {
5761 snd_hda_gen_update_outputs(codec);
5765 switch (new_headset_mode) {
5766 case ALC_HEADSET_MODE_UNPLUGGED:
5767 alc_headset_mode_unplugged(codec);
5768 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5769 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5770 spec->gen.hp_jack_present = false;
5772 case ALC_HEADSET_MODE_HEADSET:
5773 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5774 alc_determine_headset_type(codec);
5775 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5776 alc_headset_mode_ctia(codec);
5777 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5778 alc_headset_mode_omtp(codec);
5779 spec->gen.hp_jack_present = true;
5781 case ALC_HEADSET_MODE_MIC:
5782 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5783 spec->gen.hp_jack_present = false;
5785 case ALC_HEADSET_MODE_HEADPHONE:
5786 alc_headset_mode_default(codec);
5787 spec->gen.hp_jack_present = true;
5790 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5791 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5792 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5793 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5794 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5797 spec->current_headset_mode = new_headset_mode;
5799 snd_hda_gen_update_outputs(codec);
5802 static void alc_update_headset_mode_hook(struct hda_codec *codec,
5803 struct snd_kcontrol *kcontrol,
5804 struct snd_ctl_elem_value *ucontrol)
5806 alc_update_headset_mode(codec);
5809 static void alc_update_headset_jack_cb(struct hda_codec *codec,
5810 struct hda_jack_callback *jack)
5812 snd_hda_gen_hp_automute(codec, jack);
5813 alc_update_headset_mode(codec);
5816 static void alc_probe_headset_mode(struct hda_codec *codec)
5819 struct alc_spec *spec = codec->spec;
5820 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5823 for (i = 0; i < cfg->num_inputs; i++) {
5824 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5825 spec->headset_mic_pin = cfg->inputs[i].pin;
5826 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5827 spec->headphone_mic_pin = cfg->inputs[i].pin;
5830 WARN_ON(spec->gen.cap_sync_hook);
5831 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5832 spec->gen.automute_hook = alc_update_headset_mode;
5833 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5836 static void alc_fixup_headset_mode(struct hda_codec *codec,
5837 const struct hda_fixup *fix, int action)
5839 struct alc_spec *spec = codec->spec;
5842 case HDA_FIXUP_ACT_PRE_PROBE:
5843 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5845 case HDA_FIXUP_ACT_PROBE:
5846 alc_probe_headset_mode(codec);
5848 case HDA_FIXUP_ACT_INIT:
5849 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5850 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5851 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5853 alc_update_headset_mode(codec);
5858 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5859 const struct hda_fixup *fix, int action)
5861 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5862 struct alc_spec *spec = codec->spec;
5863 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5866 alc_fixup_headset_mode(codec, fix, action);
5869 static void alc255_set_default_jack_type(struct hda_codec *codec)
5871 /* Set to iphone type */
5872 static const struct coef_fw alc255fw[] = {
5873 WRITE_COEF(0x1b, 0x880b),
5874 WRITE_COEF(0x45, 0xd089),
5875 WRITE_COEF(0x1b, 0x080b),
5876 WRITE_COEF(0x46, 0x0004),
5877 WRITE_COEF(0x1b, 0x0c0b),
5880 static const struct coef_fw alc256fw[] = {
5881 WRITE_COEF(0x1b, 0x884b),
5882 WRITE_COEF(0x45, 0xd089),
5883 WRITE_COEF(0x1b, 0x084b),
5884 WRITE_COEF(0x46, 0x0004),
5885 WRITE_COEF(0x1b, 0x0c4b),
5888 switch (codec->core.vendor_id) {
5890 alc_process_coef_fw(codec, alc255fw);
5896 alc_process_coef_fw(codec, alc256fw);
5902 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5903 const struct hda_fixup *fix, int action)
5905 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5906 alc255_set_default_jack_type(codec);
5908 alc_fixup_headset_mode(codec, fix, action);
5911 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5912 const struct hda_fixup *fix, int action)
5914 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5915 struct alc_spec *spec = codec->spec;
5916 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5917 alc255_set_default_jack_type(codec);
5920 alc_fixup_headset_mode(codec, fix, action);
5923 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5924 struct hda_jack_callback *jack)
5926 struct alc_spec *spec = codec->spec;
5928 alc_update_headset_jack_cb(codec, jack);
5929 /* Headset Mic enable or disable, only for Dell Dino */
5930 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5933 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5934 const struct hda_fixup *fix, int action)
5936 alc_fixup_headset_mode(codec, fix, action);
5937 if (action == HDA_FIXUP_ACT_PROBE) {
5938 struct alc_spec *spec = codec->spec;
5939 /* toggled via hp_automute_hook */
5940 spec->gpio_mask |= 0x40;
5941 spec->gpio_dir |= 0x40;
5942 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5946 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5947 const struct hda_fixup *fix, int action)
5949 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5950 struct alc_spec *spec = codec->spec;
5951 spec->gen.auto_mute_via_amp = 1;
5955 static void alc_fixup_no_shutup(struct hda_codec *codec,
5956 const struct hda_fixup *fix, int action)
5958 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5959 struct alc_spec *spec = codec->spec;
5960 spec->no_shutup_pins = 1;
5964 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5965 const struct hda_fixup *fix, int action)
5967 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5968 struct alc_spec *spec = codec->spec;
5969 /* Disable AA-loopback as it causes white noise */
5970 spec->gen.mixer_nid = 0;
5974 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5975 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5976 const struct hda_fixup *fix, int action)
5978 static const struct hda_pintbl pincfgs[] = {
5979 { 0x16, 0x21211010 }, /* dock headphone */
5980 { 0x19, 0x21a11010 }, /* dock mic */
5983 struct alc_spec *spec = codec->spec;
5985 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5986 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5987 codec->power_save_node = 0; /* avoid click noises */
5988 snd_hda_apply_pincfgs(codec, pincfgs);
5992 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5993 const struct hda_fixup *fix, int action)
5995 static const struct hda_pintbl pincfgs[] = {
5996 { 0x17, 0x21211010 }, /* dock headphone */
5997 { 0x19, 0x21a11010 }, /* dock mic */
6000 struct alc_spec *spec = codec->spec;
6002 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6003 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6004 snd_hda_apply_pincfgs(codec, pincfgs);
6005 } else if (action == HDA_FIXUP_ACT_INIT) {
6006 /* Enable DOCK device */
6007 snd_hda_codec_write(codec, 0x17, 0,
6008 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6009 /* Enable DOCK device */
6010 snd_hda_codec_write(codec, 0x19, 0,
6011 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6015 static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6016 const struct hda_fixup *fix, int action)
6018 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6019 * the speaker output becomes too low by some reason on Thinkpads with
6022 static const hda_nid_t preferred_pairs[] = {
6023 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6026 struct alc_spec *spec = codec->spec;
6028 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6029 spec->gen.preferred_dacs = preferred_pairs;
6032 static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6033 const struct hda_fixup *fix, int action)
6035 static const hda_nid_t preferred_pairs[] = {
6036 0x17, 0x02, 0x21, 0x03, 0
6038 struct alc_spec *spec = codec->spec;
6040 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6041 spec->gen.preferred_dacs = preferred_pairs;
6044 static void alc_shutup_dell_xps13(struct hda_codec *codec)
6046 struct alc_spec *spec = codec->spec;
6047 int hp_pin = alc_get_hp_pin(spec);
6049 /* Prevent pop noises when headphones are plugged in */
6050 snd_hda_codec_write(codec, hp_pin, 0,
6051 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6055 static void alc_fixup_dell_xps13(struct hda_codec *codec,
6056 const struct hda_fixup *fix, int action)
6058 struct alc_spec *spec = codec->spec;
6059 struct hda_input_mux *imux = &spec->gen.input_mux;
6063 case HDA_FIXUP_ACT_PRE_PROBE:
6064 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6065 * it causes a click noise at start up
6067 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6068 spec->shutup = alc_shutup_dell_xps13;
6070 case HDA_FIXUP_ACT_PROBE:
6071 /* Make the internal mic the default input source. */
6072 for (i = 0; i < imux->num_items; i++) {
6073 if (spec->gen.imux_pins[i] == 0x12) {
6074 spec->gen.cur_mux[0] = i;
6082 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6083 const struct hda_fixup *fix, int action)
6085 struct alc_spec *spec = codec->spec;
6087 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6088 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6089 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
6091 /* Disable boost for mic-in permanently. (This code is only called
6092 from quirks that guarantee that the headphone is at NID 0x1b.) */
6093 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6094 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
6096 alc_fixup_headset_mode(codec, fix, action);
6099 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6100 const struct hda_fixup *fix, int action)
6102 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6103 alc_write_coef_idx(codec, 0xc4, 0x8000);
6104 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
6105 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6107 alc_fixup_headset_mode(codec, fix, action);
6110 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6111 static int find_ext_mic_pin(struct hda_codec *codec)
6113 struct alc_spec *spec = codec->spec;
6114 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6116 unsigned int defcfg;
6119 for (i = 0; i < cfg->num_inputs; i++) {
6120 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6122 nid = cfg->inputs[i].pin;
6123 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6124 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6132 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6133 const struct hda_fixup *fix,
6136 struct alc_spec *spec = codec->spec;
6138 if (action == HDA_FIXUP_ACT_PROBE) {
6139 int mic_pin = find_ext_mic_pin(codec);
6140 int hp_pin = alc_get_hp_pin(spec);
6142 if (snd_BUG_ON(!mic_pin || !hp_pin))
6144 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
6148 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6149 const struct hda_fixup *fix,
6152 struct alc_spec *spec = codec->spec;
6153 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6156 /* The mic boosts on level 2 and 3 are too noisy
6157 on the internal mic input.
6158 Therefore limit the boost to 0 or 1. */
6160 if (action != HDA_FIXUP_ACT_PROBE)
6163 for (i = 0; i < cfg->num_inputs; i++) {
6164 hda_nid_t nid = cfg->inputs[i].pin;
6165 unsigned int defcfg;
6166 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6168 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6169 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6172 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6173 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6174 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6175 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6176 (0 << AC_AMPCAP_MUTE_SHIFT));
6180 static void alc283_hp_automute_hook(struct hda_codec *codec,
6181 struct hda_jack_callback *jack)
6183 struct alc_spec *spec = codec->spec;
6187 snd_hda_gen_hp_automute(codec, jack);
6189 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6192 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6196 static void alc283_fixup_chromebook(struct hda_codec *codec,
6197 const struct hda_fixup *fix, int action)
6199 struct alc_spec *spec = codec->spec;
6202 case HDA_FIXUP_ACT_PRE_PROBE:
6203 snd_hda_override_wcaps(codec, 0x03, 0);
6204 /* Disable AA-loopback as it causes white noise */
6205 spec->gen.mixer_nid = 0;
6207 case HDA_FIXUP_ACT_INIT:
6208 /* MIC2-VREF control */
6209 /* Set to manual mode */
6210 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6211 /* Enable Line1 input control by verb */
6212 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
6217 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6218 const struct hda_fixup *fix, int action)
6220 struct alc_spec *spec = codec->spec;
6223 case HDA_FIXUP_ACT_PRE_PROBE:
6224 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
6226 case HDA_FIXUP_ACT_INIT:
6227 /* MIC2-VREF control */
6228 /* Set to manual mode */
6229 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6234 /* mute tablet speaker pin (0x14) via dock plugging in addition */
6235 static void asus_tx300_automute(struct hda_codec *codec)
6237 struct alc_spec *spec = codec->spec;
6238 snd_hda_gen_update_outputs(codec);
6239 if (snd_hda_jack_detect(codec, 0x1b))
6240 spec->gen.mute_bits |= (1ULL << 0x14);
6243 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6244 const struct hda_fixup *fix, int action)
6246 struct alc_spec *spec = codec->spec;
6247 static const struct hda_pintbl dock_pins[] = {
6248 { 0x1b, 0x21114000 }, /* dock speaker pin */
6253 case HDA_FIXUP_ACT_PRE_PROBE:
6254 spec->init_amp = ALC_INIT_DEFAULT;
6255 /* TX300 needs to set up GPIO2 for the speaker amp */
6256 alc_setup_gpio(codec, 0x04);
6257 snd_hda_apply_pincfgs(codec, dock_pins);
6258 spec->gen.auto_mute_via_amp = 1;
6259 spec->gen.automute_hook = asus_tx300_automute;
6260 snd_hda_jack_detect_enable_callback(codec, 0x1b,
6261 snd_hda_gen_hp_automute);
6263 case HDA_FIXUP_ACT_PROBE:
6264 spec->init_amp = ALC_INIT_DEFAULT;
6266 case HDA_FIXUP_ACT_BUILD:
6267 /* this is a bit tricky; give more sane names for the main
6268 * (tablet) speaker and the dock speaker, respectively
6270 rename_ctl(codec, "Speaker Playback Switch",
6271 "Dock Speaker Playback Switch");
6272 rename_ctl(codec, "Bass Speaker Playback Switch",
6273 "Speaker Playback Switch");
6278 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6279 const struct hda_fixup *fix, int action)
6281 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6282 /* DAC node 0x03 is giving mono output. We therefore want to
6283 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6284 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6285 static const hda_nid_t conn1[] = { 0x0c };
6286 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6287 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
6291 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6292 const struct hda_fixup *fix, int action)
6294 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6295 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6296 we can't adjust the speaker's volume since this node does not has
6297 Amp-out capability. we change the speaker's route to:
6298 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6299 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6300 speaker's volume now. */
6302 static const hda_nid_t conn1[] = { 0x0c };
6303 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
6307 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6308 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6309 const struct hda_fixup *fix, int action)
6311 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6312 static const hda_nid_t conn[] = { 0x02, 0x03 };
6313 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6317 /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6318 static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6319 const struct hda_fixup *fix, int action)
6321 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6322 static const hda_nid_t conn[] = { 0x02 };
6323 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6327 /* Hook to update amp GPIO4 for automute */
6328 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6329 struct hda_jack_callback *jack)
6331 struct alc_spec *spec = codec->spec;
6333 snd_hda_gen_hp_automute(codec, jack);
6334 /* mute_led_polarity is set to 0, so we pass inverted value here */
6335 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6336 !spec->gen.hp_jack_present);
6339 /* Manage GPIOs for HP EliteBook Folio 9480m.
6341 * GPIO4 is the headphone amplifier power control
6342 * GPIO3 is the audio output mute indicator LED
6345 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6346 const struct hda_fixup *fix,
6349 struct alc_spec *spec = codec->spec;
6351 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
6352 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6353 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6354 spec->gpio_mask |= 0x10;
6355 spec->gpio_dir |= 0x10;
6356 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
6360 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6361 const struct hda_fixup *fix,
6364 struct alc_spec *spec = codec->spec;
6366 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6367 spec->gpio_mask |= 0x04;
6368 spec->gpio_dir |= 0x04;
6369 /* set data bit low */
6373 /* Quirk for Thinkpad X1 7th and 8th Gen
6374 * The following fixed routing needed
6375 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6376 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6377 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6379 static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6380 const struct hda_fixup *fix, int action)
6382 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6383 static const hda_nid_t preferred_pairs[] = {
6384 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6386 struct alc_spec *spec = codec->spec;
6389 case HDA_FIXUP_ACT_PRE_PROBE:
6390 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6391 spec->gen.preferred_dacs = preferred_pairs;
6393 case HDA_FIXUP_ACT_BUILD:
6394 /* The generic parser creates somewhat unintuitive volume ctls
6395 * with the fixed routing above, and the shared DAC2 may be
6397 * Rename those to unique names so that PA doesn't touch them
6398 * and use only Master volume.
6400 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6401 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6406 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6407 const struct hda_fixup *fix,
6410 alc_fixup_dual_codecs(codec, fix, action);
6412 case HDA_FIXUP_ACT_PRE_PROBE:
6413 /* override card longname to provide a unique UCM profile */
6414 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6416 case HDA_FIXUP_ACT_BUILD:
6417 /* rename Capture controls depending on the codec */
6418 rename_ctl(codec, "Capture Volume",
6420 "Rear-Panel Capture Volume" :
6421 "Front-Panel Capture Volume");
6422 rename_ctl(codec, "Capture Switch",
6424 "Rear-Panel Capture Switch" :
6425 "Front-Panel Capture Switch");
6430 static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6431 const struct hda_fixup *fix, int action)
6433 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6436 codec->power_save_node = 1;
6439 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6440 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6441 const struct hda_fixup *fix, int action)
6443 struct alc_spec *spec = codec->spec;
6444 static const hda_nid_t preferred_pairs[] = {
6445 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6449 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6452 spec->gen.preferred_dacs = preferred_pairs;
6453 spec->gen.auto_mute_via_amp = 1;
6454 codec->power_save_node = 0;
6457 /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6458 static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6459 const struct hda_fixup *fix, int action)
6461 static const hda_nid_t preferred_pairs[] = {
6462 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6464 struct alc_spec *spec = codec->spec;
6466 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6467 spec->gen.preferred_dacs = preferred_pairs;
6468 spec->gen.obey_preferred_dacs = 1;
6472 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6473 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6474 const struct hda_fixup *fix, int action)
6476 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6479 snd_hda_override_wcaps(codec, 0x03, 0);
6482 static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6484 switch (codec->core.vendor_id) {
6490 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6491 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6499 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6500 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6505 static void alc295_fixup_chromebook(struct hda_codec *codec,
6506 const struct hda_fixup *fix, int action)
6508 struct alc_spec *spec = codec->spec;
6511 case HDA_FIXUP_ACT_PRE_PROBE:
6512 spec->ultra_low_power = true;
6514 case HDA_FIXUP_ACT_INIT:
6515 alc_combo_jack_hp_jd_restart(codec);
6520 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6521 const struct hda_fixup *fix, int action)
6523 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6524 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6528 static void alc294_gx502_toggle_output(struct hda_codec *codec,
6529 struct hda_jack_callback *cb)
6531 /* The Windows driver sets the codec up in a very different way where
6532 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6534 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6535 alc_write_coef_idx(codec, 0x10, 0x8a20);
6537 alc_write_coef_idx(codec, 0x10, 0x0a20);
6540 static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6541 const struct hda_fixup *fix, int action)
6543 /* Pin 0x21: headphones/headset mic */
6544 if (!is_jack_detectable(codec, 0x21))
6548 case HDA_FIXUP_ACT_PRE_PROBE:
6549 snd_hda_jack_detect_enable_callback(codec, 0x21,
6550 alc294_gx502_toggle_output);
6552 case HDA_FIXUP_ACT_INIT:
6553 /* Make sure to start in a correct state, i.e. if
6554 * headphones have been plugged in before powering up the system
6556 alc294_gx502_toggle_output(codec, NULL);
6561 static void alc294_gu502_toggle_output(struct hda_codec *codec,
6562 struct hda_jack_callback *cb)
6564 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6565 * responsible from changes between speakers and headphones
6567 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6568 alc_write_coef_idx(codec, 0x10, 0x8420);
6570 alc_write_coef_idx(codec, 0x10, 0x0a20);
6573 static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6574 const struct hda_fixup *fix, int action)
6576 if (!is_jack_detectable(codec, 0x21))
6580 case HDA_FIXUP_ACT_PRE_PROBE:
6581 snd_hda_jack_detect_enable_callback(codec, 0x21,
6582 alc294_gu502_toggle_output);
6584 case HDA_FIXUP_ACT_INIT:
6585 alc294_gu502_toggle_output(codec, NULL);
6590 static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6591 const struct hda_fixup *fix, int action)
6593 if (action != HDA_FIXUP_ACT_INIT)
6597 alc_write_coef_idx(codec, 0x65, 0x0);
6600 static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6601 const struct hda_fixup *fix, int action)
6604 case HDA_FIXUP_ACT_INIT:
6605 alc_combo_jack_hp_jd_restart(codec);
6610 static void alc_fixup_no_int_mic(struct hda_codec *codec,
6611 const struct hda_fixup *fix, int action)
6613 struct alc_spec *spec = codec->spec;
6616 case HDA_FIXUP_ACT_PRE_PROBE:
6617 /* Mic RING SLEEVE swap for combo jack */
6618 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6619 spec->no_internal_mic_pin = true;
6621 case HDA_FIXUP_ACT_INIT:
6622 alc_combo_jack_hp_jd_restart(codec);
6627 /* GPIO1 = amplifier on/off
6628 * GPIO3 = mic mute LED
6630 static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6631 const struct hda_fixup *fix, int action)
6633 static const hda_nid_t conn[] = { 0x02 };
6635 struct alc_spec *spec = codec->spec;
6636 static const struct hda_pintbl pincfgs[] = {
6637 { 0x14, 0x90170110 }, /* front/high speakers */
6638 { 0x17, 0x90170130 }, /* back/bass speakers */
6642 //enable micmute led
6643 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6646 case HDA_FIXUP_ACT_PRE_PROBE:
6647 spec->micmute_led_polarity = 1;
6648 /* needed for amp of back speakers */
6649 spec->gpio_mask |= 0x01;
6650 spec->gpio_dir |= 0x01;
6651 snd_hda_apply_pincfgs(codec, pincfgs);
6652 /* share DAC to have unified volume control */
6653 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6654 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6656 case HDA_FIXUP_ACT_INIT:
6657 /* need to toggle GPIO to enable the amp of back speakers */
6658 alc_update_gpio_data(codec, 0x01, true);
6660 alc_update_gpio_data(codec, 0x01, false);
6665 static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6666 const struct hda_fixup *fix, int action)
6668 static const hda_nid_t conn[] = { 0x02 };
6669 static const struct hda_pintbl pincfgs[] = {
6670 { 0x14, 0x90170110 }, /* rear speaker */
6675 case HDA_FIXUP_ACT_PRE_PROBE:
6676 snd_hda_apply_pincfgs(codec, pincfgs);
6677 /* force front speaker to DAC1 */
6678 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6683 /* for hda_fixup_thinkpad_acpi() */
6684 #include "thinkpad_helper.c"
6686 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6687 const struct hda_fixup *fix, int action)
6689 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6690 hda_fixup_thinkpad_acpi(codec, fix, action);
6693 /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6694 static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6695 const struct hda_fixup *fix,
6698 struct alc_spec *spec = codec->spec;
6701 case HDA_FIXUP_ACT_PRE_PROBE:
6702 spec->gen.suppress_auto_mute = 1;
6707 static int comp_bind(struct device *dev)
6709 struct hda_codec *cdc = dev_to_hda_codec(dev);
6710 struct alc_spec *spec = cdc->spec;
6712 return component_bind_all(dev, spec->comps);
6715 static void comp_unbind(struct device *dev)
6717 struct hda_codec *cdc = dev_to_hda_codec(dev);
6718 struct alc_spec *spec = cdc->spec;
6720 component_unbind_all(dev, spec->comps);
6723 static const struct component_master_ops comp_master_ops = {
6725 .unbind = comp_unbind,
6728 static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6729 struct snd_pcm_substream *sub, int action)
6731 struct alc_spec *spec = cdc->spec;
6734 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6735 if (spec->comps[i].dev && spec->comps[i].pre_playback_hook)
6736 spec->comps[i].pre_playback_hook(spec->comps[i].dev, action);
6738 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6739 if (spec->comps[i].dev && spec->comps[i].playback_hook)
6740 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6742 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6743 if (spec->comps[i].dev && spec->comps[i].post_playback_hook)
6744 spec->comps[i].post_playback_hook(spec->comps[i].dev, action);
6748 struct scodec_dev_name {
6754 /* match the device name in a slightly relaxed manner */
6755 static int comp_match_cs35l41_dev_name(struct device *dev, void *data)
6757 struct scodec_dev_name *p = data;
6758 const char *d = dev_name(dev);
6759 int n = strlen(p->bus);
6762 /* check the bus name */
6763 if (strncmp(d, p->bus, n))
6765 /* skip the bus number */
6768 /* the rest must be exact matching */
6769 snprintf(tmp, sizeof(tmp), "-%s:00-cs35l41-hda.%d", p->hid, p->index);
6770 return !strcmp(d + n, tmp);
6773 static int comp_match_tas2781_dev_name(struct device *dev,
6776 struct scodec_dev_name *p = data;
6777 const char *d = dev_name(dev);
6778 int n = strlen(p->bus);
6781 /* check the bus name */
6782 if (strncmp(d, p->bus, n))
6784 /* skip the bus number */
6787 /* the rest must be exact matching */
6788 snprintf(tmp, sizeof(tmp), "-%s:00", p->hid);
6790 return !strcmp(d + n, tmp);
6793 static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6794 const char *hid, int count)
6796 struct device *dev = hda_codec_dev(cdc);
6797 struct alc_spec *spec = cdc->spec;
6798 struct scodec_dev_name *rec;
6802 case HDA_FIXUP_ACT_PRE_PROBE:
6803 for (i = 0; i < count; i++) {
6804 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6810 spec->comps[i].codec = cdc;
6811 component_match_add(dev, &spec->match,
6812 comp_match_cs35l41_dev_name, rec);
6814 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6816 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6818 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6820 case HDA_FIXUP_ACT_FREE:
6821 component_master_del(dev, &comp_master_ops);
6826 static void tas2781_generic_fixup(struct hda_codec *cdc, int action,
6827 const char *bus, const char *hid)
6829 struct device *dev = hda_codec_dev(cdc);
6830 struct alc_spec *spec = cdc->spec;
6831 struct scodec_dev_name *rec;
6835 case HDA_FIXUP_ACT_PRE_PROBE:
6836 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6842 spec->comps[0].codec = cdc;
6843 component_match_add(dev, &spec->match,
6844 comp_match_tas2781_dev_name, rec);
6845 ret = component_master_add_with_match(dev, &comp_master_ops,
6849 "Fail to register component aggregator %d\n",
6852 spec->gen.pcm_playback_hook =
6853 comp_generic_playback_hook;
6855 case HDA_FIXUP_ACT_FREE:
6856 component_master_del(dev, &comp_master_ops);
6861 static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6863 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6866 static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6868 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 2);
6871 static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6873 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 4);
6876 static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6879 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2);
6882 static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6885 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0101", 2);
6888 static void tas2781_fixup_i2c(struct hda_codec *cdc,
6889 const struct hda_fixup *fix, int action)
6891 tas2781_generic_fixup(cdc, action, "i2c", "TIAS2781");
6894 /* for alc295_fixup_hp_top_speakers */
6895 #include "hp_x360_helper.c"
6897 /* for alc285_fixup_ideapad_s740_coef() */
6898 #include "ideapad_s740_helper.c"
6900 static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
6901 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
6902 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
6903 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
6907 static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
6908 const struct hda_fixup *fix,
6912 * A certain other OS sets these coeffs to different values. On at least
6913 * one TongFang barebone these settings might survive even a cold
6914 * reboot. So to restore a clean slate the values are explicitly reset
6915 * to default here. Without this, the external microphone is always in a
6916 * plugged-in state, while the internal microphone is always in an
6917 * unplugged state, breaking the ability to use the internal microphone.
6919 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
6922 static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
6923 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
6924 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
6925 WRITE_COEF(0x49, 0x0149),
6929 static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
6930 const struct hda_fixup *fix,
6934 * The audio jack input and output is not detected on the ASRock NUC Box
6935 * 1100 series when cold booting without this fix. Warm rebooting from a
6936 * certain other OS makes the audio functional, as COEF settings are
6937 * preserved in this case. This fix sets these altered COEF values as
6940 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
6943 static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
6944 const struct hda_fixup *fix,
6948 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
6949 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
6950 * needs an additional quirk for sound working after suspend and resume.
6952 if (codec->core.vendor_id == 0x10ec0256) {
6953 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
6954 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
6956 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
6960 static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
6961 const struct hda_fixup *fix,
6964 struct alc_spec *spec = codec->spec;
6965 struct hda_input_mux *imux = &spec->gen.input_mux;
6968 alc269_fixup_limit_int_mic_boost(codec, fix, action);
6971 case HDA_FIXUP_ACT_PRE_PROBE:
6973 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
6974 * to Hi-Z to avoid pop noises at startup and when plugging and
6975 * unplugging headphones.
6977 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6978 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
6980 case HDA_FIXUP_ACT_PROBE:
6982 * Make the internal mic (0x12) the default input source to
6983 * prevent pop noises on cold boot.
6985 for (i = 0; i < imux->num_items; i++) {
6986 if (spec->gen.imux_pins[i] == 0x12) {
6987 spec->gen.cur_mux[0] = i;
6995 static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
6996 const struct hda_fixup *fix, int action)
6999 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7002 static const struct hda_pintbl pincfgs[] = {
7003 { 0x17, 0x90170121 },
7007 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7008 * DAC 0x02 and 0x03 would be fine.
7010 static const hda_nid_t conn[] = { 0x02, 0x03 };
7012 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7013 * Headphones (0x21) are connected to DAC 0x03.
7015 static const hda_nid_t preferred_pairs[] = {
7021 struct alc_spec *spec = codec->spec;
7024 case HDA_FIXUP_ACT_PRE_PROBE:
7025 snd_hda_apply_pincfgs(codec, pincfgs);
7026 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7027 spec->gen.preferred_dacs = preferred_pairs;
7032 static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
7033 const struct hda_fixup *fix, int action)
7035 static const struct hda_pintbl pincfgs[] = {
7036 { 0x14, 0x90170151 },
7037 { 0x17, 0x90170150 },
7040 static const hda_nid_t conn[] = { 0x02, 0x03 };
7041 static const hda_nid_t preferred_pairs[] = {
7047 struct alc_spec *spec = codec->spec;
7049 alc_fixup_no_shutup(codec, fix, action);
7052 case HDA_FIXUP_ACT_PRE_PROBE:
7053 snd_hda_apply_pincfgs(codec, pincfgs);
7054 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7055 spec->gen.preferred_dacs = preferred_pairs;
7060 /* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7061 static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7062 const struct hda_fixup *fix, int action)
7064 struct alc_spec *spec = codec->spec;
7065 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7066 static const hda_nid_t preferred_pairs[] = {
7067 0x17, 0x02, 0x21, 0x03, 0
7070 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7073 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7074 spec->gen.preferred_dacs = preferred_pairs;
7075 spec->gen.auto_mute_via_amp = 1;
7076 if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7077 snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7078 0x0); /* Make sure 0x14 was disable */
7081 /* Fix none verb table of Headset Mic pin */
7082 static void alc_fixup_headset_mic(struct hda_codec *codec,
7083 const struct hda_fixup *fix, int action)
7085 struct alc_spec *spec = codec->spec;
7086 static const struct hda_pintbl pincfgs[] = {
7087 { 0x19, 0x03a1103c },
7092 case HDA_FIXUP_ACT_PRE_PROBE:
7093 snd_hda_apply_pincfgs(codec, pincfgs);
7094 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7095 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7103 ALC269_FIXUP_SONY_VAIO,
7104 ALC275_FIXUP_SONY_VAIO_GPIO2,
7105 ALC269_FIXUP_DELL_M101Z,
7106 ALC269_FIXUP_SKU_IGNORE,
7107 ALC269_FIXUP_ASUS_G73JW,
7108 ALC269_FIXUP_ASUS_N7601ZM_PINS,
7109 ALC269_FIXUP_ASUS_N7601ZM,
7110 ALC269_FIXUP_LENOVO_EAPD,
7111 ALC275_FIXUP_SONY_HWEQ,
7112 ALC275_FIXUP_SONY_DISABLE_AAMIX,
7114 ALC269_FIXUP_PCM_44K,
7115 ALC269_FIXUP_STEREO_DMIC,
7116 ALC269_FIXUP_HEADSET_MIC,
7117 ALC269_FIXUP_QUANTA_MUTE,
7118 ALC269_FIXUP_LIFEBOOK,
7119 ALC269_FIXUP_LIFEBOOK_EXTMIC,
7120 ALC269_FIXUP_LIFEBOOK_HP_PIN,
7121 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
7122 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
7125 ALC269VB_FIXUP_AMIC,
7126 ALC269VB_FIXUP_DMIC,
7127 ALC269_FIXUP_HP_MUTE_LED,
7128 ALC269_FIXUP_HP_MUTE_LED_MIC1,
7129 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7130 ALC269_FIXUP_HP_MUTE_LED_MIC3,
7131 ALC269_FIXUP_HP_GPIO_LED,
7132 ALC269_FIXUP_HP_GPIO_MIC1_LED,
7133 ALC269_FIXUP_HP_LINE1_MIC1_LED,
7134 ALC269_FIXUP_INV_DMIC,
7135 ALC269_FIXUP_LENOVO_DOCK,
7136 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
7137 ALC269_FIXUP_NO_SHUTUP,
7138 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
7139 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
7140 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7141 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7142 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7143 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7144 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
7145 ALC269_FIXUP_HEADSET_MODE,
7146 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7147 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
7148 ALC269_FIXUP_ASUS_X101_FUNC,
7149 ALC269_FIXUP_ASUS_X101_VERB,
7150 ALC269_FIXUP_ASUS_X101,
7151 ALC271_FIXUP_AMIC_MIC2,
7152 ALC271_FIXUP_HP_GATE_MIC_JACK,
7153 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
7154 ALC269_FIXUP_ACER_AC700,
7155 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
7156 ALC269VB_FIXUP_ASUS_ZENBOOK,
7157 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
7158 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
7159 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
7160 ALC269VB_FIXUP_ORDISSIMO_EVE2,
7161 ALC283_FIXUP_CHROME_BOOK,
7162 ALC283_FIXUP_SENSE_COMBO_JACK,
7163 ALC282_FIXUP_ASUS_TX300,
7164 ALC283_FIXUP_INT_MIC,
7165 ALC290_FIXUP_MONO_SPEAKERS,
7166 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7167 ALC290_FIXUP_SUBWOOFER,
7168 ALC290_FIXUP_SUBWOOFER_HSJACK,
7169 ALC269_FIXUP_THINKPAD_ACPI,
7170 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7171 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7172 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7173 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7174 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7175 ALC255_FIXUP_HEADSET_MODE,
7176 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
7177 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7178 ALC292_FIXUP_TPT440_DOCK,
7179 ALC292_FIXUP_TPT440,
7180 ALC283_FIXUP_HEADSET_MIC,
7181 ALC255_FIXUP_MIC_MUTE_LED,
7182 ALC282_FIXUP_ASPIRE_V5_PINS,
7183 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7184 ALC280_FIXUP_HP_GPIO4,
7185 ALC286_FIXUP_HP_GPIO_LED,
7186 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
7187 ALC280_FIXUP_HP_DOCK_PINS,
7188 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
7189 ALC280_FIXUP_HP_9480M,
7190 ALC245_FIXUP_HP_X360_AMP,
7191 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
7192 ALC288_FIXUP_DELL_HEADSET_MODE,
7193 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7194 ALC288_FIXUP_DELL_XPS_13,
7195 ALC288_FIXUP_DISABLE_AAMIX,
7196 ALC292_FIXUP_DELL_E7X_AAMIX,
7197 ALC292_FIXUP_DELL_E7X,
7198 ALC292_FIXUP_DISABLE_AAMIX,
7199 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
7200 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7201 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7202 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
7203 ALC275_FIXUP_DELL_XPS,
7204 ALC293_FIXUP_LENOVO_SPK_NOISE,
7205 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7206 ALC255_FIXUP_DELL_SPK_NOISE,
7207 ALC225_FIXUP_DISABLE_MIC_VREF,
7208 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7209 ALC295_FIXUP_DISABLE_DAC3,
7210 ALC285_FIXUP_SPEAKER2_TO_DAC1,
7211 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7212 ALC285_FIXUP_ASUS_HEADSET_MIC,
7213 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
7214 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7215 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
7216 ALC280_FIXUP_HP_HEADSET_MIC,
7217 ALC221_FIXUP_HP_FRONT_MIC,
7218 ALC292_FIXUP_TPT460,
7219 ALC298_FIXUP_SPK_VOLUME,
7220 ALC298_FIXUP_LENOVO_SPK_VOLUME,
7221 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
7222 ALC269_FIXUP_ATIV_BOOK_8,
7223 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
7224 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
7225 ALC256_FIXUP_ASUS_HEADSET_MODE,
7226 ALC256_FIXUP_ASUS_MIC,
7227 ALC256_FIXUP_ASUS_AIO_GPIO2,
7228 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7229 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
7230 ALC233_FIXUP_LENOVO_MULTI_CODECS,
7231 ALC233_FIXUP_ACER_HEADSET_MIC,
7232 ALC294_FIXUP_LENOVO_MIC_LOCATION,
7233 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
7234 ALC225_FIXUP_S3_POP_NOISE,
7235 ALC700_FIXUP_INTEL_REFERENCE,
7236 ALC274_FIXUP_DELL_BIND_DACS,
7237 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7238 ALC298_FIXUP_TPT470_DOCK_FIX,
7239 ALC298_FIXUP_TPT470_DOCK,
7240 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
7241 ALC255_FIXUP_DELL_HEADSET_MIC,
7242 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
7243 ALC298_FIXUP_HUAWEI_MBX_STEREO,
7244 ALC295_FIXUP_HP_X360,
7245 ALC221_FIXUP_HP_HEADSET_MIC,
7246 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
7247 ALC295_FIXUP_HP_AUTO_MUTE,
7248 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7249 ALC294_FIXUP_ASUS_MIC,
7250 ALC294_FIXUP_ASUS_HEADSET_MIC,
7251 ALC294_FIXUP_ASUS_SPK,
7252 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7253 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7254 ALC255_FIXUP_ACER_HEADSET_MIC,
7255 ALC295_FIXUP_CHROME_BOOK,
7256 ALC225_FIXUP_HEADSET_JACK,
7257 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7258 ALC225_FIXUP_WYSE_AUTO_MUTE,
7259 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
7260 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
7261 ALC256_FIXUP_ASUS_HEADSET_MIC,
7262 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7263 ALC299_FIXUP_PREDATOR_SPK,
7264 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
7265 ALC289_FIXUP_DELL_SPK1,
7266 ALC289_FIXUP_DELL_SPK2,
7267 ALC289_FIXUP_DUAL_SPK,
7268 ALC289_FIXUP_RTK_AMP_DUAL_SPK,
7269 ALC294_FIXUP_SPK2_TO_DAC1,
7270 ALC294_FIXUP_ASUS_DUAL_SPK,
7271 ALC285_FIXUP_THINKPAD_X1_GEN7,
7272 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
7273 ALC294_FIXUP_ASUS_ALLY,
7274 ALC294_FIXUP_ASUS_ALLY_PINS,
7275 ALC294_FIXUP_ASUS_ALLY_VERBS,
7276 ALC294_FIXUP_ASUS_ALLY_SPEAKER,
7277 ALC294_FIXUP_ASUS_HPE,
7278 ALC294_FIXUP_ASUS_COEF_1B,
7279 ALC294_FIXUP_ASUS_GX502_HP,
7280 ALC294_FIXUP_ASUS_GX502_PINS,
7281 ALC294_FIXUP_ASUS_GX502_VERBS,
7282 ALC294_FIXUP_ASUS_GU502_HP,
7283 ALC294_FIXUP_ASUS_GU502_PINS,
7284 ALC294_FIXUP_ASUS_GU502_VERBS,
7285 ALC294_FIXUP_ASUS_G513_PINS,
7286 ALC285_FIXUP_ASUS_G533Z_PINS,
7287 ALC285_FIXUP_HP_GPIO_LED,
7288 ALC285_FIXUP_HP_MUTE_LED,
7289 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
7290 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
7291 ALC236_FIXUP_HP_GPIO_LED,
7292 ALC236_FIXUP_HP_MUTE_LED,
7293 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
7294 ALC298_FIXUP_SAMSUNG_AMP,
7295 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7296 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7297 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
7298 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
7299 ALC269VC_FIXUP_ACER_HEADSET_MIC,
7300 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
7301 ALC289_FIXUP_ASUS_GA401,
7302 ALC289_FIXUP_ASUS_GA502,
7303 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
7304 ALC285_FIXUP_HP_GPIO_AMP_INIT,
7305 ALC269_FIXUP_CZC_B20,
7306 ALC269_FIXUP_CZC_TMI,
7307 ALC269_FIXUP_CZC_L101,
7308 ALC269_FIXUP_LEMOTE_A1802,
7309 ALC269_FIXUP_LEMOTE_A190X,
7310 ALC256_FIXUP_INTEL_NUC8_RUGGED,
7311 ALC233_FIXUP_INTEL_NUC8_DMIC,
7312 ALC233_FIXUP_INTEL_NUC8_BOOST,
7313 ALC256_FIXUP_INTEL_NUC10,
7314 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
7315 ALC274_FIXUP_HP_MIC,
7316 ALC274_FIXUP_HP_HEADSET_MIC,
7317 ALC274_FIXUP_HP_ENVY_GPIO,
7318 ALC256_FIXUP_ASUS_HPE,
7319 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
7320 ALC287_FIXUP_HP_GPIO_LED,
7321 ALC256_FIXUP_HP_HEADSET_MIC,
7322 ALC245_FIXUP_HP_GPIO_LED,
7323 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
7324 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
7325 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
7326 ALC256_FIXUP_ACER_HEADSET_MIC,
7327 ALC285_FIXUP_IDEAPAD_S740_COEF,
7328 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7329 ALC295_FIXUP_ASUS_DACS,
7330 ALC295_FIXUP_HP_OMEN,
7331 ALC285_FIXUP_HP_SPECTRE_X360,
7332 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
7333 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
7334 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
7335 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7336 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7337 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7338 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
7339 ALC298_FIXUP_LENOVO_C940_DUET7,
7340 ALC287_FIXUP_13S_GEN2_SPEAKERS,
7341 ALC256_FIXUP_SET_COEF_DEFAULTS,
7342 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7343 ALC233_FIXUP_NO_AUDIO_JACK,
7344 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
7345 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7346 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
7347 ALC287_FIXUP_LEGION_16ACHG6,
7348 ALC287_FIXUP_CS35L41_I2C_2,
7349 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
7350 ALC245_FIXUP_CS35L41_SPI_2,
7351 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
7352 ALC245_FIXUP_CS35L41_SPI_4,
7353 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
7354 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
7355 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
7356 ALC287_FIXUP_LEGION_16ITHG6,
7357 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7358 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
7359 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
7360 ALC236_FIXUP_DELL_DUAL_CODECS,
7361 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
7362 ALC287_FIXUP_TAS2781_I2C,
7363 ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
7364 ALC245_FIXUP_HP_X360_MUTE_LEDS,
7365 ALC287_FIXUP_THINKPAD_I2S_SPK,
7366 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
7367 ALC2XX_FIXUP_HEADSET_MIC,
7368 ALC289_FIXUP_DELL_CS35L41_SPI_2,
7371 /* A special fixup for Lenovo C940 and Yoga Duet 7;
7372 * both have the very same PCI SSID, and we need to apply different fixups
7373 * depending on the codec ID
7375 static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7376 const struct hda_fixup *fix,
7381 if (codec->core.vendor_id == 0x10ec0298)
7382 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7384 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7385 __snd_hda_apply_fixup(codec, id, action, 0);
7388 static const struct hda_fixup alc269_fixups[] = {
7389 [ALC269_FIXUP_GPIO2] = {
7390 .type = HDA_FIXUP_FUNC,
7391 .v.func = alc_fixup_gpio2,
7393 [ALC269_FIXUP_SONY_VAIO] = {
7394 .type = HDA_FIXUP_PINCTLS,
7395 .v.pins = (const struct hda_pintbl[]) {
7396 {0x19, PIN_VREFGRD},
7400 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
7401 .type = HDA_FIXUP_FUNC,
7402 .v.func = alc275_fixup_gpio4_off,
7404 .chain_id = ALC269_FIXUP_SONY_VAIO
7406 [ALC269_FIXUP_DELL_M101Z] = {
7407 .type = HDA_FIXUP_VERBS,
7408 .v.verbs = (const struct hda_verb[]) {
7409 /* Enables internal speaker */
7410 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7411 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7415 [ALC269_FIXUP_SKU_IGNORE] = {
7416 .type = HDA_FIXUP_FUNC,
7417 .v.func = alc_fixup_sku_ignore,
7419 [ALC269_FIXUP_ASUS_G73JW] = {
7420 .type = HDA_FIXUP_PINS,
7421 .v.pins = (const struct hda_pintbl[]) {
7422 { 0x17, 0x99130111 }, /* subwoofer */
7426 [ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7427 .type = HDA_FIXUP_PINS,
7428 .v.pins = (const struct hda_pintbl[]) {
7429 { 0x19, 0x03A11050 },
7430 { 0x1a, 0x03A11C30 },
7431 { 0x21, 0x03211420 },
7435 [ALC269_FIXUP_ASUS_N7601ZM] = {
7436 .type = HDA_FIXUP_VERBS,
7437 .v.verbs = (const struct hda_verb[]) {
7438 {0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7439 {0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7440 {0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7441 {0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7442 {0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7443 {0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7447 .chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7449 [ALC269_FIXUP_LENOVO_EAPD] = {
7450 .type = HDA_FIXUP_VERBS,
7451 .v.verbs = (const struct hda_verb[]) {
7452 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7456 [ALC275_FIXUP_SONY_HWEQ] = {
7457 .type = HDA_FIXUP_FUNC,
7458 .v.func = alc269_fixup_hweq,
7460 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7462 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7463 .type = HDA_FIXUP_FUNC,
7464 .v.func = alc_fixup_disable_aamix,
7466 .chain_id = ALC269_FIXUP_SONY_VAIO
7468 [ALC271_FIXUP_DMIC] = {
7469 .type = HDA_FIXUP_FUNC,
7470 .v.func = alc271_fixup_dmic,
7472 [ALC269_FIXUP_PCM_44K] = {
7473 .type = HDA_FIXUP_FUNC,
7474 .v.func = alc269_fixup_pcm_44k,
7476 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7478 [ALC269_FIXUP_STEREO_DMIC] = {
7479 .type = HDA_FIXUP_FUNC,
7480 .v.func = alc269_fixup_stereo_dmic,
7482 [ALC269_FIXUP_HEADSET_MIC] = {
7483 .type = HDA_FIXUP_FUNC,
7484 .v.func = alc269_fixup_headset_mic,
7486 [ALC269_FIXUP_QUANTA_MUTE] = {
7487 .type = HDA_FIXUP_FUNC,
7488 .v.func = alc269_fixup_quanta_mute,
7490 [ALC269_FIXUP_LIFEBOOK] = {
7491 .type = HDA_FIXUP_PINS,
7492 .v.pins = (const struct hda_pintbl[]) {
7493 { 0x1a, 0x2101103f }, /* dock line-out */
7494 { 0x1b, 0x23a11040 }, /* dock mic-in */
7498 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7500 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7501 .type = HDA_FIXUP_PINS,
7502 .v.pins = (const struct hda_pintbl[]) {
7503 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7507 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7508 .type = HDA_FIXUP_PINS,
7509 .v.pins = (const struct hda_pintbl[]) {
7510 { 0x21, 0x0221102f }, /* HP out */
7514 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7515 .type = HDA_FIXUP_FUNC,
7516 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7518 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7519 .type = HDA_FIXUP_FUNC,
7520 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7522 [ALC269_FIXUP_AMIC] = {
7523 .type = HDA_FIXUP_PINS,
7524 .v.pins = (const struct hda_pintbl[]) {
7525 { 0x14, 0x99130110 }, /* speaker */
7526 { 0x15, 0x0121401f }, /* HP out */
7527 { 0x18, 0x01a19c20 }, /* mic */
7528 { 0x19, 0x99a3092f }, /* int-mic */
7532 [ALC269_FIXUP_DMIC] = {
7533 .type = HDA_FIXUP_PINS,
7534 .v.pins = (const struct hda_pintbl[]) {
7535 { 0x12, 0x99a3092f }, /* int-mic */
7536 { 0x14, 0x99130110 }, /* speaker */
7537 { 0x15, 0x0121401f }, /* HP out */
7538 { 0x18, 0x01a19c20 }, /* mic */
7542 [ALC269VB_FIXUP_AMIC] = {
7543 .type = HDA_FIXUP_PINS,
7544 .v.pins = (const struct hda_pintbl[]) {
7545 { 0x14, 0x99130110 }, /* speaker */
7546 { 0x18, 0x01a19c20 }, /* mic */
7547 { 0x19, 0x99a3092f }, /* int-mic */
7548 { 0x21, 0x0121401f }, /* HP out */
7552 [ALC269VB_FIXUP_DMIC] = {
7553 .type = HDA_FIXUP_PINS,
7554 .v.pins = (const struct hda_pintbl[]) {
7555 { 0x12, 0x99a3092f }, /* int-mic */
7556 { 0x14, 0x99130110 }, /* speaker */
7557 { 0x18, 0x01a19c20 }, /* mic */
7558 { 0x21, 0x0121401f }, /* HP out */
7562 [ALC269_FIXUP_HP_MUTE_LED] = {
7563 .type = HDA_FIXUP_FUNC,
7564 .v.func = alc269_fixup_hp_mute_led,
7566 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7567 .type = HDA_FIXUP_FUNC,
7568 .v.func = alc269_fixup_hp_mute_led_mic1,
7570 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
7571 .type = HDA_FIXUP_FUNC,
7572 .v.func = alc269_fixup_hp_mute_led_mic2,
7574 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7575 .type = HDA_FIXUP_FUNC,
7576 .v.func = alc269_fixup_hp_mute_led_mic3,
7578 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7580 [ALC269_FIXUP_HP_GPIO_LED] = {
7581 .type = HDA_FIXUP_FUNC,
7582 .v.func = alc269_fixup_hp_gpio_led,
7584 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7585 .type = HDA_FIXUP_FUNC,
7586 .v.func = alc269_fixup_hp_gpio_mic1_led,
7588 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7589 .type = HDA_FIXUP_FUNC,
7590 .v.func = alc269_fixup_hp_line1_mic1_led,
7592 [ALC269_FIXUP_INV_DMIC] = {
7593 .type = HDA_FIXUP_FUNC,
7594 .v.func = alc_fixup_inv_dmic,
7596 [ALC269_FIXUP_NO_SHUTUP] = {
7597 .type = HDA_FIXUP_FUNC,
7598 .v.func = alc_fixup_no_shutup,
7600 [ALC269_FIXUP_LENOVO_DOCK] = {
7601 .type = HDA_FIXUP_PINS,
7602 .v.pins = (const struct hda_pintbl[]) {
7603 { 0x19, 0x23a11040 }, /* dock mic */
7604 { 0x1b, 0x2121103f }, /* dock headphone */
7608 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7610 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7611 .type = HDA_FIXUP_FUNC,
7612 .v.func = alc269_fixup_limit_int_mic_boost,
7614 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7616 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
7617 .type = HDA_FIXUP_FUNC,
7618 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7620 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7622 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7623 .type = HDA_FIXUP_PINS,
7624 .v.pins = (const struct hda_pintbl[]) {
7625 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7626 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7630 .chain_id = ALC269_FIXUP_HEADSET_MODE
7632 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7633 .type = HDA_FIXUP_PINS,
7634 .v.pins = (const struct hda_pintbl[]) {
7635 { 0x16, 0x21014020 }, /* dock line out */
7636 { 0x19, 0x21a19030 }, /* dock mic */
7637 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7641 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7643 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7644 .type = HDA_FIXUP_PINS,
7645 .v.pins = (const struct hda_pintbl[]) {
7646 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7650 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7652 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7653 .type = HDA_FIXUP_PINS,
7654 .v.pins = (const struct hda_pintbl[]) {
7655 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7656 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7660 .chain_id = ALC269_FIXUP_HEADSET_MODE
7662 [ALC269_FIXUP_HEADSET_MODE] = {
7663 .type = HDA_FIXUP_FUNC,
7664 .v.func = alc_fixup_headset_mode,
7666 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7668 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7669 .type = HDA_FIXUP_FUNC,
7670 .v.func = alc_fixup_headset_mode_no_hp_mic,
7672 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7673 .type = HDA_FIXUP_PINS,
7674 .v.pins = (const struct hda_pintbl[]) {
7675 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7679 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7681 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7682 .type = HDA_FIXUP_PINS,
7683 .v.pins = (const struct hda_pintbl[]) {
7684 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7688 .chain_id = ALC269_FIXUP_HEADSET_MIC
7690 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
7691 .type = HDA_FIXUP_PINS,
7692 .v.pins = (const struct hda_pintbl[]) {
7706 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7708 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7709 .type = HDA_FIXUP_FUNC,
7710 .v.func = alc298_fixup_huawei_mbx_stereo,
7712 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7714 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7715 .type = HDA_FIXUP_FUNC,
7716 .v.func = alc269_fixup_x101_headset_mic,
7718 [ALC269_FIXUP_ASUS_X101_VERB] = {
7719 .type = HDA_FIXUP_VERBS,
7720 .v.verbs = (const struct hda_verb[]) {
7721 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7722 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7723 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7727 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7729 [ALC269_FIXUP_ASUS_X101] = {
7730 .type = HDA_FIXUP_PINS,
7731 .v.pins = (const struct hda_pintbl[]) {
7732 { 0x18, 0x04a1182c }, /* Headset mic */
7736 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7738 [ALC271_FIXUP_AMIC_MIC2] = {
7739 .type = HDA_FIXUP_PINS,
7740 .v.pins = (const struct hda_pintbl[]) {
7741 { 0x14, 0x99130110 }, /* speaker */
7742 { 0x19, 0x01a19c20 }, /* mic */
7743 { 0x1b, 0x99a7012f }, /* int-mic */
7744 { 0x21, 0x0121401f }, /* HP out */
7748 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
7749 .type = HDA_FIXUP_FUNC,
7750 .v.func = alc271_hp_gate_mic_jack,
7752 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7754 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7755 .type = HDA_FIXUP_FUNC,
7756 .v.func = alc269_fixup_limit_int_mic_boost,
7758 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7760 [ALC269_FIXUP_ACER_AC700] = {
7761 .type = HDA_FIXUP_PINS,
7762 .v.pins = (const struct hda_pintbl[]) {
7763 { 0x12, 0x99a3092f }, /* int-mic */
7764 { 0x14, 0x99130110 }, /* speaker */
7765 { 0x18, 0x03a11c20 }, /* mic */
7766 { 0x1e, 0x0346101e }, /* SPDIF1 */
7767 { 0x21, 0x0321101f }, /* HP out */
7771 .chain_id = ALC271_FIXUP_DMIC,
7773 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7774 .type = HDA_FIXUP_FUNC,
7775 .v.func = alc269_fixup_limit_int_mic_boost,
7777 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7779 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7780 .type = HDA_FIXUP_FUNC,
7781 .v.func = alc269_fixup_limit_int_mic_boost,
7783 .chain_id = ALC269VB_FIXUP_DMIC,
7785 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7786 .type = HDA_FIXUP_VERBS,
7787 .v.verbs = (const struct hda_verb[]) {
7788 /* class-D output amp +5dB */
7789 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7790 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7794 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7796 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7797 .type = HDA_FIXUP_PINS,
7798 .v.pins = (const struct hda_pintbl[]) {
7799 { 0x18, 0x01a110f0 }, /* use as headset mic */
7803 .chain_id = ALC269_FIXUP_HEADSET_MIC
7805 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7806 .type = HDA_FIXUP_FUNC,
7807 .v.func = alc269_fixup_limit_int_mic_boost,
7809 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7811 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7812 .type = HDA_FIXUP_PINS,
7813 .v.pins = (const struct hda_pintbl[]) {
7814 { 0x12, 0x99a3092f }, /* int-mic */
7815 { 0x18, 0x03a11d20 }, /* mic */
7816 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7820 [ALC283_FIXUP_CHROME_BOOK] = {
7821 .type = HDA_FIXUP_FUNC,
7822 .v.func = alc283_fixup_chromebook,
7824 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7825 .type = HDA_FIXUP_FUNC,
7826 .v.func = alc283_fixup_sense_combo_jack,
7828 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7830 [ALC282_FIXUP_ASUS_TX300] = {
7831 .type = HDA_FIXUP_FUNC,
7832 .v.func = alc282_fixup_asus_tx300,
7834 [ALC283_FIXUP_INT_MIC] = {
7835 .type = HDA_FIXUP_VERBS,
7836 .v.verbs = (const struct hda_verb[]) {
7837 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7838 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7842 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7844 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7845 .type = HDA_FIXUP_PINS,
7846 .v.pins = (const struct hda_pintbl[]) {
7847 { 0x17, 0x90170112 }, /* subwoofer */
7851 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7853 [ALC290_FIXUP_SUBWOOFER] = {
7854 .type = HDA_FIXUP_PINS,
7855 .v.pins = (const struct hda_pintbl[]) {
7856 { 0x17, 0x90170112 }, /* subwoofer */
7860 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7862 [ALC290_FIXUP_MONO_SPEAKERS] = {
7863 .type = HDA_FIXUP_FUNC,
7864 .v.func = alc290_fixup_mono_speakers,
7866 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7867 .type = HDA_FIXUP_FUNC,
7868 .v.func = alc290_fixup_mono_speakers,
7870 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7872 [ALC269_FIXUP_THINKPAD_ACPI] = {
7873 .type = HDA_FIXUP_FUNC,
7874 .v.func = alc_fixup_thinkpad_acpi,
7876 .chain_id = ALC269_FIXUP_SKU_IGNORE,
7878 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7879 .type = HDA_FIXUP_FUNC,
7880 .v.func = alc_fixup_inv_dmic,
7882 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7884 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
7885 .type = HDA_FIXUP_PINS,
7886 .v.pins = (const struct hda_pintbl[]) {
7887 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7891 .chain_id = ALC255_FIXUP_HEADSET_MODE
7893 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7894 .type = HDA_FIXUP_PINS,
7895 .v.pins = (const struct hda_pintbl[]) {
7896 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7900 .chain_id = ALC255_FIXUP_HEADSET_MODE
7902 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7903 .type = HDA_FIXUP_PINS,
7904 .v.pins = (const struct hda_pintbl[]) {
7905 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7906 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7910 .chain_id = ALC255_FIXUP_HEADSET_MODE
7912 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7913 .type = HDA_FIXUP_PINS,
7914 .v.pins = (const struct hda_pintbl[]) {
7915 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7919 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
7921 [ALC255_FIXUP_HEADSET_MODE] = {
7922 .type = HDA_FIXUP_FUNC,
7923 .v.func = alc_fixup_headset_mode_alc255,
7925 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7927 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7928 .type = HDA_FIXUP_FUNC,
7929 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
7931 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7932 .type = HDA_FIXUP_PINS,
7933 .v.pins = (const struct hda_pintbl[]) {
7934 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7935 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7939 .chain_id = ALC269_FIXUP_HEADSET_MODE
7941 [ALC292_FIXUP_TPT440_DOCK] = {
7942 .type = HDA_FIXUP_FUNC,
7943 .v.func = alc_fixup_tpt440_dock,
7945 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7947 [ALC292_FIXUP_TPT440] = {
7948 .type = HDA_FIXUP_FUNC,
7949 .v.func = alc_fixup_disable_aamix,
7951 .chain_id = ALC292_FIXUP_TPT440_DOCK,
7953 [ALC283_FIXUP_HEADSET_MIC] = {
7954 .type = HDA_FIXUP_PINS,
7955 .v.pins = (const struct hda_pintbl[]) {
7956 { 0x19, 0x04a110f0 },
7960 [ALC255_FIXUP_MIC_MUTE_LED] = {
7961 .type = HDA_FIXUP_FUNC,
7962 .v.func = alc_fixup_micmute_led,
7964 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
7965 .type = HDA_FIXUP_PINS,
7966 .v.pins = (const struct hda_pintbl[]) {
7967 { 0x12, 0x90a60130 },
7968 { 0x14, 0x90170110 },
7969 { 0x17, 0x40000008 },
7970 { 0x18, 0x411111f0 },
7971 { 0x19, 0x01a1913c },
7972 { 0x1a, 0x411111f0 },
7973 { 0x1b, 0x411111f0 },
7974 { 0x1d, 0x40f89b2d },
7975 { 0x1e, 0x411111f0 },
7976 { 0x21, 0x0321101f },
7980 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
7981 .type = HDA_FIXUP_FUNC,
7982 .v.func = alc269vb_fixup_aspire_e1_coef,
7984 [ALC280_FIXUP_HP_GPIO4] = {
7985 .type = HDA_FIXUP_FUNC,
7986 .v.func = alc280_fixup_hp_gpio4,
7988 [ALC286_FIXUP_HP_GPIO_LED] = {
7989 .type = HDA_FIXUP_FUNC,
7990 .v.func = alc286_fixup_hp_gpio_led,
7992 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
7993 .type = HDA_FIXUP_FUNC,
7994 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
7996 [ALC280_FIXUP_HP_DOCK_PINS] = {
7997 .type = HDA_FIXUP_PINS,
7998 .v.pins = (const struct hda_pintbl[]) {
7999 { 0x1b, 0x21011020 }, /* line-out */
8000 { 0x1a, 0x01a1903c }, /* headset mic */
8001 { 0x18, 0x2181103f }, /* line-in */
8005 .chain_id = ALC280_FIXUP_HP_GPIO4
8007 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
8008 .type = HDA_FIXUP_PINS,
8009 .v.pins = (const struct hda_pintbl[]) {
8010 { 0x1b, 0x21011020 }, /* line-out */
8011 { 0x18, 0x2181103f }, /* line-in */
8015 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
8017 [ALC280_FIXUP_HP_9480M] = {
8018 .type = HDA_FIXUP_FUNC,
8019 .v.func = alc280_fixup_hp_9480m,
8021 [ALC245_FIXUP_HP_X360_AMP] = {
8022 .type = HDA_FIXUP_FUNC,
8023 .v.func = alc245_fixup_hp_x360_amp,
8025 .chain_id = ALC245_FIXUP_HP_GPIO_LED
8027 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
8028 .type = HDA_FIXUP_FUNC,
8029 .v.func = alc_fixup_headset_mode_dell_alc288,
8031 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8033 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8034 .type = HDA_FIXUP_PINS,
8035 .v.pins = (const struct hda_pintbl[]) {
8036 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8037 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8041 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
8043 [ALC288_FIXUP_DISABLE_AAMIX] = {
8044 .type = HDA_FIXUP_FUNC,
8045 .v.func = alc_fixup_disable_aamix,
8047 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
8049 [ALC288_FIXUP_DELL_XPS_13] = {
8050 .type = HDA_FIXUP_FUNC,
8051 .v.func = alc_fixup_dell_xps13,
8053 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
8055 [ALC292_FIXUP_DISABLE_AAMIX] = {
8056 .type = HDA_FIXUP_FUNC,
8057 .v.func = alc_fixup_disable_aamix,
8059 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8061 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8062 .type = HDA_FIXUP_FUNC,
8063 .v.func = alc_fixup_disable_aamix,
8065 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8067 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8068 .type = HDA_FIXUP_FUNC,
8069 .v.func = alc_fixup_dell_xps13,
8071 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
8073 [ALC292_FIXUP_DELL_E7X] = {
8074 .type = HDA_FIXUP_FUNC,
8075 .v.func = alc_fixup_micmute_led,
8076 /* micmute fixup must be applied at last */
8077 .chained_before = true,
8078 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8080 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8081 .type = HDA_FIXUP_PINS,
8082 .v.pins = (const struct hda_pintbl[]) {
8083 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8086 .chained_before = true,
8087 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8089 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8090 .type = HDA_FIXUP_PINS,
8091 .v.pins = (const struct hda_pintbl[]) {
8092 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8093 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8097 .chain_id = ALC269_FIXUP_HEADSET_MODE
8099 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8100 .type = HDA_FIXUP_PINS,
8101 .v.pins = (const struct hda_pintbl[]) {
8102 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8106 .chain_id = ALC269_FIXUP_HEADSET_MODE
8108 [ALC275_FIXUP_DELL_XPS] = {
8109 .type = HDA_FIXUP_VERBS,
8110 .v.verbs = (const struct hda_verb[]) {
8111 /* Enables internal speaker */
8112 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8113 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8114 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8115 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8119 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8120 .type = HDA_FIXUP_FUNC,
8121 .v.func = alc_fixup_disable_aamix,
8123 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8125 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8126 .type = HDA_FIXUP_FUNC,
8127 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8129 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8130 .type = HDA_FIXUP_FUNC,
8131 .v.func = alc_fixup_inv_dmic,
8133 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8135 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8136 .type = HDA_FIXUP_FUNC,
8137 .v.func = alc269_fixup_limit_int_mic_boost
8139 [ALC255_FIXUP_DELL_SPK_NOISE] = {
8140 .type = HDA_FIXUP_FUNC,
8141 .v.func = alc_fixup_disable_aamix,
8143 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8145 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
8146 .type = HDA_FIXUP_FUNC,
8147 .v.func = alc_fixup_disable_mic_vref,
8149 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8151 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8152 .type = HDA_FIXUP_VERBS,
8153 .v.verbs = (const struct hda_verb[]) {
8154 /* Disable pass-through path for FRONT 14h */
8155 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8156 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8160 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
8162 [ALC280_FIXUP_HP_HEADSET_MIC] = {
8163 .type = HDA_FIXUP_FUNC,
8164 .v.func = alc_fixup_disable_aamix,
8166 .chain_id = ALC269_FIXUP_HEADSET_MIC,
8168 [ALC221_FIXUP_HP_FRONT_MIC] = {
8169 .type = HDA_FIXUP_PINS,
8170 .v.pins = (const struct hda_pintbl[]) {
8171 { 0x19, 0x02a19020 }, /* Front Mic */
8175 [ALC292_FIXUP_TPT460] = {
8176 .type = HDA_FIXUP_FUNC,
8177 .v.func = alc_fixup_tpt440_dock,
8179 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8181 [ALC298_FIXUP_SPK_VOLUME] = {
8182 .type = HDA_FIXUP_FUNC,
8183 .v.func = alc298_fixup_speaker_volume,
8185 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
8187 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8188 .type = HDA_FIXUP_FUNC,
8189 .v.func = alc298_fixup_speaker_volume,
8191 [ALC295_FIXUP_DISABLE_DAC3] = {
8192 .type = HDA_FIXUP_FUNC,
8193 .v.func = alc295_fixup_disable_dac3,
8195 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8196 .type = HDA_FIXUP_FUNC,
8197 .v.func = alc285_fixup_speaker2_to_dac1,
8199 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8201 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8202 .type = HDA_FIXUP_FUNC,
8203 .v.func = alc285_fixup_speaker2_to_dac1,
8205 .chain_id = ALC245_FIXUP_CS35L41_SPI_2
8207 [ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8208 .type = HDA_FIXUP_PINS,
8209 .v.pins = (const struct hda_pintbl[]) {
8210 { 0x19, 0x03a11050 },
8211 { 0x1b, 0x03a11c30 },
8215 .chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8217 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8218 .type = HDA_FIXUP_PINS,
8219 .v.pins = (const struct hda_pintbl[]) {
8220 { 0x14, 0x90170120 },
8224 .chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8226 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8227 .type = HDA_FIXUP_FUNC,
8228 .v.func = alc285_fixup_speaker2_to_dac1,
8230 .chain_id = ALC287_FIXUP_CS35L41_I2C_2
8232 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8233 .type = HDA_FIXUP_PINS,
8234 .v.pins = (const struct hda_pintbl[]) {
8235 { 0x19, 0x03a11050 },
8236 { 0x1b, 0x03a11c30 },
8240 .chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8242 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8243 .type = HDA_FIXUP_PINS,
8244 .v.pins = (const struct hda_pintbl[]) {
8245 { 0x1b, 0x90170151 },
8249 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8251 [ALC269_FIXUP_ATIV_BOOK_8] = {
8252 .type = HDA_FIXUP_FUNC,
8253 .v.func = alc_fixup_auto_mute_via_amp,
8255 .chain_id = ALC269_FIXUP_NO_SHUTUP
8257 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8258 .type = HDA_FIXUP_PINS,
8259 .v.pins = (const struct hda_pintbl[]) {
8260 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8261 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8265 .chain_id = ALC269_FIXUP_HEADSET_MODE
8267 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8268 .type = HDA_FIXUP_PINS,
8269 .v.pins = (const struct hda_pintbl[]) {
8270 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8271 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8275 .chain_id = ALC269_FIXUP_HEADSET_MODE
8277 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8278 .type = HDA_FIXUP_FUNC,
8279 .v.func = alc_fixup_headset_mode,
8281 [ALC256_FIXUP_ASUS_MIC] = {
8282 .type = HDA_FIXUP_PINS,
8283 .v.pins = (const struct hda_pintbl[]) {
8284 { 0x13, 0x90a60160 }, /* use as internal mic */
8285 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8289 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8291 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
8292 .type = HDA_FIXUP_FUNC,
8293 /* Set up GPIO2 for the speaker amp */
8294 .v.func = alc_fixup_gpio4,
8296 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8297 .type = HDA_FIXUP_PINS,
8298 .v.pins = (const struct hda_pintbl[]) {
8299 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8303 .chain_id = ALC269_FIXUP_HEADSET_MIC
8305 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8306 .type = HDA_FIXUP_VERBS,
8307 .v.verbs = (const struct hda_verb[]) {
8308 /* Enables internal speaker */
8309 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8310 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8314 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8316 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8317 .type = HDA_FIXUP_FUNC,
8318 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8320 .chain_id = ALC269_FIXUP_GPIO2
8322 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
8323 .type = HDA_FIXUP_VERBS,
8324 .v.verbs = (const struct hda_verb[]) {
8325 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8326 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8330 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8332 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8333 .type = HDA_FIXUP_PINS,
8334 .v.pins = (const struct hda_pintbl[]) {
8335 /* Change the mic location from front to right, otherwise there are
8336 two front mics with the same name, pulseaudio can't handle them.
8337 This is just a temporary workaround, after applying this fixup,
8338 there will be one "Front Mic" and one "Mic" in this machine.
8340 { 0x1a, 0x04a19040 },
8344 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8345 .type = HDA_FIXUP_PINS,
8346 .v.pins = (const struct hda_pintbl[]) {
8347 { 0x16, 0x0101102f }, /* Rear Headset HP */
8348 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8349 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8350 { 0x1b, 0x02011020 },
8354 .chain_id = ALC225_FIXUP_S3_POP_NOISE
8356 [ALC225_FIXUP_S3_POP_NOISE] = {
8357 .type = HDA_FIXUP_FUNC,
8358 .v.func = alc225_fixup_s3_pop_noise,
8360 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8362 [ALC700_FIXUP_INTEL_REFERENCE] = {
8363 .type = HDA_FIXUP_VERBS,
8364 .v.verbs = (const struct hda_verb[]) {
8365 /* Enables internal speaker */
8366 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8367 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8368 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8369 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8370 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8371 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8372 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8373 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8377 [ALC274_FIXUP_DELL_BIND_DACS] = {
8378 .type = HDA_FIXUP_FUNC,
8379 .v.func = alc274_fixup_bind_dacs,
8381 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8383 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8384 .type = HDA_FIXUP_PINS,
8385 .v.pins = (const struct hda_pintbl[]) {
8386 { 0x1b, 0x0401102f },
8390 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8392 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
8393 .type = HDA_FIXUP_FUNC,
8394 .v.func = alc_fixup_tpt470_dock,
8396 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8398 [ALC298_FIXUP_TPT470_DOCK] = {
8399 .type = HDA_FIXUP_FUNC,
8400 .v.func = alc_fixup_tpt470_dacs,
8402 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8404 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8405 .type = HDA_FIXUP_PINS,
8406 .v.pins = (const struct hda_pintbl[]) {
8407 { 0x14, 0x0201101f },
8411 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8413 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8414 .type = HDA_FIXUP_PINS,
8415 .v.pins = (const struct hda_pintbl[]) {
8416 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8420 .chain_id = ALC269_FIXUP_HEADSET_MIC
8422 [ALC295_FIXUP_HP_X360] = {
8423 .type = HDA_FIXUP_FUNC,
8424 .v.func = alc295_fixup_hp_top_speakers,
8426 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8428 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8429 .type = HDA_FIXUP_PINS,
8430 .v.pins = (const struct hda_pintbl[]) {
8431 { 0x19, 0x0181313f},
8435 .chain_id = ALC269_FIXUP_HEADSET_MIC
8437 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8438 .type = HDA_FIXUP_FUNC,
8439 .v.func = alc285_fixup_invalidate_dacs,
8441 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8443 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8444 .type = HDA_FIXUP_FUNC,
8445 .v.func = alc_fixup_auto_mute_via_amp,
8447 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8448 .type = HDA_FIXUP_PINS,
8449 .v.pins = (const struct hda_pintbl[]) {
8450 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8454 .chain_id = ALC269_FIXUP_HEADSET_MIC
8456 [ALC294_FIXUP_ASUS_MIC] = {
8457 .type = HDA_FIXUP_PINS,
8458 .v.pins = (const struct hda_pintbl[]) {
8459 { 0x13, 0x90a60160 }, /* use as internal mic */
8460 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8464 .chain_id = ALC269_FIXUP_HEADSET_MIC
8466 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8467 .type = HDA_FIXUP_PINS,
8468 .v.pins = (const struct hda_pintbl[]) {
8469 { 0x19, 0x01a1103c }, /* use as headset mic */
8473 .chain_id = ALC269_FIXUP_HEADSET_MIC
8475 [ALC294_FIXUP_ASUS_SPK] = {
8476 .type = HDA_FIXUP_VERBS,
8477 .v.verbs = (const struct hda_verb[]) {
8479 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8480 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
8481 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8482 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8486 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8488 [ALC295_FIXUP_CHROME_BOOK] = {
8489 .type = HDA_FIXUP_FUNC,
8490 .v.func = alc295_fixup_chromebook,
8492 .chain_id = ALC225_FIXUP_HEADSET_JACK
8494 [ALC225_FIXUP_HEADSET_JACK] = {
8495 .type = HDA_FIXUP_FUNC,
8496 .v.func = alc_fixup_headset_jack,
8498 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8499 .type = HDA_FIXUP_PINS,
8500 .v.pins = (const struct hda_pintbl[]) {
8501 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8505 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8507 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8508 .type = HDA_FIXUP_VERBS,
8509 .v.verbs = (const struct hda_verb[]) {
8510 /* Disable PCBEEP-IN passthrough */
8511 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8512 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8516 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8518 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8519 .type = HDA_FIXUP_PINS,
8520 .v.pins = (const struct hda_pintbl[]) {
8521 { 0x19, 0x03a11130 },
8522 { 0x1a, 0x90a60140 }, /* use as internal mic */
8526 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8528 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8529 .type = HDA_FIXUP_PINS,
8530 .v.pins = (const struct hda_pintbl[]) {
8531 { 0x16, 0x01011020 }, /* Rear Line out */
8532 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8536 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8538 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8539 .type = HDA_FIXUP_FUNC,
8540 .v.func = alc_fixup_auto_mute_via_amp,
8542 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8544 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8545 .type = HDA_FIXUP_FUNC,
8546 .v.func = alc_fixup_disable_mic_vref,
8548 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8550 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8551 .type = HDA_FIXUP_VERBS,
8552 .v.verbs = (const struct hda_verb[]) {
8553 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8554 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8558 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8560 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8561 .type = HDA_FIXUP_PINS,
8562 .v.pins = (const struct hda_pintbl[]) {
8563 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8567 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8569 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8570 .type = HDA_FIXUP_PINS,
8571 .v.pins = (const struct hda_pintbl[]) {
8572 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8576 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8578 [ALC299_FIXUP_PREDATOR_SPK] = {
8579 .type = HDA_FIXUP_PINS,
8580 .v.pins = (const struct hda_pintbl[]) {
8581 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8585 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
8586 .type = HDA_FIXUP_PINS,
8587 .v.pins = (const struct hda_pintbl[]) {
8588 { 0x19, 0x04a11040 },
8589 { 0x21, 0x04211020 },
8593 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8595 [ALC289_FIXUP_DELL_SPK1] = {
8596 .type = HDA_FIXUP_PINS,
8597 .v.pins = (const struct hda_pintbl[]) {
8598 { 0x14, 0x90170140 },
8602 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8604 [ALC289_FIXUP_DELL_SPK2] = {
8605 .type = HDA_FIXUP_PINS,
8606 .v.pins = (const struct hda_pintbl[]) {
8607 { 0x17, 0x90170130 }, /* bass spk */
8611 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8613 [ALC289_FIXUP_DUAL_SPK] = {
8614 .type = HDA_FIXUP_FUNC,
8615 .v.func = alc285_fixup_speaker2_to_dac1,
8617 .chain_id = ALC289_FIXUP_DELL_SPK2
8619 [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8620 .type = HDA_FIXUP_FUNC,
8621 .v.func = alc285_fixup_speaker2_to_dac1,
8623 .chain_id = ALC289_FIXUP_DELL_SPK1
8625 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8626 .type = HDA_FIXUP_FUNC,
8627 .v.func = alc285_fixup_speaker2_to_dac1,
8629 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8631 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
8632 .type = HDA_FIXUP_FUNC,
8633 /* The GPIO must be pulled to initialize the AMP */
8634 .v.func = alc_fixup_gpio4,
8636 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
8638 [ALC294_FIXUP_ASUS_ALLY] = {
8639 .type = HDA_FIXUP_FUNC,
8640 .v.func = cs35l41_fixup_i2c_two,
8642 .chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8644 [ALC294_FIXUP_ASUS_ALLY_PINS] = {
8645 .type = HDA_FIXUP_PINS,
8646 .v.pins = (const struct hda_pintbl[]) {
8647 { 0x19, 0x03a11050 },
8648 { 0x1a, 0x03a11c30 },
8649 { 0x21, 0x03211420 },
8653 .chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8655 [ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8656 .type = HDA_FIXUP_VERBS,
8657 .v.verbs = (const struct hda_verb[]) {
8658 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8659 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8660 { 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8661 { 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8662 { 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8663 { 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8664 { 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8665 { 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8666 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8667 { 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8668 { 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8669 { 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8673 .chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8675 [ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8676 .type = HDA_FIXUP_FUNC,
8677 .v.func = alc285_fixup_speaker2_to_dac1,
8679 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8680 .type = HDA_FIXUP_FUNC,
8681 .v.func = alc285_fixup_thinkpad_x1_gen7,
8683 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8685 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8686 .type = HDA_FIXUP_FUNC,
8687 .v.func = alc_fixup_headset_jack,
8689 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
8691 [ALC294_FIXUP_ASUS_HPE] = {
8692 .type = HDA_FIXUP_VERBS,
8693 .v.verbs = (const struct hda_verb[]) {
8695 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8696 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8700 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8702 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8703 .type = HDA_FIXUP_PINS,
8704 .v.pins = (const struct hda_pintbl[]) {
8705 { 0x19, 0x03a11050 }, /* front HP mic */
8706 { 0x1a, 0x01a11830 }, /* rear external mic */
8707 { 0x21, 0x03211020 }, /* front HP out */
8711 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8713 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8714 .type = HDA_FIXUP_VERBS,
8715 .v.verbs = (const struct hda_verb[]) {
8716 /* set 0x15 to HP-OUT ctrl */
8717 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8718 /* unmute the 0x15 amp */
8719 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8723 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8725 [ALC294_FIXUP_ASUS_GX502_HP] = {
8726 .type = HDA_FIXUP_FUNC,
8727 .v.func = alc294_fixup_gx502_hp,
8729 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8730 .type = HDA_FIXUP_PINS,
8731 .v.pins = (const struct hda_pintbl[]) {
8732 { 0x19, 0x01a11050 }, /* rear HP mic */
8733 { 0x1a, 0x01a11830 }, /* rear external mic */
8734 { 0x21, 0x012110f0 }, /* rear HP out */
8738 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8740 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8741 .type = HDA_FIXUP_VERBS,
8742 .v.verbs = (const struct hda_verb[]) {
8743 /* set 0x15 to HP-OUT ctrl */
8744 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8745 /* unmute the 0x15 amp */
8746 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8747 /* set 0x1b to HP-OUT */
8748 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8752 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8754 [ALC294_FIXUP_ASUS_GU502_HP] = {
8755 .type = HDA_FIXUP_FUNC,
8756 .v.func = alc294_fixup_gu502_hp,
8758 [ALC294_FIXUP_ASUS_G513_PINS] = {
8759 .type = HDA_FIXUP_PINS,
8760 .v.pins = (const struct hda_pintbl[]) {
8761 { 0x19, 0x03a11050 }, /* front HP mic */
8762 { 0x1a, 0x03a11c30 }, /* rear external mic */
8763 { 0x21, 0x03211420 }, /* front HP out */
8767 [ALC285_FIXUP_ASUS_G533Z_PINS] = {
8768 .type = HDA_FIXUP_PINS,
8769 .v.pins = (const struct hda_pintbl[]) {
8770 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8771 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
8772 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8773 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8774 { 0x21, 0x03211420 },
8778 [ALC294_FIXUP_ASUS_COEF_1B] = {
8779 .type = HDA_FIXUP_VERBS,
8780 .v.verbs = (const struct hda_verb[]) {
8781 /* Set bit 10 to correct noisy output after reboot from
8782 * Windows 10 (due to pop noise reduction?)
8784 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8785 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8789 .chain_id = ALC289_FIXUP_ASUS_GA401,
8791 [ALC285_FIXUP_HP_GPIO_LED] = {
8792 .type = HDA_FIXUP_FUNC,
8793 .v.func = alc285_fixup_hp_gpio_led,
8795 [ALC285_FIXUP_HP_MUTE_LED] = {
8796 .type = HDA_FIXUP_FUNC,
8797 .v.func = alc285_fixup_hp_mute_led,
8799 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
8800 .type = HDA_FIXUP_FUNC,
8801 .v.func = alc285_fixup_hp_spectre_x360_mute_led,
8803 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
8804 .type = HDA_FIXUP_FUNC,
8805 .v.func = alc236_fixup_hp_mute_led_coefbit2,
8807 [ALC236_FIXUP_HP_GPIO_LED] = {
8808 .type = HDA_FIXUP_FUNC,
8809 .v.func = alc236_fixup_hp_gpio_led,
8811 [ALC236_FIXUP_HP_MUTE_LED] = {
8812 .type = HDA_FIXUP_FUNC,
8813 .v.func = alc236_fixup_hp_mute_led,
8815 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8816 .type = HDA_FIXUP_FUNC,
8817 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8819 [ALC298_FIXUP_SAMSUNG_AMP] = {
8820 .type = HDA_FIXUP_FUNC,
8821 .v.func = alc298_fixup_samsung_amp,
8823 .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
8825 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8826 .type = HDA_FIXUP_VERBS,
8827 .v.verbs = (const struct hda_verb[]) {
8828 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8832 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8833 .type = HDA_FIXUP_VERBS,
8834 .v.verbs = (const struct hda_verb[]) {
8835 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8836 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8840 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8841 .type = HDA_FIXUP_PINS,
8842 .v.pins = (const struct hda_pintbl[]) {
8843 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8847 .chain_id = ALC269_FIXUP_HEADSET_MODE
8849 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8850 .type = HDA_FIXUP_PINS,
8851 .v.pins = (const struct hda_pintbl[]) {
8852 { 0x14, 0x90100120 }, /* use as internal speaker */
8853 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8854 { 0x1a, 0x01011020 }, /* use as line out */
8858 .chain_id = ALC269_FIXUP_HEADSET_MIC
8860 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8861 .type = HDA_FIXUP_PINS,
8862 .v.pins = (const struct hda_pintbl[]) {
8863 { 0x18, 0x02a11030 }, /* use as headset mic */
8867 .chain_id = ALC269_FIXUP_HEADSET_MIC
8869 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8870 .type = HDA_FIXUP_PINS,
8871 .v.pins = (const struct hda_pintbl[]) {
8872 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8876 .chain_id = ALC269_FIXUP_HEADSET_MIC
8878 [ALC289_FIXUP_ASUS_GA401] = {
8879 .type = HDA_FIXUP_FUNC,
8880 .v.func = alc289_fixup_asus_ga401,
8882 .chain_id = ALC289_FIXUP_ASUS_GA502,
8884 [ALC289_FIXUP_ASUS_GA502] = {
8885 .type = HDA_FIXUP_PINS,
8886 .v.pins = (const struct hda_pintbl[]) {
8887 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8891 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
8892 .type = HDA_FIXUP_PINS,
8893 .v.pins = (const struct hda_pintbl[]) {
8894 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
8898 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8900 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
8901 .type = HDA_FIXUP_FUNC,
8902 .v.func = alc285_fixup_hp_gpio_amp_init,
8904 .chain_id = ALC285_FIXUP_HP_GPIO_LED
8906 [ALC269_FIXUP_CZC_B20] = {
8907 .type = HDA_FIXUP_PINS,
8908 .v.pins = (const struct hda_pintbl[]) {
8909 { 0x12, 0x411111f0 },
8910 { 0x14, 0x90170110 }, /* speaker */
8911 { 0x15, 0x032f1020 }, /* HP out */
8912 { 0x17, 0x411111f0 },
8913 { 0x18, 0x03ab1040 }, /* mic */
8914 { 0x19, 0xb7a7013f },
8915 { 0x1a, 0x0181305f },
8916 { 0x1b, 0x411111f0 },
8917 { 0x1d, 0x411111f0 },
8918 { 0x1e, 0x411111f0 },
8921 .chain_id = ALC269_FIXUP_DMIC,
8923 [ALC269_FIXUP_CZC_TMI] = {
8924 .type = HDA_FIXUP_PINS,
8925 .v.pins = (const struct hda_pintbl[]) {
8926 { 0x12, 0x4000c000 },
8927 { 0x14, 0x90170110 }, /* speaker */
8928 { 0x15, 0x0421401f }, /* HP out */
8929 { 0x17, 0x411111f0 },
8930 { 0x18, 0x04a19020 }, /* mic */
8931 { 0x19, 0x411111f0 },
8932 { 0x1a, 0x411111f0 },
8933 { 0x1b, 0x411111f0 },
8934 { 0x1d, 0x40448505 },
8935 { 0x1e, 0x411111f0 },
8936 { 0x20, 0x8000ffff },
8939 .chain_id = ALC269_FIXUP_DMIC,
8941 [ALC269_FIXUP_CZC_L101] = {
8942 .type = HDA_FIXUP_PINS,
8943 .v.pins = (const struct hda_pintbl[]) {
8944 { 0x12, 0x40000000 },
8945 { 0x14, 0x01014010 }, /* speaker */
8946 { 0x15, 0x411111f0 }, /* HP out */
8947 { 0x16, 0x411111f0 },
8948 { 0x18, 0x01a19020 }, /* mic */
8949 { 0x19, 0x02a19021 },
8950 { 0x1a, 0x0181302f },
8951 { 0x1b, 0x0221401f },
8952 { 0x1c, 0x411111f0 },
8953 { 0x1d, 0x4044c601 },
8954 { 0x1e, 0x411111f0 },
8957 .chain_id = ALC269_FIXUP_DMIC,
8959 [ALC269_FIXUP_LEMOTE_A1802] = {
8960 .type = HDA_FIXUP_PINS,
8961 .v.pins = (const struct hda_pintbl[]) {
8962 { 0x12, 0x40000000 },
8963 { 0x14, 0x90170110 }, /* speaker */
8964 { 0x17, 0x411111f0 },
8965 { 0x18, 0x03a19040 }, /* mic1 */
8966 { 0x19, 0x90a70130 }, /* mic2 */
8967 { 0x1a, 0x411111f0 },
8968 { 0x1b, 0x411111f0 },
8969 { 0x1d, 0x40489d2d },
8970 { 0x1e, 0x411111f0 },
8971 { 0x20, 0x0003ffff },
8972 { 0x21, 0x03214020 },
8975 .chain_id = ALC269_FIXUP_DMIC,
8977 [ALC269_FIXUP_LEMOTE_A190X] = {
8978 .type = HDA_FIXUP_PINS,
8979 .v.pins = (const struct hda_pintbl[]) {
8980 { 0x14, 0x99130110 }, /* speaker */
8981 { 0x15, 0x0121401f }, /* HP out */
8982 { 0x18, 0x01a19c20 }, /* rear mic */
8983 { 0x19, 0x99a3092f }, /* front mic */
8984 { 0x1b, 0x0201401f }, /* front lineout */
8987 .chain_id = ALC269_FIXUP_DMIC,
8989 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
8990 .type = HDA_FIXUP_PINS,
8991 .v.pins = (const struct hda_pintbl[]) {
8992 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8996 .chain_id = ALC269_FIXUP_HEADSET_MODE
8998 [ALC256_FIXUP_INTEL_NUC10] = {
8999 .type = HDA_FIXUP_PINS,
9000 .v.pins = (const struct hda_pintbl[]) {
9001 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9005 .chain_id = ALC269_FIXUP_HEADSET_MODE
9007 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
9008 .type = HDA_FIXUP_VERBS,
9009 .v.verbs = (const struct hda_verb[]) {
9010 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9011 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9015 .chain_id = ALC289_FIXUP_ASUS_GA502
9017 [ALC274_FIXUP_HP_MIC] = {
9018 .type = HDA_FIXUP_VERBS,
9019 .v.verbs = (const struct hda_verb[]) {
9020 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9021 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9025 [ALC274_FIXUP_HP_HEADSET_MIC] = {
9026 .type = HDA_FIXUP_FUNC,
9027 .v.func = alc274_fixup_hp_headset_mic,
9029 .chain_id = ALC274_FIXUP_HP_MIC
9031 [ALC274_FIXUP_HP_ENVY_GPIO] = {
9032 .type = HDA_FIXUP_FUNC,
9033 .v.func = alc274_fixup_hp_envy_gpio,
9035 [ALC256_FIXUP_ASUS_HPE] = {
9036 .type = HDA_FIXUP_VERBS,
9037 .v.verbs = (const struct hda_verb[]) {
9039 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
9040 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
9044 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9046 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9047 .type = HDA_FIXUP_FUNC,
9048 .v.func = alc_fixup_headset_jack,
9050 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
9052 [ALC287_FIXUP_HP_GPIO_LED] = {
9053 .type = HDA_FIXUP_FUNC,
9054 .v.func = alc287_fixup_hp_gpio_led,
9056 [ALC256_FIXUP_HP_HEADSET_MIC] = {
9057 .type = HDA_FIXUP_FUNC,
9058 .v.func = alc274_fixup_hp_headset_mic,
9060 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9061 .type = HDA_FIXUP_FUNC,
9062 .v.func = alc_fixup_no_int_mic,
9064 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9066 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9067 .type = HDA_FIXUP_PINS,
9068 .v.pins = (const struct hda_pintbl[]) {
9069 { 0x1b, 0x411111f0 },
9070 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9074 .chain_id = ALC269_FIXUP_HEADSET_MODE
9076 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9077 .type = HDA_FIXUP_FUNC,
9078 .v.func = alc269_fixup_limit_int_mic_boost,
9080 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9082 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
9083 .type = HDA_FIXUP_PINS,
9084 .v.pins = (const struct hda_pintbl[]) {
9085 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9086 { 0x1a, 0x90a1092f }, /* use as internal mic */
9090 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9092 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9093 .type = HDA_FIXUP_FUNC,
9094 .v.func = alc285_fixup_ideapad_s740_coef,
9096 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9098 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9099 .type = HDA_FIXUP_FUNC,
9100 .v.func = alc269_fixup_limit_int_mic_boost,
9102 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9104 [ALC295_FIXUP_ASUS_DACS] = {
9105 .type = HDA_FIXUP_FUNC,
9106 .v.func = alc295_fixup_asus_dacs,
9108 [ALC295_FIXUP_HP_OMEN] = {
9109 .type = HDA_FIXUP_PINS,
9110 .v.pins = (const struct hda_pintbl[]) {
9111 { 0x12, 0xb7a60130 },
9112 { 0x13, 0x40000000 },
9113 { 0x14, 0x411111f0 },
9114 { 0x16, 0x411111f0 },
9115 { 0x17, 0x90170110 },
9116 { 0x18, 0x411111f0 },
9117 { 0x19, 0x02a11030 },
9118 { 0x1a, 0x411111f0 },
9119 { 0x1b, 0x04a19030 },
9120 { 0x1d, 0x40600001 },
9121 { 0x1e, 0x411111f0 },
9122 { 0x21, 0x03211020 },
9126 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9128 [ALC285_FIXUP_HP_SPECTRE_X360] = {
9129 .type = HDA_FIXUP_FUNC,
9130 .v.func = alc285_fixup_hp_spectre_x360,
9132 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9133 .type = HDA_FIXUP_FUNC,
9134 .v.func = alc285_fixup_hp_spectre_x360_eb1
9136 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9137 .type = HDA_FIXUP_FUNC,
9138 .v.func = alc285_fixup_ideapad_s740_coef,
9140 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9142 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9143 .type = HDA_FIXUP_FUNC,
9144 .v.func = alc_fixup_no_shutup,
9146 .chain_id = ALC283_FIXUP_HEADSET_MIC,
9148 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9149 .type = HDA_FIXUP_PINS,
9150 .v.pins = (const struct hda_pintbl[]) {
9151 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9155 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9157 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9158 .type = HDA_FIXUP_FUNC,
9159 .v.func = alc269_fixup_limit_int_mic_boost,
9161 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9163 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9164 .type = HDA_FIXUP_FUNC,
9165 .v.func = alc285_fixup_ideapad_s740_coef,
9167 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9169 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9170 .type = HDA_FIXUP_FUNC,
9171 .v.func = alc287_fixup_legion_15imhg05_speakers,
9173 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9175 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9176 .type = HDA_FIXUP_VERBS,
9177 //.v.verbs = legion_15imhg05_coefs,
9178 .v.verbs = (const struct hda_verb[]) {
9179 // set left speaker Legion 7i.
9180 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9181 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9183 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9184 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9185 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9186 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9187 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9189 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9190 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9191 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9192 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9193 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9195 // set right speaker Legion 7i.
9196 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9197 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9199 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9200 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9201 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9202 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9203 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9205 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9206 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9207 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9208 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9209 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9213 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9215 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9216 .type = HDA_FIXUP_FUNC,
9217 .v.func = alc287_fixup_legion_15imhg05_speakers,
9219 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9221 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9222 .type = HDA_FIXUP_VERBS,
9223 .v.verbs = (const struct hda_verb[]) {
9224 // set left speaker Yoga 7i.
9225 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9226 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9228 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9229 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9230 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9231 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9232 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9234 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9235 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9236 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9237 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9238 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9240 // set right speaker Yoga 7i.
9241 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9242 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9244 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9245 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9246 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9247 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9248 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9250 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9251 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9252 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9253 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9254 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9258 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9260 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
9261 .type = HDA_FIXUP_FUNC,
9262 .v.func = alc298_fixup_lenovo_c940_duet7,
9264 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9265 .type = HDA_FIXUP_VERBS,
9266 .v.verbs = (const struct hda_verb[]) {
9267 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9268 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9269 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9270 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9271 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9272 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9273 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9274 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9275 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9276 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9277 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9278 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9279 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9280 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9284 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9286 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
9287 .type = HDA_FIXUP_FUNC,
9288 .v.func = alc256_fixup_set_coef_defaults,
9290 [ALC245_FIXUP_HP_GPIO_LED] = {
9291 .type = HDA_FIXUP_FUNC,
9292 .v.func = alc245_fixup_hp_gpio_led,
9294 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9295 .type = HDA_FIXUP_PINS,
9296 .v.pins = (const struct hda_pintbl[]) {
9297 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9301 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9303 [ALC233_FIXUP_NO_AUDIO_JACK] = {
9304 .type = HDA_FIXUP_FUNC,
9305 .v.func = alc233_fixup_no_audio_jack,
9307 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9308 .type = HDA_FIXUP_FUNC,
9309 .v.func = alc256_fixup_mic_no_presence_and_resume,
9311 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9313 [ALC287_FIXUP_LEGION_16ACHG6] = {
9314 .type = HDA_FIXUP_FUNC,
9315 .v.func = alc287_fixup_legion_16achg6_speakers,
9317 [ALC287_FIXUP_CS35L41_I2C_2] = {
9318 .type = HDA_FIXUP_FUNC,
9319 .v.func = cs35l41_fixup_i2c_two,
9321 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9322 .type = HDA_FIXUP_FUNC,
9323 .v.func = cs35l41_fixup_i2c_two,
9325 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9327 [ALC245_FIXUP_CS35L41_SPI_2] = {
9328 .type = HDA_FIXUP_FUNC,
9329 .v.func = cs35l41_fixup_spi_two,
9331 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9332 .type = HDA_FIXUP_FUNC,
9333 .v.func = cs35l41_fixup_spi_two,
9335 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9337 [ALC245_FIXUP_CS35L41_SPI_4] = {
9338 .type = HDA_FIXUP_FUNC,
9339 .v.func = cs35l41_fixup_spi_four,
9341 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9342 .type = HDA_FIXUP_FUNC,
9343 .v.func = cs35l41_fixup_spi_four,
9345 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9347 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9348 .type = HDA_FIXUP_VERBS,
9349 .v.verbs = (const struct hda_verb[]) {
9350 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9351 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9355 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9357 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9358 .type = HDA_FIXUP_FUNC,
9359 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
9361 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9363 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9364 .type = HDA_FIXUP_PINS,
9365 .v.pins = (const struct hda_pintbl[]) {
9366 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9370 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9372 [ALC287_FIXUP_LEGION_16ITHG6] = {
9373 .type = HDA_FIXUP_FUNC,
9374 .v.func = alc287_fixup_legion_16ithg6_speakers,
9376 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9377 .type = HDA_FIXUP_VERBS,
9378 .v.verbs = (const struct hda_verb[]) {
9379 // enable left speaker
9380 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9381 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9383 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9384 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9385 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9386 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9387 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9389 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9390 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9391 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9392 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9393 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9395 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9396 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9397 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9398 { 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9399 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9401 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9402 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9403 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9404 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9405 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9407 // enable right speaker
9408 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9409 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9411 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9412 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9413 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9414 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9415 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9417 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9418 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9419 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9420 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9421 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9423 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9424 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9425 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9426 { 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9427 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9429 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9430 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9431 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9432 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9433 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9438 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9439 .type = HDA_FIXUP_FUNC,
9440 .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9442 .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9444 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9445 .type = HDA_FIXUP_FUNC,
9446 .v.func = alc295_fixup_dell_inspiron_top_speakers,
9448 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9450 [ALC236_FIXUP_DELL_DUAL_CODECS] = {
9451 .type = HDA_FIXUP_PINS,
9452 .v.func = alc1220_fixup_gb_dual_codecs,
9454 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9456 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9457 .type = HDA_FIXUP_FUNC,
9458 .v.func = cs35l41_fixup_i2c_two,
9460 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9462 [ALC287_FIXUP_TAS2781_I2C] = {
9463 .type = HDA_FIXUP_FUNC,
9464 .v.func = tas2781_fixup_i2c,
9466 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9468 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9469 .type = HDA_FIXUP_FUNC,
9470 .v.func = alc245_fixup_hp_mute_led_coefbit,
9472 [ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9473 .type = HDA_FIXUP_FUNC,
9474 .v.func = alc245_fixup_hp_mute_led_coefbit,
9476 .chain_id = ALC245_FIXUP_HP_GPIO_LED
9478 [ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9479 .type = HDA_FIXUP_FUNC,
9480 .v.func = alc287_fixup_bind_dacs,
9482 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9483 .type = HDA_FIXUP_FUNC,
9484 .v.func = alc287_fixup_bind_dacs,
9486 .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9488 [ALC2XX_FIXUP_HEADSET_MIC] = {
9489 .type = HDA_FIXUP_FUNC,
9490 .v.func = alc_fixup_headset_mic,
9492 [ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9493 .type = HDA_FIXUP_FUNC,
9494 .v.func = cs35l41_fixup_spi_two,
9496 .chain_id = ALC289_FIXUP_DUAL_SPK
9500 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
9501 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
9502 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9503 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
9504 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
9505 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9506 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9507 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
9508 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9509 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9510 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
9511 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9512 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
9513 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
9514 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
9515 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
9516 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
9517 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
9518 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9519 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9520 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9521 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
9522 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
9523 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
9524 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
9525 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
9526 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9527 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9528 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9529 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
9530 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9531 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9532 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9533 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
9534 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
9535 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9536 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9537 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9538 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
9539 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9540 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
9541 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
9542 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
9543 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
9544 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
9545 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9546 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
9547 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
9548 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9549 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9550 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9551 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9552 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9553 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
9554 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
9555 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
9556 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9557 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9558 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
9559 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9560 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
9561 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9562 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9563 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9564 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9565 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9566 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9567 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9568 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9569 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9570 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
9571 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
9572 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
9573 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
9574 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9575 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
9576 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
9577 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9578 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9579 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9580 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9581 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
9582 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
9583 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
9584 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9585 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9586 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9587 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9588 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9589 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9590 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9591 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
9592 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
9593 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
9594 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
9595 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9596 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9597 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
9598 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
9599 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9600 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9601 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9602 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9603 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9604 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9605 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9606 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9607 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9608 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9609 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9610 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9611 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9612 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9613 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9614 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9615 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9616 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9617 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9618 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9619 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9620 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
9621 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
9622 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9623 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9624 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9625 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9626 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9627 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9628 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9629 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9630 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9631 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9632 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9633 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9634 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9635 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9636 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9637 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9638 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9639 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9640 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
9641 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
9642 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9643 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9644 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9645 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9646 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9647 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9648 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9649 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9650 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9651 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9652 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9653 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9654 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9655 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9656 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9657 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9658 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9659 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9660 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9661 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9662 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9663 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9664 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9665 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9666 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9667 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9668 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9669 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9670 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9671 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9672 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9673 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9674 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9675 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9676 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
9677 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9678 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9679 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9680 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9681 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
9682 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
9683 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
9684 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9685 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9686 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9687 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9688 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9689 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9690 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
9691 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9692 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
9693 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9694 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9695 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9696 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
9697 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9698 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9699 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
9700 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9701 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9702 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
9703 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
9704 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
9705 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9706 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9707 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9708 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
9709 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
9710 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9711 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9712 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9713 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9714 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9715 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9716 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9717 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9718 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
9719 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9720 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9721 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9722 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9723 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9724 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
9725 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9726 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9727 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9728 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9729 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9730 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9731 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9732 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9733 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9734 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9735 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9736 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9737 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9738 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9739 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9740 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9741 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9742 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
9743 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
9744 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
9745 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
9746 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9747 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
9748 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
9749 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9750 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
9751 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9752 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9753 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9754 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9755 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9756 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9757 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9758 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9759 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9760 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9761 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9762 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
9763 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9764 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
9765 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9766 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
9767 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
9768 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9769 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
9770 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9771 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9772 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9773 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9774 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9775 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9776 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
9777 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9778 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9779 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9780 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9781 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
9782 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9783 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9784 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9785 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9786 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9787 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9788 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9789 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9790 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9791 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9792 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9793 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9794 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9795 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9796 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9797 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9798 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9799 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
9800 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9801 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9802 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
9803 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9804 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
9805 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9806 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9807 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9808 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9809 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9810 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
9811 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9812 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9813 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9814 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9815 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9816 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9817 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9818 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9819 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
9820 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9821 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
9822 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9823 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9824 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9825 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9826 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9827 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
9828 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9829 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9830 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
9831 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
9832 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
9833 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
9834 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
9835 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
9836 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
9837 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650P", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9838 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9839 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604V", ALC285_FIXUP_ASUS_HEADSET_MIC),
9840 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603V", ALC285_FIXUP_ASUS_HEADSET_MIC),
9841 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601V", ALC285_FIXUP_ASUS_HEADSET_MIC),
9842 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
9843 SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301V", ALC285_FIXUP_ASUS_HEADSET_MIC),
9844 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
9845 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
9846 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
9847 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
9848 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
9849 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
9850 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
9851 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally RC71L_RC71L", ALC294_FIXUP_ASUS_ALLY),
9852 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
9853 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
9854 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
9855 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
9856 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
9857 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
9858 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
9859 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
9860 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
9861 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
9862 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
9863 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
9864 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
9865 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
9866 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9867 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9868 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
9869 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
9870 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9871 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JYR/JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
9872 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
9873 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS ROG Strix G17 2023 (G713PV)", ALC287_FIXUP_CS35L41_I2C_2),
9874 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
9875 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
9876 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
9877 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
9878 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
9879 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
9880 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
9881 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
9882 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
9883 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
9884 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
9885 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
9886 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
9887 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
9888 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
9889 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
9890 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
9891 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC245_FIXUP_CS35L41_SPI_2),
9892 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
9893 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
9894 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
9895 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
9896 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9897 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9898 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
9899 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
9900 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9901 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9902 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
9903 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9904 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9905 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
9906 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
9907 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
9908 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
9909 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
9910 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
9911 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
9912 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
9913 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9914 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9915 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9916 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9917 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9918 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
9919 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
9920 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
9921 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
9922 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
9923 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
9924 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
9925 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
9926 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
9927 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
9928 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
9929 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9930 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
9931 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
9932 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
9933 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
9934 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
9935 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
9936 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9937 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9938 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9939 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9940 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9941 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9942 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9943 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9944 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9945 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9946 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9947 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9948 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9949 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9950 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9951 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9952 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9953 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9954 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9955 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9956 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9957 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9958 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9959 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9960 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9961 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9962 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9963 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9964 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9965 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9966 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9967 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9968 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9969 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9970 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9971 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9972 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9973 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9974 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9975 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9976 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9977 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9978 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9979 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9980 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9981 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9982 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9983 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9984 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9985 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9986 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9987 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9988 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
9989 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9990 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9991 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9992 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9993 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9994 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
9995 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9996 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9997 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9998 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9999 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10000 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10001 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10002 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10003 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10004 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10005 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10006 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10007 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10008 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10009 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10010 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10011 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10012 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
10013 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10014 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10015 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10016 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10017 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10018 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
10019 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
10020 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
10021 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
10022 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
10023 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
10024 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
10025 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
10026 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
10027 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
10028 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
10029 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
10030 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
10031 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10032 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
10033 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
10034 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
10035 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10036 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10037 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
10038 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
10039 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10040 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10041 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10042 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
10043 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10044 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10045 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10046 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10047 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10048 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10049 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10050 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10051 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10052 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10053 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10054 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10055 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10056 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10057 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10058 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10059 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10060 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10061 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10062 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10063 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10064 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10065 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10066 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10067 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10068 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10069 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10070 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10071 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10072 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10073 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
10074 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
10075 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10076 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10077 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
10078 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10079 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10080 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
10081 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
10082 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10083 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10084 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10085 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
10086 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10087 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10088 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
10089 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
10090 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10091 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10092 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10093 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
10094 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10095 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10096 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10097 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10098 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10099 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10100 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10101 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10102 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
10103 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10104 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
10105 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10106 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
10107 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
10108 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10109 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
10110 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
10111 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
10112 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
10113 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
10114 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
10115 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
10116 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
10117 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10118 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10119 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10120 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10121 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10122 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10123 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10124 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
10125 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10126 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
10127 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
10128 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
10129 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10130 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10131 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10132 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
10133 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
10134 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10135 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
10136 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
10137 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
10138 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10139 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10140 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10141 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10142 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10143 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10144 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10145 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
10146 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10147 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
10148 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
10149 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
10150 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10151 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
10152 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
10153 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
10154 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
10155 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10158 /* Below is a quirk table taken from the old code.
10159 * Basically the device should work as is without the fixup table.
10160 * If BIOS doesn't give a proper info, enable the corresponding
10163 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10164 ALC269_FIXUP_AMIC),
10165 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
10166 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10167 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10168 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10169 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10170 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10171 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10172 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10173 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10174 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10175 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10176 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10177 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10178 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10179 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10180 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10181 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10182 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10183 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10184 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10185 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10186 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10187 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10188 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10189 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10190 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10191 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10192 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10193 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10194 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10195 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10196 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10197 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10198 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10199 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10200 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10201 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10202 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10203 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10208 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10209 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10210 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10211 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10212 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
10213 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
10217 static const struct hda_model_fixup alc269_fixup_models[] = {
10218 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10219 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
10220 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10221 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10222 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
10223 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
10224 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10225 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
10226 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
10227 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
10228 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10229 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
10230 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10231 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
10232 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10233 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
10234 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
10235 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
10236 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
10237 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
10238 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
10239 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
10240 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
10241 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
10242 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
10243 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10244 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10245 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10246 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10247 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10248 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10249 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10250 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10251 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10252 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10253 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10254 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10255 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10256 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10257 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10258 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10259 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10260 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10261 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10262 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10263 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10264 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10265 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10266 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10267 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10268 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10269 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10270 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10271 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10272 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10273 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10274 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10275 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10276 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10277 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10278 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10279 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10280 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10281 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10282 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
10283 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
10284 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
10285 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
10286 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10287 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10288 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10289 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10290 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10291 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10292 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10293 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10294 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10295 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10296 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10297 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10298 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10299 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
10300 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10301 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10302 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
10303 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
10304 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
10305 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
10306 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10307 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10308 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10309 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10310 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10311 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10312 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10313 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10314 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10315 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10316 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10317 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10318 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10319 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10320 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10321 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10322 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
10323 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10324 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
10325 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
10326 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
10327 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
10328 {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
10329 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
10330 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
10331 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
10332 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
10333 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
10334 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
10335 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
10336 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
10337 {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
10338 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
10339 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
10340 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
10343 #define ALC225_STANDARD_PINS \
10346 #define ALC256_STANDARD_PINS \
10347 {0x12, 0x90a60140}, \
10348 {0x14, 0x90170110}, \
10351 #define ALC282_STANDARD_PINS \
10354 #define ALC290_STANDARD_PINS \
10357 #define ALC292_STANDARD_PINS \
10358 {0x14, 0x90170110}, \
10361 #define ALC295_STANDARD_PINS \
10362 {0x12, 0xb7a60130}, \
10363 {0x14, 0x90170110}, \
10366 #define ALC298_STANDARD_PINS \
10367 {0x12, 0x90a60130}, \
10370 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
10371 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10372 {0x14, 0x01014020},
10373 {0x17, 0x90170110},
10374 {0x18, 0x02a11030},
10375 {0x19, 0x0181303F},
10376 {0x21, 0x0221102f}),
10377 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10378 {0x12, 0x90a601c0},
10379 {0x14, 0x90171120},
10380 {0x21, 0x02211030}),
10381 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10382 {0x14, 0x90170110},
10383 {0x1b, 0x90a70130},
10384 {0x21, 0x03211020}),
10385 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10386 {0x1a, 0x90a70130},
10387 {0x1b, 0x90170110},
10388 {0x21, 0x03211020}),
10389 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10390 ALC225_STANDARD_PINS,
10391 {0x12, 0xb7a60130},
10392 {0x14, 0x901701a0}),
10393 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10394 ALC225_STANDARD_PINS,
10395 {0x12, 0xb7a60130},
10396 {0x14, 0x901701b0}),
10397 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10398 ALC225_STANDARD_PINS,
10399 {0x12, 0xb7a60150},
10400 {0x14, 0x901701a0}),
10401 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10402 ALC225_STANDARD_PINS,
10403 {0x12, 0xb7a60150},
10404 {0x14, 0x901701b0}),
10405 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10406 ALC225_STANDARD_PINS,
10407 {0x12, 0xb7a60130},
10408 {0x1b, 0x90170110}),
10409 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10410 {0x1b, 0x01111010},
10411 {0x1e, 0x01451130},
10412 {0x21, 0x02211020}),
10413 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10414 {0x12, 0x90a60140},
10415 {0x14, 0x90170110},
10416 {0x19, 0x02a11030},
10417 {0x21, 0x02211020}),
10418 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10419 {0x14, 0x90170110},
10420 {0x19, 0x02a11030},
10421 {0x1a, 0x02a11040},
10422 {0x1b, 0x01014020},
10423 {0x21, 0x0221101f}),
10424 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10425 {0x14, 0x90170110},
10426 {0x19, 0x02a11030},
10427 {0x1a, 0x02a11040},
10428 {0x1b, 0x01011020},
10429 {0x21, 0x0221101f}),
10430 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10431 {0x14, 0x90170110},
10432 {0x19, 0x02a11020},
10433 {0x1a, 0x02a11030},
10434 {0x21, 0x0221101f}),
10435 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10436 {0x21, 0x02211010}),
10437 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10438 {0x14, 0x90170110},
10439 {0x19, 0x02a11020},
10440 {0x21, 0x02211030}),
10441 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
10442 {0x14, 0x90170110},
10443 {0x21, 0x02211020}),
10444 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10445 {0x14, 0x90170130},
10446 {0x21, 0x02211040}),
10447 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10448 {0x12, 0x90a60140},
10449 {0x14, 0x90170110},
10450 {0x21, 0x02211020}),
10451 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10452 {0x12, 0x90a60160},
10453 {0x14, 0x90170120},
10454 {0x21, 0x02211030}),
10455 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10456 {0x14, 0x90170110},
10457 {0x1b, 0x02011020},
10458 {0x21, 0x0221101f}),
10459 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10460 {0x14, 0x90170110},
10461 {0x1b, 0x01011020},
10462 {0x21, 0x0221101f}),
10463 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10464 {0x14, 0x90170130},
10465 {0x1b, 0x01014020},
10466 {0x21, 0x0221103f}),
10467 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10468 {0x14, 0x90170130},
10469 {0x1b, 0x01011020},
10470 {0x21, 0x0221103f}),
10471 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10472 {0x14, 0x90170130},
10473 {0x1b, 0x02011020},
10474 {0x21, 0x0221103f}),
10475 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10476 {0x14, 0x90170150},
10477 {0x1b, 0x02011020},
10478 {0x21, 0x0221105f}),
10479 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10480 {0x14, 0x90170110},
10481 {0x1b, 0x01014020},
10482 {0x21, 0x0221101f}),
10483 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10484 {0x12, 0x90a60160},
10485 {0x14, 0x90170120},
10486 {0x17, 0x90170140},
10487 {0x21, 0x0321102f}),
10488 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10489 {0x12, 0x90a60160},
10490 {0x14, 0x90170130},
10491 {0x21, 0x02211040}),
10492 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10493 {0x12, 0x90a60160},
10494 {0x14, 0x90170140},
10495 {0x21, 0x02211050}),
10496 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10497 {0x12, 0x90a60170},
10498 {0x14, 0x90170120},
10499 {0x21, 0x02211030}),
10500 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10501 {0x12, 0x90a60170},
10502 {0x14, 0x90170130},
10503 {0x21, 0x02211040}),
10504 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10505 {0x12, 0x90a60170},
10506 {0x14, 0x90171130},
10507 {0x21, 0x02211040}),
10508 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10509 {0x12, 0x90a60170},
10510 {0x14, 0x90170140},
10511 {0x21, 0x02211050}),
10512 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10513 {0x12, 0x90a60180},
10514 {0x14, 0x90170130},
10515 {0x21, 0x02211040}),
10516 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10517 {0x12, 0x90a60180},
10518 {0x14, 0x90170120},
10519 {0x21, 0x02211030}),
10520 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10521 {0x1b, 0x01011020},
10522 {0x21, 0x02211010}),
10523 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10524 {0x14, 0x90170110},
10525 {0x1b, 0x90a70130},
10526 {0x21, 0x04211020}),
10527 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10528 {0x14, 0x90170110},
10529 {0x1b, 0x90a70130},
10530 {0x21, 0x03211020}),
10531 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10532 {0x12, 0x90a60130},
10533 {0x14, 0x90170110},
10534 {0x21, 0x03211020}),
10535 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10536 {0x12, 0x90a60130},
10537 {0x14, 0x90170110},
10538 {0x21, 0x04211020}),
10539 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10540 {0x1a, 0x90a70130},
10541 {0x1b, 0x90170110},
10542 {0x21, 0x03211020}),
10543 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10544 {0x14, 0x90170110},
10545 {0x19, 0x02a11020},
10546 {0x21, 0x0221101f}),
10547 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
10548 {0x17, 0x90170110},
10549 {0x19, 0x03a11030},
10550 {0x21, 0x03211020}),
10551 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
10552 {0x12, 0x90a60130},
10553 {0x14, 0x90170110},
10554 {0x15, 0x0421101f},
10555 {0x1a, 0x04a11020}),
10556 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
10557 {0x12, 0x90a60140},
10558 {0x14, 0x90170110},
10559 {0x15, 0x0421101f},
10560 {0x18, 0x02811030},
10561 {0x1a, 0x04a1103f},
10562 {0x1b, 0x02011020}),
10563 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10564 ALC282_STANDARD_PINS,
10565 {0x12, 0x99a30130},
10566 {0x19, 0x03a11020},
10567 {0x21, 0x0321101f}),
10568 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10569 ALC282_STANDARD_PINS,
10570 {0x12, 0x99a30130},
10571 {0x19, 0x03a11020},
10572 {0x21, 0x03211040}),
10573 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10574 ALC282_STANDARD_PINS,
10575 {0x12, 0x99a30130},
10576 {0x19, 0x03a11030},
10577 {0x21, 0x03211020}),
10578 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10579 ALC282_STANDARD_PINS,
10580 {0x12, 0x99a30130},
10581 {0x19, 0x04a11020},
10582 {0x21, 0x0421101f}),
10583 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
10584 ALC282_STANDARD_PINS,
10585 {0x12, 0x90a60140},
10586 {0x19, 0x04a11030},
10587 {0x21, 0x04211020}),
10588 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10589 ALC282_STANDARD_PINS,
10590 {0x12, 0x90a609c0},
10591 {0x18, 0x03a11830},
10592 {0x19, 0x04a19831},
10593 {0x1a, 0x0481303f},
10594 {0x1b, 0x04211020},
10595 {0x21, 0x0321101f}),
10596 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10597 ALC282_STANDARD_PINS,
10598 {0x12, 0x90a60940},
10599 {0x18, 0x03a11830},
10600 {0x19, 0x04a19831},
10601 {0x1a, 0x0481303f},
10602 {0x1b, 0x04211020},
10603 {0x21, 0x0321101f}),
10604 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10605 ALC282_STANDARD_PINS,
10606 {0x12, 0x90a60130},
10607 {0x21, 0x0321101f}),
10608 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10609 {0x12, 0x90a60160},
10610 {0x14, 0x90170120},
10611 {0x21, 0x02211030}),
10612 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10613 ALC282_STANDARD_PINS,
10614 {0x12, 0x90a60130},
10615 {0x19, 0x03a11020},
10616 {0x21, 0x0321101f}),
10617 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10618 {0x12, 0x90a60130},
10619 {0x14, 0x90170110},
10620 {0x19, 0x04a11040},
10621 {0x21, 0x04211020}),
10622 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10623 {0x14, 0x90170110},
10624 {0x19, 0x04a11040},
10625 {0x1d, 0x40600001},
10626 {0x21, 0x04211020}),
10627 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
10628 {0x14, 0x90170110},
10629 {0x19, 0x04a11040},
10630 {0x21, 0x04211020}),
10631 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
10632 {0x14, 0x90170110},
10633 {0x17, 0x90170111},
10634 {0x19, 0x03a11030},
10635 {0x21, 0x03211020}),
10636 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10637 {0x17, 0x90170110},
10638 {0x19, 0x03a11030},
10639 {0x21, 0x03211020}),
10640 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10641 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
10642 {0x19, 0x04a11040},
10643 {0x21, 0x04211020}),
10644 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
10645 {0x12, 0x90a60130},
10646 {0x17, 0x90170110},
10647 {0x21, 0x02211020}),
10648 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
10649 {0x12, 0x90a60120},
10650 {0x14, 0x90170110},
10651 {0x21, 0x0321101f}),
10652 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10653 ALC290_STANDARD_PINS,
10654 {0x15, 0x04211040},
10655 {0x18, 0x90170112},
10656 {0x1a, 0x04a11020}),
10657 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10658 ALC290_STANDARD_PINS,
10659 {0x15, 0x04211040},
10660 {0x18, 0x90170110},
10661 {0x1a, 0x04a11020}),
10662 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10663 ALC290_STANDARD_PINS,
10664 {0x15, 0x0421101f},
10665 {0x1a, 0x04a11020}),
10666 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10667 ALC290_STANDARD_PINS,
10668 {0x15, 0x04211020},
10669 {0x1a, 0x04a11040}),
10670 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10671 ALC290_STANDARD_PINS,
10672 {0x14, 0x90170110},
10673 {0x15, 0x04211020},
10674 {0x1a, 0x04a11040}),
10675 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10676 ALC290_STANDARD_PINS,
10677 {0x14, 0x90170110},
10678 {0x15, 0x04211020},
10679 {0x1a, 0x04a11020}),
10680 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10681 ALC290_STANDARD_PINS,
10682 {0x14, 0x90170110},
10683 {0x15, 0x0421101f},
10684 {0x1a, 0x04a11020}),
10685 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10686 ALC292_STANDARD_PINS,
10687 {0x12, 0x90a60140},
10688 {0x16, 0x01014020},
10689 {0x19, 0x01a19030}),
10690 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10691 ALC292_STANDARD_PINS,
10692 {0x12, 0x90a60140},
10693 {0x16, 0x01014020},
10694 {0x18, 0x02a19031},
10695 {0x19, 0x01a1903e}),
10696 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
10697 ALC292_STANDARD_PINS,
10698 {0x12, 0x90a60140}),
10699 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10700 ALC292_STANDARD_PINS,
10701 {0x13, 0x90a60140},
10702 {0x16, 0x21014020},
10703 {0x19, 0x21a19030}),
10704 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10705 ALC292_STANDARD_PINS,
10706 {0x13, 0x90a60140}),
10707 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
10708 {0x17, 0x90170110},
10709 {0x21, 0x04211020}),
10710 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
10711 {0x14, 0x90170110},
10712 {0x1b, 0x90a70130},
10713 {0x21, 0x04211020}),
10714 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10715 {0x12, 0x90a60130},
10716 {0x17, 0x90170110},
10717 {0x21, 0x03211020}),
10718 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10719 {0x12, 0x90a60130},
10720 {0x17, 0x90170110},
10721 {0x21, 0x04211020}),
10722 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10723 {0x12, 0x90a60130},
10724 {0x17, 0x90170110},
10725 {0x21, 0x03211020}),
10726 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10727 {0x12, 0x90a60120},
10728 {0x17, 0x90170110},
10729 {0x21, 0x04211030}),
10730 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10731 {0x12, 0x90a60130},
10732 {0x17, 0x90170110},
10733 {0x21, 0x03211020}),
10734 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10735 {0x12, 0x90a60130},
10736 {0x17, 0x90170110},
10737 {0x21, 0x03211020}),
10738 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10739 {0x14, 0x90170110},
10740 {0x21, 0x04211020}),
10741 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10742 {0x14, 0x90170110},
10743 {0x21, 0x04211030}),
10744 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10745 ALC295_STANDARD_PINS,
10746 {0x17, 0x21014020},
10747 {0x18, 0x21a19030}),
10748 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10749 ALC295_STANDARD_PINS,
10750 {0x17, 0x21014040},
10751 {0x18, 0x21a19050}),
10752 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10753 ALC295_STANDARD_PINS),
10754 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10755 ALC298_STANDARD_PINS,
10756 {0x17, 0x90170110}),
10757 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10758 ALC298_STANDARD_PINS,
10759 {0x17, 0x90170140}),
10760 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10761 ALC298_STANDARD_PINS,
10762 {0x17, 0x90170150}),
10763 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10764 {0x12, 0xb7a60140},
10765 {0x13, 0xb7a60150},
10766 {0x17, 0x90170110},
10767 {0x1a, 0x03011020},
10768 {0x21, 0x03211030}),
10769 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10770 {0x12, 0xb7a60140},
10771 {0x17, 0x90170110},
10772 {0x1a, 0x03a11030},
10773 {0x21, 0x03211020}),
10774 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10775 ALC225_STANDARD_PINS,
10776 {0x12, 0xb7a60130},
10777 {0x17, 0x90170110}),
10778 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10779 {0x14, 0x01014010},
10780 {0x17, 0x90170120},
10781 {0x18, 0x02a11030},
10782 {0x19, 0x02a1103f},
10783 {0x21, 0x0221101f}),
10787 /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10788 * more machines, don't need to match all valid pins, just need to match
10789 * all the pins defined in the tbl. Just because of this reason, it is possible
10790 * that a single machine matches multiple tbls, so there is one limitation:
10791 * at most one tbl is allowed to define for the same vendor and same codec
10793 static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
10794 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10795 {0x19, 0x40000000},
10796 {0x1b, 0x40000000}),
10797 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10798 {0x19, 0x40000000},
10799 {0x1a, 0x40000000}),
10800 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10801 {0x19, 0x40000000},
10802 {0x1a, 0x40000000}),
10803 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
10804 {0x19, 0x40000000},
10805 {0x1a, 0x40000000}),
10806 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
10807 {0x19, 0x40000000}),
10811 static void alc269_fill_coef(struct hda_codec *codec)
10813 struct alc_spec *spec = codec->spec;
10816 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
10819 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
10820 alc_write_coef_idx(codec, 0xf, 0x960b);
10821 alc_write_coef_idx(codec, 0xe, 0x8817);
10824 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
10825 alc_write_coef_idx(codec, 0xf, 0x960b);
10826 alc_write_coef_idx(codec, 0xe, 0x8814);
10829 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
10830 /* Power up output pin */
10831 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
10834 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
10835 val = alc_read_coef_idx(codec, 0xd);
10836 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
10837 /* Capless ramp up clock control */
10838 alc_write_coef_idx(codec, 0xd, val | (1<<10));
10840 val = alc_read_coef_idx(codec, 0x17);
10841 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
10842 /* Class D power on reset */
10843 alc_write_coef_idx(codec, 0x17, val | (1<<7));
10848 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
10853 static int patch_alc269(struct hda_codec *codec)
10855 struct alc_spec *spec;
10858 err = alc_alloc_spec(codec, 0x0b);
10862 spec = codec->spec;
10863 spec->gen.shared_mic_vref_pin = 0x18;
10864 codec->power_save_node = 0;
10865 spec->en_3kpull_low = true;
10868 codec->patch_ops.suspend = alc269_suspend;
10869 codec->patch_ops.resume = alc269_resume;
10871 spec->shutup = alc_default_shutup;
10872 spec->init_hook = alc_default_init;
10874 switch (codec->core.vendor_id) {
10876 spec->codec_variant = ALC269_TYPE_ALC269VA;
10877 switch (alc_get_coef0(codec) & 0x00f0) {
10879 if (codec->bus->pci &&
10880 codec->bus->pci->subsystem_vendor == 0x1025 &&
10881 spec->cdefine.platform_type == 1)
10882 err = alc_codec_rename(codec, "ALC271X");
10883 spec->codec_variant = ALC269_TYPE_ALC269VB;
10886 if (codec->bus->pci &&
10887 codec->bus->pci->subsystem_vendor == 0x17aa &&
10888 codec->bus->pci->subsystem_device == 0x21f3)
10889 err = alc_codec_rename(codec, "ALC3202");
10890 spec->codec_variant = ALC269_TYPE_ALC269VC;
10893 spec->codec_variant = ALC269_TYPE_ALC269VD;
10896 alc_fix_pll_init(codec, 0x20, 0x04, 15);
10900 spec->shutup = alc269_shutup;
10901 spec->init_hook = alc269_fill_coef;
10902 alc269_fill_coef(codec);
10907 spec->codec_variant = ALC269_TYPE_ALC280;
10910 spec->codec_variant = ALC269_TYPE_ALC282;
10911 spec->shutup = alc282_shutup;
10912 spec->init_hook = alc282_init;
10916 spec->codec_variant = ALC269_TYPE_ALC283;
10917 spec->shutup = alc283_shutup;
10918 spec->init_hook = alc283_init;
10922 spec->codec_variant = ALC269_TYPE_ALC284;
10925 spec->codec_variant = ALC269_TYPE_ALC293;
10929 spec->codec_variant = ALC269_TYPE_ALC286;
10932 spec->codec_variant = ALC269_TYPE_ALC298;
10936 spec->codec_variant = ALC269_TYPE_ALC255;
10937 spec->shutup = alc256_shutup;
10938 spec->init_hook = alc256_init;
10944 spec->codec_variant = ALC269_TYPE_ALC256;
10945 spec->shutup = alc256_shutup;
10946 spec->init_hook = alc256_init;
10947 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
10948 if (codec->core.vendor_id == 0x10ec0236 &&
10949 codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
10950 spec->en_3kpull_low = false;
10953 spec->codec_variant = ALC269_TYPE_ALC257;
10954 spec->shutup = alc256_shutup;
10955 spec->init_hook = alc256_init;
10956 spec->gen.mixer_nid = 0;
10957 spec->en_3kpull_low = false;
10963 if (alc_get_coef0(codec) & 0x0010)
10964 spec->codec_variant = ALC269_TYPE_ALC245;
10966 spec->codec_variant = ALC269_TYPE_ALC215;
10967 spec->shutup = alc225_shutup;
10968 spec->init_hook = alc225_init;
10969 spec->gen.mixer_nid = 0;
10974 spec->codec_variant = ALC269_TYPE_ALC225;
10975 spec->shutup = alc225_shutup;
10976 spec->init_hook = alc225_init;
10977 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
10980 spec->codec_variant = ALC269_TYPE_ALC287;
10981 spec->shutup = alc225_shutup;
10982 spec->init_hook = alc225_init;
10983 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
10988 spec->codec_variant = ALC269_TYPE_ALC294;
10989 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
10990 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
10991 spec->init_hook = alc294_init;
10994 spec->codec_variant = ALC269_TYPE_ALC300;
10995 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
10998 spec->codec_variant = ALC269_TYPE_ALC623;
11004 spec->codec_variant = ALC269_TYPE_ALC700;
11005 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
11006 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
11007 spec->init_hook = alc294_init;
11012 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
11013 spec->has_alc5505_dsp = 1;
11014 spec->init_hook = alc5505_dsp_init;
11017 alc_pre_init(codec);
11019 snd_hda_pick_fixup(codec, alc269_fixup_models,
11020 alc269_fixup_tbl, alc269_fixups);
11021 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11022 * the quirk breaks the latter (bko#214101).
11023 * Clear the wrong entry.
11025 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11026 codec->core.vendor_id == 0x10ec0294) {
11027 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11028 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11031 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
11032 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
11033 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
11035 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11037 alc_auto_parse_customize_define(codec);
11039 if (has_cdefine_beep(codec))
11040 spec->gen.beep_nid = 0x01;
11042 /* automatic parse from the BIOS config */
11043 err = alc269_parse_auto_config(codec);
11047 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11048 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11053 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11066 static int alc861_parse_auto_config(struct hda_codec *codec)
11068 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
11069 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11070 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
11073 /* Pin config fixes */
11075 ALC861_FIXUP_FSC_AMILO_PI1505,
11076 ALC861_FIXUP_AMP_VREF_0F,
11077 ALC861_FIXUP_NO_JACK_DETECT,
11078 ALC861_FIXUP_ASUS_A6RP,
11079 ALC660_FIXUP_ASUS_W7J,
11082 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11083 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
11084 const struct hda_fixup *fix, int action)
11086 struct alc_spec *spec = codec->spec;
11089 if (action != HDA_FIXUP_ACT_INIT)
11091 val = snd_hda_codec_get_pin_target(codec, 0x0f);
11092 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11093 val |= AC_PINCTL_IN_EN;
11094 val |= AC_PINCTL_VREF_50;
11095 snd_hda_set_pin_ctl(codec, 0x0f, val);
11096 spec->gen.keep_vref_in_automute = 1;
11099 /* suppress the jack-detection */
11100 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
11101 const struct hda_fixup *fix, int action)
11103 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11104 codec->no_jack_detect = 1;
11107 static const struct hda_fixup alc861_fixups[] = {
11108 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
11109 .type = HDA_FIXUP_PINS,
11110 .v.pins = (const struct hda_pintbl[]) {
11111 { 0x0b, 0x0221101f }, /* HP */
11112 { 0x0f, 0x90170310 }, /* speaker */
11116 [ALC861_FIXUP_AMP_VREF_0F] = {
11117 .type = HDA_FIXUP_FUNC,
11118 .v.func = alc861_fixup_asus_amp_vref_0f,
11120 [ALC861_FIXUP_NO_JACK_DETECT] = {
11121 .type = HDA_FIXUP_FUNC,
11122 .v.func = alc_fixup_no_jack_detect,
11124 [ALC861_FIXUP_ASUS_A6RP] = {
11125 .type = HDA_FIXUP_FUNC,
11126 .v.func = alc861_fixup_asus_amp_vref_0f,
11128 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
11130 [ALC660_FIXUP_ASUS_W7J] = {
11131 .type = HDA_FIXUP_VERBS,
11132 .v.verbs = (const struct hda_verb[]) {
11133 /* ASUS W7J needs a magic pin setup on unused NID 0x10
11134 * for enabling outputs
11136 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11142 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
11143 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
11144 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
11145 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11146 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11147 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
11148 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
11149 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
11155 static int patch_alc861(struct hda_codec *codec)
11157 struct alc_spec *spec;
11160 err = alc_alloc_spec(codec, 0x15);
11164 spec = codec->spec;
11165 if (has_cdefine_beep(codec))
11166 spec->gen.beep_nid = 0x23;
11169 spec->power_hook = alc_power_eapd;
11172 alc_pre_init(codec);
11174 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11175 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11177 /* automatic parse from the BIOS config */
11178 err = alc861_parse_auto_config(codec);
11182 if (!spec->gen.no_analog) {
11183 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11188 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11198 * ALC861-VD support
11202 * In addition, an independent DAC
11204 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11206 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11207 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11208 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
11212 ALC660VD_FIX_ASUS_GPIO1,
11213 ALC861VD_FIX_DALLAS,
11216 /* exclude VREF80 */
11217 static void alc861vd_fixup_dallas(struct hda_codec *codec,
11218 const struct hda_fixup *fix, int action)
11220 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11221 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11222 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
11227 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11228 const struct hda_fixup *fix, int action)
11230 struct alc_spec *spec = codec->spec;
11232 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11233 spec->gpio_mask |= 0x02;
11234 alc_fixup_gpio(codec, action, 0x01);
11237 static const struct hda_fixup alc861vd_fixups[] = {
11238 [ALC660VD_FIX_ASUS_GPIO1] = {
11239 .type = HDA_FIXUP_FUNC,
11240 .v.func = alc660vd_fixup_asus_gpio1,
11242 [ALC861VD_FIX_DALLAS] = {
11243 .type = HDA_FIXUP_FUNC,
11244 .v.func = alc861vd_fixup_dallas,
11248 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
11249 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
11250 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
11251 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
11257 static int patch_alc861vd(struct hda_codec *codec)
11259 struct alc_spec *spec;
11262 err = alc_alloc_spec(codec, 0x0b);
11266 spec = codec->spec;
11267 if (has_cdefine_beep(codec))
11268 spec->gen.beep_nid = 0x23;
11270 spec->shutup = alc_eapd_shutup;
11272 alc_pre_init(codec);
11274 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11275 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11277 /* automatic parse from the BIOS config */
11278 err = alc861vd_parse_auto_config(codec);
11282 if (!spec->gen.no_analog) {
11283 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11288 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11300 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11301 * configuration. Each pin widget can choose any input DACs and a mixer.
11302 * Each ADC is connected from a mixer of all inputs. This makes possible
11303 * 6-channel independent captures.
11305 * In addition, an independent DAC for the multi-playback (not used in this
11310 * BIOS auto configuration
11313 static int alc662_parse_auto_config(struct hda_codec *codec)
11315 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11316 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11317 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11318 const hda_nid_t *ssids;
11320 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11321 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11322 codec->core.vendor_id == 0x10ec0671)
11323 ssids = alc663_ssids;
11325 ssids = alc662_ssids;
11326 return alc_parse_auto_config(codec, alc662_ignore, ssids);
11329 static void alc272_fixup_mario(struct hda_codec *codec,
11330 const struct hda_fixup *fix, int action)
11332 if (action != HDA_FIXUP_ACT_PRE_PROBE)
11334 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11335 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11336 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11337 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11338 (0 << AC_AMPCAP_MUTE_SHIFT)))
11339 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
11342 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11344 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11346 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11347 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11351 /* override the 2.1 chmap */
11352 static void alc_fixup_bass_chmap(struct hda_codec *codec,
11353 const struct hda_fixup *fix, int action)
11355 if (action == HDA_FIXUP_ACT_BUILD) {
11356 struct alc_spec *spec = codec->spec;
11357 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
11361 /* avoid D3 for keeping GPIO up */
11362 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11364 unsigned int power_state)
11366 struct alc_spec *spec = codec->spec;
11367 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
11368 return AC_PWRST_D0;
11369 return power_state;
11372 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11373 const struct hda_fixup *fix, int action)
11375 struct alc_spec *spec = codec->spec;
11377 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
11378 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11379 spec->mute_led_polarity = 1;
11380 codec->power_filter = gpio_led_power_filter;
11384 static void alc662_usi_automute_hook(struct hda_codec *codec,
11385 struct hda_jack_callback *jack)
11387 struct alc_spec *spec = codec->spec;
11390 snd_hda_gen_hp_automute(codec, jack);
11392 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11394 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11398 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11399 const struct hda_fixup *fix, int action)
11401 struct alc_spec *spec = codec->spec;
11402 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11403 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11404 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11408 static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11409 struct hda_jack_callback *cb)
11411 /* surround speakers at 0x1b already get muted automatically when
11412 * headphones are plugged in, but we have to mute/unmute the remaining
11413 * channels manually:
11414 * 0x15 - front left/front right
11415 * 0x18 - front center/ LFE
11417 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11418 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11419 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11421 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11422 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11426 static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11427 const struct hda_fixup *fix, int action)
11429 /* Pin 0x1b: shared headphones jack and surround speakers */
11430 if (!is_jack_detectable(codec, 0x1b))
11434 case HDA_FIXUP_ACT_PRE_PROBE:
11435 snd_hda_jack_detect_enable_callback(codec, 0x1b,
11436 alc662_aspire_ethos_mute_speakers);
11437 /* subwoofer needs an extra GPIO setting to become audible */
11438 alc_setup_gpio(codec, 0x02);
11440 case HDA_FIXUP_ACT_INIT:
11441 /* Make sure to start in a correct state, i.e. if
11442 * headphones have been plugged in before powering up the system
11444 alc662_aspire_ethos_mute_speakers(codec, NULL);
11449 static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11450 const struct hda_fixup *fix, int action)
11452 struct alc_spec *spec = codec->spec;
11454 static const struct hda_pintbl pincfgs[] = {
11455 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11456 { 0x1b, 0x0181304f },
11461 case HDA_FIXUP_ACT_PRE_PROBE:
11462 spec->gen.mixer_nid = 0;
11463 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11464 snd_hda_apply_pincfgs(codec, pincfgs);
11466 case HDA_FIXUP_ACT_INIT:
11467 alc_write_coef_idx(codec, 0x19, 0xa054);
11472 static void alc897_hp_automute_hook(struct hda_codec *codec,
11473 struct hda_jack_callback *jack)
11475 struct alc_spec *spec = codec->spec;
11478 snd_hda_gen_hp_automute(codec, jack);
11479 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11480 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11484 static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11485 const struct hda_fixup *fix, int action)
11487 struct alc_spec *spec = codec->spec;
11488 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11489 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11493 static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11494 const struct hda_fixup *fix, int action)
11496 struct alc_spec *spec = codec->spec;
11498 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11499 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11500 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11504 static const struct coef_fw alc668_coefs[] = {
11505 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
11506 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
11507 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
11508 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11509 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11510 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11511 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
11512 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
11513 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11514 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11515 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11516 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11517 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
11518 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11519 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
11520 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
11521 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11522 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
11523 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
11524 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
11528 static void alc668_restore_default_value(struct hda_codec *codec)
11530 alc_process_coef_fw(codec, alc668_coefs);
11534 ALC662_FIXUP_ASPIRE,
11535 ALC662_FIXUP_LED_GPIO1,
11536 ALC662_FIXUP_IDEAPAD,
11537 ALC272_FIXUP_MARIO,
11538 ALC662_FIXUP_CZC_ET26,
11539 ALC662_FIXUP_CZC_P10T,
11540 ALC662_FIXUP_SKU_IGNORE,
11541 ALC662_FIXUP_HP_RP5800,
11542 ALC662_FIXUP_ASUS_MODE1,
11543 ALC662_FIXUP_ASUS_MODE2,
11544 ALC662_FIXUP_ASUS_MODE3,
11545 ALC662_FIXUP_ASUS_MODE4,
11546 ALC662_FIXUP_ASUS_MODE5,
11547 ALC662_FIXUP_ASUS_MODE6,
11548 ALC662_FIXUP_ASUS_MODE7,
11549 ALC662_FIXUP_ASUS_MODE8,
11550 ALC662_FIXUP_NO_JACK_DETECT,
11551 ALC662_FIXUP_ZOTAC_Z68,
11552 ALC662_FIXUP_INV_DMIC,
11553 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
11554 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
11555 ALC662_FIXUP_HEADSET_MODE,
11556 ALC668_FIXUP_HEADSET_MODE,
11557 ALC662_FIXUP_BASS_MODE4_CHMAP,
11558 ALC662_FIXUP_BASS_16,
11559 ALC662_FIXUP_BASS_1A,
11560 ALC662_FIXUP_BASS_CHMAP,
11561 ALC668_FIXUP_AUTO_MUTE,
11562 ALC668_FIXUP_DELL_DISABLE_AAMIX,
11563 ALC668_FIXUP_DELL_XPS13,
11564 ALC662_FIXUP_ASUS_Nx50,
11565 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
11566 ALC668_FIXUP_ASUS_Nx51,
11567 ALC668_FIXUP_MIC_COEF,
11568 ALC668_FIXUP_ASUS_G751,
11569 ALC891_FIXUP_HEADSET_MODE,
11570 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11571 ALC662_FIXUP_ACER_VERITON,
11572 ALC892_FIXUP_ASROCK_MOBO,
11573 ALC662_FIXUP_USI_FUNC,
11574 ALC662_FIXUP_USI_HEADSET_MODE,
11575 ALC662_FIXUP_LENOVO_MULTI_CODECS,
11576 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
11577 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
11578 ALC671_FIXUP_HP_HEADSET_MIC2,
11579 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
11580 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
11581 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
11582 ALC668_FIXUP_HEADSET_MIC,
11583 ALC668_FIXUP_MIC_DET_COEF,
11584 ALC897_FIXUP_LENOVO_HEADSET_MIC,
11585 ALC897_FIXUP_HEADSET_MIC_PIN,
11586 ALC897_FIXUP_HP_HSMIC_VERB,
11587 ALC897_FIXUP_LENOVO_HEADSET_MODE,
11588 ALC897_FIXUP_HEADSET_MIC_PIN2,
11589 ALC897_FIXUP_UNIS_H3C_X500S,
11592 static const struct hda_fixup alc662_fixups[] = {
11593 [ALC662_FIXUP_ASPIRE] = {
11594 .type = HDA_FIXUP_PINS,
11595 .v.pins = (const struct hda_pintbl[]) {
11596 { 0x15, 0x99130112 }, /* subwoofer */
11600 [ALC662_FIXUP_LED_GPIO1] = {
11601 .type = HDA_FIXUP_FUNC,
11602 .v.func = alc662_fixup_led_gpio1,
11604 [ALC662_FIXUP_IDEAPAD] = {
11605 .type = HDA_FIXUP_PINS,
11606 .v.pins = (const struct hda_pintbl[]) {
11607 { 0x17, 0x99130112 }, /* subwoofer */
11611 .chain_id = ALC662_FIXUP_LED_GPIO1,
11613 [ALC272_FIXUP_MARIO] = {
11614 .type = HDA_FIXUP_FUNC,
11615 .v.func = alc272_fixup_mario,
11617 [ALC662_FIXUP_CZC_ET26] = {
11618 .type = HDA_FIXUP_PINS,
11619 .v.pins = (const struct hda_pintbl[]) {
11620 {0x12, 0x403cc000},
11621 {0x14, 0x90170110}, /* speaker */
11622 {0x15, 0x411111f0},
11623 {0x16, 0x411111f0},
11624 {0x18, 0x01a19030}, /* mic */
11625 {0x19, 0x90a7013f}, /* int-mic */
11626 {0x1a, 0x01014020},
11627 {0x1b, 0x0121401f},
11628 {0x1c, 0x411111f0},
11629 {0x1d, 0x411111f0},
11630 {0x1e, 0x40478e35},
11634 .chain_id = ALC662_FIXUP_SKU_IGNORE
11636 [ALC662_FIXUP_CZC_P10T] = {
11637 .type = HDA_FIXUP_VERBS,
11638 .v.verbs = (const struct hda_verb[]) {
11639 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
11643 [ALC662_FIXUP_SKU_IGNORE] = {
11644 .type = HDA_FIXUP_FUNC,
11645 .v.func = alc_fixup_sku_ignore,
11647 [ALC662_FIXUP_HP_RP5800] = {
11648 .type = HDA_FIXUP_PINS,
11649 .v.pins = (const struct hda_pintbl[]) {
11650 { 0x14, 0x0221201f }, /* HP out */
11654 .chain_id = ALC662_FIXUP_SKU_IGNORE
11656 [ALC662_FIXUP_ASUS_MODE1] = {
11657 .type = HDA_FIXUP_PINS,
11658 .v.pins = (const struct hda_pintbl[]) {
11659 { 0x14, 0x99130110 }, /* speaker */
11660 { 0x18, 0x01a19c20 }, /* mic */
11661 { 0x19, 0x99a3092f }, /* int-mic */
11662 { 0x21, 0x0121401f }, /* HP out */
11666 .chain_id = ALC662_FIXUP_SKU_IGNORE
11668 [ALC662_FIXUP_ASUS_MODE2] = {
11669 .type = HDA_FIXUP_PINS,
11670 .v.pins = (const struct hda_pintbl[]) {
11671 { 0x14, 0x99130110 }, /* speaker */
11672 { 0x18, 0x01a19820 }, /* mic */
11673 { 0x19, 0x99a3092f }, /* int-mic */
11674 { 0x1b, 0x0121401f }, /* HP out */
11678 .chain_id = ALC662_FIXUP_SKU_IGNORE
11680 [ALC662_FIXUP_ASUS_MODE3] = {
11681 .type = HDA_FIXUP_PINS,
11682 .v.pins = (const struct hda_pintbl[]) {
11683 { 0x14, 0x99130110 }, /* speaker */
11684 { 0x15, 0x0121441f }, /* HP */
11685 { 0x18, 0x01a19840 }, /* mic */
11686 { 0x19, 0x99a3094f }, /* int-mic */
11687 { 0x21, 0x01211420 }, /* HP2 */
11691 .chain_id = ALC662_FIXUP_SKU_IGNORE
11693 [ALC662_FIXUP_ASUS_MODE4] = {
11694 .type = HDA_FIXUP_PINS,
11695 .v.pins = (const struct hda_pintbl[]) {
11696 { 0x14, 0x99130110 }, /* speaker */
11697 { 0x16, 0x99130111 }, /* speaker */
11698 { 0x18, 0x01a19840 }, /* mic */
11699 { 0x19, 0x99a3094f }, /* int-mic */
11700 { 0x21, 0x0121441f }, /* HP */
11704 .chain_id = ALC662_FIXUP_SKU_IGNORE
11706 [ALC662_FIXUP_ASUS_MODE5] = {
11707 .type = HDA_FIXUP_PINS,
11708 .v.pins = (const struct hda_pintbl[]) {
11709 { 0x14, 0x99130110 }, /* speaker */
11710 { 0x15, 0x0121441f }, /* HP */
11711 { 0x16, 0x99130111 }, /* speaker */
11712 { 0x18, 0x01a19840 }, /* mic */
11713 { 0x19, 0x99a3094f }, /* int-mic */
11717 .chain_id = ALC662_FIXUP_SKU_IGNORE
11719 [ALC662_FIXUP_ASUS_MODE6] = {
11720 .type = HDA_FIXUP_PINS,
11721 .v.pins = (const struct hda_pintbl[]) {
11722 { 0x14, 0x99130110 }, /* speaker */
11723 { 0x15, 0x01211420 }, /* HP2 */
11724 { 0x18, 0x01a19840 }, /* mic */
11725 { 0x19, 0x99a3094f }, /* int-mic */
11726 { 0x1b, 0x0121441f }, /* HP */
11730 .chain_id = ALC662_FIXUP_SKU_IGNORE
11732 [ALC662_FIXUP_ASUS_MODE7] = {
11733 .type = HDA_FIXUP_PINS,
11734 .v.pins = (const struct hda_pintbl[]) {
11735 { 0x14, 0x99130110 }, /* speaker */
11736 { 0x17, 0x99130111 }, /* speaker */
11737 { 0x18, 0x01a19840 }, /* mic */
11738 { 0x19, 0x99a3094f }, /* int-mic */
11739 { 0x1b, 0x01214020 }, /* HP */
11740 { 0x21, 0x0121401f }, /* HP */
11744 .chain_id = ALC662_FIXUP_SKU_IGNORE
11746 [ALC662_FIXUP_ASUS_MODE8] = {
11747 .type = HDA_FIXUP_PINS,
11748 .v.pins = (const struct hda_pintbl[]) {
11749 { 0x14, 0x99130110 }, /* speaker */
11750 { 0x12, 0x99a30970 }, /* int-mic */
11751 { 0x15, 0x01214020 }, /* HP */
11752 { 0x17, 0x99130111 }, /* speaker */
11753 { 0x18, 0x01a19840 }, /* mic */
11754 { 0x21, 0x0121401f }, /* HP */
11758 .chain_id = ALC662_FIXUP_SKU_IGNORE
11760 [ALC662_FIXUP_NO_JACK_DETECT] = {
11761 .type = HDA_FIXUP_FUNC,
11762 .v.func = alc_fixup_no_jack_detect,
11764 [ALC662_FIXUP_ZOTAC_Z68] = {
11765 .type = HDA_FIXUP_PINS,
11766 .v.pins = (const struct hda_pintbl[]) {
11767 { 0x1b, 0x02214020 }, /* Front HP */
11771 [ALC662_FIXUP_INV_DMIC] = {
11772 .type = HDA_FIXUP_FUNC,
11773 .v.func = alc_fixup_inv_dmic,
11775 [ALC668_FIXUP_DELL_XPS13] = {
11776 .type = HDA_FIXUP_FUNC,
11777 .v.func = alc_fixup_dell_xps13,
11779 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11781 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
11782 .type = HDA_FIXUP_FUNC,
11783 .v.func = alc_fixup_disable_aamix,
11785 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11787 [ALC668_FIXUP_AUTO_MUTE] = {
11788 .type = HDA_FIXUP_FUNC,
11789 .v.func = alc_fixup_auto_mute_via_amp,
11791 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11793 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
11794 .type = HDA_FIXUP_PINS,
11795 .v.pins = (const struct hda_pintbl[]) {
11796 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11797 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
11801 .chain_id = ALC662_FIXUP_HEADSET_MODE
11803 [ALC662_FIXUP_HEADSET_MODE] = {
11804 .type = HDA_FIXUP_FUNC,
11805 .v.func = alc_fixup_headset_mode_alc662,
11807 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
11808 .type = HDA_FIXUP_PINS,
11809 .v.pins = (const struct hda_pintbl[]) {
11810 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11811 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11815 .chain_id = ALC668_FIXUP_HEADSET_MODE
11817 [ALC668_FIXUP_HEADSET_MODE] = {
11818 .type = HDA_FIXUP_FUNC,
11819 .v.func = alc_fixup_headset_mode_alc668,
11821 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
11822 .type = HDA_FIXUP_FUNC,
11823 .v.func = alc_fixup_bass_chmap,
11825 .chain_id = ALC662_FIXUP_ASUS_MODE4
11827 [ALC662_FIXUP_BASS_16] = {
11828 .type = HDA_FIXUP_PINS,
11829 .v.pins = (const struct hda_pintbl[]) {
11830 {0x16, 0x80106111}, /* bass speaker */
11834 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11836 [ALC662_FIXUP_BASS_1A] = {
11837 .type = HDA_FIXUP_PINS,
11838 .v.pins = (const struct hda_pintbl[]) {
11839 {0x1a, 0x80106111}, /* bass speaker */
11843 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11845 [ALC662_FIXUP_BASS_CHMAP] = {
11846 .type = HDA_FIXUP_FUNC,
11847 .v.func = alc_fixup_bass_chmap,
11849 [ALC662_FIXUP_ASUS_Nx50] = {
11850 .type = HDA_FIXUP_FUNC,
11851 .v.func = alc_fixup_auto_mute_via_amp,
11853 .chain_id = ALC662_FIXUP_BASS_1A
11855 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
11856 .type = HDA_FIXUP_FUNC,
11857 .v.func = alc_fixup_headset_mode_alc668,
11858 .chain_id = ALC662_FIXUP_BASS_CHMAP
11860 [ALC668_FIXUP_ASUS_Nx51] = {
11861 .type = HDA_FIXUP_PINS,
11862 .v.pins = (const struct hda_pintbl[]) {
11863 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11864 { 0x1a, 0x90170151 }, /* bass speaker */
11865 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11869 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
11871 [ALC668_FIXUP_MIC_COEF] = {
11872 .type = HDA_FIXUP_VERBS,
11873 .v.verbs = (const struct hda_verb[]) {
11874 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
11875 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
11879 [ALC668_FIXUP_ASUS_G751] = {
11880 .type = HDA_FIXUP_PINS,
11881 .v.pins = (const struct hda_pintbl[]) {
11882 { 0x16, 0x0421101f }, /* HP */
11886 .chain_id = ALC668_FIXUP_MIC_COEF
11888 [ALC891_FIXUP_HEADSET_MODE] = {
11889 .type = HDA_FIXUP_FUNC,
11890 .v.func = alc_fixup_headset_mode,
11892 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
11893 .type = HDA_FIXUP_PINS,
11894 .v.pins = (const struct hda_pintbl[]) {
11895 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11896 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11900 .chain_id = ALC891_FIXUP_HEADSET_MODE
11902 [ALC662_FIXUP_ACER_VERITON] = {
11903 .type = HDA_FIXUP_PINS,
11904 .v.pins = (const struct hda_pintbl[]) {
11905 { 0x15, 0x50170120 }, /* no internal speaker */
11909 [ALC892_FIXUP_ASROCK_MOBO] = {
11910 .type = HDA_FIXUP_PINS,
11911 .v.pins = (const struct hda_pintbl[]) {
11912 { 0x15, 0x40f000f0 }, /* disabled */
11913 { 0x16, 0x40f000f0 }, /* disabled */
11917 [ALC662_FIXUP_USI_FUNC] = {
11918 .type = HDA_FIXUP_FUNC,
11919 .v.func = alc662_fixup_usi_headset_mic,
11921 [ALC662_FIXUP_USI_HEADSET_MODE] = {
11922 .type = HDA_FIXUP_PINS,
11923 .v.pins = (const struct hda_pintbl[]) {
11924 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
11925 { 0x18, 0x01a1903d },
11929 .chain_id = ALC662_FIXUP_USI_FUNC
11931 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
11932 .type = HDA_FIXUP_FUNC,
11933 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
11935 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
11936 .type = HDA_FIXUP_FUNC,
11937 .v.func = alc662_fixup_aspire_ethos_hp,
11939 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
11940 .type = HDA_FIXUP_PINS,
11941 .v.pins = (const struct hda_pintbl[]) {
11942 { 0x15, 0x92130110 }, /* front speakers */
11943 { 0x18, 0x99130111 }, /* center/subwoofer */
11944 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
11948 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
11950 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
11951 .type = HDA_FIXUP_FUNC,
11952 .v.func = alc671_fixup_hp_headset_mic2,
11954 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
11955 .type = HDA_FIXUP_PINS,
11956 .v.pins = (const struct hda_pintbl[]) {
11957 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
11961 .chain_id = ALC662_FIXUP_USI_FUNC
11963 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
11964 .type = HDA_FIXUP_PINS,
11965 .v.pins = (const struct hda_pintbl[]) {
11966 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
11967 { 0x1b, 0x0221144f },
11971 .chain_id = ALC662_FIXUP_USI_FUNC
11973 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
11974 .type = HDA_FIXUP_PINS,
11975 .v.pins = (const struct hda_pintbl[]) {
11976 { 0x1b, 0x04a1112c },
11980 .chain_id = ALC668_FIXUP_HEADSET_MIC
11982 [ALC668_FIXUP_HEADSET_MIC] = {
11983 .type = HDA_FIXUP_FUNC,
11984 .v.func = alc269_fixup_headset_mic,
11986 .chain_id = ALC668_FIXUP_MIC_DET_COEF
11988 [ALC668_FIXUP_MIC_DET_COEF] = {
11989 .type = HDA_FIXUP_VERBS,
11990 .v.verbs = (const struct hda_verb[]) {
11991 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
11992 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
11996 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
11997 .type = HDA_FIXUP_FUNC,
11998 .v.func = alc897_fixup_lenovo_headset_mic,
12000 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
12001 .type = HDA_FIXUP_PINS,
12002 .v.pins = (const struct hda_pintbl[]) {
12003 { 0x1a, 0x03a11050 },
12007 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12009 [ALC897_FIXUP_HP_HSMIC_VERB] = {
12010 .type = HDA_FIXUP_PINS,
12011 .v.pins = (const struct hda_pintbl[]) {
12012 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12016 [ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12017 .type = HDA_FIXUP_FUNC,
12018 .v.func = alc897_fixup_lenovo_headset_mode,
12020 [ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12021 .type = HDA_FIXUP_PINS,
12022 .v.pins = (const struct hda_pintbl[]) {
12023 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12027 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12029 [ALC897_FIXUP_UNIS_H3C_X500S] = {
12030 .type = HDA_FIXUP_VERBS,
12031 .v.verbs = (const struct hda_verb[]) {
12032 { 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12038 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
12039 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
12040 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
12041 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
12042 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
12043 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
12044 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
12045 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
12046 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
12047 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
12048 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
12049 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
12050 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12051 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12052 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
12053 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
12054 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
12055 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12056 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12057 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12058 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12059 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12060 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
12061 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12062 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12063 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12064 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
12065 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
12066 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
12067 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
12068 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
12069 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
12070 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
12071 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
12072 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
12073 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12074 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
12075 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12076 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
12077 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
12078 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
12079 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
12080 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12081 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
12082 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
12083 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
12084 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
12085 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
12086 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
12087 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
12088 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12089 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12090 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12091 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
12092 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12093 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12094 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
12095 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
12096 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
12097 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
12098 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
12099 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
12100 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
12101 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
12102 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
12105 /* Below is a quirk table taken from the old code.
12106 * Basically the device should work as is without the fixup table.
12107 * If BIOS doesn't give a proper info, enable the corresponding
12110 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12111 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12112 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12113 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12114 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12115 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12116 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12117 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12118 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12119 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12120 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12121 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12122 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12123 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12124 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12125 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12126 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12127 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12128 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12129 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12130 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12131 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12132 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12133 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12134 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12135 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12136 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12137 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12138 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12139 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12140 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12141 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12142 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12143 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12144 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12145 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12146 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12147 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12148 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12149 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12150 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12151 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12152 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12153 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12154 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12155 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12156 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12157 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12158 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12159 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12164 static const struct hda_model_fixup alc662_fixup_models[] = {
12165 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12166 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
12167 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
12168 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
12169 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12170 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12171 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12172 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12173 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12174 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12175 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12176 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
12177 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
12178 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
12179 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
12180 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
12181 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12182 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12183 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12184 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12185 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12186 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12187 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12188 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
12189 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
12190 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12191 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12192 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12193 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12194 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
12195 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
12196 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
12197 {.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
12201 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
12202 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12203 {0x17, 0x02211010},
12204 {0x18, 0x01a19030},
12205 {0x1a, 0x01813040},
12206 {0x21, 0x01014020}),
12207 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12208 {0x16, 0x01813030},
12209 {0x17, 0x02211010},
12210 {0x18, 0x01a19040},
12211 {0x21, 0x01014020}),
12212 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
12213 {0x14, 0x01014010},
12214 {0x18, 0x01a19020},
12215 {0x1a, 0x0181302f},
12216 {0x1b, 0x0221401f}),
12217 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12218 {0x12, 0x99a30130},
12219 {0x14, 0x90170110},
12220 {0x15, 0x0321101f},
12221 {0x16, 0x03011020}),
12222 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12223 {0x12, 0x99a30140},
12224 {0x14, 0x90170110},
12225 {0x15, 0x0321101f},
12226 {0x16, 0x03011020}),
12227 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12228 {0x12, 0x99a30150},
12229 {0x14, 0x90170110},
12230 {0x15, 0x0321101f},
12231 {0x16, 0x03011020}),
12232 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12233 {0x14, 0x90170110},
12234 {0x15, 0x0321101f},
12235 {0x16, 0x03011020}),
12236 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12237 {0x12, 0x90a60130},
12238 {0x14, 0x90170110},
12239 {0x15, 0x0321101f}),
12240 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12241 {0x14, 0x01014010},
12242 {0x17, 0x90170150},
12243 {0x19, 0x02a11060},
12244 {0x1b, 0x01813030},
12245 {0x21, 0x02211020}),
12246 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12247 {0x14, 0x01014010},
12248 {0x18, 0x01a19040},
12249 {0x1b, 0x01813030},
12250 {0x21, 0x02211020}),
12251 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12252 {0x14, 0x01014020},
12253 {0x17, 0x90170110},
12254 {0x18, 0x01a19050},
12255 {0x1b, 0x01813040},
12256 {0x21, 0x02211030}),
12262 static int patch_alc662(struct hda_codec *codec)
12264 struct alc_spec *spec;
12267 err = alc_alloc_spec(codec, 0x0b);
12271 spec = codec->spec;
12273 spec->shutup = alc_eapd_shutup;
12275 /* handle multiple HPs as is */
12276 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12278 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12280 switch (codec->core.vendor_id) {
12282 spec->init_hook = alc668_restore_default_value;
12286 alc_pre_init(codec);
12288 snd_hda_pick_fixup(codec, alc662_fixup_models,
12289 alc662_fixup_tbl, alc662_fixups);
12290 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
12291 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
12293 alc_auto_parse_customize_define(codec);
12295 if (has_cdefine_beep(codec))
12296 spec->gen.beep_nid = 0x01;
12298 if ((alc_get_coef0(codec) & (1 << 14)) &&
12299 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
12300 spec->cdefine.platform_type == 1) {
12301 err = alc_codec_rename(codec, "ALC272X");
12306 /* automatic parse from the BIOS config */
12307 err = alc662_parse_auto_config(codec);
12311 if (!spec->gen.no_analog && spec->gen.beep_nid) {
12312 switch (codec->core.vendor_id) {
12314 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
12320 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
12323 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
12330 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
12343 static int alc680_parse_auto_config(struct hda_codec *codec)
12345 return alc_parse_auto_config(codec, NULL, NULL);
12350 static int patch_alc680(struct hda_codec *codec)
12354 /* ALC680 has no aa-loopback mixer */
12355 err = alc_alloc_spec(codec, 0);
12359 /* automatic parse from the BIOS config */
12360 err = alc680_parse_auto_config(codec);
12372 static const struct hda_device_id snd_hda_id_realtek[] = {
12373 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
12374 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
12375 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
12376 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
12377 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
12378 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12379 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
12380 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
12381 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
12382 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
12383 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
12384 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12385 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
12386 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
12387 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12388 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12389 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12390 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12391 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12392 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12393 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
12394 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
12395 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12396 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12397 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12398 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12399 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12400 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
12401 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
12402 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
12403 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
12404 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
12405 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
12406 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12407 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12408 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
12409 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
12410 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
12411 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
12412 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
12413 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
12414 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
12415 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12416 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12417 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12418 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12419 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12420 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12421 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12422 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12423 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12424 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12425 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12426 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12427 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12428 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
12429 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12430 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12431 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
12432 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
12433 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
12434 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12435 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12436 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12437 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12438 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12439 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12440 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12441 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12442 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12443 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12444 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
12445 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
12446 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12447 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
12448 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
12449 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
12450 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
12451 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
12452 {} /* terminator */
12454 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
12456 MODULE_LICENSE("GPL");
12457 MODULE_DESCRIPTION("Realtek HD-audio codec");
12459 static struct hda_codec_driver realtek_driver = {
12460 .id = snd_hda_id_realtek,
12463 module_hda_codec_driver(realtek_driver);