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 <sound/core.h>
22 #include <sound/jack.h>
23 #include <sound/hda_codec.h>
24 #include "hda_local.h"
25 #include "hda_auto_parser.h"
27 #include "hda_generic.h"
28 #include "hda_component.h"
30 /* keep halting ALC5505 DSP, for power saving */
31 #define HALT_REALTEK_ALC5505
33 /* extra amp-initialization sequence types */
41 ALC_HEADSET_MODE_UNKNOWN,
42 ALC_HEADSET_MODE_UNPLUGGED,
43 ALC_HEADSET_MODE_HEADSET,
45 ALC_HEADSET_MODE_HEADPHONE,
49 ALC_HEADSET_TYPE_UNKNOWN,
50 ALC_HEADSET_TYPE_CTIA,
51 ALC_HEADSET_TYPE_OMTP,
55 ALC_KEY_MICMUTE_INDEX,
58 struct alc_customize_define {
60 unsigned char port_connectivity;
61 unsigned char check_sum;
62 unsigned char customization;
63 unsigned char external_amp;
64 unsigned int enable_pcbeep:1;
65 unsigned int platform_type:1;
67 unsigned int override:1;
68 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
79 struct hda_gen_spec gen; /* must be at head */
81 /* codec parameterization */
82 struct alc_customize_define cdefine;
83 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
86 unsigned int gpio_mask;
87 unsigned int gpio_dir;
88 unsigned int gpio_data;
89 bool gpio_write_delay; /* add a delay before writing gpio_data */
91 /* mute LED for HP laptops, see vref_mute_led_set() */
92 int mute_led_polarity;
93 int micmute_led_polarity;
94 hda_nid_t mute_led_nid;
95 hda_nid_t cap_mute_led_nid;
97 unsigned int gpio_mute_led_mask;
98 unsigned int gpio_mic_led_mask;
99 struct alc_coef_led mute_led_coef;
100 struct alc_coef_led mic_led_coef;
101 struct mutex coef_mutex;
103 hda_nid_t headset_mic_pin;
104 hda_nid_t headphone_mic_pin;
105 int current_headset_mode;
106 int current_headset_type;
109 void (*init_hook)(struct hda_codec *codec);
111 void (*power_hook)(struct hda_codec *codec);
113 void (*shutup)(struct hda_codec *codec);
116 int codec_variant; /* flag for other variants */
117 unsigned int has_alc5505_dsp:1;
118 unsigned int no_depop_delay:1;
119 unsigned int done_hp_init:1;
120 unsigned int no_shutup_pins:1;
121 unsigned int ultra_low_power:1;
122 unsigned int has_hs_key:1;
123 unsigned int no_internal_mic_pin:1;
127 unsigned int pll_coef_idx, pll_coef_bit;
129 struct input_dev *kb_dev;
130 u8 alc_mute_keycode_map[1];
132 /* component binding */
133 struct component_match *match;
134 struct hda_component comps[HDA_MAX_COMPONENTS];
138 * COEF access helper functions
141 static void coef_mutex_lock(struct hda_codec *codec)
143 struct alc_spec *spec = codec->spec;
145 snd_hda_power_up_pm(codec);
146 mutex_lock(&spec->coef_mutex);
149 static void coef_mutex_unlock(struct hda_codec *codec)
151 struct alc_spec *spec = codec->spec;
153 mutex_unlock(&spec->coef_mutex);
154 snd_hda_power_down_pm(codec);
157 static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
158 unsigned int coef_idx)
162 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
163 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
167 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
168 unsigned int coef_idx)
172 coef_mutex_lock(codec);
173 val = __alc_read_coefex_idx(codec, nid, coef_idx);
174 coef_mutex_unlock(codec);
178 #define alc_read_coef_idx(codec, coef_idx) \
179 alc_read_coefex_idx(codec, 0x20, coef_idx)
181 static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
182 unsigned int coef_idx, unsigned int coef_val)
184 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
185 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
188 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
189 unsigned int coef_idx, unsigned int coef_val)
191 coef_mutex_lock(codec);
192 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
193 coef_mutex_unlock(codec);
196 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
197 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
199 static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
200 unsigned int coef_idx, unsigned int mask,
201 unsigned int bits_set)
203 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
206 __alc_write_coefex_idx(codec, nid, coef_idx,
207 (val & ~mask) | bits_set);
210 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
211 unsigned int coef_idx, unsigned int mask,
212 unsigned int bits_set)
214 coef_mutex_lock(codec);
215 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
216 coef_mutex_unlock(codec);
219 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
220 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
222 /* a special bypass for COEF 0; read the cached value at the second time */
223 static unsigned int alc_get_coef0(struct hda_codec *codec)
225 struct alc_spec *spec = codec->spec;
228 spec->coef0 = alc_read_coef_idx(codec, 0);
232 /* coef writes/updates batch */
240 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
241 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
242 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
243 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
244 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
246 static void alc_process_coef_fw(struct hda_codec *codec,
247 const struct coef_fw *fw)
249 coef_mutex_lock(codec);
250 for (; fw->nid; fw++) {
251 if (fw->mask == (unsigned short)-1)
252 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
254 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
257 coef_mutex_unlock(codec);
261 * GPIO setup tables, used in initialization
264 /* Enable GPIO mask and set output */
265 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
267 struct alc_spec *spec = codec->spec;
269 spec->gpio_mask |= mask;
270 spec->gpio_dir |= mask;
271 spec->gpio_data |= mask;
274 static void alc_write_gpio_data(struct hda_codec *codec)
276 struct alc_spec *spec = codec->spec;
278 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
282 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
285 struct alc_spec *spec = codec->spec;
286 unsigned int oldval = spec->gpio_data;
289 spec->gpio_data |= mask;
291 spec->gpio_data &= ~mask;
292 if (oldval != spec->gpio_data)
293 alc_write_gpio_data(codec);
296 static void alc_write_gpio(struct hda_codec *codec)
298 struct alc_spec *spec = codec->spec;
300 if (!spec->gpio_mask)
303 snd_hda_codec_write(codec, codec->core.afg, 0,
304 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
305 snd_hda_codec_write(codec, codec->core.afg, 0,
306 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
307 if (spec->gpio_write_delay)
309 alc_write_gpio_data(codec);
312 static void alc_fixup_gpio(struct hda_codec *codec, int action,
315 if (action == HDA_FIXUP_ACT_PRE_PROBE)
316 alc_setup_gpio(codec, mask);
319 static void alc_fixup_gpio1(struct hda_codec *codec,
320 const struct hda_fixup *fix, int action)
322 alc_fixup_gpio(codec, action, 0x01);
325 static void alc_fixup_gpio2(struct hda_codec *codec,
326 const struct hda_fixup *fix, int action)
328 alc_fixup_gpio(codec, action, 0x02);
331 static void alc_fixup_gpio3(struct hda_codec *codec,
332 const struct hda_fixup *fix, int action)
334 alc_fixup_gpio(codec, action, 0x03);
337 static void alc_fixup_gpio4(struct hda_codec *codec,
338 const struct hda_fixup *fix, int action)
340 alc_fixup_gpio(codec, action, 0x04);
343 static void alc_fixup_micmute_led(struct hda_codec *codec,
344 const struct hda_fixup *fix, int action)
346 if (action == HDA_FIXUP_ACT_PRE_PROBE)
347 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
351 * Fix hardware PLL issue
352 * On some codecs, the analog PLL gating control must be off while
353 * the default value is 1.
355 static void alc_fix_pll(struct hda_codec *codec)
357 struct alc_spec *spec = codec->spec;
360 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
361 1 << spec->pll_coef_bit, 0);
364 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
365 unsigned int coef_idx, unsigned int coef_bit)
367 struct alc_spec *spec = codec->spec;
369 spec->pll_coef_idx = coef_idx;
370 spec->pll_coef_bit = coef_bit;
374 /* update the master volume per volume-knob's unsol event */
375 static void alc_update_knob_master(struct hda_codec *codec,
376 struct hda_jack_callback *jack)
379 struct snd_kcontrol *kctl;
380 struct snd_ctl_elem_value *uctl;
382 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
385 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
388 val = snd_hda_codec_read(codec, jack->nid, 0,
389 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
390 val &= HDA_AMP_VOLMASK;
391 uctl->value.integer.value[0] = val;
392 uctl->value.integer.value[1] = val;
393 kctl->put(kctl, uctl);
397 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
399 /* For some reason, the res given from ALC880 is broken.
400 Here we adjust it properly. */
401 snd_hda_jack_unsol_event(codec, res >> 2);
404 /* Change EAPD to verb control */
405 static void alc_fill_eapd_coef(struct hda_codec *codec)
409 coef = alc_get_coef0(codec);
411 switch (codec->core.vendor_id) {
413 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
417 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
420 if ((coef & 0x00f0) == 0x0010)
421 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
422 if ((coef & 0x00f0) == 0x0020)
423 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
424 if ((coef & 0x00f0) == 0x0030)
425 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
431 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
436 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
456 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
459 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
462 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
463 alc_write_coef_idx(codec, 0x8, 0x4ab7);
466 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
475 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
478 if ((coef & 0x00f0) == 0x0030)
479 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
488 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
492 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
495 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
498 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
501 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
502 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
506 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
513 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
518 /* additional initialization for ALC888 variants */
519 static void alc888_coef_init(struct hda_codec *codec)
521 switch (alc_get_coef0(codec) & 0x00f0) {
526 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
531 /* turn on/off EAPD control (only if available) */
532 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
534 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
536 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
537 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
541 /* turn on/off EAPD controls of the codec */
542 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
544 /* We currently only handle front, HP */
545 static const hda_nid_t pins[] = {
546 0x0f, 0x10, 0x14, 0x15, 0x17, 0
549 for (p = pins; *p; p++)
550 set_eapd(codec, *p, on);
553 static int find_ext_mic_pin(struct hda_codec *codec);
555 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
557 const struct hda_pincfg *pin;
558 int mic_pin = find_ext_mic_pin(codec);
561 /* don't shut up pins when unloading the driver; otherwise it breaks
562 * the default pin setup at the next load of the driver
564 if (codec->bus->shutdown)
567 snd_array_for_each(&codec->init_pins, i, pin) {
568 /* use read here for syncing after issuing each verb */
569 if (pin->nid != mic_pin)
570 snd_hda_codec_read(codec, pin->nid, 0,
571 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
574 codec->pins_shutup = 1;
577 static void alc_shutup_pins(struct hda_codec *codec)
579 struct alc_spec *spec = codec->spec;
581 switch (codec->core.vendor_id) {
589 alc_headset_mic_no_shutup(codec);
592 if (!spec->no_shutup_pins)
593 snd_hda_shutup_pins(codec);
598 /* generic shutup callback;
599 * just turning off EAPD and a little pause for avoiding pop-noise
601 static void alc_eapd_shutup(struct hda_codec *codec)
603 struct alc_spec *spec = codec->spec;
605 alc_auto_setup_eapd(codec, false);
606 if (!spec->no_depop_delay)
608 alc_shutup_pins(codec);
611 /* generic EAPD initialization */
612 static void alc_auto_init_amp(struct hda_codec *codec, int type)
614 alc_auto_setup_eapd(codec, true);
615 alc_write_gpio(codec);
617 case ALC_INIT_DEFAULT:
618 switch (codec->core.vendor_id) {
620 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
626 alc_update_coef_idx(codec, 7, 0, 0x2030);
629 alc888_coef_init(codec);
636 /* get a primary headphone pin if available */
637 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
639 if (spec->gen.autocfg.hp_pins[0])
640 return spec->gen.autocfg.hp_pins[0];
641 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
642 return spec->gen.autocfg.line_out_pins[0];
647 * Realtek SSID verification
650 /* Could be any non-zero and even value. When used as fixup, tells
651 * the driver to ignore any present sku defines.
653 #define ALC_FIXUP_SKU_IGNORE (2)
655 static void alc_fixup_sku_ignore(struct hda_codec *codec,
656 const struct hda_fixup *fix, int action)
658 struct alc_spec *spec = codec->spec;
659 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
660 spec->cdefine.fixup = 1;
661 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
665 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
666 const struct hda_fixup *fix, int action)
668 struct alc_spec *spec = codec->spec;
670 if (action == HDA_FIXUP_ACT_PROBE) {
671 spec->no_depop_delay = 1;
672 codec->depop_delay = 0;
676 static int alc_auto_parse_customize_define(struct hda_codec *codec)
678 unsigned int ass, tmp, i;
680 struct alc_spec *spec = codec->spec;
682 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
684 if (spec->cdefine.fixup) {
685 ass = spec->cdefine.sku_cfg;
686 if (ass == ALC_FIXUP_SKU_IGNORE)
691 if (!codec->bus->pci)
693 ass = codec->core.subsystem_id & 0xffff;
694 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
698 if (codec->core.vendor_id == 0x10ec0260)
700 ass = snd_hda_codec_get_pincfg(codec, nid);
703 codec_info(codec, "%s: SKU not ready 0x%08x\n",
704 codec->core.chip_name, ass);
710 for (i = 1; i < 16; i++) {
714 if (((ass >> 16) & 0xf) != tmp)
717 spec->cdefine.port_connectivity = ass >> 30;
718 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
719 spec->cdefine.check_sum = (ass >> 16) & 0xf;
720 spec->cdefine.customization = ass >> 8;
722 spec->cdefine.sku_cfg = ass;
723 spec->cdefine.external_amp = (ass & 0x38) >> 3;
724 spec->cdefine.platform_type = (ass & 0x4) >> 2;
725 spec->cdefine.swap = (ass & 0x2) >> 1;
726 spec->cdefine.override = ass & 0x1;
728 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
729 nid, spec->cdefine.sku_cfg);
730 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
731 spec->cdefine.port_connectivity);
732 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
733 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
734 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
735 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
736 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
737 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
738 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
743 /* return the position of NID in the list, or -1 if not found */
744 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
747 for (i = 0; i < nums; i++)
752 /* return true if the given NID is found in the list */
753 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
755 return find_idx_in_nid_list(nid, list, nums) >= 0;
758 /* check subsystem ID and set up device-specific initialization;
759 * return 1 if initialized, 0 if invalid SSID
761 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
762 * 31 ~ 16 : Manufacture ID
764 * 7 ~ 0 : Assembly ID
765 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
767 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
769 unsigned int ass, tmp, i;
771 struct alc_spec *spec = codec->spec;
773 if (spec->cdefine.fixup) {
774 ass = spec->cdefine.sku_cfg;
775 if (ass == ALC_FIXUP_SKU_IGNORE)
780 ass = codec->core.subsystem_id & 0xffff;
781 if (codec->bus->pci &&
782 ass != codec->bus->pci->subsystem_device && (ass & 1))
785 /* invalid SSID, check the special NID pin defcfg instead */
787 * 31~30 : port connectivity
790 * 19~16 : Check sum (15:1)
795 if (codec->core.vendor_id == 0x10ec0260)
797 ass = snd_hda_codec_get_pincfg(codec, nid);
799 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
803 if ((ass >> 30) != 1) /* no physical connection */
808 for (i = 1; i < 16; i++) {
812 if (((ass >> 16) & 0xf) != tmp)
815 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
816 ass & 0xffff, codec->core.vendor_id);
820 * 2 : 0 --> Desktop, 1 --> Laptop
821 * 3~5 : External Amplifier control
824 tmp = (ass & 0x38) >> 3; /* external Amp control */
825 if (spec->init_amp == ALC_INIT_UNDEFINED) {
828 alc_setup_gpio(codec, 0x01);
831 alc_setup_gpio(codec, 0x02);
834 alc_setup_gpio(codec, 0x03);
838 spec->init_amp = ALC_INIT_DEFAULT;
843 /* is laptop or Desktop and enable the function "Mute internal speaker
844 * when the external headphone out jack is plugged"
849 * 10~8 : Jack location
850 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
852 * 15 : 1 --> enable the function "Mute internal speaker
853 * when the external headphone out jack is plugged"
855 if (!alc_get_hp_pin(spec)) {
857 tmp = (ass >> 11) & 0x3; /* HP to chassis */
859 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
860 spec->gen.autocfg.line_outs))
862 spec->gen.autocfg.hp_pins[0] = nid;
867 /* Check the validity of ALC subsystem-id
868 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
869 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
871 if (!alc_subsystem_id(codec, ports)) {
872 struct alc_spec *spec = codec->spec;
873 if (spec->init_amp == ALC_INIT_UNDEFINED) {
875 "realtek: Enable default setup for auto mode as fallback\n");
876 spec->init_amp = ALC_INIT_DEFAULT;
884 static void alc_fixup_inv_dmic(struct hda_codec *codec,
885 const struct hda_fixup *fix, int action)
887 struct alc_spec *spec = codec->spec;
889 spec->gen.inv_dmic_split = 1;
893 static int alc_build_controls(struct hda_codec *codec)
897 err = snd_hda_gen_build_controls(codec);
901 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
910 static void alc_pre_init(struct hda_codec *codec)
912 alc_fill_eapd_coef(codec);
915 #define is_s3_resume(codec) \
916 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
917 #define is_s4_resume(codec) \
918 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
920 static int alc_init(struct hda_codec *codec)
922 struct alc_spec *spec = codec->spec;
924 /* hibernation resume needs the full chip initialization */
925 if (is_s4_resume(codec))
929 spec->init_hook(codec);
931 spec->gen.skip_verbs = 1; /* applied in below */
932 snd_hda_gen_init(codec);
934 alc_auto_init_amp(codec, spec->init_amp);
935 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
937 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
942 #define alc_free snd_hda_gen_free
945 static inline void alc_shutup(struct hda_codec *codec)
947 struct alc_spec *spec = codec->spec;
949 if (!snd_hda_get_bool_hint(codec, "shutup"))
950 return; /* disabled explicitly by hints */
952 if (spec && spec->shutup)
955 alc_shutup_pins(codec);
958 static void alc_power_eapd(struct hda_codec *codec)
960 alc_auto_setup_eapd(codec, false);
963 static int alc_suspend(struct hda_codec *codec)
965 struct alc_spec *spec = codec->spec;
967 if (spec && spec->power_hook)
968 spec->power_hook(codec);
972 static int alc_resume(struct hda_codec *codec)
974 struct alc_spec *spec = codec->spec;
976 if (!spec->no_depop_delay)
977 msleep(150); /* to avoid pop noise */
978 codec->patch_ops.init(codec);
979 snd_hda_regmap_sync(codec);
980 hda_call_check_power_status(codec, 0x01);
987 static const struct hda_codec_ops alc_patch_ops = {
988 .build_controls = alc_build_controls,
989 .build_pcms = snd_hda_gen_build_pcms,
992 .unsol_event = snd_hda_jack_unsol_event,
994 .resume = alc_resume,
995 .suspend = alc_suspend,
996 .check_power_status = snd_hda_gen_check_power_status,
1001 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1004 * Rename codecs appropriately from COEF value or subvendor id
1006 struct alc_codec_rename_table {
1007 unsigned int vendor_id;
1008 unsigned short coef_mask;
1009 unsigned short coef_bits;
1013 struct alc_codec_rename_pci_table {
1014 unsigned int codec_vendor_id;
1015 unsigned short pci_subvendor;
1016 unsigned short pci_subdevice;
1020 static const struct alc_codec_rename_table rename_tbl[] = {
1021 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1022 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1023 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1024 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1025 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1026 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1027 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1028 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1029 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1030 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1031 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1032 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1033 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1034 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1035 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1036 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1037 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1038 { } /* terminator */
1041 static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
1042 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1043 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1044 { 0x10ec0283, 0x1028, 0, "ALC3223" },
1045 { 0x10ec0288, 0x1028, 0, "ALC3263" },
1046 { 0x10ec0292, 0x1028, 0, "ALC3226" },
1047 { 0x10ec0293, 0x1028, 0, "ALC3235" },
1048 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1049 { 0x10ec0668, 0x1028, 0, "ALC3661" },
1050 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1051 { 0x10ec0899, 0x1028, 0, "ALC3861" },
1052 { 0x10ec0298, 0x1028, 0, "ALC3266" },
1053 { 0x10ec0236, 0x1028, 0, "ALC3204" },
1054 { 0x10ec0256, 0x1028, 0, "ALC3246" },
1055 { 0x10ec0225, 0x1028, 0, "ALC3253" },
1056 { 0x10ec0295, 0x1028, 0, "ALC3254" },
1057 { 0x10ec0299, 0x1028, 0, "ALC3271" },
1058 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1059 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1060 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1061 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1062 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1063 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1064 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1065 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1066 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1067 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1068 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1069 { } /* terminator */
1072 static int alc_codec_rename_from_preset(struct hda_codec *codec)
1074 const struct alc_codec_rename_table *p;
1075 const struct alc_codec_rename_pci_table *q;
1077 for (p = rename_tbl; p->vendor_id; p++) {
1078 if (p->vendor_id != codec->core.vendor_id)
1080 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1081 return alc_codec_rename(codec, p->name);
1084 if (!codec->bus->pci)
1086 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1087 if (q->codec_vendor_id != codec->core.vendor_id)
1089 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1091 if (!q->pci_subdevice ||
1092 q->pci_subdevice == codec->bus->pci->subsystem_device)
1093 return alc_codec_rename(codec, q->name);
1101 * Digital-beep handlers
1103 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1105 /* additional beep mixers; private_value will be overwritten */
1106 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1107 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1108 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1111 /* set up and create beep controls */
1112 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1115 struct snd_kcontrol_new *knew;
1116 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1119 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1120 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1121 &alc_beep_mixer[i]);
1124 knew->private_value = beep_amp;
1129 static const struct snd_pci_quirk beep_allow_list[] = {
1130 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1131 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1132 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1133 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1134 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1135 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1136 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1137 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1138 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1139 /* denylist -- no beep available */
1140 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1141 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1145 static inline int has_cdefine_beep(struct hda_codec *codec)
1147 struct alc_spec *spec = codec->spec;
1148 const struct snd_pci_quirk *q;
1149 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1152 return spec->cdefine.enable_pcbeep;
1155 #define set_beep_amp(spec, nid, idx, dir) 0
1156 #define has_cdefine_beep(codec) 0
1159 /* parse the BIOS configuration and set up the alc_spec */
1160 /* return 1 if successful, 0 if the proper config is not found,
1161 * or a negative error code
1163 static int alc_parse_auto_config(struct hda_codec *codec,
1164 const hda_nid_t *ignore_nids,
1165 const hda_nid_t *ssid_nids)
1167 struct alc_spec *spec = codec->spec;
1168 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1171 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1177 alc_ssid_check(codec, ssid_nids);
1179 err = snd_hda_gen_parse_auto_config(codec, cfg);
1186 /* common preparation job for alc_spec */
1187 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1189 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1195 snd_hda_gen_spec_init(&spec->gen);
1196 spec->gen.mixer_nid = mixer_nid;
1197 spec->gen.own_eapd_ctl = 1;
1198 codec->single_adc_amp = 1;
1199 /* FIXME: do we need this for all Realtek codec models? */
1200 codec->spdif_status_reset = 1;
1201 codec->forced_resume = 1;
1202 codec->patch_ops = alc_patch_ops;
1203 mutex_init(&spec->coef_mutex);
1205 err = alc_codec_rename_from_preset(codec);
1213 static int alc880_parse_auto_config(struct hda_codec *codec)
1215 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1216 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1217 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1226 ALC880_FIXUP_MEDION_RIM,
1228 ALC880_FIXUP_LG_LW25,
1230 ALC880_FIXUP_EAPD_COEF,
1231 ALC880_FIXUP_TCL_S700,
1232 ALC880_FIXUP_VOL_KNOB,
1233 ALC880_FIXUP_FUJITSU,
1235 ALC880_FIXUP_UNIWILL,
1236 ALC880_FIXUP_UNIWILL_DIG,
1238 ALC880_FIXUP_ASUS_W5A,
1239 ALC880_FIXUP_3ST_BASE,
1241 ALC880_FIXUP_3ST_DIG,
1242 ALC880_FIXUP_5ST_BASE,
1244 ALC880_FIXUP_5ST_DIG,
1245 ALC880_FIXUP_6ST_BASE,
1247 ALC880_FIXUP_6ST_DIG,
1248 ALC880_FIXUP_6ST_AUTOMUTE,
1251 /* enable the volume-knob widget support on NID 0x21 */
1252 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1253 const struct hda_fixup *fix, int action)
1255 if (action == HDA_FIXUP_ACT_PROBE)
1256 snd_hda_jack_detect_enable_callback(codec, 0x21,
1257 alc_update_knob_master);
1260 static const struct hda_fixup alc880_fixups[] = {
1261 [ALC880_FIXUP_GPIO1] = {
1262 .type = HDA_FIXUP_FUNC,
1263 .v.func = alc_fixup_gpio1,
1265 [ALC880_FIXUP_GPIO2] = {
1266 .type = HDA_FIXUP_FUNC,
1267 .v.func = alc_fixup_gpio2,
1269 [ALC880_FIXUP_MEDION_RIM] = {
1270 .type = HDA_FIXUP_VERBS,
1271 .v.verbs = (const struct hda_verb[]) {
1272 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1273 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1277 .chain_id = ALC880_FIXUP_GPIO2,
1279 [ALC880_FIXUP_LG] = {
1280 .type = HDA_FIXUP_PINS,
1281 .v.pins = (const struct hda_pintbl[]) {
1282 /* disable bogus unused pins */
1283 { 0x16, 0x411111f0 },
1284 { 0x18, 0x411111f0 },
1285 { 0x1a, 0x411111f0 },
1289 [ALC880_FIXUP_LG_LW25] = {
1290 .type = HDA_FIXUP_PINS,
1291 .v.pins = (const struct hda_pintbl[]) {
1292 { 0x1a, 0x0181344f }, /* line-in */
1293 { 0x1b, 0x0321403f }, /* headphone */
1297 [ALC880_FIXUP_W810] = {
1298 .type = HDA_FIXUP_PINS,
1299 .v.pins = (const struct hda_pintbl[]) {
1300 /* disable bogus unused pins */
1301 { 0x17, 0x411111f0 },
1305 .chain_id = ALC880_FIXUP_GPIO2,
1307 [ALC880_FIXUP_EAPD_COEF] = {
1308 .type = HDA_FIXUP_VERBS,
1309 .v.verbs = (const struct hda_verb[]) {
1310 /* change to EAPD mode */
1311 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1312 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1316 [ALC880_FIXUP_TCL_S700] = {
1317 .type = HDA_FIXUP_VERBS,
1318 .v.verbs = (const struct hda_verb[]) {
1319 /* change to EAPD mode */
1320 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1321 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1325 .chain_id = ALC880_FIXUP_GPIO2,
1327 [ALC880_FIXUP_VOL_KNOB] = {
1328 .type = HDA_FIXUP_FUNC,
1329 .v.func = alc880_fixup_vol_knob,
1331 [ALC880_FIXUP_FUJITSU] = {
1332 /* override all pins as BIOS on old Amilo is broken */
1333 .type = HDA_FIXUP_PINS,
1334 .v.pins = (const struct hda_pintbl[]) {
1335 { 0x14, 0x0121401f }, /* HP */
1336 { 0x15, 0x99030120 }, /* speaker */
1337 { 0x16, 0x99030130 }, /* bass speaker */
1338 { 0x17, 0x411111f0 }, /* N/A */
1339 { 0x18, 0x411111f0 }, /* N/A */
1340 { 0x19, 0x01a19950 }, /* mic-in */
1341 { 0x1a, 0x411111f0 }, /* N/A */
1342 { 0x1b, 0x411111f0 }, /* N/A */
1343 { 0x1c, 0x411111f0 }, /* N/A */
1344 { 0x1d, 0x411111f0 }, /* N/A */
1345 { 0x1e, 0x01454140 }, /* SPDIF out */
1349 .chain_id = ALC880_FIXUP_VOL_KNOB,
1351 [ALC880_FIXUP_F1734] = {
1352 /* almost compatible with FUJITSU, but no bass and SPDIF */
1353 .type = HDA_FIXUP_PINS,
1354 .v.pins = (const struct hda_pintbl[]) {
1355 { 0x14, 0x0121401f }, /* HP */
1356 { 0x15, 0x99030120 }, /* speaker */
1357 { 0x16, 0x411111f0 }, /* N/A */
1358 { 0x17, 0x411111f0 }, /* N/A */
1359 { 0x18, 0x411111f0 }, /* N/A */
1360 { 0x19, 0x01a19950 }, /* mic-in */
1361 { 0x1a, 0x411111f0 }, /* N/A */
1362 { 0x1b, 0x411111f0 }, /* N/A */
1363 { 0x1c, 0x411111f0 }, /* N/A */
1364 { 0x1d, 0x411111f0 }, /* N/A */
1365 { 0x1e, 0x411111f0 }, /* N/A */
1369 .chain_id = ALC880_FIXUP_VOL_KNOB,
1371 [ALC880_FIXUP_UNIWILL] = {
1372 /* need to fix HP and speaker pins to be parsed correctly */
1373 .type = HDA_FIXUP_PINS,
1374 .v.pins = (const struct hda_pintbl[]) {
1375 { 0x14, 0x0121411f }, /* HP */
1376 { 0x15, 0x99030120 }, /* speaker */
1377 { 0x16, 0x99030130 }, /* bass speaker */
1381 [ALC880_FIXUP_UNIWILL_DIG] = {
1382 .type = HDA_FIXUP_PINS,
1383 .v.pins = (const struct hda_pintbl[]) {
1384 /* disable bogus unused pins */
1385 { 0x17, 0x411111f0 },
1386 { 0x19, 0x411111f0 },
1387 { 0x1b, 0x411111f0 },
1388 { 0x1f, 0x411111f0 },
1392 [ALC880_FIXUP_Z71V] = {
1393 .type = HDA_FIXUP_PINS,
1394 .v.pins = (const struct hda_pintbl[]) {
1395 /* set up the whole pins as BIOS is utterly broken */
1396 { 0x14, 0x99030120 }, /* speaker */
1397 { 0x15, 0x0121411f }, /* HP */
1398 { 0x16, 0x411111f0 }, /* N/A */
1399 { 0x17, 0x411111f0 }, /* N/A */
1400 { 0x18, 0x01a19950 }, /* mic-in */
1401 { 0x19, 0x411111f0 }, /* N/A */
1402 { 0x1a, 0x01813031 }, /* line-in */
1403 { 0x1b, 0x411111f0 }, /* N/A */
1404 { 0x1c, 0x411111f0 }, /* N/A */
1405 { 0x1d, 0x411111f0 }, /* N/A */
1406 { 0x1e, 0x0144111e }, /* SPDIF */
1410 [ALC880_FIXUP_ASUS_W5A] = {
1411 .type = HDA_FIXUP_PINS,
1412 .v.pins = (const struct hda_pintbl[]) {
1413 /* set up the whole pins as BIOS is utterly broken */
1414 { 0x14, 0x0121411f }, /* HP */
1415 { 0x15, 0x411111f0 }, /* N/A */
1416 { 0x16, 0x411111f0 }, /* N/A */
1417 { 0x17, 0x411111f0 }, /* N/A */
1418 { 0x18, 0x90a60160 }, /* mic */
1419 { 0x19, 0x411111f0 }, /* N/A */
1420 { 0x1a, 0x411111f0 }, /* N/A */
1421 { 0x1b, 0x411111f0 }, /* N/A */
1422 { 0x1c, 0x411111f0 }, /* N/A */
1423 { 0x1d, 0x411111f0 }, /* N/A */
1424 { 0x1e, 0xb743111e }, /* SPDIF out */
1428 .chain_id = ALC880_FIXUP_GPIO1,
1430 [ALC880_FIXUP_3ST_BASE] = {
1431 .type = HDA_FIXUP_PINS,
1432 .v.pins = (const struct hda_pintbl[]) {
1433 { 0x14, 0x01014010 }, /* line-out */
1434 { 0x15, 0x411111f0 }, /* N/A */
1435 { 0x16, 0x411111f0 }, /* N/A */
1436 { 0x17, 0x411111f0 }, /* N/A */
1437 { 0x18, 0x01a19c30 }, /* mic-in */
1438 { 0x19, 0x0121411f }, /* HP */
1439 { 0x1a, 0x01813031 }, /* line-in */
1440 { 0x1b, 0x02a19c40 }, /* front-mic */
1441 { 0x1c, 0x411111f0 }, /* N/A */
1442 { 0x1d, 0x411111f0 }, /* N/A */
1443 /* 0x1e is filled in below */
1444 { 0x1f, 0x411111f0 }, /* N/A */
1448 [ALC880_FIXUP_3ST] = {
1449 .type = HDA_FIXUP_PINS,
1450 .v.pins = (const struct hda_pintbl[]) {
1451 { 0x1e, 0x411111f0 }, /* N/A */
1455 .chain_id = ALC880_FIXUP_3ST_BASE,
1457 [ALC880_FIXUP_3ST_DIG] = {
1458 .type = HDA_FIXUP_PINS,
1459 .v.pins = (const struct hda_pintbl[]) {
1460 { 0x1e, 0x0144111e }, /* SPDIF */
1464 .chain_id = ALC880_FIXUP_3ST_BASE,
1466 [ALC880_FIXUP_5ST_BASE] = {
1467 .type = HDA_FIXUP_PINS,
1468 .v.pins = (const struct hda_pintbl[]) {
1469 { 0x14, 0x01014010 }, /* front */
1470 { 0x15, 0x411111f0 }, /* N/A */
1471 { 0x16, 0x01011411 }, /* CLFE */
1472 { 0x17, 0x01016412 }, /* surr */
1473 { 0x18, 0x01a19c30 }, /* mic-in */
1474 { 0x19, 0x0121411f }, /* HP */
1475 { 0x1a, 0x01813031 }, /* line-in */
1476 { 0x1b, 0x02a19c40 }, /* front-mic */
1477 { 0x1c, 0x411111f0 }, /* N/A */
1478 { 0x1d, 0x411111f0 }, /* N/A */
1479 /* 0x1e is filled in below */
1480 { 0x1f, 0x411111f0 }, /* N/A */
1484 [ALC880_FIXUP_5ST] = {
1485 .type = HDA_FIXUP_PINS,
1486 .v.pins = (const struct hda_pintbl[]) {
1487 { 0x1e, 0x411111f0 }, /* N/A */
1491 .chain_id = ALC880_FIXUP_5ST_BASE,
1493 [ALC880_FIXUP_5ST_DIG] = {
1494 .type = HDA_FIXUP_PINS,
1495 .v.pins = (const struct hda_pintbl[]) {
1496 { 0x1e, 0x0144111e }, /* SPDIF */
1500 .chain_id = ALC880_FIXUP_5ST_BASE,
1502 [ALC880_FIXUP_6ST_BASE] = {
1503 .type = HDA_FIXUP_PINS,
1504 .v.pins = (const struct hda_pintbl[]) {
1505 { 0x14, 0x01014010 }, /* front */
1506 { 0x15, 0x01016412 }, /* surr */
1507 { 0x16, 0x01011411 }, /* CLFE */
1508 { 0x17, 0x01012414 }, /* side */
1509 { 0x18, 0x01a19c30 }, /* mic-in */
1510 { 0x19, 0x02a19c40 }, /* front-mic */
1511 { 0x1a, 0x01813031 }, /* line-in */
1512 { 0x1b, 0x0121411f }, /* HP */
1513 { 0x1c, 0x411111f0 }, /* N/A */
1514 { 0x1d, 0x411111f0 }, /* N/A */
1515 /* 0x1e is filled in below */
1516 { 0x1f, 0x411111f0 }, /* N/A */
1520 [ALC880_FIXUP_6ST] = {
1521 .type = HDA_FIXUP_PINS,
1522 .v.pins = (const struct hda_pintbl[]) {
1523 { 0x1e, 0x411111f0 }, /* N/A */
1527 .chain_id = ALC880_FIXUP_6ST_BASE,
1529 [ALC880_FIXUP_6ST_DIG] = {
1530 .type = HDA_FIXUP_PINS,
1531 .v.pins = (const struct hda_pintbl[]) {
1532 { 0x1e, 0x0144111e }, /* SPDIF */
1536 .chain_id = ALC880_FIXUP_6ST_BASE,
1538 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1539 .type = HDA_FIXUP_PINS,
1540 .v.pins = (const struct hda_pintbl[]) {
1541 { 0x1b, 0x0121401f }, /* HP with jack detect */
1544 .chained_before = true,
1545 .chain_id = ALC880_FIXUP_6ST_BASE,
1549 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1550 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1551 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1552 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1553 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1554 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1555 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1556 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1557 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1558 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1559 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1560 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1561 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1562 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1563 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1564 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1565 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1566 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1567 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1568 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1569 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1570 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1571 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1572 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1574 /* Below is the copied entries from alc880_quirks.c.
1575 * It's not quite sure whether BIOS sets the correct pin-config table
1576 * on these machines, thus they are kept to be compatible with
1577 * the old static quirks. Once when it's confirmed to work without
1578 * these overrides, it'd be better to remove.
1580 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1581 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1582 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1583 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1584 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1585 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1586 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1587 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1588 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1589 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1590 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1591 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1592 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1593 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1594 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1595 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1596 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1597 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1598 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1599 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1600 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1601 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1602 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1603 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1604 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1605 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1607 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1614 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1615 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1616 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1620 static const struct hda_model_fixup alc880_fixup_models[] = {
1621 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1622 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1623 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1624 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1625 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1626 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1627 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1633 * OK, here we have finally the patch for ALC880
1635 static int patch_alc880(struct hda_codec *codec)
1637 struct alc_spec *spec;
1640 err = alc_alloc_spec(codec, 0x0b);
1645 spec->gen.need_dac_fix = 1;
1646 spec->gen.beep_nid = 0x01;
1648 codec->patch_ops.unsol_event = alc880_unsol_event;
1650 alc_pre_init(codec);
1652 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1654 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1656 /* automatic parse from the BIOS config */
1657 err = alc880_parse_auto_config(codec);
1661 if (!spec->gen.no_analog) {
1662 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1667 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1680 static int alc260_parse_auto_config(struct hda_codec *codec)
1682 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1683 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1684 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1691 ALC260_FIXUP_HP_DC5750,
1692 ALC260_FIXUP_HP_PIN_0F,
1695 ALC260_FIXUP_GPIO1_TOGGLE,
1696 ALC260_FIXUP_REPLACER,
1697 ALC260_FIXUP_HP_B1900,
1699 ALC260_FIXUP_FSC_S7020,
1700 ALC260_FIXUP_FSC_S7020_JWSE,
1701 ALC260_FIXUP_VAIO_PINS,
1704 static void alc260_gpio1_automute(struct hda_codec *codec)
1706 struct alc_spec *spec = codec->spec;
1708 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1711 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1712 const struct hda_fixup *fix, int action)
1714 struct alc_spec *spec = codec->spec;
1715 if (action == HDA_FIXUP_ACT_PROBE) {
1716 /* although the machine has only one output pin, we need to
1717 * toggle GPIO1 according to the jack state
1719 spec->gen.automute_hook = alc260_gpio1_automute;
1720 spec->gen.detect_hp = 1;
1721 spec->gen.automute_speaker = 1;
1722 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1723 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1724 snd_hda_gen_hp_automute);
1725 alc_setup_gpio(codec, 0x01);
1729 static void alc260_fixup_kn1(struct hda_codec *codec,
1730 const struct hda_fixup *fix, int action)
1732 struct alc_spec *spec = codec->spec;
1733 static const struct hda_pintbl pincfgs[] = {
1734 { 0x0f, 0x02214000 }, /* HP/speaker */
1735 { 0x12, 0x90a60160 }, /* int mic */
1736 { 0x13, 0x02a19000 }, /* ext mic */
1737 { 0x18, 0x01446000 }, /* SPDIF out */
1738 /* disable bogus I/O pins */
1739 { 0x10, 0x411111f0 },
1740 { 0x11, 0x411111f0 },
1741 { 0x14, 0x411111f0 },
1742 { 0x15, 0x411111f0 },
1743 { 0x16, 0x411111f0 },
1744 { 0x17, 0x411111f0 },
1745 { 0x19, 0x411111f0 },
1750 case HDA_FIXUP_ACT_PRE_PROBE:
1751 snd_hda_apply_pincfgs(codec, pincfgs);
1752 spec->init_amp = ALC_INIT_NONE;
1757 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1758 const struct hda_fixup *fix, int action)
1760 struct alc_spec *spec = codec->spec;
1761 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1762 spec->init_amp = ALC_INIT_NONE;
1765 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1766 const struct hda_fixup *fix, int action)
1768 struct alc_spec *spec = codec->spec;
1769 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1770 spec->gen.add_jack_modes = 1;
1771 spec->gen.hp_mic = 1;
1775 static const struct hda_fixup alc260_fixups[] = {
1776 [ALC260_FIXUP_HP_DC5750] = {
1777 .type = HDA_FIXUP_PINS,
1778 .v.pins = (const struct hda_pintbl[]) {
1779 { 0x11, 0x90130110 }, /* speaker */
1783 [ALC260_FIXUP_HP_PIN_0F] = {
1784 .type = HDA_FIXUP_PINS,
1785 .v.pins = (const struct hda_pintbl[]) {
1786 { 0x0f, 0x01214000 }, /* HP */
1790 [ALC260_FIXUP_COEF] = {
1791 .type = HDA_FIXUP_VERBS,
1792 .v.verbs = (const struct hda_verb[]) {
1793 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1794 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1798 [ALC260_FIXUP_GPIO1] = {
1799 .type = HDA_FIXUP_FUNC,
1800 .v.func = alc_fixup_gpio1,
1802 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1803 .type = HDA_FIXUP_FUNC,
1804 .v.func = alc260_fixup_gpio1_toggle,
1806 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1808 [ALC260_FIXUP_REPLACER] = {
1809 .type = HDA_FIXUP_VERBS,
1810 .v.verbs = (const struct hda_verb[]) {
1811 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1812 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1816 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1818 [ALC260_FIXUP_HP_B1900] = {
1819 .type = HDA_FIXUP_FUNC,
1820 .v.func = alc260_fixup_gpio1_toggle,
1822 .chain_id = ALC260_FIXUP_COEF,
1824 [ALC260_FIXUP_KN1] = {
1825 .type = HDA_FIXUP_FUNC,
1826 .v.func = alc260_fixup_kn1,
1828 [ALC260_FIXUP_FSC_S7020] = {
1829 .type = HDA_FIXUP_FUNC,
1830 .v.func = alc260_fixup_fsc_s7020,
1832 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1833 .type = HDA_FIXUP_FUNC,
1834 .v.func = alc260_fixup_fsc_s7020_jwse,
1836 .chain_id = ALC260_FIXUP_FSC_S7020,
1838 [ALC260_FIXUP_VAIO_PINS] = {
1839 .type = HDA_FIXUP_PINS,
1840 .v.pins = (const struct hda_pintbl[]) {
1841 /* Pin configs are missing completely on some VAIOs */
1842 { 0x0f, 0x01211020 },
1843 { 0x10, 0x0001003f },
1844 { 0x11, 0x411111f0 },
1845 { 0x12, 0x01a15930 },
1846 { 0x13, 0x411111f0 },
1847 { 0x14, 0x411111f0 },
1848 { 0x15, 0x411111f0 },
1849 { 0x16, 0x411111f0 },
1850 { 0x17, 0x411111f0 },
1851 { 0x18, 0x411111f0 },
1852 { 0x19, 0x411111f0 },
1858 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1859 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1860 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1861 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1862 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1863 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1864 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1865 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1866 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1867 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1868 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1869 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1870 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1874 static const struct hda_model_fixup alc260_fixup_models[] = {
1875 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1876 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1877 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1878 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1884 static int patch_alc260(struct hda_codec *codec)
1886 struct alc_spec *spec;
1889 err = alc_alloc_spec(codec, 0x07);
1894 /* as quite a few machines require HP amp for speaker outputs,
1895 * it's easier to enable it unconditionally; even if it's unneeded,
1896 * it's almost harmless.
1898 spec->gen.prefer_hp_amp = 1;
1899 spec->gen.beep_nid = 0x01;
1901 spec->shutup = alc_eapd_shutup;
1903 alc_pre_init(codec);
1905 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1907 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1909 /* automatic parse from the BIOS config */
1910 err = alc260_parse_auto_config(codec);
1914 if (!spec->gen.no_analog) {
1915 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1920 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1931 * ALC882/883/885/888/889 support
1933 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1934 * configuration. Each pin widget can choose any input DACs and a mixer.
1935 * Each ADC is connected from a mixer of all inputs. This makes possible
1936 * 6-channel independent captures.
1938 * In addition, an independent DAC for the multi-playback (not used in this
1946 ALC882_FIXUP_ABIT_AW9D_MAX,
1947 ALC882_FIXUP_LENOVO_Y530,
1948 ALC882_FIXUP_PB_M5210,
1949 ALC882_FIXUP_ACER_ASPIRE_7736,
1950 ALC882_FIXUP_ASUS_W90V,
1952 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1953 ALC889_FIXUP_VAIO_TT,
1954 ALC888_FIXUP_EEE1601,
1958 ALC883_FIXUP_ACER_EAPD,
1963 ALC882_FIXUP_ASUS_W2JC,
1964 ALC882_FIXUP_ACER_ASPIRE_4930G,
1965 ALC882_FIXUP_ACER_ASPIRE_8930G,
1966 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1967 ALC885_FIXUP_MACPRO_GPIO,
1968 ALC889_FIXUP_DAC_ROUTE,
1969 ALC889_FIXUP_MBP_VREF,
1970 ALC889_FIXUP_IMAC91_VREF,
1971 ALC889_FIXUP_MBA11_VREF,
1972 ALC889_FIXUP_MBA21_VREF,
1973 ALC889_FIXUP_MP11_VREF,
1974 ALC889_FIXUP_MP41_VREF,
1975 ALC882_FIXUP_INV_DMIC,
1976 ALC882_FIXUP_NO_PRIMARY_HP,
1977 ALC887_FIXUP_ASUS_BASS,
1978 ALC887_FIXUP_BASS_CHMAP,
1979 ALC1220_FIXUP_GB_DUAL_CODECS,
1980 ALC1220_FIXUP_GB_X570,
1981 ALC1220_FIXUP_CLEVO_P950,
1982 ALC1220_FIXUP_CLEVO_PB51ED,
1983 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1984 ALC887_FIXUP_ASUS_AUDIO,
1985 ALC887_FIXUP_ASUS_HMIC,
1986 ALCS1200A_FIXUP_MIC_VREF,
1989 static void alc889_fixup_coef(struct hda_codec *codec,
1990 const struct hda_fixup *fix, int action)
1992 if (action != HDA_FIXUP_ACT_INIT)
1994 alc_update_coef_idx(codec, 7, 0, 0x2030);
1997 /* set up GPIO at initialization */
1998 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1999 const struct hda_fixup *fix, int action)
2001 struct alc_spec *spec = codec->spec;
2003 spec->gpio_write_delay = true;
2004 alc_fixup_gpio3(codec, fix, action);
2007 /* Fix the connection of some pins for ALC889:
2008 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2009 * work correctly (bko#42740)
2011 static void alc889_fixup_dac_route(struct hda_codec *codec,
2012 const struct hda_fixup *fix, int action)
2014 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2015 /* fake the connections during parsing the tree */
2016 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2017 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2018 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2019 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2020 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2021 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
2022 } else if (action == HDA_FIXUP_ACT_PROBE) {
2023 /* restore the connections */
2024 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2025 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2026 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2027 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2028 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
2032 /* Set VREF on HP pin */
2033 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
2034 const struct hda_fixup *fix, int action)
2036 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
2037 struct alc_spec *spec = codec->spec;
2040 if (action != HDA_FIXUP_ACT_INIT)
2042 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2043 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2044 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2046 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2047 val |= AC_PINCTL_VREF_80;
2048 snd_hda_set_pin_ctl(codec, nids[i], val);
2049 spec->gen.keep_vref_in_automute = 1;
2054 static void alc889_fixup_mac_pins(struct hda_codec *codec,
2055 const hda_nid_t *nids, int num_nids)
2057 struct alc_spec *spec = codec->spec;
2060 for (i = 0; i < num_nids; i++) {
2062 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2063 val |= AC_PINCTL_VREF_50;
2064 snd_hda_set_pin_ctl(codec, nids[i], val);
2066 spec->gen.keep_vref_in_automute = 1;
2069 /* Set VREF on speaker pins on imac91 */
2070 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2071 const struct hda_fixup *fix, int action)
2073 static const hda_nid_t nids[] = { 0x18, 0x1a };
2075 if (action == HDA_FIXUP_ACT_INIT)
2076 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2079 /* Set VREF on speaker pins on mba11 */
2080 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2081 const struct hda_fixup *fix, int action)
2083 static const hda_nid_t nids[] = { 0x18 };
2085 if (action == HDA_FIXUP_ACT_INIT)
2086 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2089 /* Set VREF on speaker pins on mba21 */
2090 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2091 const struct hda_fixup *fix, int action)
2093 static const hda_nid_t nids[] = { 0x18, 0x19 };
2095 if (action == HDA_FIXUP_ACT_INIT)
2096 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2099 /* Don't take HP output as primary
2100 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2101 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2103 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2104 const struct hda_fixup *fix, int action)
2106 struct alc_spec *spec = codec->spec;
2107 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2108 spec->gen.no_primary_hp = 1;
2109 spec->gen.no_multi_io = 1;
2113 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2114 const struct hda_fixup *fix, int action);
2116 /* For dual-codec configuration, we need to disable some features to avoid
2117 * conflicts of kctls and PCM streams
2119 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2120 const struct hda_fixup *fix, int action)
2122 struct alc_spec *spec = codec->spec;
2124 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2126 /* disable vmaster */
2127 spec->gen.suppress_vmaster = 1;
2128 /* auto-mute and auto-mic switch don't work with multiple codecs */
2129 spec->gen.suppress_auto_mute = 1;
2130 spec->gen.suppress_auto_mic = 1;
2131 /* disable aamix as well */
2132 spec->gen.mixer_nid = 0;
2133 /* add location prefix to avoid conflicts */
2134 codec->force_pin_prefix = 1;
2137 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2138 const char *newname)
2140 struct snd_kcontrol *kctl;
2142 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2144 strcpy(kctl->id.name, newname);
2147 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2148 const struct hda_fixup *fix,
2151 alc_fixup_dual_codecs(codec, fix, action);
2153 case HDA_FIXUP_ACT_PRE_PROBE:
2154 /* override card longname to provide a unique UCM profile */
2155 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2157 case HDA_FIXUP_ACT_BUILD:
2158 /* rename Capture controls depending on the codec */
2159 rename_ctl(codec, "Capture Volume",
2161 "Rear-Panel Capture Volume" :
2162 "Front-Panel Capture Volume");
2163 rename_ctl(codec, "Capture Switch",
2165 "Rear-Panel Capture Switch" :
2166 "Front-Panel Capture Switch");
2171 static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2172 const struct hda_fixup *fix,
2175 static const hda_nid_t conn1[] = { 0x0c };
2176 static const struct coef_fw gb_x570_coefs[] = {
2177 WRITE_COEF(0x07, 0x03c0),
2178 WRITE_COEF(0x1a, 0x01c1),
2179 WRITE_COEF(0x1b, 0x0202),
2180 WRITE_COEF(0x43, 0x3005),
2185 case HDA_FIXUP_ACT_PRE_PROBE:
2186 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2187 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2189 case HDA_FIXUP_ACT_INIT:
2190 alc_process_coef_fw(codec, gb_x570_coefs);
2195 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2196 const struct hda_fixup *fix,
2199 static const hda_nid_t conn1[] = { 0x0c };
2201 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2204 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2205 /* We therefore want to make sure 0x14 (front headphone) and
2206 * 0x1b (speakers) use the stereo DAC 0x02
2208 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2209 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2212 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2213 const struct hda_fixup *fix, int action);
2215 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2216 const struct hda_fixup *fix,
2219 alc1220_fixup_clevo_p950(codec, fix, action);
2220 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2223 static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2224 struct hda_jack_callback *jack)
2226 struct alc_spec *spec = codec->spec;
2229 snd_hda_gen_hp_automute(codec, jack);
2231 if (spec->gen.hp_jack_present)
2232 vref = AC_PINCTL_VREF_80;
2234 vref = AC_PINCTL_VREF_HIZ;
2235 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2238 static void alc887_fixup_asus_jack(struct hda_codec *codec,
2239 const struct hda_fixup *fix, int action)
2241 struct alc_spec *spec = codec->spec;
2242 if (action != HDA_FIXUP_ACT_PROBE)
2244 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2245 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2248 static const struct hda_fixup alc882_fixups[] = {
2249 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2250 .type = HDA_FIXUP_PINS,
2251 .v.pins = (const struct hda_pintbl[]) {
2252 { 0x15, 0x01080104 }, /* side */
2253 { 0x16, 0x01011012 }, /* rear */
2254 { 0x17, 0x01016011 }, /* clfe */
2258 [ALC882_FIXUP_LENOVO_Y530] = {
2259 .type = HDA_FIXUP_PINS,
2260 .v.pins = (const struct hda_pintbl[]) {
2261 { 0x15, 0x99130112 }, /* rear int speakers */
2262 { 0x16, 0x99130111 }, /* subwoofer */
2266 [ALC882_FIXUP_PB_M5210] = {
2267 .type = HDA_FIXUP_PINCTLS,
2268 .v.pins = (const struct hda_pintbl[]) {
2269 { 0x19, PIN_VREF50 },
2273 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2274 .type = HDA_FIXUP_FUNC,
2275 .v.func = alc_fixup_sku_ignore,
2277 [ALC882_FIXUP_ASUS_W90V] = {
2278 .type = HDA_FIXUP_PINS,
2279 .v.pins = (const struct hda_pintbl[]) {
2280 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2284 [ALC889_FIXUP_CD] = {
2285 .type = HDA_FIXUP_PINS,
2286 .v.pins = (const struct hda_pintbl[]) {
2287 { 0x1c, 0x993301f0 }, /* CD */
2291 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2292 .type = HDA_FIXUP_PINS,
2293 .v.pins = (const struct hda_pintbl[]) {
2294 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2298 .chain_id = ALC889_FIXUP_CD,
2300 [ALC889_FIXUP_VAIO_TT] = {
2301 .type = HDA_FIXUP_PINS,
2302 .v.pins = (const struct hda_pintbl[]) {
2303 { 0x17, 0x90170111 }, /* hidden surround speaker */
2307 [ALC888_FIXUP_EEE1601] = {
2308 .type = HDA_FIXUP_VERBS,
2309 .v.verbs = (const struct hda_verb[]) {
2310 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2311 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2315 [ALC886_FIXUP_EAPD] = {
2316 .type = HDA_FIXUP_VERBS,
2317 .v.verbs = (const struct hda_verb[]) {
2318 /* change to EAPD mode */
2319 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2320 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2324 [ALC882_FIXUP_EAPD] = {
2325 .type = HDA_FIXUP_VERBS,
2326 .v.verbs = (const struct hda_verb[]) {
2327 /* change to EAPD mode */
2328 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2329 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2333 [ALC883_FIXUP_EAPD] = {
2334 .type = HDA_FIXUP_VERBS,
2335 .v.verbs = (const struct hda_verb[]) {
2336 /* change to EAPD mode */
2337 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2338 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2342 [ALC883_FIXUP_ACER_EAPD] = {
2343 .type = HDA_FIXUP_VERBS,
2344 .v.verbs = (const struct hda_verb[]) {
2345 /* eanable EAPD on Acer laptops */
2346 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2347 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2351 [ALC882_FIXUP_GPIO1] = {
2352 .type = HDA_FIXUP_FUNC,
2353 .v.func = alc_fixup_gpio1,
2355 [ALC882_FIXUP_GPIO2] = {
2356 .type = HDA_FIXUP_FUNC,
2357 .v.func = alc_fixup_gpio2,
2359 [ALC882_FIXUP_GPIO3] = {
2360 .type = HDA_FIXUP_FUNC,
2361 .v.func = alc_fixup_gpio3,
2363 [ALC882_FIXUP_ASUS_W2JC] = {
2364 .type = HDA_FIXUP_FUNC,
2365 .v.func = alc_fixup_gpio1,
2367 .chain_id = ALC882_FIXUP_EAPD,
2369 [ALC889_FIXUP_COEF] = {
2370 .type = HDA_FIXUP_FUNC,
2371 .v.func = alc889_fixup_coef,
2373 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2374 .type = HDA_FIXUP_PINS,
2375 .v.pins = (const struct hda_pintbl[]) {
2376 { 0x16, 0x99130111 }, /* CLFE speaker */
2377 { 0x17, 0x99130112 }, /* surround speaker */
2381 .chain_id = ALC882_FIXUP_GPIO1,
2383 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2384 .type = HDA_FIXUP_PINS,
2385 .v.pins = (const struct hda_pintbl[]) {
2386 { 0x16, 0x99130111 }, /* CLFE speaker */
2387 { 0x1b, 0x99130112 }, /* surround speaker */
2391 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2393 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2394 /* additional init verbs for Acer Aspire 8930G */
2395 .type = HDA_FIXUP_VERBS,
2396 .v.verbs = (const struct hda_verb[]) {
2397 /* Enable all DACs */
2398 /* DAC DISABLE/MUTE 1? */
2399 /* setting bits 1-5 disables DAC nids 0x02-0x06
2400 * apparently. Init=0x38 */
2401 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2402 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2403 /* DAC DISABLE/MUTE 2? */
2404 /* some bit here disables the other DACs.
2406 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2407 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2409 * This laptop has a stereo digital microphone.
2410 * The mics are only 1cm apart which makes the stereo
2411 * useless. However, either the mic or the ALC889
2412 * makes the signal become a difference/sum signal
2413 * instead of standard stereo, which is annoying.
2414 * So instead we flip this bit which makes the
2415 * codec replicate the sum signal to both channels,
2416 * turning it into a normal mono mic.
2418 /* DMIC_CONTROL? Init value = 0x0001 */
2419 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2420 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2421 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2422 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2426 .chain_id = ALC882_FIXUP_GPIO1,
2428 [ALC885_FIXUP_MACPRO_GPIO] = {
2429 .type = HDA_FIXUP_FUNC,
2430 .v.func = alc885_fixup_macpro_gpio,
2432 [ALC889_FIXUP_DAC_ROUTE] = {
2433 .type = HDA_FIXUP_FUNC,
2434 .v.func = alc889_fixup_dac_route,
2436 [ALC889_FIXUP_MBP_VREF] = {
2437 .type = HDA_FIXUP_FUNC,
2438 .v.func = alc889_fixup_mbp_vref,
2440 .chain_id = ALC882_FIXUP_GPIO1,
2442 [ALC889_FIXUP_IMAC91_VREF] = {
2443 .type = HDA_FIXUP_FUNC,
2444 .v.func = alc889_fixup_imac91_vref,
2446 .chain_id = ALC882_FIXUP_GPIO1,
2448 [ALC889_FIXUP_MBA11_VREF] = {
2449 .type = HDA_FIXUP_FUNC,
2450 .v.func = alc889_fixup_mba11_vref,
2452 .chain_id = ALC889_FIXUP_MBP_VREF,
2454 [ALC889_FIXUP_MBA21_VREF] = {
2455 .type = HDA_FIXUP_FUNC,
2456 .v.func = alc889_fixup_mba21_vref,
2458 .chain_id = ALC889_FIXUP_MBP_VREF,
2460 [ALC889_FIXUP_MP11_VREF] = {
2461 .type = HDA_FIXUP_FUNC,
2462 .v.func = alc889_fixup_mba11_vref,
2464 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2466 [ALC889_FIXUP_MP41_VREF] = {
2467 .type = HDA_FIXUP_FUNC,
2468 .v.func = alc889_fixup_mbp_vref,
2470 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2472 [ALC882_FIXUP_INV_DMIC] = {
2473 .type = HDA_FIXUP_FUNC,
2474 .v.func = alc_fixup_inv_dmic,
2476 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2477 .type = HDA_FIXUP_FUNC,
2478 .v.func = alc882_fixup_no_primary_hp,
2480 [ALC887_FIXUP_ASUS_BASS] = {
2481 .type = HDA_FIXUP_PINS,
2482 .v.pins = (const struct hda_pintbl[]) {
2483 {0x16, 0x99130130}, /* bass speaker */
2487 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2489 [ALC887_FIXUP_BASS_CHMAP] = {
2490 .type = HDA_FIXUP_FUNC,
2491 .v.func = alc_fixup_bass_chmap,
2493 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2494 .type = HDA_FIXUP_FUNC,
2495 .v.func = alc1220_fixup_gb_dual_codecs,
2497 [ALC1220_FIXUP_GB_X570] = {
2498 .type = HDA_FIXUP_FUNC,
2499 .v.func = alc1220_fixup_gb_x570,
2501 [ALC1220_FIXUP_CLEVO_P950] = {
2502 .type = HDA_FIXUP_FUNC,
2503 .v.func = alc1220_fixup_clevo_p950,
2505 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2506 .type = HDA_FIXUP_FUNC,
2507 .v.func = alc1220_fixup_clevo_pb51ed,
2509 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2510 .type = HDA_FIXUP_PINS,
2511 .v.pins = (const struct hda_pintbl[]) {
2512 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2516 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2518 [ALC887_FIXUP_ASUS_AUDIO] = {
2519 .type = HDA_FIXUP_PINS,
2520 .v.pins = (const struct hda_pintbl[]) {
2521 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2522 { 0x19, 0x22219420 },
2526 [ALC887_FIXUP_ASUS_HMIC] = {
2527 .type = HDA_FIXUP_FUNC,
2528 .v.func = alc887_fixup_asus_jack,
2530 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2532 [ALCS1200A_FIXUP_MIC_VREF] = {
2533 .type = HDA_FIXUP_PINCTLS,
2534 .v.pins = (const struct hda_pintbl[]) {
2535 { 0x18, PIN_VREF50 }, /* rear mic */
2536 { 0x19, PIN_VREF50 }, /* front mic */
2542 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2543 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2544 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2545 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2546 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2547 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2548 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2549 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2550 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2551 ALC882_FIXUP_ACER_ASPIRE_4930G),
2552 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2553 ALC882_FIXUP_ACER_ASPIRE_4930G),
2554 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2555 ALC882_FIXUP_ACER_ASPIRE_8930G),
2556 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2557 ALC882_FIXUP_ACER_ASPIRE_8930G),
2558 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2559 ALC882_FIXUP_ACER_ASPIRE_4930G),
2560 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2561 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2562 ALC882_FIXUP_ACER_ASPIRE_4930G),
2563 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2564 ALC882_FIXUP_ACER_ASPIRE_4930G),
2565 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2566 ALC882_FIXUP_ACER_ASPIRE_4930G),
2567 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2568 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2569 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2570 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2571 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2572 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2573 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
2574 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2575 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2576 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2577 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
2578 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2579 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2580 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2581 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2582 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2584 /* All Apple entries are in codec SSIDs */
2585 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2586 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2587 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2588 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2589 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2590 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2591 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2592 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2593 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2594 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2595 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2596 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2597 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2598 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2599 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2600 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2601 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2602 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2603 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2604 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2605 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2606 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2608 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2609 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
2610 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2611 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2612 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
2613 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
2614 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
2615 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
2616 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
2617 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
2618 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
2619 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
2620 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
2621 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2622 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
2623 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2624 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2625 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2626 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2627 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2628 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2629 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2630 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2631 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2632 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2633 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2634 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2635 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2636 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2637 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2638 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2639 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2640 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
2641 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2642 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
2643 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
2644 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2645 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2646 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2647 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2648 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2649 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
2650 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2651 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2652 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
2653 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2654 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2655 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2656 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2660 static const struct hda_model_fixup alc882_fixup_models[] = {
2661 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2662 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2663 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2664 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2665 {.id = ALC889_FIXUP_CD, .name = "cd"},
2666 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2667 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2668 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2669 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2670 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2671 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2672 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2673 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2674 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2675 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2676 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2677 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2678 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2679 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2680 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2681 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2682 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2683 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2684 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2685 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2686 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2687 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2688 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2689 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2690 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2691 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
2692 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2696 static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2697 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2705 {0x1e, 0x01456130}),
2706 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2714 {0x1e, 0x01451130}),
2719 * BIOS auto configuration
2721 /* almost identical with ALC880 parser... */
2722 static int alc882_parse_auto_config(struct hda_codec *codec)
2724 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2725 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2726 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2731 static int patch_alc882(struct hda_codec *codec)
2733 struct alc_spec *spec;
2736 err = alc_alloc_spec(codec, 0x0b);
2742 switch (codec->core.vendor_id) {
2750 /* ALC883 and variants */
2751 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2755 alc_pre_init(codec);
2757 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2759 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
2760 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2762 alc_auto_parse_customize_define(codec);
2764 if (has_cdefine_beep(codec))
2765 spec->gen.beep_nid = 0x01;
2767 /* automatic parse from the BIOS config */
2768 err = alc882_parse_auto_config(codec);
2772 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2773 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2778 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2791 static int alc262_parse_auto_config(struct hda_codec *codec)
2793 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2794 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2795 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2802 ALC262_FIXUP_FSC_H270,
2803 ALC262_FIXUP_FSC_S7110,
2804 ALC262_FIXUP_HP_Z200,
2806 ALC262_FIXUP_LENOVO_3000,
2808 ALC262_FIXUP_BENQ_T31,
2809 ALC262_FIXUP_INV_DMIC,
2810 ALC262_FIXUP_INTEL_BAYLEYBAY,
2813 static const struct hda_fixup alc262_fixups[] = {
2814 [ALC262_FIXUP_FSC_H270] = {
2815 .type = HDA_FIXUP_PINS,
2816 .v.pins = (const struct hda_pintbl[]) {
2817 { 0x14, 0x99130110 }, /* speaker */
2818 { 0x15, 0x0221142f }, /* front HP */
2819 { 0x1b, 0x0121141f }, /* rear HP */
2823 [ALC262_FIXUP_FSC_S7110] = {
2824 .type = HDA_FIXUP_PINS,
2825 .v.pins = (const struct hda_pintbl[]) {
2826 { 0x15, 0x90170110 }, /* speaker */
2830 .chain_id = ALC262_FIXUP_BENQ,
2832 [ALC262_FIXUP_HP_Z200] = {
2833 .type = HDA_FIXUP_PINS,
2834 .v.pins = (const struct hda_pintbl[]) {
2835 { 0x16, 0x99130120 }, /* internal speaker */
2839 [ALC262_FIXUP_TYAN] = {
2840 .type = HDA_FIXUP_PINS,
2841 .v.pins = (const struct hda_pintbl[]) {
2842 { 0x14, 0x1993e1f0 }, /* int AUX */
2846 [ALC262_FIXUP_LENOVO_3000] = {
2847 .type = HDA_FIXUP_PINCTLS,
2848 .v.pins = (const struct hda_pintbl[]) {
2849 { 0x19, PIN_VREF50 },
2853 .chain_id = ALC262_FIXUP_BENQ,
2855 [ALC262_FIXUP_BENQ] = {
2856 .type = HDA_FIXUP_VERBS,
2857 .v.verbs = (const struct hda_verb[]) {
2858 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2859 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2863 [ALC262_FIXUP_BENQ_T31] = {
2864 .type = HDA_FIXUP_VERBS,
2865 .v.verbs = (const struct hda_verb[]) {
2866 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2867 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2871 [ALC262_FIXUP_INV_DMIC] = {
2872 .type = HDA_FIXUP_FUNC,
2873 .v.func = alc_fixup_inv_dmic,
2875 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2876 .type = HDA_FIXUP_FUNC,
2877 .v.func = alc_fixup_no_depop_delay,
2881 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2882 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2883 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2884 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2885 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2886 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2887 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2888 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2889 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2890 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2891 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2895 static const struct hda_model_fixup alc262_fixup_models[] = {
2896 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2897 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2898 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2899 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2900 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2901 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2902 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2903 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2904 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2910 static int patch_alc262(struct hda_codec *codec)
2912 struct alc_spec *spec;
2915 err = alc_alloc_spec(codec, 0x0b);
2920 spec->gen.shared_mic_vref_pin = 0x18;
2922 spec->shutup = alc_eapd_shutup;
2925 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2928 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2930 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2932 alc_pre_init(codec);
2934 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2936 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2938 alc_auto_parse_customize_define(codec);
2940 if (has_cdefine_beep(codec))
2941 spec->gen.beep_nid = 0x01;
2943 /* automatic parse from the BIOS config */
2944 err = alc262_parse_auto_config(codec);
2948 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2949 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2954 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2966 /* bind Beep switches of both NID 0x0f and 0x10 */
2967 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2968 struct snd_ctl_elem_value *ucontrol)
2970 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2974 mutex_lock(&codec->control_mutex);
2975 pval = kcontrol->private_value;
2976 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2977 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2979 kcontrol->private_value = (pval & ~0xff) | 0x10;
2980 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2982 kcontrol->private_value = pval;
2983 mutex_unlock(&codec->control_mutex);
2987 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2988 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2990 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2991 .name = "Beep Playback Switch",
2992 .subdevice = HDA_SUBDEV_AMP_FLAG,
2993 .info = snd_hda_mixer_amp_switch_info,
2994 .get = snd_hda_mixer_amp_switch_get,
2995 .put = alc268_beep_switch_put,
2996 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3000 /* set PCBEEP vol = 0, mute connections */
3001 static const struct hda_verb alc268_beep_init_verbs[] = {
3002 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3003 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3004 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3009 ALC268_FIXUP_INV_DMIC,
3010 ALC268_FIXUP_HP_EAPD,
3014 static const struct hda_fixup alc268_fixups[] = {
3015 [ALC268_FIXUP_INV_DMIC] = {
3016 .type = HDA_FIXUP_FUNC,
3017 .v.func = alc_fixup_inv_dmic,
3019 [ALC268_FIXUP_HP_EAPD] = {
3020 .type = HDA_FIXUP_VERBS,
3021 .v.verbs = (const struct hda_verb[]) {
3022 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3026 [ALC268_FIXUP_SPDIF] = {
3027 .type = HDA_FIXUP_PINS,
3028 .v.pins = (const struct hda_pintbl[]) {
3029 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3035 static const struct hda_model_fixup alc268_fixup_models[] = {
3036 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
3037 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
3038 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
3042 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
3043 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
3044 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
3045 /* below is codec SSID since multiple Toshiba laptops have the
3046 * same PCI SSID 1179:ff00
3048 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
3053 * BIOS auto configuration
3055 static int alc268_parse_auto_config(struct hda_codec *codec)
3057 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3058 return alc_parse_auto_config(codec, NULL, alc268_ssids);
3063 static int patch_alc268(struct hda_codec *codec)
3065 struct alc_spec *spec;
3068 /* ALC268 has no aa-loopback mixer */
3069 err = alc_alloc_spec(codec, 0);
3074 if (has_cdefine_beep(codec))
3075 spec->gen.beep_nid = 0x01;
3077 spec->shutup = alc_eapd_shutup;
3079 alc_pre_init(codec);
3081 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3082 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3084 /* automatic parse from the BIOS config */
3085 err = alc268_parse_auto_config(codec);
3089 if (err > 0 && !spec->gen.no_analog &&
3090 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3091 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3092 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3093 &alc268_beep_mixer[i])) {
3098 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
3099 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3100 /* override the amp caps for beep generator */
3101 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3102 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3103 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3104 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3105 (0 << AC_AMPCAP_MUTE_SHIFT));
3108 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3121 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
3122 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3125 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
3126 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3129 /* different alc269-variants */
3131 ALC269_TYPE_ALC269VA,
3132 ALC269_TYPE_ALC269VB,
3133 ALC269_TYPE_ALC269VC,
3134 ALC269_TYPE_ALC269VD,
3156 * BIOS auto configuration
3158 static int alc269_parse_auto_config(struct hda_codec *codec)
3160 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3161 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3162 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3163 struct alc_spec *spec = codec->spec;
3164 const hda_nid_t *ssids;
3166 switch (spec->codec_variant) {
3167 case ALC269_TYPE_ALC269VA:
3168 case ALC269_TYPE_ALC269VC:
3169 case ALC269_TYPE_ALC280:
3170 case ALC269_TYPE_ALC284:
3171 case ALC269_TYPE_ALC293:
3172 ssids = alc269va_ssids;
3174 case ALC269_TYPE_ALC269VB:
3175 case ALC269_TYPE_ALC269VD:
3176 case ALC269_TYPE_ALC282:
3177 case ALC269_TYPE_ALC283:
3178 case ALC269_TYPE_ALC286:
3179 case ALC269_TYPE_ALC298:
3180 case ALC269_TYPE_ALC255:
3181 case ALC269_TYPE_ALC256:
3182 case ALC269_TYPE_ALC257:
3183 case ALC269_TYPE_ALC215:
3184 case ALC269_TYPE_ALC225:
3185 case ALC269_TYPE_ALC245:
3186 case ALC269_TYPE_ALC287:
3187 case ALC269_TYPE_ALC294:
3188 case ALC269_TYPE_ALC300:
3189 case ALC269_TYPE_ALC623:
3190 case ALC269_TYPE_ALC700:
3191 ssids = alc269_ssids;
3194 ssids = alc269_ssids;
3198 return alc_parse_auto_config(codec, alc269_ignore, ssids);
3201 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3202 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3203 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3204 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3205 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3209 static void alc_headset_btn_callback(struct hda_codec *codec,
3210 struct hda_jack_callback *jack)
3214 if (jack->unsol_res & (7 << 13))
3215 report |= SND_JACK_BTN_0;
3217 if (jack->unsol_res & (1 << 16 | 3 << 8))
3218 report |= SND_JACK_BTN_1;
3221 if (jack->unsol_res & (7 << 23))
3222 report |= SND_JACK_BTN_2;
3224 /* Volume down key */
3225 if (jack->unsol_res & (7 << 10))
3226 report |= SND_JACK_BTN_3;
3228 snd_hda_jack_set_button_state(codec, jack->nid, report);
3231 static void alc_disable_headset_jack_key(struct hda_codec *codec)
3233 struct alc_spec *spec = codec->spec;
3235 if (!spec->has_hs_key)
3238 switch (codec->core.vendor_id) {
3246 alc_write_coef_idx(codec, 0x48, 0x0);
3247 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3248 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3254 alc_write_coef_idx(codec, 0x48, 0x0);
3255 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3260 static void alc_enable_headset_jack_key(struct hda_codec *codec)
3262 struct alc_spec *spec = codec->spec;
3264 if (!spec->has_hs_key)
3267 switch (codec->core.vendor_id) {
3275 alc_write_coef_idx(codec, 0x48, 0xd011);
3276 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3277 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3283 alc_write_coef_idx(codec, 0x48, 0xd011);
3284 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3289 static void alc_fixup_headset_jack(struct hda_codec *codec,
3290 const struct hda_fixup *fix, int action)
3292 struct alc_spec *spec = codec->spec;
3296 case HDA_FIXUP_ACT_PRE_PROBE:
3297 spec->has_hs_key = 1;
3298 snd_hda_jack_detect_enable_callback(codec, 0x55,
3299 alc_headset_btn_callback);
3301 case HDA_FIXUP_ACT_BUILD:
3302 hp_pin = alc_get_hp_pin(spec);
3303 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3304 alc_headset_btn_keymap,
3306 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3307 false, SND_JACK_HEADSET,
3308 alc_headset_btn_keymap);
3310 alc_enable_headset_jack_key(codec);
3315 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
3317 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
3320 static void alc269_shutup(struct hda_codec *codec)
3322 struct alc_spec *spec = codec->spec;
3324 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3325 alc269vb_toggle_power_output(codec, 0);
3326 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3327 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3330 alc_shutup_pins(codec);
3333 static const struct coef_fw alc282_coefs[] = {
3334 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3335 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3336 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3337 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3338 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3339 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3340 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3341 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3342 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3343 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3344 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3345 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3346 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3347 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3348 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3349 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3350 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3351 WRITE_COEF(0x63, 0x2902), /* PLL */
3352 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3353 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3354 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3355 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3356 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3357 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3358 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3359 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3360 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3361 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3362 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3366 static void alc282_restore_default_value(struct hda_codec *codec)
3368 alc_process_coef_fw(codec, alc282_coefs);
3371 static void alc282_init(struct hda_codec *codec)
3373 struct alc_spec *spec = codec->spec;
3374 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3378 alc282_restore_default_value(codec);
3382 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3383 coef78 = alc_read_coef_idx(codec, 0x78);
3385 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3386 /* Headphone capless set to high power mode */
3387 alc_write_coef_idx(codec, 0x78, 0x9004);
3392 snd_hda_codec_write(codec, hp_pin, 0,
3393 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3398 snd_hda_codec_write(codec, hp_pin, 0,
3399 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3404 /* Headphone capless set to normal mode */
3405 alc_write_coef_idx(codec, 0x78, coef78);
3408 static void alc282_shutup(struct hda_codec *codec)
3410 struct alc_spec *spec = codec->spec;
3411 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3416 alc269_shutup(codec);
3420 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3421 coef78 = alc_read_coef_idx(codec, 0x78);
3422 alc_write_coef_idx(codec, 0x78, 0x9004);
3427 snd_hda_codec_write(codec, hp_pin, 0,
3428 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3433 if (!spec->no_shutup_pins)
3434 snd_hda_codec_write(codec, hp_pin, 0,
3435 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3440 alc_auto_setup_eapd(codec, false);
3441 alc_shutup_pins(codec);
3442 alc_write_coef_idx(codec, 0x78, coef78);
3445 static const struct coef_fw alc283_coefs[] = {
3446 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3447 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3448 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3449 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3450 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3451 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3452 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3453 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3454 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3455 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3456 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3457 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3458 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3459 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3460 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3461 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3462 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3463 WRITE_COEF(0x2e, 0x2902), /* PLL */
3464 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3465 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3466 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3467 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3468 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3469 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3470 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3471 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3472 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3473 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3474 WRITE_COEF(0x49, 0x0), /* test mode */
3475 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3476 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3477 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3478 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3482 static void alc283_restore_default_value(struct hda_codec *codec)
3484 alc_process_coef_fw(codec, alc283_coefs);
3487 static void alc283_init(struct hda_codec *codec)
3489 struct alc_spec *spec = codec->spec;
3490 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3493 alc283_restore_default_value(codec);
3499 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3501 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3502 /* Headphone capless set to high power mode */
3503 alc_write_coef_idx(codec, 0x43, 0x9004);
3505 snd_hda_codec_write(codec, hp_pin, 0,
3506 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3511 snd_hda_codec_write(codec, hp_pin, 0,
3512 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3516 /* Index 0x46 Combo jack auto switch control 2 */
3517 /* 3k pull low control for Headset jack. */
3518 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3519 /* Headphone capless set to normal mode */
3520 alc_write_coef_idx(codec, 0x43, 0x9614);
3523 static void alc283_shutup(struct hda_codec *codec)
3525 struct alc_spec *spec = codec->spec;
3526 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3530 alc269_shutup(codec);
3534 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3536 alc_write_coef_idx(codec, 0x43, 0x9004);
3538 /*depop hp during suspend*/
3539 alc_write_coef_idx(codec, 0x06, 0x2100);
3541 snd_hda_codec_write(codec, hp_pin, 0,
3542 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3547 if (!spec->no_shutup_pins)
3548 snd_hda_codec_write(codec, hp_pin, 0,
3549 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3551 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3555 alc_auto_setup_eapd(codec, false);
3556 alc_shutup_pins(codec);
3557 alc_write_coef_idx(codec, 0x43, 0x9614);
3560 static void alc256_init(struct hda_codec *codec)
3562 struct alc_spec *spec = codec->spec;
3563 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3571 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3576 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3577 if (spec->ultra_low_power) {
3578 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3579 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3580 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3581 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3582 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3586 snd_hda_codec_write(codec, hp_pin, 0,
3587 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3589 if (hp_pin_sense || spec->ultra_low_power)
3592 snd_hda_codec_write(codec, hp_pin, 0,
3593 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3595 if (hp_pin_sense || spec->ultra_low_power)
3598 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3599 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3600 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3601 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3603 * Expose headphone mic (or possibly Line In on some machines) instead
3604 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3605 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3608 alc_write_coef_idx(codec, 0x36, 0x5757);
3611 static void alc256_shutup(struct hda_codec *codec)
3613 struct alc_spec *spec = codec->spec;
3614 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3620 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3625 snd_hda_codec_write(codec, hp_pin, 0,
3626 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3628 if (hp_pin_sense || spec->ultra_low_power)
3631 /* 3k pull low control for Headset jack. */
3632 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3633 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3634 * when booting with headset plugged. So skip setting it for the codec alc257
3636 if (codec->core.vendor_id != 0x10ec0236 &&
3637 codec->core.vendor_id != 0x10ec0257)
3638 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3640 if (!spec->no_shutup_pins)
3641 snd_hda_codec_write(codec, hp_pin, 0,
3642 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3644 if (hp_pin_sense || spec->ultra_low_power)
3647 alc_auto_setup_eapd(codec, false);
3648 alc_shutup_pins(codec);
3649 if (spec->ultra_low_power) {
3651 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3652 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3653 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3654 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3655 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3660 static void alc285_hp_init(struct hda_codec *codec)
3662 struct alc_spec *spec = codec->spec;
3663 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3665 int coef38, coef0d, coef36;
3667 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3668 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3669 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3670 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3671 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3672 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3674 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3677 snd_hda_codec_write(codec, hp_pin, 0,
3678 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3681 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3682 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3685 snd_hda_codec_write(codec, hp_pin, 0,
3686 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3688 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3689 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3690 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3691 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3693 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3694 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3695 for (i = 0; i < 20 && val & 0x8000; i++) {
3697 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3698 } /* Wait for depop procedure finish */
3700 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3701 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3702 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3703 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3706 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3709 static void alc225_init(struct hda_codec *codec)
3711 struct alc_spec *spec = codec->spec;
3712 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3713 bool hp1_pin_sense, hp2_pin_sense;
3715 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3716 spec->codec_variant != ALC269_TYPE_ALC245)
3717 /* required only at boot or S3 and S4 resume time */
3718 if (!spec->done_hp_init ||
3719 is_s3_resume(codec) ||
3720 is_s4_resume(codec)) {
3721 alc285_hp_init(codec);
3722 spec->done_hp_init = true;
3729 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3730 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3732 if (hp1_pin_sense || hp2_pin_sense)
3735 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3736 if (spec->ultra_low_power) {
3737 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3738 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3739 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3743 if (hp1_pin_sense || spec->ultra_low_power)
3744 snd_hda_codec_write(codec, hp_pin, 0,
3745 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3747 snd_hda_codec_write(codec, 0x16, 0,
3748 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3750 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3753 if (hp1_pin_sense || spec->ultra_low_power)
3754 snd_hda_codec_write(codec, hp_pin, 0,
3755 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3757 snd_hda_codec_write(codec, 0x16, 0,
3758 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3760 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3763 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3764 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3767 static void alc225_shutup(struct hda_codec *codec)
3769 struct alc_spec *spec = codec->spec;
3770 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3771 bool hp1_pin_sense, hp2_pin_sense;
3776 alc_disable_headset_jack_key(codec);
3777 /* 3k pull low control for Headset jack. */
3778 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3780 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3781 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3783 if (hp1_pin_sense || hp2_pin_sense)
3786 if (hp1_pin_sense || spec->ultra_low_power)
3787 snd_hda_codec_write(codec, hp_pin, 0,
3788 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3790 snd_hda_codec_write(codec, 0x16, 0,
3791 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3793 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3796 if (hp1_pin_sense || spec->ultra_low_power)
3797 snd_hda_codec_write(codec, hp_pin, 0,
3798 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3800 snd_hda_codec_write(codec, 0x16, 0,
3801 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3803 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3806 alc_auto_setup_eapd(codec, false);
3807 alc_shutup_pins(codec);
3808 if (spec->ultra_low_power) {
3810 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3811 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3812 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3813 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3817 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3818 alc_enable_headset_jack_key(codec);
3821 static void alc_default_init(struct hda_codec *codec)
3823 struct alc_spec *spec = codec->spec;
3824 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3832 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3837 snd_hda_codec_write(codec, hp_pin, 0,
3838 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3843 snd_hda_codec_write(codec, hp_pin, 0,
3844 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3850 static void alc_default_shutup(struct hda_codec *codec)
3852 struct alc_spec *spec = codec->spec;
3853 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3857 alc269_shutup(codec);
3861 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3866 snd_hda_codec_write(codec, hp_pin, 0,
3867 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3872 if (!spec->no_shutup_pins)
3873 snd_hda_codec_write(codec, hp_pin, 0,
3874 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3879 alc_auto_setup_eapd(codec, false);
3880 alc_shutup_pins(codec);
3883 static void alc294_hp_init(struct hda_codec *codec)
3885 struct alc_spec *spec = codec->spec;
3886 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3892 snd_hda_codec_write(codec, hp_pin, 0,
3893 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3897 if (!spec->no_shutup_pins)
3898 snd_hda_codec_write(codec, hp_pin, 0,
3899 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3901 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3902 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3904 /* Wait for depop procedure finish */
3905 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3906 for (i = 0; i < 20 && val & 0x0080; i++) {
3908 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3910 /* Set HP depop to auto mode */
3911 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3915 static void alc294_init(struct hda_codec *codec)
3917 struct alc_spec *spec = codec->spec;
3919 /* required only at boot or S4 resume time */
3920 if (!spec->done_hp_init ||
3921 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3922 alc294_hp_init(codec);
3923 spec->done_hp_init = true;
3925 alc_default_init(codec);
3928 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3931 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3932 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3933 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3936 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3940 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3941 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3943 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3948 static void alc5505_dsp_halt(struct hda_codec *codec)
3952 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3953 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3954 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3955 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3956 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3957 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3958 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3959 val = alc5505_coef_get(codec, 0x6220);
3960 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3963 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3965 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3966 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3967 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3968 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3969 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3970 alc5505_coef_set(codec, 0x880c, 0x00000004);
3973 static void alc5505_dsp_init(struct hda_codec *codec)
3977 alc5505_dsp_halt(codec);
3978 alc5505_dsp_back_from_halt(codec);
3979 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3980 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3981 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3982 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3983 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3984 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3985 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3986 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3987 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3988 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3989 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3990 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3991 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3993 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3995 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3997 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3999 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4000 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4001 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4002 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4003 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4004 alc5505_coef_set(codec, 0x880c, 0x00000003);
4005 alc5505_coef_set(codec, 0x880c, 0x00000010);
4007 #ifdef HALT_REALTEK_ALC5505
4008 alc5505_dsp_halt(codec);
4012 #ifdef HALT_REALTEK_ALC5505
4013 #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4014 #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
4016 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4017 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4021 static int alc269_suspend(struct hda_codec *codec)
4023 struct alc_spec *spec = codec->spec;
4026 if (spec->has_alc5505_dsp)
4027 alc5505_dsp_suspend(codec);
4029 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
4030 if (spec->comps[i].suspend_hook)
4031 spec->comps[i].suspend_hook(spec->comps[i].dev);
4033 return alc_suspend(codec);
4036 static int alc269_resume(struct hda_codec *codec)
4038 struct alc_spec *spec = codec->spec;
4041 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4042 alc269vb_toggle_power_output(codec, 0);
4043 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4044 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
4048 codec->patch_ops.init(codec);
4050 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4051 alc269vb_toggle_power_output(codec, 1);
4052 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4053 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
4057 snd_hda_regmap_sync(codec);
4058 hda_call_check_power_status(codec, 0x01);
4060 /* on some machine, the BIOS will clear the codec gpio data when enter
4061 * suspend, and won't restore the data after resume, so we restore it
4064 if (spec->gpio_data)
4065 alc_write_gpio_data(codec);
4067 if (spec->has_alc5505_dsp)
4068 alc5505_dsp_resume(codec);
4070 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
4071 if (spec->comps[i].resume_hook)
4072 spec->comps[i].resume_hook(spec->comps[i].dev);
4076 #endif /* CONFIG_PM */
4078 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
4079 const struct hda_fixup *fix, int action)
4081 struct alc_spec *spec = codec->spec;
4083 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4084 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4087 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4088 const struct hda_fixup *fix,
4091 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4092 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4094 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4095 snd_hda_codec_set_pincfg(codec, 0x19,
4096 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4097 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4100 static void alc269_fixup_hweq(struct hda_codec *codec,
4101 const struct hda_fixup *fix, int action)
4103 if (action == HDA_FIXUP_ACT_INIT)
4104 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
4107 static void alc269_fixup_headset_mic(struct hda_codec *codec,
4108 const struct hda_fixup *fix, int action)
4110 struct alc_spec *spec = codec->spec;
4112 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4113 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4116 static void alc271_fixup_dmic(struct hda_codec *codec,
4117 const struct hda_fixup *fix, int action)
4119 static const struct hda_verb verbs[] = {
4120 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4121 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4126 if (strcmp(codec->core.chip_name, "ALC271X") &&
4127 strcmp(codec->core.chip_name, "ALC269VB"))
4129 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4130 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4131 snd_hda_sequence_write(codec, verbs);
4134 /* Fix the speaker amp after resume, etc */
4135 static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4136 const struct hda_fixup *fix,
4139 if (action == HDA_FIXUP_ACT_INIT)
4140 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4143 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4144 const struct hda_fixup *fix, int action)
4146 struct alc_spec *spec = codec->spec;
4148 if (action != HDA_FIXUP_ACT_PROBE)
4151 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4152 * fix the sample rate of analog I/O to 44.1kHz
4154 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4155 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
4158 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4159 const struct hda_fixup *fix, int action)
4161 /* The digital-mic unit sends PDM (differential signal) instead of
4162 * the standard PCM, thus you can't record a valid mono stream as is.
4163 * Below is a workaround specific to ALC269 to control the dmic
4164 * signal source as mono.
4166 if (action == HDA_FIXUP_ACT_INIT)
4167 alc_update_coef_idx(codec, 0x07, 0, 0x80);
4170 static void alc269_quanta_automute(struct hda_codec *codec)
4172 snd_hda_gen_update_outputs(codec);
4174 alc_write_coef_idx(codec, 0x0c, 0x680);
4175 alc_write_coef_idx(codec, 0x0c, 0x480);
4178 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4179 const struct hda_fixup *fix, int action)
4181 struct alc_spec *spec = codec->spec;
4182 if (action != HDA_FIXUP_ACT_PROBE)
4184 spec->gen.automute_hook = alc269_quanta_automute;
4187 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
4188 struct hda_jack_callback *jack)
4190 struct alc_spec *spec = codec->spec;
4193 snd_hda_gen_hp_automute(codec, jack);
4195 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4197 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4200 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4205 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4207 struct hda_alc298_mbxinit {
4208 unsigned char value_0x23;
4209 unsigned char value_0x25;
4212 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4213 const struct hda_alc298_mbxinit *initval,
4216 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4217 alc_write_coef_idx(codec, 0x26, 0xb000);
4220 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4222 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4223 alc_write_coef_idx(codec, 0x26, 0xf000);
4224 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4226 if (initval->value_0x23 != 0x1e)
4227 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4229 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4230 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4233 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4234 const struct hda_fixup *fix,
4237 /* Initialization magic */
4238 static const struct hda_alc298_mbxinit dac_init[] = {
4239 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4240 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4241 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4242 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4243 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4244 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4246 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4247 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4248 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4251 const struct hda_alc298_mbxinit *seq;
4253 if (action != HDA_FIXUP_ACT_INIT)
4257 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4258 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4259 alc_write_coef_idx(codec, 0x26, 0xf000);
4260 alc_write_coef_idx(codec, 0x22, 0x31);
4261 alc_write_coef_idx(codec, 0x23, 0x0b);
4262 alc_write_coef_idx(codec, 0x25, 0x00);
4263 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4264 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4266 for (seq = dac_init; seq->value_0x23; seq++)
4267 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4270 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4271 const struct hda_fixup *fix, int action)
4273 struct alc_spec *spec = codec->spec;
4274 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4275 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4276 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4280 static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4281 bool polarity, bool on)
4283 unsigned int pinval;
4289 pinval = snd_hda_codec_get_pin_target(codec, pin);
4290 pinval &= ~AC_PINCTL_VREFEN;
4291 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4292 /* temporarily power up/down for setting VREF */
4293 snd_hda_power_up_pm(codec);
4294 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4295 snd_hda_power_down_pm(codec);
4298 /* update mute-LED according to the speaker mute state via mic VREF pin */
4299 static int vref_mute_led_set(struct led_classdev *led_cdev,
4300 enum led_brightness brightness)
4302 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4303 struct alc_spec *spec = codec->spec;
4305 alc_update_vref_led(codec, spec->mute_led_nid,
4306 spec->mute_led_polarity, brightness);
4310 /* Make sure the led works even in runtime suspend */
4311 static unsigned int led_power_filter(struct hda_codec *codec,
4313 unsigned int power_state)
4315 struct alc_spec *spec = codec->spec;
4317 if (power_state != AC_PWRST_D3 || nid == 0 ||
4318 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
4321 /* Set pin ctl again, it might have just been set to 0 */
4322 snd_hda_set_pin_ctl(codec, nid,
4323 snd_hda_codec_get_pin_target(codec, nid));
4325 return snd_hda_gen_path_power_filter(codec, nid, power_state);
4328 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4329 const struct hda_fixup *fix, int action)
4331 struct alc_spec *spec = codec->spec;
4332 const struct dmi_device *dev = NULL;
4334 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4337 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4339 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4341 if (pin < 0x0a || pin >= 0x10)
4343 spec->mute_led_polarity = pol;
4344 spec->mute_led_nid = pin - 0x0a + 0x18;
4345 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4346 codec->power_filter = led_power_filter;
4348 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
4349 spec->mute_led_polarity);
4354 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4355 const struct hda_fixup *fix,
4356 int action, hda_nid_t pin)
4358 struct alc_spec *spec = codec->spec;
4360 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4361 spec->mute_led_polarity = 0;
4362 spec->mute_led_nid = pin;
4363 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4364 codec->power_filter = led_power_filter;
4368 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4369 const struct hda_fixup *fix, int action)
4371 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4374 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4375 const struct hda_fixup *fix, int action)
4377 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
4380 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4381 const struct hda_fixup *fix, int action)
4383 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
4386 /* update LED status via GPIO */
4387 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
4388 int polarity, bool enabled)
4392 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
4395 /* turn on/off mute LED via GPIO per vmaster hook */
4396 static int gpio_mute_led_set(struct led_classdev *led_cdev,
4397 enum led_brightness brightness)
4399 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4400 struct alc_spec *spec = codec->spec;
4402 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
4403 spec->mute_led_polarity, !brightness);
4407 /* turn on/off mic-mute LED via GPIO per capture hook */
4408 static int micmute_led_set(struct led_classdev *led_cdev,
4409 enum led_brightness brightness)
4411 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4412 struct alc_spec *spec = codec->spec;
4414 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
4415 spec->micmute_led_polarity, !brightness);
4419 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
4420 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4422 unsigned int mute_mask,
4423 unsigned int micmute_mask)
4425 struct alc_spec *spec = codec->spec;
4427 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4429 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4432 spec->gpio_mute_led_mask = mute_mask;
4433 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
4436 spec->gpio_mic_led_mask = micmute_mask;
4437 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
4441 static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4442 const struct hda_fixup *fix, int action)
4444 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4447 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
4448 const struct hda_fixup *fix, int action)
4450 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4453 static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4454 const struct hda_fixup *fix, int action)
4456 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
4459 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4460 const struct hda_fixup *fix, int action)
4462 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4465 static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4466 const struct hda_fixup *fix, int action)
4468 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4471 static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4472 const struct hda_fixup *fix, int action)
4474 struct alc_spec *spec = codec->spec;
4476 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4477 spec->micmute_led_polarity = 1;
4478 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4481 /* turn on/off mic-mute LED per capture hook via VREF change */
4482 static int vref_micmute_led_set(struct led_classdev *led_cdev,
4483 enum led_brightness brightness)
4485 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4486 struct alc_spec *spec = codec->spec;
4488 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4489 spec->micmute_led_polarity, brightness);
4493 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4494 const struct hda_fixup *fix, int action)
4496 struct alc_spec *spec = codec->spec;
4498 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4499 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4500 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4501 * enable headphone amp
4503 spec->gpio_mask |= 0x10;
4504 spec->gpio_dir |= 0x10;
4505 spec->cap_mute_led_nid = 0x18;
4506 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4507 codec->power_filter = led_power_filter;
4511 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4512 const struct hda_fixup *fix, int action)
4514 struct alc_spec *spec = codec->spec;
4516 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4517 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4518 spec->cap_mute_led_nid = 0x18;
4519 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4520 codec->power_filter = led_power_filter;
4524 /* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4525 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4527 static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4528 const struct hda_fixup *fix, int action)
4530 struct alc_spec *spec = codec->spec;
4533 case HDA_FIXUP_ACT_PRE_PROBE:
4534 spec->gpio_mask |= 0x01;
4535 spec->gpio_dir |= 0x01;
4537 case HDA_FIXUP_ACT_INIT:
4538 /* need to toggle GPIO to enable the amp */
4539 alc_update_gpio_data(codec, 0x01, true);
4541 alc_update_gpio_data(codec, 0x01, false);
4546 /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4547 static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4548 struct hda_codec *codec,
4549 struct snd_pcm_substream *substream,
4553 case HDA_GEN_PCM_ACT_PREPARE:
4554 alc_update_gpio_data(codec, 0x04, true);
4556 case HDA_GEN_PCM_ACT_CLEANUP:
4557 alc_update_gpio_data(codec, 0x04, false);
4562 static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4563 const struct hda_fixup *fix,
4566 struct alc_spec *spec = codec->spec;
4568 if (action == HDA_FIXUP_ACT_PROBE) {
4569 spec->gpio_mask |= 0x04;
4570 spec->gpio_dir |= 0x04;
4571 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4575 static void alc_update_coef_led(struct hda_codec *codec,
4576 struct alc_coef_led *led,
4577 bool polarity, bool on)
4581 /* temporarily power up/down for setting COEF bit */
4582 alc_update_coef_idx(codec, led->idx, led->mask,
4583 on ? led->on : led->off);
4586 /* update mute-LED according to the speaker mute state via COEF bit */
4587 static int coef_mute_led_set(struct led_classdev *led_cdev,
4588 enum led_brightness brightness)
4590 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4591 struct alc_spec *spec = codec->spec;
4593 alc_update_coef_led(codec, &spec->mute_led_coef,
4594 spec->mute_led_polarity, brightness);
4598 static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4599 const struct hda_fixup *fix,
4602 struct alc_spec *spec = codec->spec;
4604 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4605 spec->mute_led_polarity = 0;
4606 spec->mute_led_coef.idx = 0x0b;
4607 spec->mute_led_coef.mask = 1 << 3;
4608 spec->mute_led_coef.on = 1 << 3;
4609 spec->mute_led_coef.off = 0;
4610 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4614 static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4615 const struct hda_fixup *fix,
4618 struct alc_spec *spec = codec->spec;
4620 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4621 spec->mute_led_polarity = 0;
4622 spec->mute_led_coef.idx = 0x34;
4623 spec->mute_led_coef.mask = 1 << 5;
4624 spec->mute_led_coef.on = 0;
4625 spec->mute_led_coef.off = 1 << 5;
4626 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4630 /* turn on/off mic-mute LED per capture hook by coef bit */
4631 static int coef_micmute_led_set(struct led_classdev *led_cdev,
4632 enum led_brightness brightness)
4634 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4635 struct alc_spec *spec = codec->spec;
4637 alc_update_coef_led(codec, &spec->mic_led_coef,
4638 spec->micmute_led_polarity, brightness);
4642 static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4643 const struct hda_fixup *fix, int action)
4645 struct alc_spec *spec = codec->spec;
4647 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4648 spec->mic_led_coef.idx = 0x19;
4649 spec->mic_led_coef.mask = 1 << 13;
4650 spec->mic_led_coef.on = 1 << 13;
4651 spec->mic_led_coef.off = 0;
4652 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4656 static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4657 const struct hda_fixup *fix, int action)
4659 struct alc_spec *spec = codec->spec;
4661 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4662 spec->mic_led_coef.idx = 0x35;
4663 spec->mic_led_coef.mask = 3 << 2;
4664 spec->mic_led_coef.on = 2 << 2;
4665 spec->mic_led_coef.off = 1 << 2;
4666 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4670 static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4671 const struct hda_fixup *fix, int action)
4673 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4674 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4677 static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4678 const struct hda_fixup *fix, int action)
4680 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4681 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4684 static void alc236_fixup_hp_micmute_led_vref(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->cap_mute_led_nid = 0x1a;
4691 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4692 codec->power_filter = led_power_filter;
4696 static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4697 const struct hda_fixup *fix, int action)
4699 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4700 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4703 #if IS_REACHABLE(CONFIG_INPUT)
4704 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4705 struct hda_jack_callback *event)
4707 struct alc_spec *spec = codec->spec;
4709 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4710 send both key on and key off event for every interrupt. */
4711 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4712 input_sync(spec->kb_dev);
4713 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4714 input_sync(spec->kb_dev);
4717 static int alc_register_micmute_input_device(struct hda_codec *codec)
4719 struct alc_spec *spec = codec->spec;
4722 spec->kb_dev = input_allocate_device();
4723 if (!spec->kb_dev) {
4724 codec_err(codec, "Out of memory (input_allocate_device)\n");
4728 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4730 spec->kb_dev->name = "Microphone Mute Button";
4731 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4732 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4733 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4734 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4735 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4736 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4738 if (input_register_device(spec->kb_dev)) {
4739 codec_err(codec, "input_register_device failed\n");
4740 input_free_device(spec->kb_dev);
4741 spec->kb_dev = NULL;
4748 /* GPIO1 = set according to SKU external amp
4749 * GPIO2 = mic mute hotkey
4751 * GPIO4 = mic mute LED
4753 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4754 const struct hda_fixup *fix, int action)
4756 struct alc_spec *spec = codec->spec;
4758 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4759 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4760 spec->init_amp = ALC_INIT_DEFAULT;
4761 if (alc_register_micmute_input_device(codec) != 0)
4764 spec->gpio_mask |= 0x06;
4765 spec->gpio_dir |= 0x02;
4766 spec->gpio_data |= 0x02;
4767 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4768 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4769 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4770 gpio2_mic_hotkey_event);
4778 case HDA_FIXUP_ACT_FREE:
4779 input_unregister_device(spec->kb_dev);
4780 spec->kb_dev = NULL;
4784 /* Line2 = mic mute hotkey
4785 * GPIO2 = mic mute LED
4787 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4788 const struct hda_fixup *fix, int action)
4790 struct alc_spec *spec = codec->spec;
4792 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4793 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4794 spec->init_amp = ALC_INIT_DEFAULT;
4795 if (alc_register_micmute_input_device(codec) != 0)
4798 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4799 gpio2_mic_hotkey_event);
4807 case HDA_FIXUP_ACT_FREE:
4808 input_unregister_device(spec->kb_dev);
4809 spec->kb_dev = NULL;
4813 #define alc280_fixup_hp_gpio2_mic_hotkey NULL
4814 #define alc233_fixup_lenovo_line2_mic_hotkey NULL
4817 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4818 const struct hda_fixup *fix, int action)
4820 struct alc_spec *spec = codec->spec;
4822 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4823 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4824 spec->cap_mute_led_nid = 0x18;
4825 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4829 static const struct coef_fw alc225_pre_hsmode[] = {
4830 UPDATE_COEF(0x4a, 1<<8, 0),
4831 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4832 UPDATE_COEF(0x63, 3<<14, 3<<14),
4833 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4834 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4835 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4836 UPDATE_COEF(0x4a, 3<<10, 0),
4840 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4842 struct alc_spec *spec = codec->spec;
4843 static const struct coef_fw coef0255[] = {
4844 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4845 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4846 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4847 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4848 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4851 static const struct coef_fw coef0256[] = {
4852 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4853 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4854 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4855 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4856 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4859 static const struct coef_fw coef0233[] = {
4860 WRITE_COEF(0x1b, 0x0c0b),
4861 WRITE_COEF(0x45, 0xc429),
4862 UPDATE_COEF(0x35, 0x4000, 0),
4863 WRITE_COEF(0x06, 0x2104),
4864 WRITE_COEF(0x1a, 0x0001),
4865 WRITE_COEF(0x26, 0x0004),
4866 WRITE_COEF(0x32, 0x42a3),
4869 static const struct coef_fw coef0288[] = {
4870 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4871 UPDATE_COEF(0x50, 0x2000, 0x2000),
4872 UPDATE_COEF(0x56, 0x0006, 0x0006),
4873 UPDATE_COEF(0x66, 0x0008, 0),
4874 UPDATE_COEF(0x67, 0x2000, 0),
4877 static const struct coef_fw coef0298[] = {
4878 UPDATE_COEF(0x19, 0x1300, 0x0300),
4881 static const struct coef_fw coef0292[] = {
4882 WRITE_COEF(0x76, 0x000e),
4883 WRITE_COEF(0x6c, 0x2400),
4884 WRITE_COEF(0x18, 0x7308),
4885 WRITE_COEF(0x6b, 0xc429),
4888 static const struct coef_fw coef0293[] = {
4889 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4890 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4891 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4892 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4893 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4894 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4897 static const struct coef_fw coef0668[] = {
4898 WRITE_COEF(0x15, 0x0d40),
4899 WRITE_COEF(0xb7, 0x802b),
4902 static const struct coef_fw coef0225[] = {
4903 UPDATE_COEF(0x63, 3<<14, 0),
4906 static const struct coef_fw coef0274[] = {
4907 UPDATE_COEF(0x4a, 0x0100, 0),
4908 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4909 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4910 UPDATE_COEF(0x4a, 0x0010, 0),
4911 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4912 WRITE_COEF(0x45, 0x5289),
4913 UPDATE_COEF(0x4a, 0x0c00, 0),
4917 if (spec->no_internal_mic_pin) {
4918 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
4922 switch (codec->core.vendor_id) {
4924 alc_process_coef_fw(codec, coef0255);
4930 alc_process_coef_fw(codec, coef0256);
4935 alc_process_coef_fw(codec, coef0274);
4939 alc_process_coef_fw(codec, coef0233);
4943 alc_process_coef_fw(codec, coef0288);
4946 alc_process_coef_fw(codec, coef0298);
4947 alc_process_coef_fw(codec, coef0288);
4950 alc_process_coef_fw(codec, coef0292);
4953 alc_process_coef_fw(codec, coef0293);
4956 alc_process_coef_fw(codec, coef0668);
4964 alc_process_coef_fw(codec, alc225_pre_hsmode);
4965 alc_process_coef_fw(codec, coef0225);
4968 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4971 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
4975 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4978 static const struct coef_fw coef0255[] = {
4979 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4980 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4983 static const struct coef_fw coef0256[] = {
4984 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
4985 WRITE_COEFEX(0x57, 0x03, 0x09a3),
4986 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4989 static const struct coef_fw coef0233[] = {
4990 UPDATE_COEF(0x35, 0, 1<<14),
4991 WRITE_COEF(0x06, 0x2100),
4992 WRITE_COEF(0x1a, 0x0021),
4993 WRITE_COEF(0x26, 0x008c),
4996 static const struct coef_fw coef0288[] = {
4997 UPDATE_COEF(0x4f, 0x00c0, 0),
4998 UPDATE_COEF(0x50, 0x2000, 0),
4999 UPDATE_COEF(0x56, 0x0006, 0),
5000 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5001 UPDATE_COEF(0x66, 0x0008, 0x0008),
5002 UPDATE_COEF(0x67, 0x2000, 0x2000),
5005 static const struct coef_fw coef0292[] = {
5006 WRITE_COEF(0x19, 0xa208),
5007 WRITE_COEF(0x2e, 0xacf0),
5010 static const struct coef_fw coef0293[] = {
5011 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5012 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5013 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5016 static const struct coef_fw coef0688[] = {
5017 WRITE_COEF(0xb7, 0x802b),
5018 WRITE_COEF(0xb5, 0x1040),
5019 UPDATE_COEF(0xc3, 0, 1<<12),
5022 static const struct coef_fw coef0225[] = {
5023 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5024 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5025 UPDATE_COEF(0x63, 3<<14, 0),
5028 static const struct coef_fw coef0274[] = {
5029 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5030 UPDATE_COEF(0x4a, 0x0010, 0),
5031 UPDATE_COEF(0x6b, 0xf000, 0),
5035 switch (codec->core.vendor_id) {
5037 alc_write_coef_idx(codec, 0x45, 0xc489);
5038 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5039 alc_process_coef_fw(codec, coef0255);
5040 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5046 alc_write_coef_idx(codec, 0x45, 0xc489);
5047 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5048 alc_process_coef_fw(codec, coef0256);
5049 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5054 alc_write_coef_idx(codec, 0x45, 0x4689);
5055 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5056 alc_process_coef_fw(codec, coef0274);
5057 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5061 alc_write_coef_idx(codec, 0x45, 0xc429);
5062 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5063 alc_process_coef_fw(codec, coef0233);
5064 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5069 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5070 alc_process_coef_fw(codec, coef0288);
5071 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5074 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5075 alc_process_coef_fw(codec, coef0292);
5078 /* Set to TRS mode */
5079 alc_write_coef_idx(codec, 0x45, 0xc429);
5080 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5081 alc_process_coef_fw(codec, coef0293);
5082 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5085 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
5089 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5090 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5093 alc_write_coef_idx(codec, 0x11, 0x0001);
5094 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5095 alc_process_coef_fw(codec, coef0688);
5096 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5104 alc_process_coef_fw(codec, alc225_pre_hsmode);
5105 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5106 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5107 alc_process_coef_fw(codec, coef0225);
5108 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5111 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
5114 static void alc_headset_mode_default(struct hda_codec *codec)
5116 static const struct coef_fw coef0225[] = {
5117 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5118 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5119 UPDATE_COEF(0x49, 3<<8, 0<<8),
5120 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5121 UPDATE_COEF(0x63, 3<<14, 0),
5122 UPDATE_COEF(0x67, 0xf000, 0x3000),
5125 static const struct coef_fw coef0255[] = {
5126 WRITE_COEF(0x45, 0xc089),
5127 WRITE_COEF(0x45, 0xc489),
5128 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5129 WRITE_COEF(0x49, 0x0049),
5132 static const struct coef_fw coef0256[] = {
5133 WRITE_COEF(0x45, 0xc489),
5134 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5135 WRITE_COEF(0x49, 0x0049),
5136 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5137 WRITE_COEF(0x06, 0x6100),
5140 static const struct coef_fw coef0233[] = {
5141 WRITE_COEF(0x06, 0x2100),
5142 WRITE_COEF(0x32, 0x4ea3),
5145 static const struct coef_fw coef0288[] = {
5146 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5147 UPDATE_COEF(0x50, 0x2000, 0x2000),
5148 UPDATE_COEF(0x56, 0x0006, 0x0006),
5149 UPDATE_COEF(0x66, 0x0008, 0),
5150 UPDATE_COEF(0x67, 0x2000, 0),
5153 static const struct coef_fw coef0292[] = {
5154 WRITE_COEF(0x76, 0x000e),
5155 WRITE_COEF(0x6c, 0x2400),
5156 WRITE_COEF(0x6b, 0xc429),
5157 WRITE_COEF(0x18, 0x7308),
5160 static const struct coef_fw coef0293[] = {
5161 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5162 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5163 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5166 static const struct coef_fw coef0688[] = {
5167 WRITE_COEF(0x11, 0x0041),
5168 WRITE_COEF(0x15, 0x0d40),
5169 WRITE_COEF(0xb7, 0x802b),
5172 static const struct coef_fw coef0274[] = {
5173 WRITE_COEF(0x45, 0x4289),
5174 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5175 UPDATE_COEF(0x6b, 0x0f00, 0),
5176 UPDATE_COEF(0x49, 0x0300, 0x0300),
5180 switch (codec->core.vendor_id) {
5187 alc_process_coef_fw(codec, alc225_pre_hsmode);
5188 alc_process_coef_fw(codec, coef0225);
5191 alc_process_coef_fw(codec, coef0255);
5197 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5198 alc_write_coef_idx(codec, 0x45, 0xc089);
5200 alc_process_coef_fw(codec, coef0256);
5205 alc_process_coef_fw(codec, coef0274);
5209 alc_process_coef_fw(codec, coef0233);
5214 alc_process_coef_fw(codec, coef0288);
5217 alc_process_coef_fw(codec, coef0292);
5220 alc_process_coef_fw(codec, coef0293);
5223 alc_process_coef_fw(codec, coef0688);
5226 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5229 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
5233 static void alc_headset_mode_ctia(struct hda_codec *codec)
5237 static const struct coef_fw coef0255[] = {
5238 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5239 WRITE_COEF(0x1b, 0x0c2b),
5240 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5243 static const struct coef_fw coef0256[] = {
5244 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5245 WRITE_COEF(0x1b, 0x0e6b),
5248 static const struct coef_fw coef0233[] = {
5249 WRITE_COEF(0x45, 0xd429),
5250 WRITE_COEF(0x1b, 0x0c2b),
5251 WRITE_COEF(0x32, 0x4ea3),
5254 static const struct coef_fw coef0288[] = {
5255 UPDATE_COEF(0x50, 0x2000, 0x2000),
5256 UPDATE_COEF(0x56, 0x0006, 0x0006),
5257 UPDATE_COEF(0x66, 0x0008, 0),
5258 UPDATE_COEF(0x67, 0x2000, 0),
5261 static const struct coef_fw coef0292[] = {
5262 WRITE_COEF(0x6b, 0xd429),
5263 WRITE_COEF(0x76, 0x0008),
5264 WRITE_COEF(0x18, 0x7388),
5267 static const struct coef_fw coef0293[] = {
5268 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5269 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5272 static const struct coef_fw coef0688[] = {
5273 WRITE_COEF(0x11, 0x0001),
5274 WRITE_COEF(0x15, 0x0d60),
5275 WRITE_COEF(0xc3, 0x0000),
5278 static const struct coef_fw coef0225_1[] = {
5279 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5280 UPDATE_COEF(0x63, 3<<14, 2<<14),
5283 static const struct coef_fw coef0225_2[] = {
5284 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5285 UPDATE_COEF(0x63, 3<<14, 1<<14),
5289 switch (codec->core.vendor_id) {
5291 alc_process_coef_fw(codec, coef0255);
5297 alc_process_coef_fw(codec, coef0256);
5302 alc_write_coef_idx(codec, 0x45, 0xd689);
5306 alc_process_coef_fw(codec, coef0233);
5309 val = alc_read_coef_idx(codec, 0x50);
5310 if (val & (1 << 12)) {
5311 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5312 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5315 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5316 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5322 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5324 alc_process_coef_fw(codec, coef0288);
5327 alc_process_coef_fw(codec, coef0292);
5330 alc_process_coef_fw(codec, coef0293);
5333 alc_process_coef_fw(codec, coef0688);
5341 val = alc_read_coef_idx(codec, 0x45);
5343 alc_process_coef_fw(codec, coef0225_2);
5345 alc_process_coef_fw(codec, coef0225_1);
5348 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5351 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
5355 static void alc_headset_mode_omtp(struct hda_codec *codec)
5357 static const struct coef_fw coef0255[] = {
5358 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5359 WRITE_COEF(0x1b, 0x0c2b),
5360 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5363 static const struct coef_fw coef0256[] = {
5364 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5365 WRITE_COEF(0x1b, 0x0e6b),
5368 static const struct coef_fw coef0233[] = {
5369 WRITE_COEF(0x45, 0xe429),
5370 WRITE_COEF(0x1b, 0x0c2b),
5371 WRITE_COEF(0x32, 0x4ea3),
5374 static const struct coef_fw coef0288[] = {
5375 UPDATE_COEF(0x50, 0x2000, 0x2000),
5376 UPDATE_COEF(0x56, 0x0006, 0x0006),
5377 UPDATE_COEF(0x66, 0x0008, 0),
5378 UPDATE_COEF(0x67, 0x2000, 0),
5381 static const struct coef_fw coef0292[] = {
5382 WRITE_COEF(0x6b, 0xe429),
5383 WRITE_COEF(0x76, 0x0008),
5384 WRITE_COEF(0x18, 0x7388),
5387 static const struct coef_fw coef0293[] = {
5388 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5389 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5392 static const struct coef_fw coef0688[] = {
5393 WRITE_COEF(0x11, 0x0001),
5394 WRITE_COEF(0x15, 0x0d50),
5395 WRITE_COEF(0xc3, 0x0000),
5398 static const struct coef_fw coef0225[] = {
5399 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5400 UPDATE_COEF(0x63, 3<<14, 2<<14),
5404 switch (codec->core.vendor_id) {
5406 alc_process_coef_fw(codec, coef0255);
5412 alc_process_coef_fw(codec, coef0256);
5417 alc_write_coef_idx(codec, 0x45, 0xe689);
5421 alc_process_coef_fw(codec, coef0233);
5424 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5425 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5430 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5432 alc_process_coef_fw(codec, coef0288);
5435 alc_process_coef_fw(codec, coef0292);
5438 alc_process_coef_fw(codec, coef0293);
5441 alc_process_coef_fw(codec, coef0688);
5449 alc_process_coef_fw(codec, coef0225);
5452 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
5455 static void alc_determine_headset_type(struct hda_codec *codec)
5458 bool is_ctia = false;
5459 struct alc_spec *spec = codec->spec;
5460 static const struct coef_fw coef0255[] = {
5461 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5462 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5466 static const struct coef_fw coef0288[] = {
5467 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5470 static const struct coef_fw coef0298[] = {
5471 UPDATE_COEF(0x50, 0x2000, 0x2000),
5472 UPDATE_COEF(0x56, 0x0006, 0x0006),
5473 UPDATE_COEF(0x66, 0x0008, 0),
5474 UPDATE_COEF(0x67, 0x2000, 0),
5475 UPDATE_COEF(0x19, 0x1300, 0x1300),
5478 static const struct coef_fw coef0293[] = {
5479 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5480 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5483 static const struct coef_fw coef0688[] = {
5484 WRITE_COEF(0x11, 0x0001),
5485 WRITE_COEF(0xb7, 0x802b),
5486 WRITE_COEF(0x15, 0x0d60),
5487 WRITE_COEF(0xc3, 0x0c00),
5490 static const struct coef_fw coef0274[] = {
5491 UPDATE_COEF(0x4a, 0x0010, 0),
5492 UPDATE_COEF(0x4a, 0x8000, 0),
5493 WRITE_COEF(0x45, 0xd289),
5494 UPDATE_COEF(0x49, 0x0300, 0x0300),
5498 if (spec->no_internal_mic_pin) {
5499 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5503 switch (codec->core.vendor_id) {
5505 alc_process_coef_fw(codec, coef0255);
5507 val = alc_read_coef_idx(codec, 0x46);
5508 is_ctia = (val & 0x0070) == 0x0070;
5514 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5515 alc_write_coef_idx(codec, 0x06, 0x6104);
5516 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5518 snd_hda_codec_write(codec, 0x21, 0,
5519 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5521 snd_hda_codec_write(codec, 0x21, 0,
5522 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5524 alc_process_coef_fw(codec, coef0255);
5526 val = alc_read_coef_idx(codec, 0x46);
5527 is_ctia = (val & 0x0070) == 0x0070;
5529 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5530 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5532 snd_hda_codec_write(codec, 0x21, 0,
5533 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5535 snd_hda_codec_write(codec, 0x21, 0,
5536 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5541 alc_process_coef_fw(codec, coef0274);
5543 val = alc_read_coef_idx(codec, 0x46);
5544 is_ctia = (val & 0x00f0) == 0x00f0;
5548 alc_write_coef_idx(codec, 0x45, 0xd029);
5550 val = alc_read_coef_idx(codec, 0x46);
5551 is_ctia = (val & 0x0070) == 0x0070;
5554 snd_hda_codec_write(codec, 0x21, 0,
5555 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5557 snd_hda_codec_write(codec, 0x21, 0,
5558 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5561 val = alc_read_coef_idx(codec, 0x50);
5562 if (val & (1 << 12)) {
5563 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5564 alc_process_coef_fw(codec, coef0288);
5566 val = alc_read_coef_idx(codec, 0x50);
5567 is_ctia = (val & 0x0070) == 0x0070;
5569 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5570 alc_process_coef_fw(codec, coef0288);
5572 val = alc_read_coef_idx(codec, 0x50);
5573 is_ctia = (val & 0x0070) == 0x0070;
5575 alc_process_coef_fw(codec, coef0298);
5576 snd_hda_codec_write(codec, 0x21, 0,
5577 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5579 snd_hda_codec_write(codec, 0x21, 0,
5580 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5584 alc_process_coef_fw(codec, coef0288);
5586 val = alc_read_coef_idx(codec, 0x50);
5587 is_ctia = (val & 0x0070) == 0x0070;
5590 alc_write_coef_idx(codec, 0x6b, 0xd429);
5592 val = alc_read_coef_idx(codec, 0x6c);
5593 is_ctia = (val & 0x001c) == 0x001c;
5596 alc_process_coef_fw(codec, coef0293);
5598 val = alc_read_coef_idx(codec, 0x46);
5599 is_ctia = (val & 0x0070) == 0x0070;
5602 alc_process_coef_fw(codec, coef0688);
5604 val = alc_read_coef_idx(codec, 0xbe);
5605 is_ctia = (val & 0x1c02) == 0x1c02;
5613 snd_hda_codec_write(codec, 0x21, 0,
5614 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5616 snd_hda_codec_write(codec, 0x21, 0,
5617 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5619 alc_process_coef_fw(codec, alc225_pre_hsmode);
5620 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5621 val = alc_read_coef_idx(codec, 0x45);
5622 if (val & (1 << 9)) {
5623 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5624 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5626 val = alc_read_coef_idx(codec, 0x46);
5627 is_ctia = (val & 0x00f0) == 0x00f0;
5629 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5630 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5632 val = alc_read_coef_idx(codec, 0x46);
5633 is_ctia = (val & 0x00f0) == 0x00f0;
5635 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5636 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5637 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
5639 snd_hda_codec_write(codec, 0x21, 0,
5640 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5642 snd_hda_codec_write(codec, 0x21, 0,
5643 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5650 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
5651 is_ctia ? "yes" : "no");
5652 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5655 static void alc_update_headset_mode(struct hda_codec *codec)
5657 struct alc_spec *spec = codec->spec;
5659 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
5660 hda_nid_t hp_pin = alc_get_hp_pin(spec);
5662 int new_headset_mode;
5664 if (!snd_hda_jack_detect(codec, hp_pin))
5665 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5666 else if (mux_pin == spec->headset_mic_pin)
5667 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5668 else if (mux_pin == spec->headphone_mic_pin)
5669 new_headset_mode = ALC_HEADSET_MODE_MIC;
5671 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5673 if (new_headset_mode == spec->current_headset_mode) {
5674 snd_hda_gen_update_outputs(codec);
5678 switch (new_headset_mode) {
5679 case ALC_HEADSET_MODE_UNPLUGGED:
5680 alc_headset_mode_unplugged(codec);
5681 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5682 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5683 spec->gen.hp_jack_present = false;
5685 case ALC_HEADSET_MODE_HEADSET:
5686 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5687 alc_determine_headset_type(codec);
5688 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5689 alc_headset_mode_ctia(codec);
5690 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5691 alc_headset_mode_omtp(codec);
5692 spec->gen.hp_jack_present = true;
5694 case ALC_HEADSET_MODE_MIC:
5695 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5696 spec->gen.hp_jack_present = false;
5698 case ALC_HEADSET_MODE_HEADPHONE:
5699 alc_headset_mode_default(codec);
5700 spec->gen.hp_jack_present = true;
5703 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5704 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5705 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5706 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5707 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5710 spec->current_headset_mode = new_headset_mode;
5712 snd_hda_gen_update_outputs(codec);
5715 static void alc_update_headset_mode_hook(struct hda_codec *codec,
5716 struct snd_kcontrol *kcontrol,
5717 struct snd_ctl_elem_value *ucontrol)
5719 alc_update_headset_mode(codec);
5722 static void alc_update_headset_jack_cb(struct hda_codec *codec,
5723 struct hda_jack_callback *jack)
5725 snd_hda_gen_hp_automute(codec, jack);
5726 alc_update_headset_mode(codec);
5729 static void alc_probe_headset_mode(struct hda_codec *codec)
5732 struct alc_spec *spec = codec->spec;
5733 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5736 for (i = 0; i < cfg->num_inputs; i++) {
5737 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5738 spec->headset_mic_pin = cfg->inputs[i].pin;
5739 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5740 spec->headphone_mic_pin = cfg->inputs[i].pin;
5743 WARN_ON(spec->gen.cap_sync_hook);
5744 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5745 spec->gen.automute_hook = alc_update_headset_mode;
5746 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5749 static void alc_fixup_headset_mode(struct hda_codec *codec,
5750 const struct hda_fixup *fix, int action)
5752 struct alc_spec *spec = codec->spec;
5755 case HDA_FIXUP_ACT_PRE_PROBE:
5756 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5758 case HDA_FIXUP_ACT_PROBE:
5759 alc_probe_headset_mode(codec);
5761 case HDA_FIXUP_ACT_INIT:
5762 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5763 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5764 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5766 alc_update_headset_mode(codec);
5771 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5772 const struct hda_fixup *fix, int action)
5774 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5775 struct alc_spec *spec = codec->spec;
5776 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5779 alc_fixup_headset_mode(codec, fix, action);
5782 static void alc255_set_default_jack_type(struct hda_codec *codec)
5784 /* Set to iphone type */
5785 static const struct coef_fw alc255fw[] = {
5786 WRITE_COEF(0x1b, 0x880b),
5787 WRITE_COEF(0x45, 0xd089),
5788 WRITE_COEF(0x1b, 0x080b),
5789 WRITE_COEF(0x46, 0x0004),
5790 WRITE_COEF(0x1b, 0x0c0b),
5793 static const struct coef_fw alc256fw[] = {
5794 WRITE_COEF(0x1b, 0x884b),
5795 WRITE_COEF(0x45, 0xd089),
5796 WRITE_COEF(0x1b, 0x084b),
5797 WRITE_COEF(0x46, 0x0004),
5798 WRITE_COEF(0x1b, 0x0c4b),
5801 switch (codec->core.vendor_id) {
5803 alc_process_coef_fw(codec, alc255fw);
5809 alc_process_coef_fw(codec, alc256fw);
5815 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5816 const struct hda_fixup *fix, int action)
5818 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5819 alc255_set_default_jack_type(codec);
5821 alc_fixup_headset_mode(codec, fix, action);
5824 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5825 const struct hda_fixup *fix, int action)
5827 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5828 struct alc_spec *spec = codec->spec;
5829 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5830 alc255_set_default_jack_type(codec);
5833 alc_fixup_headset_mode(codec, fix, action);
5836 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5837 struct hda_jack_callback *jack)
5839 struct alc_spec *spec = codec->spec;
5841 alc_update_headset_jack_cb(codec, jack);
5842 /* Headset Mic enable or disable, only for Dell Dino */
5843 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5846 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5847 const struct hda_fixup *fix, int action)
5849 alc_fixup_headset_mode(codec, fix, action);
5850 if (action == HDA_FIXUP_ACT_PROBE) {
5851 struct alc_spec *spec = codec->spec;
5852 /* toggled via hp_automute_hook */
5853 spec->gpio_mask |= 0x40;
5854 spec->gpio_dir |= 0x40;
5855 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5859 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5860 const struct hda_fixup *fix, int action)
5862 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5863 struct alc_spec *spec = codec->spec;
5864 spec->gen.auto_mute_via_amp = 1;
5868 static void alc_fixup_no_shutup(struct hda_codec *codec,
5869 const struct hda_fixup *fix, int action)
5871 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5872 struct alc_spec *spec = codec->spec;
5873 spec->no_shutup_pins = 1;
5877 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5878 const struct hda_fixup *fix, int action)
5880 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5881 struct alc_spec *spec = codec->spec;
5882 /* Disable AA-loopback as it causes white noise */
5883 spec->gen.mixer_nid = 0;
5887 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5888 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5889 const struct hda_fixup *fix, int action)
5891 static const struct hda_pintbl pincfgs[] = {
5892 { 0x16, 0x21211010 }, /* dock headphone */
5893 { 0x19, 0x21a11010 }, /* dock mic */
5896 struct alc_spec *spec = codec->spec;
5898 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5899 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5900 codec->power_save_node = 0; /* avoid click noises */
5901 snd_hda_apply_pincfgs(codec, pincfgs);
5905 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5906 const struct hda_fixup *fix, int action)
5908 static const struct hda_pintbl pincfgs[] = {
5909 { 0x17, 0x21211010 }, /* dock headphone */
5910 { 0x19, 0x21a11010 }, /* dock mic */
5913 struct alc_spec *spec = codec->spec;
5915 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5916 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5917 snd_hda_apply_pincfgs(codec, pincfgs);
5918 } else if (action == HDA_FIXUP_ACT_INIT) {
5919 /* Enable DOCK device */
5920 snd_hda_codec_write(codec, 0x17, 0,
5921 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5922 /* Enable DOCK device */
5923 snd_hda_codec_write(codec, 0x19, 0,
5924 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5928 static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
5929 const struct hda_fixup *fix, int action)
5931 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
5932 * the speaker output becomes too low by some reason on Thinkpads with
5935 static const hda_nid_t preferred_pairs[] = {
5936 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
5939 struct alc_spec *spec = codec->spec;
5941 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5942 spec->gen.preferred_dacs = preferred_pairs;
5945 static void alc295_fixup_asus_dacs(struct hda_codec *codec,
5946 const struct hda_fixup *fix, int action)
5948 static const hda_nid_t preferred_pairs[] = {
5949 0x17, 0x02, 0x21, 0x03, 0
5951 struct alc_spec *spec = codec->spec;
5953 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5954 spec->gen.preferred_dacs = preferred_pairs;
5957 static void alc_shutup_dell_xps13(struct hda_codec *codec)
5959 struct alc_spec *spec = codec->spec;
5960 int hp_pin = alc_get_hp_pin(spec);
5962 /* Prevent pop noises when headphones are plugged in */
5963 snd_hda_codec_write(codec, hp_pin, 0,
5964 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5968 static void alc_fixup_dell_xps13(struct hda_codec *codec,
5969 const struct hda_fixup *fix, int action)
5971 struct alc_spec *spec = codec->spec;
5972 struct hda_input_mux *imux = &spec->gen.input_mux;
5976 case HDA_FIXUP_ACT_PRE_PROBE:
5977 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5978 * it causes a click noise at start up
5980 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5981 spec->shutup = alc_shutup_dell_xps13;
5983 case HDA_FIXUP_ACT_PROBE:
5984 /* Make the internal mic the default input source. */
5985 for (i = 0; i < imux->num_items; i++) {
5986 if (spec->gen.imux_pins[i] == 0x12) {
5987 spec->gen.cur_mux[0] = i;
5995 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5996 const struct hda_fixup *fix, int action)
5998 struct alc_spec *spec = codec->spec;
6000 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6001 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6002 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
6004 /* Disable boost for mic-in permanently. (This code is only called
6005 from quirks that guarantee that the headphone is at NID 0x1b.) */
6006 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6007 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
6009 alc_fixup_headset_mode(codec, fix, action);
6012 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6013 const struct hda_fixup *fix, int action)
6015 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6016 alc_write_coef_idx(codec, 0xc4, 0x8000);
6017 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
6018 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6020 alc_fixup_headset_mode(codec, fix, action);
6023 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6024 static int find_ext_mic_pin(struct hda_codec *codec)
6026 struct alc_spec *spec = codec->spec;
6027 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6029 unsigned int defcfg;
6032 for (i = 0; i < cfg->num_inputs; i++) {
6033 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6035 nid = cfg->inputs[i].pin;
6036 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6037 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6045 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6046 const struct hda_fixup *fix,
6049 struct alc_spec *spec = codec->spec;
6051 if (action == HDA_FIXUP_ACT_PROBE) {
6052 int mic_pin = find_ext_mic_pin(codec);
6053 int hp_pin = alc_get_hp_pin(spec);
6055 if (snd_BUG_ON(!mic_pin || !hp_pin))
6057 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
6061 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6062 const struct hda_fixup *fix,
6065 struct alc_spec *spec = codec->spec;
6066 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6069 /* The mic boosts on level 2 and 3 are too noisy
6070 on the internal mic input.
6071 Therefore limit the boost to 0 or 1. */
6073 if (action != HDA_FIXUP_ACT_PROBE)
6076 for (i = 0; i < cfg->num_inputs; i++) {
6077 hda_nid_t nid = cfg->inputs[i].pin;
6078 unsigned int defcfg;
6079 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6081 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6082 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6085 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6086 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6087 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6088 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6089 (0 << AC_AMPCAP_MUTE_SHIFT));
6093 static void alc283_hp_automute_hook(struct hda_codec *codec,
6094 struct hda_jack_callback *jack)
6096 struct alc_spec *spec = codec->spec;
6100 snd_hda_gen_hp_automute(codec, jack);
6102 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6105 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6109 static void alc283_fixup_chromebook(struct hda_codec *codec,
6110 const struct hda_fixup *fix, int action)
6112 struct alc_spec *spec = codec->spec;
6115 case HDA_FIXUP_ACT_PRE_PROBE:
6116 snd_hda_override_wcaps(codec, 0x03, 0);
6117 /* Disable AA-loopback as it causes white noise */
6118 spec->gen.mixer_nid = 0;
6120 case HDA_FIXUP_ACT_INIT:
6121 /* MIC2-VREF control */
6122 /* Set to manual mode */
6123 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6124 /* Enable Line1 input control by verb */
6125 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
6130 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6131 const struct hda_fixup *fix, int action)
6133 struct alc_spec *spec = codec->spec;
6136 case HDA_FIXUP_ACT_PRE_PROBE:
6137 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
6139 case HDA_FIXUP_ACT_INIT:
6140 /* MIC2-VREF control */
6141 /* Set to manual mode */
6142 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6147 /* mute tablet speaker pin (0x14) via dock plugging in addition */
6148 static void asus_tx300_automute(struct hda_codec *codec)
6150 struct alc_spec *spec = codec->spec;
6151 snd_hda_gen_update_outputs(codec);
6152 if (snd_hda_jack_detect(codec, 0x1b))
6153 spec->gen.mute_bits |= (1ULL << 0x14);
6156 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6157 const struct hda_fixup *fix, int action)
6159 struct alc_spec *spec = codec->spec;
6160 static const struct hda_pintbl dock_pins[] = {
6161 { 0x1b, 0x21114000 }, /* dock speaker pin */
6166 case HDA_FIXUP_ACT_PRE_PROBE:
6167 spec->init_amp = ALC_INIT_DEFAULT;
6168 /* TX300 needs to set up GPIO2 for the speaker amp */
6169 alc_setup_gpio(codec, 0x04);
6170 snd_hda_apply_pincfgs(codec, dock_pins);
6171 spec->gen.auto_mute_via_amp = 1;
6172 spec->gen.automute_hook = asus_tx300_automute;
6173 snd_hda_jack_detect_enable_callback(codec, 0x1b,
6174 snd_hda_gen_hp_automute);
6176 case HDA_FIXUP_ACT_PROBE:
6177 spec->init_amp = ALC_INIT_DEFAULT;
6179 case HDA_FIXUP_ACT_BUILD:
6180 /* this is a bit tricky; give more sane names for the main
6181 * (tablet) speaker and the dock speaker, respectively
6183 rename_ctl(codec, "Speaker Playback Switch",
6184 "Dock Speaker Playback Switch");
6185 rename_ctl(codec, "Bass Speaker Playback Switch",
6186 "Speaker Playback Switch");
6191 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6192 const struct hda_fixup *fix, int action)
6194 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6195 /* DAC node 0x03 is giving mono output. We therefore want to
6196 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6197 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6198 static const hda_nid_t conn1[] = { 0x0c };
6199 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6200 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
6204 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6205 const struct hda_fixup *fix, int action)
6207 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6208 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6209 we can't adjust the speaker's volume since this node does not has
6210 Amp-out capability. we change the speaker's route to:
6211 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6212 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6213 speaker's volume now. */
6215 static const hda_nid_t conn1[] = { 0x0c };
6216 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
6220 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6221 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6222 const struct hda_fixup *fix, int action)
6224 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6225 static const hda_nid_t conn[] = { 0x02, 0x03 };
6226 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6230 /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6231 static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6232 const struct hda_fixup *fix, int action)
6234 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6235 static const hda_nid_t conn[] = { 0x02 };
6236 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6240 /* Hook to update amp GPIO4 for automute */
6241 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6242 struct hda_jack_callback *jack)
6244 struct alc_spec *spec = codec->spec;
6246 snd_hda_gen_hp_automute(codec, jack);
6247 /* mute_led_polarity is set to 0, so we pass inverted value here */
6248 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6249 !spec->gen.hp_jack_present);
6252 /* Manage GPIOs for HP EliteBook Folio 9480m.
6254 * GPIO4 is the headphone amplifier power control
6255 * GPIO3 is the audio output mute indicator LED
6258 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6259 const struct hda_fixup *fix,
6262 struct alc_spec *spec = codec->spec;
6264 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
6265 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6266 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6267 spec->gpio_mask |= 0x10;
6268 spec->gpio_dir |= 0x10;
6269 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
6273 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6274 const struct hda_fixup *fix,
6277 struct alc_spec *spec = codec->spec;
6279 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6280 spec->gpio_mask |= 0x04;
6281 spec->gpio_dir |= 0x04;
6282 /* set data bit low */
6286 /* Quirk for Thinkpad X1 7th and 8th Gen
6287 * The following fixed routing needed
6288 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6289 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6290 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6292 static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6293 const struct hda_fixup *fix, int action)
6295 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6296 static const hda_nid_t preferred_pairs[] = {
6297 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6299 struct alc_spec *spec = codec->spec;
6302 case HDA_FIXUP_ACT_PRE_PROBE:
6303 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6304 spec->gen.preferred_dacs = preferred_pairs;
6306 case HDA_FIXUP_ACT_BUILD:
6307 /* The generic parser creates somewhat unintuitive volume ctls
6308 * with the fixed routing above, and the shared DAC2 may be
6310 * Rename those to unique names so that PA doesn't touch them
6311 * and use only Master volume.
6313 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6314 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6319 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6320 const struct hda_fixup *fix,
6323 alc_fixup_dual_codecs(codec, fix, action);
6325 case HDA_FIXUP_ACT_PRE_PROBE:
6326 /* override card longname to provide a unique UCM profile */
6327 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6329 case HDA_FIXUP_ACT_BUILD:
6330 /* rename Capture controls depending on the codec */
6331 rename_ctl(codec, "Capture Volume",
6333 "Rear-Panel Capture Volume" :
6334 "Front-Panel Capture Volume");
6335 rename_ctl(codec, "Capture Switch",
6337 "Rear-Panel Capture Switch" :
6338 "Front-Panel Capture Switch");
6343 static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6344 const struct hda_fixup *fix, int action)
6346 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6349 codec->power_save_node = 1;
6352 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6353 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6354 const struct hda_fixup *fix, int action)
6356 struct alc_spec *spec = codec->spec;
6357 static const hda_nid_t preferred_pairs[] = {
6358 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6362 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6365 spec->gen.preferred_dacs = preferred_pairs;
6366 spec->gen.auto_mute_via_amp = 1;
6367 codec->power_save_node = 0;
6370 /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6371 static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6372 const struct hda_fixup *fix, int action)
6374 static const hda_nid_t preferred_pairs[] = {
6375 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6377 struct alc_spec *spec = codec->spec;
6379 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6380 spec->gen.preferred_dacs = preferred_pairs;
6381 spec->gen.obey_preferred_dacs = 1;
6385 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6386 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6387 const struct hda_fixup *fix, int action)
6389 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6392 snd_hda_override_wcaps(codec, 0x03, 0);
6395 static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6397 switch (codec->core.vendor_id) {
6403 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6404 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6412 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6413 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6418 static void alc295_fixup_chromebook(struct hda_codec *codec,
6419 const struct hda_fixup *fix, int action)
6421 struct alc_spec *spec = codec->spec;
6424 case HDA_FIXUP_ACT_PRE_PROBE:
6425 spec->ultra_low_power = true;
6427 case HDA_FIXUP_ACT_INIT:
6428 alc_combo_jack_hp_jd_restart(codec);
6433 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6434 const struct hda_fixup *fix, int action)
6436 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6437 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6441 static void alc294_gx502_toggle_output(struct hda_codec *codec,
6442 struct hda_jack_callback *cb)
6444 /* The Windows driver sets the codec up in a very different way where
6445 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6447 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6448 alc_write_coef_idx(codec, 0x10, 0x8a20);
6450 alc_write_coef_idx(codec, 0x10, 0x0a20);
6453 static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6454 const struct hda_fixup *fix, int action)
6456 /* Pin 0x21: headphones/headset mic */
6457 if (!is_jack_detectable(codec, 0x21))
6461 case HDA_FIXUP_ACT_PRE_PROBE:
6462 snd_hda_jack_detect_enable_callback(codec, 0x21,
6463 alc294_gx502_toggle_output);
6465 case HDA_FIXUP_ACT_INIT:
6466 /* Make sure to start in a correct state, i.e. if
6467 * headphones have been plugged in before powering up the system
6469 alc294_gx502_toggle_output(codec, NULL);
6474 static void alc294_gu502_toggle_output(struct hda_codec *codec,
6475 struct hda_jack_callback *cb)
6477 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6478 * responsible from changes between speakers and headphones
6480 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6481 alc_write_coef_idx(codec, 0x10, 0x8420);
6483 alc_write_coef_idx(codec, 0x10, 0x0a20);
6486 static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6487 const struct hda_fixup *fix, int action)
6489 if (!is_jack_detectable(codec, 0x21))
6493 case HDA_FIXUP_ACT_PRE_PROBE:
6494 snd_hda_jack_detect_enable_callback(codec, 0x21,
6495 alc294_gu502_toggle_output);
6497 case HDA_FIXUP_ACT_INIT:
6498 alc294_gu502_toggle_output(codec, NULL);
6503 static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6504 const struct hda_fixup *fix, int action)
6506 if (action != HDA_FIXUP_ACT_INIT)
6510 alc_write_coef_idx(codec, 0x65, 0x0);
6513 static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6514 const struct hda_fixup *fix, int action)
6517 case HDA_FIXUP_ACT_INIT:
6518 alc_combo_jack_hp_jd_restart(codec);
6523 static void alc_fixup_no_int_mic(struct hda_codec *codec,
6524 const struct hda_fixup *fix, int action)
6526 struct alc_spec *spec = codec->spec;
6529 case HDA_FIXUP_ACT_PRE_PROBE:
6530 /* Mic RING SLEEVE swap for combo jack */
6531 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6532 spec->no_internal_mic_pin = true;
6534 case HDA_FIXUP_ACT_INIT:
6535 alc_combo_jack_hp_jd_restart(codec);
6540 /* GPIO1 = amplifier on/off
6541 * GPIO3 = mic mute LED
6543 static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6544 const struct hda_fixup *fix, int action)
6546 static const hda_nid_t conn[] = { 0x02 };
6548 struct alc_spec *spec = codec->spec;
6549 static const struct hda_pintbl pincfgs[] = {
6550 { 0x14, 0x90170110 }, /* front/high speakers */
6551 { 0x17, 0x90170130 }, /* back/bass speakers */
6555 //enable micmute led
6556 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6559 case HDA_FIXUP_ACT_PRE_PROBE:
6560 spec->micmute_led_polarity = 1;
6561 /* needed for amp of back speakers */
6562 spec->gpio_mask |= 0x01;
6563 spec->gpio_dir |= 0x01;
6564 snd_hda_apply_pincfgs(codec, pincfgs);
6565 /* share DAC to have unified volume control */
6566 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6567 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6569 case HDA_FIXUP_ACT_INIT:
6570 /* need to toggle GPIO to enable the amp of back speakers */
6571 alc_update_gpio_data(codec, 0x01, true);
6573 alc_update_gpio_data(codec, 0x01, false);
6578 static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6579 const struct hda_fixup *fix, int action)
6581 static const hda_nid_t conn[] = { 0x02 };
6582 static const struct hda_pintbl pincfgs[] = {
6583 { 0x14, 0x90170110 }, /* rear speaker */
6588 case HDA_FIXUP_ACT_PRE_PROBE:
6589 snd_hda_apply_pincfgs(codec, pincfgs);
6590 /* force front speaker to DAC1 */
6591 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6596 /* for hda_fixup_thinkpad_acpi() */
6597 #include "thinkpad_helper.c"
6599 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6600 const struct hda_fixup *fix, int action)
6602 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6603 hda_fixup_thinkpad_acpi(codec, fix, action);
6606 /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6607 static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6608 const struct hda_fixup *fix,
6611 struct alc_spec *spec = codec->spec;
6614 case HDA_FIXUP_ACT_PRE_PROBE:
6615 spec->gen.suppress_auto_mute = 1;
6620 static int comp_bind(struct device *dev)
6622 struct hda_codec *cdc = dev_to_hda_codec(dev);
6623 struct alc_spec *spec = cdc->spec;
6626 ret = component_bind_all(dev, spec->comps);
6630 if (snd_hdac_is_power_on(&cdc->core)) {
6631 codec_dbg(cdc, "Resuming after bind.\n");
6632 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
6633 if (spec->comps[i].resume_hook)
6634 spec->comps[i].resume_hook(spec->comps[i].dev);
6640 static void comp_unbind(struct device *dev)
6642 struct hda_codec *cdc = dev_to_hda_codec(dev);
6643 struct alc_spec *spec = cdc->spec;
6645 component_unbind_all(dev, spec->comps);
6648 static const struct component_master_ops comp_master_ops = {
6650 .unbind = comp_unbind,
6653 static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6654 struct snd_pcm_substream *sub, int action)
6656 struct alc_spec *spec = cdc->spec;
6659 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6660 if (spec->comps[i].dev)
6661 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6665 static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6666 const char *hid, int count)
6668 struct device *dev = hda_codec_dev(cdc);
6669 struct alc_spec *spec = cdc->spec;
6674 case HDA_FIXUP_ACT_PRE_PROBE:
6675 for (i = 0; i < count; i++) {
6676 name = devm_kasprintf(dev, GFP_KERNEL,
6677 "%s-%s:00-cs35l41-hda.%d", bus, hid, i);
6680 spec->comps[i].codec = cdc;
6681 component_match_add(dev, &spec->match, component_compare_dev_name, name);
6683 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6685 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6687 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6692 static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6694 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6697 static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6699 cs35l41_generic_fixup(codec, action, "spi0", "CSC3551", 2);
6702 static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6704 cs35l41_generic_fixup(codec, action, "spi0", "CSC3551", 4);
6707 static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6710 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2);
6713 /* for alc295_fixup_hp_top_speakers */
6714 #include "hp_x360_helper.c"
6716 /* for alc285_fixup_ideapad_s740_coef() */
6717 #include "ideapad_s740_helper.c"
6719 static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
6720 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
6721 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
6722 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
6726 static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
6727 const struct hda_fixup *fix,
6731 * A certain other OS sets these coeffs to different values. On at least
6732 * one TongFang barebone these settings might survive even a cold
6733 * reboot. So to restore a clean slate the values are explicitly reset
6734 * to default here. Without this, the external microphone is always in a
6735 * plugged-in state, while the internal microphone is always in an
6736 * unplugged state, breaking the ability to use the internal microphone.
6738 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
6741 static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
6742 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
6743 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
6744 WRITE_COEF(0x49, 0x0149),
6748 static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
6749 const struct hda_fixup *fix,
6753 * The audio jack input and output is not detected on the ASRock NUC Box
6754 * 1100 series when cold booting without this fix. Warm rebooting from a
6755 * certain other OS makes the audio functional, as COEF settings are
6756 * preserved in this case. This fix sets these altered COEF values as
6759 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
6762 static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
6763 const struct hda_fixup *fix,
6767 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
6768 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
6769 * needs an additional quirk for sound working after suspend and resume.
6771 if (codec->core.vendor_id == 0x10ec0256) {
6772 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
6773 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
6775 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
6779 static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
6780 const struct hda_fixup *fix,
6783 struct alc_spec *spec = codec->spec;
6784 struct hda_input_mux *imux = &spec->gen.input_mux;
6787 alc269_fixup_limit_int_mic_boost(codec, fix, action);
6790 case HDA_FIXUP_ACT_PRE_PROBE:
6792 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
6793 * to Hi-Z to avoid pop noises at startup and when plugging and
6794 * unplugging headphones.
6796 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6797 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
6799 case HDA_FIXUP_ACT_PROBE:
6801 * Make the internal mic (0x12) the default input source to
6802 * prevent pop noises on cold boot.
6804 for (i = 0; i < imux->num_items; i++) {
6805 if (spec->gen.imux_pins[i] == 0x12) {
6806 spec->gen.cur_mux[0] = i;
6816 ALC269_FIXUP_SONY_VAIO,
6817 ALC275_FIXUP_SONY_VAIO_GPIO2,
6818 ALC269_FIXUP_DELL_M101Z,
6819 ALC269_FIXUP_SKU_IGNORE,
6820 ALC269_FIXUP_ASUS_G73JW,
6821 ALC269_FIXUP_LENOVO_EAPD,
6822 ALC275_FIXUP_SONY_HWEQ,
6823 ALC275_FIXUP_SONY_DISABLE_AAMIX,
6825 ALC269_FIXUP_PCM_44K,
6826 ALC269_FIXUP_STEREO_DMIC,
6827 ALC269_FIXUP_HEADSET_MIC,
6828 ALC269_FIXUP_QUANTA_MUTE,
6829 ALC269_FIXUP_LIFEBOOK,
6830 ALC269_FIXUP_LIFEBOOK_EXTMIC,
6831 ALC269_FIXUP_LIFEBOOK_HP_PIN,
6832 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
6833 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
6836 ALC269VB_FIXUP_AMIC,
6837 ALC269VB_FIXUP_DMIC,
6838 ALC269_FIXUP_HP_MUTE_LED,
6839 ALC269_FIXUP_HP_MUTE_LED_MIC1,
6840 ALC269_FIXUP_HP_MUTE_LED_MIC2,
6841 ALC269_FIXUP_HP_MUTE_LED_MIC3,
6842 ALC269_FIXUP_HP_GPIO_LED,
6843 ALC269_FIXUP_HP_GPIO_MIC1_LED,
6844 ALC269_FIXUP_HP_LINE1_MIC1_LED,
6845 ALC269_FIXUP_INV_DMIC,
6846 ALC269_FIXUP_LENOVO_DOCK,
6847 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
6848 ALC269_FIXUP_NO_SHUTUP,
6849 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
6850 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
6851 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6852 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
6853 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6854 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
6855 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
6856 ALC269_FIXUP_HEADSET_MODE,
6857 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
6858 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
6859 ALC269_FIXUP_ASUS_X101_FUNC,
6860 ALC269_FIXUP_ASUS_X101_VERB,
6861 ALC269_FIXUP_ASUS_X101,
6862 ALC271_FIXUP_AMIC_MIC2,
6863 ALC271_FIXUP_HP_GATE_MIC_JACK,
6864 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
6865 ALC269_FIXUP_ACER_AC700,
6866 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
6867 ALC269VB_FIXUP_ASUS_ZENBOOK,
6868 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
6869 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
6870 ALC269VB_FIXUP_ORDISSIMO_EVE2,
6871 ALC283_FIXUP_CHROME_BOOK,
6872 ALC283_FIXUP_SENSE_COMBO_JACK,
6873 ALC282_FIXUP_ASUS_TX300,
6874 ALC283_FIXUP_INT_MIC,
6875 ALC290_FIXUP_MONO_SPEAKERS,
6876 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6877 ALC290_FIXUP_SUBWOOFER,
6878 ALC290_FIXUP_SUBWOOFER_HSJACK,
6879 ALC269_FIXUP_THINKPAD_ACPI,
6880 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
6881 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
6882 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
6883 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6884 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
6885 ALC255_FIXUP_HEADSET_MODE,
6886 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
6887 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
6888 ALC292_FIXUP_TPT440_DOCK,
6889 ALC292_FIXUP_TPT440,
6890 ALC283_FIXUP_HEADSET_MIC,
6891 ALC255_FIXUP_MIC_MUTE_LED,
6892 ALC282_FIXUP_ASPIRE_V5_PINS,
6893 ALC269VB_FIXUP_ASPIRE_E1_COEF,
6894 ALC280_FIXUP_HP_GPIO4,
6895 ALC286_FIXUP_HP_GPIO_LED,
6896 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
6897 ALC280_FIXUP_HP_DOCK_PINS,
6898 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
6899 ALC280_FIXUP_HP_9480M,
6900 ALC245_FIXUP_HP_X360_AMP,
6901 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
6902 ALC288_FIXUP_DELL_HEADSET_MODE,
6903 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
6904 ALC288_FIXUP_DELL_XPS_13,
6905 ALC288_FIXUP_DISABLE_AAMIX,
6906 ALC292_FIXUP_DELL_E7X_AAMIX,
6907 ALC292_FIXUP_DELL_E7X,
6908 ALC292_FIXUP_DISABLE_AAMIX,
6909 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
6910 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
6911 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
6912 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6913 ALC275_FIXUP_DELL_XPS,
6914 ALC293_FIXUP_LENOVO_SPK_NOISE,
6915 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
6916 ALC255_FIXUP_DELL_SPK_NOISE,
6917 ALC225_FIXUP_DISABLE_MIC_VREF,
6918 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6919 ALC295_FIXUP_DISABLE_DAC3,
6920 ALC285_FIXUP_SPEAKER2_TO_DAC1,
6921 ALC280_FIXUP_HP_HEADSET_MIC,
6922 ALC221_FIXUP_HP_FRONT_MIC,
6923 ALC292_FIXUP_TPT460,
6924 ALC298_FIXUP_SPK_VOLUME,
6925 ALC298_FIXUP_LENOVO_SPK_VOLUME,
6926 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
6927 ALC269_FIXUP_ATIV_BOOK_8,
6928 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
6929 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
6930 ALC256_FIXUP_ASUS_HEADSET_MODE,
6931 ALC256_FIXUP_ASUS_MIC,
6932 ALC256_FIXUP_ASUS_AIO_GPIO2,
6933 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
6934 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
6935 ALC233_FIXUP_LENOVO_MULTI_CODECS,
6936 ALC233_FIXUP_ACER_HEADSET_MIC,
6937 ALC294_FIXUP_LENOVO_MIC_LOCATION,
6938 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
6939 ALC225_FIXUP_S3_POP_NOISE,
6940 ALC700_FIXUP_INTEL_REFERENCE,
6941 ALC274_FIXUP_DELL_BIND_DACS,
6942 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
6943 ALC298_FIXUP_TPT470_DOCK_FIX,
6944 ALC298_FIXUP_TPT470_DOCK,
6945 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
6946 ALC255_FIXUP_DELL_HEADSET_MIC,
6947 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
6948 ALC298_FIXUP_HUAWEI_MBX_STEREO,
6949 ALC295_FIXUP_HP_X360,
6950 ALC221_FIXUP_HP_HEADSET_MIC,
6951 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
6952 ALC295_FIXUP_HP_AUTO_MUTE,
6953 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
6954 ALC294_FIXUP_ASUS_MIC,
6955 ALC294_FIXUP_ASUS_HEADSET_MIC,
6956 ALC294_FIXUP_ASUS_SPK,
6957 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
6958 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
6959 ALC255_FIXUP_ACER_HEADSET_MIC,
6960 ALC295_FIXUP_CHROME_BOOK,
6961 ALC225_FIXUP_HEADSET_JACK,
6962 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
6963 ALC225_FIXUP_WYSE_AUTO_MUTE,
6964 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
6965 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
6966 ALC256_FIXUP_ASUS_HEADSET_MIC,
6967 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
6968 ALC299_FIXUP_PREDATOR_SPK,
6969 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
6970 ALC289_FIXUP_DELL_SPK2,
6971 ALC289_FIXUP_DUAL_SPK,
6972 ALC294_FIXUP_SPK2_TO_DAC1,
6973 ALC294_FIXUP_ASUS_DUAL_SPK,
6974 ALC285_FIXUP_THINKPAD_X1_GEN7,
6975 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
6976 ALC294_FIXUP_ASUS_HPE,
6977 ALC294_FIXUP_ASUS_COEF_1B,
6978 ALC294_FIXUP_ASUS_GX502_HP,
6979 ALC294_FIXUP_ASUS_GX502_PINS,
6980 ALC294_FIXUP_ASUS_GX502_VERBS,
6981 ALC294_FIXUP_ASUS_GU502_HP,
6982 ALC294_FIXUP_ASUS_GU502_PINS,
6983 ALC294_FIXUP_ASUS_GU502_VERBS,
6984 ALC285_FIXUP_HP_GPIO_LED,
6985 ALC285_FIXUP_HP_MUTE_LED,
6986 ALC236_FIXUP_HP_GPIO_LED,
6987 ALC236_FIXUP_HP_MUTE_LED,
6988 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
6989 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
6990 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
6991 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
6992 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
6993 ALC269VC_FIXUP_ACER_HEADSET_MIC,
6994 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
6995 ALC289_FIXUP_ASUS_GA401,
6996 ALC289_FIXUP_ASUS_GA502,
6997 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
6998 ALC285_FIXUP_HP_GPIO_AMP_INIT,
6999 ALC269_FIXUP_CZC_B20,
7000 ALC269_FIXUP_CZC_TMI,
7001 ALC269_FIXUP_CZC_L101,
7002 ALC269_FIXUP_LEMOTE_A1802,
7003 ALC269_FIXUP_LEMOTE_A190X,
7004 ALC256_FIXUP_INTEL_NUC8_RUGGED,
7005 ALC233_FIXUP_INTEL_NUC8_DMIC,
7006 ALC233_FIXUP_INTEL_NUC8_BOOST,
7007 ALC256_FIXUP_INTEL_NUC10,
7008 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
7009 ALC274_FIXUP_HP_MIC,
7010 ALC274_FIXUP_HP_HEADSET_MIC,
7011 ALC274_FIXUP_HP_ENVY_GPIO,
7012 ALC256_FIXUP_ASUS_HPE,
7013 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
7014 ALC287_FIXUP_HP_GPIO_LED,
7015 ALC256_FIXUP_HP_HEADSET_MIC,
7016 ALC245_FIXUP_HP_GPIO_LED,
7017 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
7018 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
7019 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
7020 ALC256_FIXUP_ACER_HEADSET_MIC,
7021 ALC285_FIXUP_IDEAPAD_S740_COEF,
7022 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7023 ALC295_FIXUP_ASUS_DACS,
7024 ALC295_FIXUP_HP_OMEN,
7025 ALC285_FIXUP_HP_SPECTRE_X360,
7026 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
7027 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
7028 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
7029 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7030 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7031 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7032 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
7033 ALC298_FIXUP_LENOVO_C940_DUET7,
7034 ALC287_FIXUP_13S_GEN2_SPEAKERS,
7035 ALC256_FIXUP_SET_COEF_DEFAULTS,
7036 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7037 ALC233_FIXUP_NO_AUDIO_JACK,
7038 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
7039 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7040 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
7041 ALC287_FIXUP_LEGION_16ACHG6,
7042 ALC287_FIXUP_CS35L41_I2C_2,
7043 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
7044 ALC245_FIXUP_CS35L41_SPI_2,
7045 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
7046 ALC245_FIXUP_CS35L41_SPI_4,
7047 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
7048 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
7049 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
7052 /* A special fixup for Lenovo C940 and Yoga Duet 7;
7053 * both have the very same PCI SSID, and we need to apply different fixups
7054 * depending on the codec ID
7056 static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7057 const struct hda_fixup *fix,
7062 if (codec->core.vendor_id == 0x10ec0298)
7063 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7065 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7066 __snd_hda_apply_fixup(codec, id, action, 0);
7069 static const struct hda_fixup alc269_fixups[] = {
7070 [ALC269_FIXUP_GPIO2] = {
7071 .type = HDA_FIXUP_FUNC,
7072 .v.func = alc_fixup_gpio2,
7074 [ALC269_FIXUP_SONY_VAIO] = {
7075 .type = HDA_FIXUP_PINCTLS,
7076 .v.pins = (const struct hda_pintbl[]) {
7077 {0x19, PIN_VREFGRD},
7081 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
7082 .type = HDA_FIXUP_FUNC,
7083 .v.func = alc275_fixup_gpio4_off,
7085 .chain_id = ALC269_FIXUP_SONY_VAIO
7087 [ALC269_FIXUP_DELL_M101Z] = {
7088 .type = HDA_FIXUP_VERBS,
7089 .v.verbs = (const struct hda_verb[]) {
7090 /* Enables internal speaker */
7091 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7092 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7096 [ALC269_FIXUP_SKU_IGNORE] = {
7097 .type = HDA_FIXUP_FUNC,
7098 .v.func = alc_fixup_sku_ignore,
7100 [ALC269_FIXUP_ASUS_G73JW] = {
7101 .type = HDA_FIXUP_PINS,
7102 .v.pins = (const struct hda_pintbl[]) {
7103 { 0x17, 0x99130111 }, /* subwoofer */
7107 [ALC269_FIXUP_LENOVO_EAPD] = {
7108 .type = HDA_FIXUP_VERBS,
7109 .v.verbs = (const struct hda_verb[]) {
7110 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7114 [ALC275_FIXUP_SONY_HWEQ] = {
7115 .type = HDA_FIXUP_FUNC,
7116 .v.func = alc269_fixup_hweq,
7118 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7120 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7121 .type = HDA_FIXUP_FUNC,
7122 .v.func = alc_fixup_disable_aamix,
7124 .chain_id = ALC269_FIXUP_SONY_VAIO
7126 [ALC271_FIXUP_DMIC] = {
7127 .type = HDA_FIXUP_FUNC,
7128 .v.func = alc271_fixup_dmic,
7130 [ALC269_FIXUP_PCM_44K] = {
7131 .type = HDA_FIXUP_FUNC,
7132 .v.func = alc269_fixup_pcm_44k,
7134 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7136 [ALC269_FIXUP_STEREO_DMIC] = {
7137 .type = HDA_FIXUP_FUNC,
7138 .v.func = alc269_fixup_stereo_dmic,
7140 [ALC269_FIXUP_HEADSET_MIC] = {
7141 .type = HDA_FIXUP_FUNC,
7142 .v.func = alc269_fixup_headset_mic,
7144 [ALC269_FIXUP_QUANTA_MUTE] = {
7145 .type = HDA_FIXUP_FUNC,
7146 .v.func = alc269_fixup_quanta_mute,
7148 [ALC269_FIXUP_LIFEBOOK] = {
7149 .type = HDA_FIXUP_PINS,
7150 .v.pins = (const struct hda_pintbl[]) {
7151 { 0x1a, 0x2101103f }, /* dock line-out */
7152 { 0x1b, 0x23a11040 }, /* dock mic-in */
7156 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7158 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7159 .type = HDA_FIXUP_PINS,
7160 .v.pins = (const struct hda_pintbl[]) {
7161 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7165 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7166 .type = HDA_FIXUP_PINS,
7167 .v.pins = (const struct hda_pintbl[]) {
7168 { 0x21, 0x0221102f }, /* HP out */
7172 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7173 .type = HDA_FIXUP_FUNC,
7174 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7176 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7177 .type = HDA_FIXUP_FUNC,
7178 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7180 [ALC269_FIXUP_AMIC] = {
7181 .type = HDA_FIXUP_PINS,
7182 .v.pins = (const struct hda_pintbl[]) {
7183 { 0x14, 0x99130110 }, /* speaker */
7184 { 0x15, 0x0121401f }, /* HP out */
7185 { 0x18, 0x01a19c20 }, /* mic */
7186 { 0x19, 0x99a3092f }, /* int-mic */
7190 [ALC269_FIXUP_DMIC] = {
7191 .type = HDA_FIXUP_PINS,
7192 .v.pins = (const struct hda_pintbl[]) {
7193 { 0x12, 0x99a3092f }, /* int-mic */
7194 { 0x14, 0x99130110 }, /* speaker */
7195 { 0x15, 0x0121401f }, /* HP out */
7196 { 0x18, 0x01a19c20 }, /* mic */
7200 [ALC269VB_FIXUP_AMIC] = {
7201 .type = HDA_FIXUP_PINS,
7202 .v.pins = (const struct hda_pintbl[]) {
7203 { 0x14, 0x99130110 }, /* speaker */
7204 { 0x18, 0x01a19c20 }, /* mic */
7205 { 0x19, 0x99a3092f }, /* int-mic */
7206 { 0x21, 0x0121401f }, /* HP out */
7210 [ALC269VB_FIXUP_DMIC] = {
7211 .type = HDA_FIXUP_PINS,
7212 .v.pins = (const struct hda_pintbl[]) {
7213 { 0x12, 0x99a3092f }, /* int-mic */
7214 { 0x14, 0x99130110 }, /* speaker */
7215 { 0x18, 0x01a19c20 }, /* mic */
7216 { 0x21, 0x0121401f }, /* HP out */
7220 [ALC269_FIXUP_HP_MUTE_LED] = {
7221 .type = HDA_FIXUP_FUNC,
7222 .v.func = alc269_fixup_hp_mute_led,
7224 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7225 .type = HDA_FIXUP_FUNC,
7226 .v.func = alc269_fixup_hp_mute_led_mic1,
7228 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
7229 .type = HDA_FIXUP_FUNC,
7230 .v.func = alc269_fixup_hp_mute_led_mic2,
7232 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7233 .type = HDA_FIXUP_FUNC,
7234 .v.func = alc269_fixup_hp_mute_led_mic3,
7236 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7238 [ALC269_FIXUP_HP_GPIO_LED] = {
7239 .type = HDA_FIXUP_FUNC,
7240 .v.func = alc269_fixup_hp_gpio_led,
7242 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7243 .type = HDA_FIXUP_FUNC,
7244 .v.func = alc269_fixup_hp_gpio_mic1_led,
7246 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7247 .type = HDA_FIXUP_FUNC,
7248 .v.func = alc269_fixup_hp_line1_mic1_led,
7250 [ALC269_FIXUP_INV_DMIC] = {
7251 .type = HDA_FIXUP_FUNC,
7252 .v.func = alc_fixup_inv_dmic,
7254 [ALC269_FIXUP_NO_SHUTUP] = {
7255 .type = HDA_FIXUP_FUNC,
7256 .v.func = alc_fixup_no_shutup,
7258 [ALC269_FIXUP_LENOVO_DOCK] = {
7259 .type = HDA_FIXUP_PINS,
7260 .v.pins = (const struct hda_pintbl[]) {
7261 { 0x19, 0x23a11040 }, /* dock mic */
7262 { 0x1b, 0x2121103f }, /* dock headphone */
7266 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7268 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7269 .type = HDA_FIXUP_FUNC,
7270 .v.func = alc269_fixup_limit_int_mic_boost,
7272 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7274 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
7275 .type = HDA_FIXUP_FUNC,
7276 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7278 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7280 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7281 .type = HDA_FIXUP_PINS,
7282 .v.pins = (const struct hda_pintbl[]) {
7283 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7284 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7288 .chain_id = ALC269_FIXUP_HEADSET_MODE
7290 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7291 .type = HDA_FIXUP_PINS,
7292 .v.pins = (const struct hda_pintbl[]) {
7293 { 0x16, 0x21014020 }, /* dock line out */
7294 { 0x19, 0x21a19030 }, /* dock mic */
7295 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7299 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7301 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7302 .type = HDA_FIXUP_PINS,
7303 .v.pins = (const struct hda_pintbl[]) {
7304 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7308 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7310 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7311 .type = HDA_FIXUP_PINS,
7312 .v.pins = (const struct hda_pintbl[]) {
7313 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7314 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7318 .chain_id = ALC269_FIXUP_HEADSET_MODE
7320 [ALC269_FIXUP_HEADSET_MODE] = {
7321 .type = HDA_FIXUP_FUNC,
7322 .v.func = alc_fixup_headset_mode,
7324 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7326 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7327 .type = HDA_FIXUP_FUNC,
7328 .v.func = alc_fixup_headset_mode_no_hp_mic,
7330 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7331 .type = HDA_FIXUP_PINS,
7332 .v.pins = (const struct hda_pintbl[]) {
7333 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7337 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7339 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7340 .type = HDA_FIXUP_PINS,
7341 .v.pins = (const struct hda_pintbl[]) {
7342 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7346 .chain_id = ALC269_FIXUP_HEADSET_MIC
7348 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
7349 .type = HDA_FIXUP_PINS,
7350 .v.pins = (const struct hda_pintbl[]) {
7364 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7366 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7367 .type = HDA_FIXUP_FUNC,
7368 .v.func = alc298_fixup_huawei_mbx_stereo,
7370 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7372 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7373 .type = HDA_FIXUP_FUNC,
7374 .v.func = alc269_fixup_x101_headset_mic,
7376 [ALC269_FIXUP_ASUS_X101_VERB] = {
7377 .type = HDA_FIXUP_VERBS,
7378 .v.verbs = (const struct hda_verb[]) {
7379 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7380 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7381 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7385 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7387 [ALC269_FIXUP_ASUS_X101] = {
7388 .type = HDA_FIXUP_PINS,
7389 .v.pins = (const struct hda_pintbl[]) {
7390 { 0x18, 0x04a1182c }, /* Headset mic */
7394 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7396 [ALC271_FIXUP_AMIC_MIC2] = {
7397 .type = HDA_FIXUP_PINS,
7398 .v.pins = (const struct hda_pintbl[]) {
7399 { 0x14, 0x99130110 }, /* speaker */
7400 { 0x19, 0x01a19c20 }, /* mic */
7401 { 0x1b, 0x99a7012f }, /* int-mic */
7402 { 0x21, 0x0121401f }, /* HP out */
7406 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
7407 .type = HDA_FIXUP_FUNC,
7408 .v.func = alc271_hp_gate_mic_jack,
7410 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7412 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7413 .type = HDA_FIXUP_FUNC,
7414 .v.func = alc269_fixup_limit_int_mic_boost,
7416 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7418 [ALC269_FIXUP_ACER_AC700] = {
7419 .type = HDA_FIXUP_PINS,
7420 .v.pins = (const struct hda_pintbl[]) {
7421 { 0x12, 0x99a3092f }, /* int-mic */
7422 { 0x14, 0x99130110 }, /* speaker */
7423 { 0x18, 0x03a11c20 }, /* mic */
7424 { 0x1e, 0x0346101e }, /* SPDIF1 */
7425 { 0x21, 0x0321101f }, /* HP out */
7429 .chain_id = ALC271_FIXUP_DMIC,
7431 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7432 .type = HDA_FIXUP_FUNC,
7433 .v.func = alc269_fixup_limit_int_mic_boost,
7435 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7437 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7438 .type = HDA_FIXUP_FUNC,
7439 .v.func = alc269_fixup_limit_int_mic_boost,
7441 .chain_id = ALC269VB_FIXUP_DMIC,
7443 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7444 .type = HDA_FIXUP_VERBS,
7445 .v.verbs = (const struct hda_verb[]) {
7446 /* class-D output amp +5dB */
7447 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7448 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7452 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7454 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7455 .type = HDA_FIXUP_FUNC,
7456 .v.func = alc269_fixup_limit_int_mic_boost,
7458 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7460 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7461 .type = HDA_FIXUP_PINS,
7462 .v.pins = (const struct hda_pintbl[]) {
7463 { 0x12, 0x99a3092f }, /* int-mic */
7464 { 0x18, 0x03a11d20 }, /* mic */
7465 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7469 [ALC283_FIXUP_CHROME_BOOK] = {
7470 .type = HDA_FIXUP_FUNC,
7471 .v.func = alc283_fixup_chromebook,
7473 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7474 .type = HDA_FIXUP_FUNC,
7475 .v.func = alc283_fixup_sense_combo_jack,
7477 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7479 [ALC282_FIXUP_ASUS_TX300] = {
7480 .type = HDA_FIXUP_FUNC,
7481 .v.func = alc282_fixup_asus_tx300,
7483 [ALC283_FIXUP_INT_MIC] = {
7484 .type = HDA_FIXUP_VERBS,
7485 .v.verbs = (const struct hda_verb[]) {
7486 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7487 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7491 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7493 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7494 .type = HDA_FIXUP_PINS,
7495 .v.pins = (const struct hda_pintbl[]) {
7496 { 0x17, 0x90170112 }, /* subwoofer */
7500 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7502 [ALC290_FIXUP_SUBWOOFER] = {
7503 .type = HDA_FIXUP_PINS,
7504 .v.pins = (const struct hda_pintbl[]) {
7505 { 0x17, 0x90170112 }, /* subwoofer */
7509 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7511 [ALC290_FIXUP_MONO_SPEAKERS] = {
7512 .type = HDA_FIXUP_FUNC,
7513 .v.func = alc290_fixup_mono_speakers,
7515 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7516 .type = HDA_FIXUP_FUNC,
7517 .v.func = alc290_fixup_mono_speakers,
7519 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7521 [ALC269_FIXUP_THINKPAD_ACPI] = {
7522 .type = HDA_FIXUP_FUNC,
7523 .v.func = alc_fixup_thinkpad_acpi,
7525 .chain_id = ALC269_FIXUP_SKU_IGNORE,
7527 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7528 .type = HDA_FIXUP_FUNC,
7529 .v.func = alc_fixup_inv_dmic,
7531 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7533 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
7534 .type = HDA_FIXUP_PINS,
7535 .v.pins = (const struct hda_pintbl[]) {
7536 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7540 .chain_id = ALC255_FIXUP_HEADSET_MODE
7542 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7543 .type = HDA_FIXUP_PINS,
7544 .v.pins = (const struct hda_pintbl[]) {
7545 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7549 .chain_id = ALC255_FIXUP_HEADSET_MODE
7551 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7552 .type = HDA_FIXUP_PINS,
7553 .v.pins = (const struct hda_pintbl[]) {
7554 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7555 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7559 .chain_id = ALC255_FIXUP_HEADSET_MODE
7561 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7562 .type = HDA_FIXUP_PINS,
7563 .v.pins = (const struct hda_pintbl[]) {
7564 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7568 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
7570 [ALC255_FIXUP_HEADSET_MODE] = {
7571 .type = HDA_FIXUP_FUNC,
7572 .v.func = alc_fixup_headset_mode_alc255,
7574 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7576 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7577 .type = HDA_FIXUP_FUNC,
7578 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
7580 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7581 .type = HDA_FIXUP_PINS,
7582 .v.pins = (const struct hda_pintbl[]) {
7583 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7584 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7588 .chain_id = ALC269_FIXUP_HEADSET_MODE
7590 [ALC292_FIXUP_TPT440_DOCK] = {
7591 .type = HDA_FIXUP_FUNC,
7592 .v.func = alc_fixup_tpt440_dock,
7594 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7596 [ALC292_FIXUP_TPT440] = {
7597 .type = HDA_FIXUP_FUNC,
7598 .v.func = alc_fixup_disable_aamix,
7600 .chain_id = ALC292_FIXUP_TPT440_DOCK,
7602 [ALC283_FIXUP_HEADSET_MIC] = {
7603 .type = HDA_FIXUP_PINS,
7604 .v.pins = (const struct hda_pintbl[]) {
7605 { 0x19, 0x04a110f0 },
7609 [ALC255_FIXUP_MIC_MUTE_LED] = {
7610 .type = HDA_FIXUP_FUNC,
7611 .v.func = alc_fixup_micmute_led,
7613 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
7614 .type = HDA_FIXUP_PINS,
7615 .v.pins = (const struct hda_pintbl[]) {
7616 { 0x12, 0x90a60130 },
7617 { 0x14, 0x90170110 },
7618 { 0x17, 0x40000008 },
7619 { 0x18, 0x411111f0 },
7620 { 0x19, 0x01a1913c },
7621 { 0x1a, 0x411111f0 },
7622 { 0x1b, 0x411111f0 },
7623 { 0x1d, 0x40f89b2d },
7624 { 0x1e, 0x411111f0 },
7625 { 0x21, 0x0321101f },
7629 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
7630 .type = HDA_FIXUP_FUNC,
7631 .v.func = alc269vb_fixup_aspire_e1_coef,
7633 [ALC280_FIXUP_HP_GPIO4] = {
7634 .type = HDA_FIXUP_FUNC,
7635 .v.func = alc280_fixup_hp_gpio4,
7637 [ALC286_FIXUP_HP_GPIO_LED] = {
7638 .type = HDA_FIXUP_FUNC,
7639 .v.func = alc286_fixup_hp_gpio_led,
7641 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
7642 .type = HDA_FIXUP_FUNC,
7643 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
7645 [ALC280_FIXUP_HP_DOCK_PINS] = {
7646 .type = HDA_FIXUP_PINS,
7647 .v.pins = (const struct hda_pintbl[]) {
7648 { 0x1b, 0x21011020 }, /* line-out */
7649 { 0x1a, 0x01a1903c }, /* headset mic */
7650 { 0x18, 0x2181103f }, /* line-in */
7654 .chain_id = ALC280_FIXUP_HP_GPIO4
7656 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
7657 .type = HDA_FIXUP_PINS,
7658 .v.pins = (const struct hda_pintbl[]) {
7659 { 0x1b, 0x21011020 }, /* line-out */
7660 { 0x18, 0x2181103f }, /* line-in */
7664 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
7666 [ALC280_FIXUP_HP_9480M] = {
7667 .type = HDA_FIXUP_FUNC,
7668 .v.func = alc280_fixup_hp_9480m,
7670 [ALC245_FIXUP_HP_X360_AMP] = {
7671 .type = HDA_FIXUP_FUNC,
7672 .v.func = alc245_fixup_hp_x360_amp,
7674 .chain_id = ALC245_FIXUP_HP_GPIO_LED
7676 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
7677 .type = HDA_FIXUP_FUNC,
7678 .v.func = alc_fixup_headset_mode_dell_alc288,
7680 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7682 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7683 .type = HDA_FIXUP_PINS,
7684 .v.pins = (const struct hda_pintbl[]) {
7685 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7686 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7690 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
7692 [ALC288_FIXUP_DISABLE_AAMIX] = {
7693 .type = HDA_FIXUP_FUNC,
7694 .v.func = alc_fixup_disable_aamix,
7696 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
7698 [ALC288_FIXUP_DELL_XPS_13] = {
7699 .type = HDA_FIXUP_FUNC,
7700 .v.func = alc_fixup_dell_xps13,
7702 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
7704 [ALC292_FIXUP_DISABLE_AAMIX] = {
7705 .type = HDA_FIXUP_FUNC,
7706 .v.func = alc_fixup_disable_aamix,
7708 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
7710 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
7711 .type = HDA_FIXUP_FUNC,
7712 .v.func = alc_fixup_disable_aamix,
7714 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
7716 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
7717 .type = HDA_FIXUP_FUNC,
7718 .v.func = alc_fixup_dell_xps13,
7720 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
7722 [ALC292_FIXUP_DELL_E7X] = {
7723 .type = HDA_FIXUP_FUNC,
7724 .v.func = alc_fixup_micmute_led,
7725 /* micmute fixup must be applied at last */
7726 .chained_before = true,
7727 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
7729 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
7730 .type = HDA_FIXUP_PINS,
7731 .v.pins = (const struct hda_pintbl[]) {
7732 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
7735 .chained_before = true,
7736 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7738 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7739 .type = HDA_FIXUP_PINS,
7740 .v.pins = (const struct hda_pintbl[]) {
7741 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7742 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7746 .chain_id = ALC269_FIXUP_HEADSET_MODE
7748 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
7749 .type = HDA_FIXUP_PINS,
7750 .v.pins = (const struct hda_pintbl[]) {
7751 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7755 .chain_id = ALC269_FIXUP_HEADSET_MODE
7757 [ALC275_FIXUP_DELL_XPS] = {
7758 .type = HDA_FIXUP_VERBS,
7759 .v.verbs = (const struct hda_verb[]) {
7760 /* Enables internal speaker */
7761 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
7762 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
7763 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
7764 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
7768 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
7769 .type = HDA_FIXUP_FUNC,
7770 .v.func = alc_fixup_disable_aamix,
7772 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
7774 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
7775 .type = HDA_FIXUP_FUNC,
7776 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
7778 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
7779 .type = HDA_FIXUP_FUNC,
7780 .v.func = alc_fixup_inv_dmic,
7782 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
7784 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
7785 .type = HDA_FIXUP_FUNC,
7786 .v.func = alc269_fixup_limit_int_mic_boost
7788 [ALC255_FIXUP_DELL_SPK_NOISE] = {
7789 .type = HDA_FIXUP_FUNC,
7790 .v.func = alc_fixup_disable_aamix,
7792 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
7794 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
7795 .type = HDA_FIXUP_FUNC,
7796 .v.func = alc_fixup_disable_mic_vref,
7798 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
7800 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7801 .type = HDA_FIXUP_VERBS,
7802 .v.verbs = (const struct hda_verb[]) {
7803 /* Disable pass-through path for FRONT 14h */
7804 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
7805 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
7809 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
7811 [ALC280_FIXUP_HP_HEADSET_MIC] = {
7812 .type = HDA_FIXUP_FUNC,
7813 .v.func = alc_fixup_disable_aamix,
7815 .chain_id = ALC269_FIXUP_HEADSET_MIC,
7817 [ALC221_FIXUP_HP_FRONT_MIC] = {
7818 .type = HDA_FIXUP_PINS,
7819 .v.pins = (const struct hda_pintbl[]) {
7820 { 0x19, 0x02a19020 }, /* Front Mic */
7824 [ALC292_FIXUP_TPT460] = {
7825 .type = HDA_FIXUP_FUNC,
7826 .v.func = alc_fixup_tpt440_dock,
7828 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
7830 [ALC298_FIXUP_SPK_VOLUME] = {
7831 .type = HDA_FIXUP_FUNC,
7832 .v.func = alc298_fixup_speaker_volume,
7834 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
7836 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
7837 .type = HDA_FIXUP_FUNC,
7838 .v.func = alc298_fixup_speaker_volume,
7840 [ALC295_FIXUP_DISABLE_DAC3] = {
7841 .type = HDA_FIXUP_FUNC,
7842 .v.func = alc295_fixup_disable_dac3,
7844 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
7845 .type = HDA_FIXUP_FUNC,
7846 .v.func = alc285_fixup_speaker2_to_dac1,
7848 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
7850 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
7851 .type = HDA_FIXUP_PINS,
7852 .v.pins = (const struct hda_pintbl[]) {
7853 { 0x1b, 0x90170151 },
7857 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
7859 [ALC269_FIXUP_ATIV_BOOK_8] = {
7860 .type = HDA_FIXUP_FUNC,
7861 .v.func = alc_fixup_auto_mute_via_amp,
7863 .chain_id = ALC269_FIXUP_NO_SHUTUP
7865 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
7866 .type = HDA_FIXUP_PINS,
7867 .v.pins = (const struct hda_pintbl[]) {
7868 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7869 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
7873 .chain_id = ALC269_FIXUP_HEADSET_MODE
7875 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
7876 .type = HDA_FIXUP_PINS,
7877 .v.pins = (const struct hda_pintbl[]) {
7878 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7879 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7883 .chain_id = ALC269_FIXUP_HEADSET_MODE
7885 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
7886 .type = HDA_FIXUP_FUNC,
7887 .v.func = alc_fixup_headset_mode,
7889 [ALC256_FIXUP_ASUS_MIC] = {
7890 .type = HDA_FIXUP_PINS,
7891 .v.pins = (const struct hda_pintbl[]) {
7892 { 0x13, 0x90a60160 }, /* use as internal mic */
7893 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
7897 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
7899 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
7900 .type = HDA_FIXUP_FUNC,
7901 /* Set up GPIO2 for the speaker amp */
7902 .v.func = alc_fixup_gpio4,
7904 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7905 .type = HDA_FIXUP_PINS,
7906 .v.pins = (const struct hda_pintbl[]) {
7907 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7911 .chain_id = ALC269_FIXUP_HEADSET_MIC
7913 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
7914 .type = HDA_FIXUP_VERBS,
7915 .v.verbs = (const struct hda_verb[]) {
7916 /* Enables internal speaker */
7917 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
7918 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
7922 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
7924 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
7925 .type = HDA_FIXUP_FUNC,
7926 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
7928 .chain_id = ALC269_FIXUP_GPIO2
7930 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
7931 .type = HDA_FIXUP_VERBS,
7932 .v.verbs = (const struct hda_verb[]) {
7933 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
7934 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
7938 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
7940 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
7941 .type = HDA_FIXUP_PINS,
7942 .v.pins = (const struct hda_pintbl[]) {
7943 /* Change the mic location from front to right, otherwise there are
7944 two front mics with the same name, pulseaudio can't handle them.
7945 This is just a temporary workaround, after applying this fixup,
7946 there will be one "Front Mic" and one "Mic" in this machine.
7948 { 0x1a, 0x04a19040 },
7952 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
7953 .type = HDA_FIXUP_PINS,
7954 .v.pins = (const struct hda_pintbl[]) {
7955 { 0x16, 0x0101102f }, /* Rear Headset HP */
7956 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
7957 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
7958 { 0x1b, 0x02011020 },
7962 .chain_id = ALC225_FIXUP_S3_POP_NOISE
7964 [ALC225_FIXUP_S3_POP_NOISE] = {
7965 .type = HDA_FIXUP_FUNC,
7966 .v.func = alc225_fixup_s3_pop_noise,
7968 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7970 [ALC700_FIXUP_INTEL_REFERENCE] = {
7971 .type = HDA_FIXUP_VERBS,
7972 .v.verbs = (const struct hda_verb[]) {
7973 /* Enables internal speaker */
7974 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
7975 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
7976 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
7977 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
7978 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
7979 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
7980 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
7981 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
7985 [ALC274_FIXUP_DELL_BIND_DACS] = {
7986 .type = HDA_FIXUP_FUNC,
7987 .v.func = alc274_fixup_bind_dacs,
7989 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
7991 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
7992 .type = HDA_FIXUP_PINS,
7993 .v.pins = (const struct hda_pintbl[]) {
7994 { 0x1b, 0x0401102f },
7998 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8000 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
8001 .type = HDA_FIXUP_FUNC,
8002 .v.func = alc_fixup_tpt470_dock,
8004 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8006 [ALC298_FIXUP_TPT470_DOCK] = {
8007 .type = HDA_FIXUP_FUNC,
8008 .v.func = alc_fixup_tpt470_dacs,
8010 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8012 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8013 .type = HDA_FIXUP_PINS,
8014 .v.pins = (const struct hda_pintbl[]) {
8015 { 0x14, 0x0201101f },
8019 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8021 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8022 .type = HDA_FIXUP_PINS,
8023 .v.pins = (const struct hda_pintbl[]) {
8024 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8028 .chain_id = ALC269_FIXUP_HEADSET_MIC
8030 [ALC295_FIXUP_HP_X360] = {
8031 .type = HDA_FIXUP_FUNC,
8032 .v.func = alc295_fixup_hp_top_speakers,
8034 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8036 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8037 .type = HDA_FIXUP_PINS,
8038 .v.pins = (const struct hda_pintbl[]) {
8039 { 0x19, 0x0181313f},
8043 .chain_id = ALC269_FIXUP_HEADSET_MIC
8045 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8046 .type = HDA_FIXUP_FUNC,
8047 .v.func = alc285_fixup_invalidate_dacs,
8049 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8051 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8052 .type = HDA_FIXUP_FUNC,
8053 .v.func = alc_fixup_auto_mute_via_amp,
8055 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8056 .type = HDA_FIXUP_PINS,
8057 .v.pins = (const struct hda_pintbl[]) {
8058 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8062 .chain_id = ALC269_FIXUP_HEADSET_MIC
8064 [ALC294_FIXUP_ASUS_MIC] = {
8065 .type = HDA_FIXUP_PINS,
8066 .v.pins = (const struct hda_pintbl[]) {
8067 { 0x13, 0x90a60160 }, /* use as internal mic */
8068 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8072 .chain_id = ALC269_FIXUP_HEADSET_MIC
8074 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8075 .type = HDA_FIXUP_PINS,
8076 .v.pins = (const struct hda_pintbl[]) {
8077 { 0x19, 0x01a1103c }, /* use as headset mic */
8081 .chain_id = ALC269_FIXUP_HEADSET_MIC
8083 [ALC294_FIXUP_ASUS_SPK] = {
8084 .type = HDA_FIXUP_VERBS,
8085 .v.verbs = (const struct hda_verb[]) {
8087 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8088 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
8089 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8090 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8094 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8096 [ALC295_FIXUP_CHROME_BOOK] = {
8097 .type = HDA_FIXUP_FUNC,
8098 .v.func = alc295_fixup_chromebook,
8100 .chain_id = ALC225_FIXUP_HEADSET_JACK
8102 [ALC225_FIXUP_HEADSET_JACK] = {
8103 .type = HDA_FIXUP_FUNC,
8104 .v.func = alc_fixup_headset_jack,
8106 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8107 .type = HDA_FIXUP_PINS,
8108 .v.pins = (const struct hda_pintbl[]) {
8109 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8113 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8115 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8116 .type = HDA_FIXUP_VERBS,
8117 .v.verbs = (const struct hda_verb[]) {
8118 /* Disable PCBEEP-IN passthrough */
8119 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8120 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8124 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8126 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8127 .type = HDA_FIXUP_PINS,
8128 .v.pins = (const struct hda_pintbl[]) {
8129 { 0x19, 0x03a11130 },
8130 { 0x1a, 0x90a60140 }, /* use as internal mic */
8134 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8136 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8137 .type = HDA_FIXUP_PINS,
8138 .v.pins = (const struct hda_pintbl[]) {
8139 { 0x16, 0x01011020 }, /* Rear Line out */
8140 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8144 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8146 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8147 .type = HDA_FIXUP_FUNC,
8148 .v.func = alc_fixup_auto_mute_via_amp,
8150 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8152 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8153 .type = HDA_FIXUP_FUNC,
8154 .v.func = alc_fixup_disable_mic_vref,
8156 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8158 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8159 .type = HDA_FIXUP_VERBS,
8160 .v.verbs = (const struct hda_verb[]) {
8161 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8162 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8166 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8168 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8169 .type = HDA_FIXUP_PINS,
8170 .v.pins = (const struct hda_pintbl[]) {
8171 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8175 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8177 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8178 .type = HDA_FIXUP_PINS,
8179 .v.pins = (const struct hda_pintbl[]) {
8180 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8184 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8186 [ALC299_FIXUP_PREDATOR_SPK] = {
8187 .type = HDA_FIXUP_PINS,
8188 .v.pins = (const struct hda_pintbl[]) {
8189 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8193 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
8194 .type = HDA_FIXUP_PINS,
8195 .v.pins = (const struct hda_pintbl[]) {
8196 { 0x19, 0x04a11040 },
8197 { 0x21, 0x04211020 },
8201 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8203 [ALC289_FIXUP_DELL_SPK2] = {
8204 .type = HDA_FIXUP_PINS,
8205 .v.pins = (const struct hda_pintbl[]) {
8206 { 0x17, 0x90170130 }, /* bass spk */
8210 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8212 [ALC289_FIXUP_DUAL_SPK] = {
8213 .type = HDA_FIXUP_FUNC,
8214 .v.func = alc285_fixup_speaker2_to_dac1,
8216 .chain_id = ALC289_FIXUP_DELL_SPK2
8218 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8219 .type = HDA_FIXUP_FUNC,
8220 .v.func = alc285_fixup_speaker2_to_dac1,
8222 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8224 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
8225 .type = HDA_FIXUP_FUNC,
8226 /* The GPIO must be pulled to initialize the AMP */
8227 .v.func = alc_fixup_gpio4,
8229 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
8231 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8232 .type = HDA_FIXUP_FUNC,
8233 .v.func = alc285_fixup_thinkpad_x1_gen7,
8235 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8237 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8238 .type = HDA_FIXUP_FUNC,
8239 .v.func = alc_fixup_headset_jack,
8241 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
8243 [ALC294_FIXUP_ASUS_HPE] = {
8244 .type = HDA_FIXUP_VERBS,
8245 .v.verbs = (const struct hda_verb[]) {
8247 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8248 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8252 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8254 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8255 .type = HDA_FIXUP_PINS,
8256 .v.pins = (const struct hda_pintbl[]) {
8257 { 0x19, 0x03a11050 }, /* front HP mic */
8258 { 0x1a, 0x01a11830 }, /* rear external mic */
8259 { 0x21, 0x03211020 }, /* front HP out */
8263 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8265 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8266 .type = HDA_FIXUP_VERBS,
8267 .v.verbs = (const struct hda_verb[]) {
8268 /* set 0x15 to HP-OUT ctrl */
8269 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8270 /* unmute the 0x15 amp */
8271 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8275 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8277 [ALC294_FIXUP_ASUS_GX502_HP] = {
8278 .type = HDA_FIXUP_FUNC,
8279 .v.func = alc294_fixup_gx502_hp,
8281 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8282 .type = HDA_FIXUP_PINS,
8283 .v.pins = (const struct hda_pintbl[]) {
8284 { 0x19, 0x01a11050 }, /* rear HP mic */
8285 { 0x1a, 0x01a11830 }, /* rear external mic */
8286 { 0x21, 0x012110f0 }, /* rear HP out */
8290 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8292 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8293 .type = HDA_FIXUP_VERBS,
8294 .v.verbs = (const struct hda_verb[]) {
8295 /* set 0x15 to HP-OUT ctrl */
8296 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8297 /* unmute the 0x15 amp */
8298 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8299 /* set 0x1b to HP-OUT */
8300 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8304 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8306 [ALC294_FIXUP_ASUS_GU502_HP] = {
8307 .type = HDA_FIXUP_FUNC,
8308 .v.func = alc294_fixup_gu502_hp,
8310 [ALC294_FIXUP_ASUS_COEF_1B] = {
8311 .type = HDA_FIXUP_VERBS,
8312 .v.verbs = (const struct hda_verb[]) {
8313 /* Set bit 10 to correct noisy output after reboot from
8314 * Windows 10 (due to pop noise reduction?)
8316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8317 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8321 .chain_id = ALC289_FIXUP_ASUS_GA401,
8323 [ALC285_FIXUP_HP_GPIO_LED] = {
8324 .type = HDA_FIXUP_FUNC,
8325 .v.func = alc285_fixup_hp_gpio_led,
8327 [ALC285_FIXUP_HP_MUTE_LED] = {
8328 .type = HDA_FIXUP_FUNC,
8329 .v.func = alc285_fixup_hp_mute_led,
8331 [ALC236_FIXUP_HP_GPIO_LED] = {
8332 .type = HDA_FIXUP_FUNC,
8333 .v.func = alc236_fixup_hp_gpio_led,
8335 [ALC236_FIXUP_HP_MUTE_LED] = {
8336 .type = HDA_FIXUP_FUNC,
8337 .v.func = alc236_fixup_hp_mute_led,
8339 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8340 .type = HDA_FIXUP_FUNC,
8341 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8343 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8344 .type = HDA_FIXUP_VERBS,
8345 .v.verbs = (const struct hda_verb[]) {
8346 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8350 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8351 .type = HDA_FIXUP_VERBS,
8352 .v.verbs = (const struct hda_verb[]) {
8353 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8354 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8358 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8359 .type = HDA_FIXUP_PINS,
8360 .v.pins = (const struct hda_pintbl[]) {
8361 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8365 .chain_id = ALC269_FIXUP_HEADSET_MODE
8367 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8368 .type = HDA_FIXUP_PINS,
8369 .v.pins = (const struct hda_pintbl[]) {
8370 { 0x14, 0x90100120 }, /* use as internal speaker */
8371 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8372 { 0x1a, 0x01011020 }, /* use as line out */
8376 .chain_id = ALC269_FIXUP_HEADSET_MIC
8378 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8379 .type = HDA_FIXUP_PINS,
8380 .v.pins = (const struct hda_pintbl[]) {
8381 { 0x18, 0x02a11030 }, /* use as headset mic */
8385 .chain_id = ALC269_FIXUP_HEADSET_MIC
8387 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8388 .type = HDA_FIXUP_PINS,
8389 .v.pins = (const struct hda_pintbl[]) {
8390 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8394 .chain_id = ALC269_FIXUP_HEADSET_MIC
8396 [ALC289_FIXUP_ASUS_GA401] = {
8397 .type = HDA_FIXUP_FUNC,
8398 .v.func = alc289_fixup_asus_ga401,
8400 .chain_id = ALC289_FIXUP_ASUS_GA502,
8402 [ALC289_FIXUP_ASUS_GA502] = {
8403 .type = HDA_FIXUP_PINS,
8404 .v.pins = (const struct hda_pintbl[]) {
8405 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8409 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
8410 .type = HDA_FIXUP_PINS,
8411 .v.pins = (const struct hda_pintbl[]) {
8412 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
8416 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8418 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
8419 .type = HDA_FIXUP_FUNC,
8420 .v.func = alc285_fixup_hp_gpio_amp_init,
8422 .chain_id = ALC285_FIXUP_HP_GPIO_LED
8424 [ALC269_FIXUP_CZC_B20] = {
8425 .type = HDA_FIXUP_PINS,
8426 .v.pins = (const struct hda_pintbl[]) {
8427 { 0x12, 0x411111f0 },
8428 { 0x14, 0x90170110 }, /* speaker */
8429 { 0x15, 0x032f1020 }, /* HP out */
8430 { 0x17, 0x411111f0 },
8431 { 0x18, 0x03ab1040 }, /* mic */
8432 { 0x19, 0xb7a7013f },
8433 { 0x1a, 0x0181305f },
8434 { 0x1b, 0x411111f0 },
8435 { 0x1d, 0x411111f0 },
8436 { 0x1e, 0x411111f0 },
8439 .chain_id = ALC269_FIXUP_DMIC,
8441 [ALC269_FIXUP_CZC_TMI] = {
8442 .type = HDA_FIXUP_PINS,
8443 .v.pins = (const struct hda_pintbl[]) {
8444 { 0x12, 0x4000c000 },
8445 { 0x14, 0x90170110 }, /* speaker */
8446 { 0x15, 0x0421401f }, /* HP out */
8447 { 0x17, 0x411111f0 },
8448 { 0x18, 0x04a19020 }, /* mic */
8449 { 0x19, 0x411111f0 },
8450 { 0x1a, 0x411111f0 },
8451 { 0x1b, 0x411111f0 },
8452 { 0x1d, 0x40448505 },
8453 { 0x1e, 0x411111f0 },
8454 { 0x20, 0x8000ffff },
8457 .chain_id = ALC269_FIXUP_DMIC,
8459 [ALC269_FIXUP_CZC_L101] = {
8460 .type = HDA_FIXUP_PINS,
8461 .v.pins = (const struct hda_pintbl[]) {
8462 { 0x12, 0x40000000 },
8463 { 0x14, 0x01014010 }, /* speaker */
8464 { 0x15, 0x411111f0 }, /* HP out */
8465 { 0x16, 0x411111f0 },
8466 { 0x18, 0x01a19020 }, /* mic */
8467 { 0x19, 0x02a19021 },
8468 { 0x1a, 0x0181302f },
8469 { 0x1b, 0x0221401f },
8470 { 0x1c, 0x411111f0 },
8471 { 0x1d, 0x4044c601 },
8472 { 0x1e, 0x411111f0 },
8475 .chain_id = ALC269_FIXUP_DMIC,
8477 [ALC269_FIXUP_LEMOTE_A1802] = {
8478 .type = HDA_FIXUP_PINS,
8479 .v.pins = (const struct hda_pintbl[]) {
8480 { 0x12, 0x40000000 },
8481 { 0x14, 0x90170110 }, /* speaker */
8482 { 0x17, 0x411111f0 },
8483 { 0x18, 0x03a19040 }, /* mic1 */
8484 { 0x19, 0x90a70130 }, /* mic2 */
8485 { 0x1a, 0x411111f0 },
8486 { 0x1b, 0x411111f0 },
8487 { 0x1d, 0x40489d2d },
8488 { 0x1e, 0x411111f0 },
8489 { 0x20, 0x0003ffff },
8490 { 0x21, 0x03214020 },
8493 .chain_id = ALC269_FIXUP_DMIC,
8495 [ALC269_FIXUP_LEMOTE_A190X] = {
8496 .type = HDA_FIXUP_PINS,
8497 .v.pins = (const struct hda_pintbl[]) {
8498 { 0x14, 0x99130110 }, /* speaker */
8499 { 0x15, 0x0121401f }, /* HP out */
8500 { 0x18, 0x01a19c20 }, /* rear mic */
8501 { 0x19, 0x99a3092f }, /* front mic */
8502 { 0x1b, 0x0201401f }, /* front lineout */
8505 .chain_id = ALC269_FIXUP_DMIC,
8507 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
8508 .type = HDA_FIXUP_PINS,
8509 .v.pins = (const struct hda_pintbl[]) {
8510 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8514 .chain_id = ALC269_FIXUP_HEADSET_MODE
8516 [ALC256_FIXUP_INTEL_NUC10] = {
8517 .type = HDA_FIXUP_PINS,
8518 .v.pins = (const struct hda_pintbl[]) {
8519 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8523 .chain_id = ALC269_FIXUP_HEADSET_MODE
8525 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
8526 .type = HDA_FIXUP_VERBS,
8527 .v.verbs = (const struct hda_verb[]) {
8528 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8529 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8533 .chain_id = ALC289_FIXUP_ASUS_GA502
8535 [ALC274_FIXUP_HP_MIC] = {
8536 .type = HDA_FIXUP_VERBS,
8537 .v.verbs = (const struct hda_verb[]) {
8538 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8539 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8543 [ALC274_FIXUP_HP_HEADSET_MIC] = {
8544 .type = HDA_FIXUP_FUNC,
8545 .v.func = alc274_fixup_hp_headset_mic,
8547 .chain_id = ALC274_FIXUP_HP_MIC
8549 [ALC274_FIXUP_HP_ENVY_GPIO] = {
8550 .type = HDA_FIXUP_FUNC,
8551 .v.func = alc274_fixup_hp_envy_gpio,
8553 [ALC256_FIXUP_ASUS_HPE] = {
8554 .type = HDA_FIXUP_VERBS,
8555 .v.verbs = (const struct hda_verb[]) {
8557 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8558 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
8562 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8564 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
8565 .type = HDA_FIXUP_FUNC,
8566 .v.func = alc_fixup_headset_jack,
8568 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8570 [ALC287_FIXUP_HP_GPIO_LED] = {
8571 .type = HDA_FIXUP_FUNC,
8572 .v.func = alc287_fixup_hp_gpio_led,
8574 [ALC256_FIXUP_HP_HEADSET_MIC] = {
8575 .type = HDA_FIXUP_FUNC,
8576 .v.func = alc274_fixup_hp_headset_mic,
8578 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
8579 .type = HDA_FIXUP_FUNC,
8580 .v.func = alc_fixup_no_int_mic,
8582 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8584 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
8585 .type = HDA_FIXUP_PINS,
8586 .v.pins = (const struct hda_pintbl[]) {
8587 { 0x1b, 0x411111f0 },
8588 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8592 .chain_id = ALC269_FIXUP_HEADSET_MODE
8594 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
8595 .type = HDA_FIXUP_FUNC,
8596 .v.func = alc269_fixup_limit_int_mic_boost,
8598 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
8600 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
8601 .type = HDA_FIXUP_PINS,
8602 .v.pins = (const struct hda_pintbl[]) {
8603 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
8604 { 0x1a, 0x90a1092f }, /* use as internal mic */
8608 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8610 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
8611 .type = HDA_FIXUP_FUNC,
8612 .v.func = alc285_fixup_ideapad_s740_coef,
8614 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8616 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
8617 .type = HDA_FIXUP_FUNC,
8618 .v.func = alc269_fixup_limit_int_mic_boost,
8620 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8622 [ALC295_FIXUP_ASUS_DACS] = {
8623 .type = HDA_FIXUP_FUNC,
8624 .v.func = alc295_fixup_asus_dacs,
8626 [ALC295_FIXUP_HP_OMEN] = {
8627 .type = HDA_FIXUP_PINS,
8628 .v.pins = (const struct hda_pintbl[]) {
8629 { 0x12, 0xb7a60130 },
8630 { 0x13, 0x40000000 },
8631 { 0x14, 0x411111f0 },
8632 { 0x16, 0x411111f0 },
8633 { 0x17, 0x90170110 },
8634 { 0x18, 0x411111f0 },
8635 { 0x19, 0x02a11030 },
8636 { 0x1a, 0x411111f0 },
8637 { 0x1b, 0x04a19030 },
8638 { 0x1d, 0x40600001 },
8639 { 0x1e, 0x411111f0 },
8640 { 0x21, 0x03211020 },
8644 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
8646 [ALC285_FIXUP_HP_SPECTRE_X360] = {
8647 .type = HDA_FIXUP_FUNC,
8648 .v.func = alc285_fixup_hp_spectre_x360,
8650 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
8651 .type = HDA_FIXUP_FUNC,
8652 .v.func = alc285_fixup_hp_spectre_x360_eb1
8654 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
8655 .type = HDA_FIXUP_FUNC,
8656 .v.func = alc285_fixup_ideapad_s740_coef,
8658 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
8660 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
8661 .type = HDA_FIXUP_FUNC,
8662 .v.func = alc_fixup_no_shutup,
8664 .chain_id = ALC283_FIXUP_HEADSET_MIC,
8666 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
8667 .type = HDA_FIXUP_PINS,
8668 .v.pins = (const struct hda_pintbl[]) {
8669 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
8673 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
8675 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
8676 .type = HDA_FIXUP_FUNC,
8677 .v.func = alc269_fixup_limit_int_mic_boost,
8679 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
8681 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
8682 .type = HDA_FIXUP_FUNC,
8683 .v.func = alc285_fixup_ideapad_s740_coef,
8685 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
8687 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
8688 .type = HDA_FIXUP_FUNC,
8689 .v.func = alc287_fixup_legion_15imhg05_speakers,
8691 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8693 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
8694 .type = HDA_FIXUP_VERBS,
8695 //.v.verbs = legion_15imhg05_coefs,
8696 .v.verbs = (const struct hda_verb[]) {
8697 // set left speaker Legion 7i.
8698 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8699 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
8701 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8702 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8703 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8704 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
8705 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8707 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8708 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8709 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8710 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8711 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8713 // set right speaker Legion 7i.
8714 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8715 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
8717 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8718 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8719 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8720 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
8721 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8723 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8724 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8725 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8726 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8727 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8731 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
8733 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
8734 .type = HDA_FIXUP_FUNC,
8735 .v.func = alc287_fixup_legion_15imhg05_speakers,
8737 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8739 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
8740 .type = HDA_FIXUP_VERBS,
8741 .v.verbs = (const struct hda_verb[]) {
8742 // set left speaker Yoga 7i.
8743 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8744 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
8746 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8747 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8748 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8749 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
8750 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8752 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8753 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8754 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8755 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8756 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8758 // set right speaker Yoga 7i.
8759 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8760 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
8762 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8763 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8764 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8765 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
8766 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8768 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8769 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8770 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8771 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8772 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8776 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8778 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
8779 .type = HDA_FIXUP_FUNC,
8780 .v.func = alc298_fixup_lenovo_c940_duet7,
8782 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
8783 .type = HDA_FIXUP_VERBS,
8784 .v.verbs = (const struct hda_verb[]) {
8785 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8786 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
8787 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8788 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8789 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8790 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8791 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8792 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8793 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
8794 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8795 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8796 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8797 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8798 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8802 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8804 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
8805 .type = HDA_FIXUP_FUNC,
8806 .v.func = alc256_fixup_set_coef_defaults,
8808 [ALC245_FIXUP_HP_GPIO_LED] = {
8809 .type = HDA_FIXUP_FUNC,
8810 .v.func = alc245_fixup_hp_gpio_led,
8812 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8813 .type = HDA_FIXUP_PINS,
8814 .v.pins = (const struct hda_pintbl[]) {
8815 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
8819 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
8821 [ALC233_FIXUP_NO_AUDIO_JACK] = {
8822 .type = HDA_FIXUP_FUNC,
8823 .v.func = alc233_fixup_no_audio_jack,
8825 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
8826 .type = HDA_FIXUP_FUNC,
8827 .v.func = alc256_fixup_mic_no_presence_and_resume,
8829 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8831 [ALC287_FIXUP_LEGION_16ACHG6] = {
8832 .type = HDA_FIXUP_FUNC,
8833 .v.func = alc287_fixup_legion_16achg6_speakers,
8835 [ALC287_FIXUP_CS35L41_I2C_2] = {
8836 .type = HDA_FIXUP_FUNC,
8837 .v.func = cs35l41_fixup_i2c_two,
8839 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8841 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
8842 .type = HDA_FIXUP_FUNC,
8843 .v.func = cs35l41_fixup_i2c_two,
8845 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8847 [ALC245_FIXUP_CS35L41_SPI_2] = {
8848 .type = HDA_FIXUP_FUNC,
8849 .v.func = cs35l41_fixup_spi_two,
8851 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
8852 .type = HDA_FIXUP_FUNC,
8853 .v.func = cs35l41_fixup_spi_two,
8855 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
8857 [ALC245_FIXUP_CS35L41_SPI_4] = {
8858 .type = HDA_FIXUP_FUNC,
8859 .v.func = cs35l41_fixup_spi_four,
8861 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
8862 .type = HDA_FIXUP_FUNC,
8863 .v.func = cs35l41_fixup_spi_four,
8865 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
8867 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
8868 .type = HDA_FIXUP_VERBS,
8869 .v.verbs = (const struct hda_verb[]) {
8870 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
8871 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
8875 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8877 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
8878 .type = HDA_FIXUP_FUNC,
8879 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
8881 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
8883 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
8884 .type = HDA_FIXUP_PINS,
8885 .v.pins = (const struct hda_pintbl[]) {
8886 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
8890 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8894 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
8895 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
8896 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
8897 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
8898 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
8899 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
8900 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
8901 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
8902 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
8903 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
8904 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
8905 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
8906 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
8907 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
8908 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
8909 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
8910 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
8911 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
8912 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
8913 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
8914 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
8915 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
8916 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
8917 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
8918 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
8919 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
8920 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8921 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8922 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8923 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
8924 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
8925 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
8926 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8927 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
8928 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
8929 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
8930 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
8931 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
8932 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
8933 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
8934 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
8935 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
8936 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
8937 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8938 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
8939 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
8940 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
8941 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
8942 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
8943 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
8944 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
8945 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
8946 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
8947 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
8948 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
8949 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8950 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8951 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
8952 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
8953 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8954 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
8955 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8956 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8957 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8958 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8959 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8960 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8961 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8962 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
8963 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
8964 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
8965 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
8966 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
8967 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
8968 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
8969 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
8970 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
8971 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
8972 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
8973 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
8974 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
8975 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
8976 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
8977 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
8978 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
8979 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
8980 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
8981 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
8982 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
8983 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
8984 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
8985 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
8986 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
8987 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
8988 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
8989 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
8990 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
8991 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8992 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8993 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
8994 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8995 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
8996 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8997 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8998 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8999 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9000 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9001 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9002 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9003 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9004 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9005 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9006 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9007 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9008 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9009 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9010 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9011 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9012 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9013 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9014 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
9015 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
9016 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9017 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9018 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9019 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9020 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9021 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9022 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9023 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9024 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9025 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9026 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9027 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9028 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9029 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9030 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9031 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9032 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9033 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9034 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9035 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9036 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9037 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9038 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9039 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9040 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9041 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9042 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9043 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9044 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9045 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9046 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9047 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9048 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9049 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9050 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
9051 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9052 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9053 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9054 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9055 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9056 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
9057 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
9058 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9059 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9060 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9061 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9062 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9063 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9064 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
9065 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9066 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
9067 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9068 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9069 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9070 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
9071 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9072 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9073 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
9074 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
9075 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
9076 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9077 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9078 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9079 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
9080 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
9081 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9082 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9083 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9084 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9085 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9086 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9087 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9088 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
9089 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9090 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9091 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9092 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9093 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9094 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
9095 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9096 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9097 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9098 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9099 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9100 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9101 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9102 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9103 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9104 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9105 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9106 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9107 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9108 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9109 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9110 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
9111 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
9112 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
9113 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9114 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
9115 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9116 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9117 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9118 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9119 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9120 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9121 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9122 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9123 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9124 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9125 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
9126 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9127 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
9128 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9129 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
9130 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
9131 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9132 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
9133 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9134 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9135 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9136 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9137 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9138 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9139 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9140 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
9141 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9142 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
9143 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9144 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
9145 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9146 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9147 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9148 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9149 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9150 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
9151 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9152 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9153 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
9154 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
9155 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
9156 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
9157 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
9158 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
9159 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
9160 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
9161 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
9162 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
9163 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
9164 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
9165 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
9166 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
9167 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
9168 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
9169 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
9170 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
9171 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
9172 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
9173 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
9174 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9175 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9176 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
9177 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
9178 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
9179 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
9180 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
9181 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
9182 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
9183 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
9184 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
9185 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
9186 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
9187 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9188 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9189 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
9190 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
9191 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9192 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9193 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
9194 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9195 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9196 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
9197 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
9198 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
9199 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
9200 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
9201 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
9202 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
9203 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
9204 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9205 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9206 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9207 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
9208 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
9209 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9210 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9211 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9212 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9213 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
9214 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9215 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9216 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9217 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
9218 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
9219 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
9220 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
9221 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9222 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9223 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9224 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9225 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9226 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9227 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9228 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9229 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9230 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9231 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9232 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9233 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9234 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9235 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9236 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9237 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9238 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9239 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9240 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9241 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9242 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9243 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9244 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9245 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9246 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9247 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9248 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9249 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9250 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9251 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9252 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9253 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9254 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9255 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9256 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9257 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9258 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9259 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9260 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9261 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9262 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9263 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9264 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9265 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9266 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9267 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
9268 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9269 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9270 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9271 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9272 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9273 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
9274 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9275 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9276 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9277 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9278 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9279 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9280 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9281 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9282 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9283 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9284 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9285 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9286 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9287 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9288 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9289 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
9290 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
9291 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
9292 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
9293 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
9294 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
9295 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
9296 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
9297 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
9298 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
9299 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
9300 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
9301 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9302 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
9303 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
9304 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
9305 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
9306 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
9307 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
9308 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9309 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
9310 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
9311 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
9312 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9313 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9314 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
9315 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
9316 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
9317 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9318 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9319 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
9320 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9321 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9322 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9323 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9324 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
9325 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
9326 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
9327 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
9328 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
9329 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
9330 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
9331 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
9332 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
9333 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
9334 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
9335 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
9336 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
9337 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
9338 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
9339 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
9340 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
9341 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
9342 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9343 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
9344 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
9345 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
9346 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9347 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
9348 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
9349 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9350 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
9351 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
9352 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
9353 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9354 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9355 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9356 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
9357 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
9358 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
9359 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
9360 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9361 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
9362 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
9363 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9364 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
9365 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
9366 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
9367 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
9368 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
9369 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9370 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
9371 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
9372 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9373 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9374 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9375 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
9376 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9377 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9378 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9379 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
9380 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
9381 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
9382 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
9383 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
9384 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
9385 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
9386 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
9387 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
9388 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
9389 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
9390 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
9391 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
9392 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
9393 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
9394 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
9395 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
9396 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
9397 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
9398 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
9399 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
9400 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
9401 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
9402 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
9403 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
9404 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
9405 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
9408 /* Below is a quirk table taken from the old code.
9409 * Basically the device should work as is without the fixup table.
9410 * If BIOS doesn't give a proper info, enable the corresponding
9413 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
9415 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
9416 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
9417 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
9418 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
9419 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
9420 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
9421 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
9422 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
9423 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
9424 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
9425 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
9426 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
9427 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
9428 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
9429 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
9430 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
9431 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
9432 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
9433 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
9434 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
9435 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
9436 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
9437 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
9438 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
9439 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
9440 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
9441 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
9442 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
9443 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
9444 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
9445 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
9446 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
9447 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
9448 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
9449 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
9450 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
9451 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
9452 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
9453 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
9458 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
9459 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
9460 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
9461 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
9462 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
9463 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
9467 static const struct hda_model_fixup alc269_fixup_models[] = {
9468 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
9469 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
9470 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
9471 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
9472 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
9473 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
9474 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
9475 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
9476 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
9477 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
9478 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
9479 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
9480 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
9481 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
9482 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
9483 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
9484 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
9485 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
9486 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9487 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
9488 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
9489 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
9490 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
9491 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
9492 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
9493 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
9494 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
9495 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
9496 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
9497 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
9498 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
9499 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
9500 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
9501 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
9502 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
9503 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
9504 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
9505 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
9506 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
9507 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
9508 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
9509 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
9510 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
9511 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
9512 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
9513 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
9514 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
9515 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
9516 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
9517 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
9518 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
9519 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
9520 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
9521 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
9522 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
9523 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
9524 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
9525 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
9526 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
9527 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
9528 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
9529 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
9530 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
9531 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
9532 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
9533 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
9534 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
9535 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
9536 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
9537 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
9538 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
9539 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
9540 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
9541 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
9542 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
9543 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
9544 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
9545 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
9546 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
9547 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
9548 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
9549 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
9550 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
9551 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
9552 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
9553 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
9554 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
9555 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
9556 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
9557 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
9558 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
9559 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
9560 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
9561 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
9562 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
9563 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
9564 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
9565 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
9566 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
9567 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
9568 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
9569 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
9570 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
9571 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
9572 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
9573 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
9574 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
9575 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
9576 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
9577 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
9578 {.id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc298-samsung-headphone"},
9579 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
9580 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
9581 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
9582 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
9583 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
9584 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
9585 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
9586 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
9587 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
9588 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
9589 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
9592 #define ALC225_STANDARD_PINS \
9595 #define ALC256_STANDARD_PINS \
9596 {0x12, 0x90a60140}, \
9597 {0x14, 0x90170110}, \
9600 #define ALC282_STANDARD_PINS \
9603 #define ALC290_STANDARD_PINS \
9606 #define ALC292_STANDARD_PINS \
9607 {0x14, 0x90170110}, \
9610 #define ALC295_STANDARD_PINS \
9611 {0x12, 0xb7a60130}, \
9612 {0x14, 0x90170110}, \
9615 #define ALC298_STANDARD_PINS \
9616 {0x12, 0x90a60130}, \
9619 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
9620 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
9625 {0x21, 0x0221102f}),
9626 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9629 {0x21, 0x02211030}),
9630 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9633 {0x21, 0x03211020}),
9634 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9637 {0x21, 0x03211020}),
9638 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9639 ALC225_STANDARD_PINS,
9641 {0x14, 0x901701a0}),
9642 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9643 ALC225_STANDARD_PINS,
9645 {0x14, 0x901701b0}),
9646 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9647 ALC225_STANDARD_PINS,
9649 {0x14, 0x901701a0}),
9650 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9651 ALC225_STANDARD_PINS,
9653 {0x14, 0x901701b0}),
9654 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9655 ALC225_STANDARD_PINS,
9657 {0x1b, 0x90170110}),
9658 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9661 {0x21, 0x02211020}),
9662 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
9666 {0x21, 0x02211020}),
9667 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9672 {0x21, 0x0221101f}),
9673 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9678 {0x21, 0x0221101f}),
9679 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9683 {0x21, 0x0221101f}),
9684 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
9685 {0x21, 0x02211010}),
9686 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
9689 {0x21, 0x02211030}),
9690 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9692 {0x21, 0x02211020}),
9693 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9695 {0x21, 0x02211040}),
9696 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9699 {0x21, 0x02211020}),
9700 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9703 {0x21, 0x02211030}),
9704 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9707 {0x21, 0x0221101f}),
9708 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9711 {0x21, 0x0221101f}),
9712 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9715 {0x21, 0x0221103f}),
9716 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9719 {0x21, 0x0221103f}),
9720 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9723 {0x21, 0x0221103f}),
9724 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9727 {0x21, 0x0221105f}),
9728 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9731 {0x21, 0x0221101f}),
9732 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9736 {0x21, 0x0321102f}),
9737 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9740 {0x21, 0x02211040}),
9741 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9744 {0x21, 0x02211050}),
9745 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9748 {0x21, 0x02211030}),
9749 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9752 {0x21, 0x02211040}),
9753 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9756 {0x21, 0x02211040}),
9757 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9760 {0x21, 0x02211050}),
9761 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9764 {0x21, 0x02211040}),
9765 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9768 {0x21, 0x02211030}),
9769 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9771 {0x21, 0x02211010}),
9772 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
9775 {0x21, 0x04211020}),
9776 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
9779 {0x21, 0x03211020}),
9780 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9783 {0x21, 0x03211020}),
9784 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9787 {0x21, 0x04211020}),
9788 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9791 {0x21, 0x03211020}),
9792 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
9795 {0x21, 0x0221101f}),
9796 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
9799 {0x21, 0x03211020}),
9800 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
9804 {0x1a, 0x04a11020}),
9805 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
9811 {0x1b, 0x02011020}),
9812 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9813 ALC282_STANDARD_PINS,
9816 {0x21, 0x0321101f}),
9817 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9818 ALC282_STANDARD_PINS,
9821 {0x21, 0x03211040}),
9822 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9823 ALC282_STANDARD_PINS,
9826 {0x21, 0x03211020}),
9827 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9828 ALC282_STANDARD_PINS,
9831 {0x21, 0x0421101f}),
9832 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
9833 ALC282_STANDARD_PINS,
9836 {0x21, 0x04211020}),
9837 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
9838 ALC282_STANDARD_PINS,
9844 {0x21, 0x0321101f}),
9845 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
9846 ALC282_STANDARD_PINS,
9852 {0x21, 0x0321101f}),
9853 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9854 ALC282_STANDARD_PINS,
9856 {0x21, 0x0321101f}),
9857 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9860 {0x21, 0x02211030}),
9861 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9862 ALC282_STANDARD_PINS,
9865 {0x21, 0x0321101f}),
9866 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
9870 {0x21, 0x04211020}),
9871 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
9875 {0x21, 0x04211020}),
9876 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
9879 {0x21, 0x04211020}),
9880 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9884 {0x21, 0x03211020}),
9885 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
9888 {0x21, 0x02211020}),
9889 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
9892 {0x21, 0x0321101f}),
9893 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9894 ALC290_STANDARD_PINS,
9897 {0x1a, 0x04a11020}),
9898 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9899 ALC290_STANDARD_PINS,
9902 {0x1a, 0x04a11020}),
9903 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9904 ALC290_STANDARD_PINS,
9906 {0x1a, 0x04a11020}),
9907 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9908 ALC290_STANDARD_PINS,
9910 {0x1a, 0x04a11040}),
9911 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9912 ALC290_STANDARD_PINS,
9915 {0x1a, 0x04a11040}),
9916 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9917 ALC290_STANDARD_PINS,
9920 {0x1a, 0x04a11020}),
9921 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
9922 ALC290_STANDARD_PINS,
9925 {0x1a, 0x04a11020}),
9926 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
9927 ALC292_STANDARD_PINS,
9930 {0x19, 0x01a19030}),
9931 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
9932 ALC292_STANDARD_PINS,
9936 {0x19, 0x01a1903e}),
9937 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
9938 ALC292_STANDARD_PINS,
9939 {0x12, 0x90a60140}),
9940 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
9941 ALC292_STANDARD_PINS,
9944 {0x19, 0x21a19030}),
9945 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
9946 ALC292_STANDARD_PINS,
9947 {0x13, 0x90a60140}),
9948 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
9950 {0x21, 0x04211020}),
9951 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
9954 {0x21, 0x04211020}),
9955 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9958 {0x21, 0x03211020}),
9959 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9962 {0x21, 0x04211020}),
9963 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9966 {0x21, 0x03211020}),
9967 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9970 {0x21, 0x04211030}),
9971 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9974 {0x21, 0x03211020}),
9975 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9978 {0x21, 0x03211020}),
9979 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9981 {0x21, 0x04211020}),
9982 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9984 {0x21, 0x04211030}),
9985 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9986 ALC295_STANDARD_PINS,
9988 {0x18, 0x21a19030}),
9989 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9990 ALC295_STANDARD_PINS,
9992 {0x18, 0x21a19050}),
9993 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9994 ALC295_STANDARD_PINS),
9995 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
9996 ALC298_STANDARD_PINS,
9997 {0x17, 0x90170110}),
9998 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
9999 ALC298_STANDARD_PINS,
10000 {0x17, 0x90170140}),
10001 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10002 ALC298_STANDARD_PINS,
10003 {0x17, 0x90170150}),
10004 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10005 {0x12, 0xb7a60140},
10006 {0x13, 0xb7a60150},
10007 {0x17, 0x90170110},
10008 {0x1a, 0x03011020},
10009 {0x21, 0x03211030}),
10010 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10011 {0x12, 0xb7a60140},
10012 {0x17, 0x90170110},
10013 {0x1a, 0x03a11030},
10014 {0x21, 0x03211020}),
10015 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10016 ALC225_STANDARD_PINS,
10017 {0x12, 0xb7a60130},
10018 {0x17, 0x90170110}),
10019 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10020 {0x14, 0x01014010},
10021 {0x17, 0x90170120},
10022 {0x18, 0x02a11030},
10023 {0x19, 0x02a1103f},
10024 {0x21, 0x0221101f}),
10028 /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10029 * more machines, don't need to match all valid pins, just need to match
10030 * all the pins defined in the tbl. Just because of this reason, it is possible
10031 * that a single machine matches multiple tbls, so there is one limitation:
10032 * at most one tbl is allowed to define for the same vendor and same codec
10034 static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
10035 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10036 {0x19, 0x40000000},
10037 {0x1b, 0x40000000}),
10038 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10039 {0x19, 0x40000000},
10040 {0x1a, 0x40000000}),
10041 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10042 {0x19, 0x40000000},
10043 {0x1a, 0x40000000}),
10044 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
10045 {0x19, 0x40000000},
10046 {0x1a, 0x40000000}),
10050 static void alc269_fill_coef(struct hda_codec *codec)
10052 struct alc_spec *spec = codec->spec;
10055 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
10058 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
10059 alc_write_coef_idx(codec, 0xf, 0x960b);
10060 alc_write_coef_idx(codec, 0xe, 0x8817);
10063 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
10064 alc_write_coef_idx(codec, 0xf, 0x960b);
10065 alc_write_coef_idx(codec, 0xe, 0x8814);
10068 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
10069 /* Power up output pin */
10070 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
10073 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
10074 val = alc_read_coef_idx(codec, 0xd);
10075 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
10076 /* Capless ramp up clock control */
10077 alc_write_coef_idx(codec, 0xd, val | (1<<10));
10079 val = alc_read_coef_idx(codec, 0x17);
10080 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
10081 /* Class D power on reset */
10082 alc_write_coef_idx(codec, 0x17, val | (1<<7));
10087 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
10092 static int patch_alc269(struct hda_codec *codec)
10094 struct alc_spec *spec;
10097 err = alc_alloc_spec(codec, 0x0b);
10101 spec = codec->spec;
10102 spec->gen.shared_mic_vref_pin = 0x18;
10103 codec->power_save_node = 0;
10106 codec->patch_ops.suspend = alc269_suspend;
10107 codec->patch_ops.resume = alc269_resume;
10109 spec->shutup = alc_default_shutup;
10110 spec->init_hook = alc_default_init;
10112 switch (codec->core.vendor_id) {
10114 spec->codec_variant = ALC269_TYPE_ALC269VA;
10115 switch (alc_get_coef0(codec) & 0x00f0) {
10117 if (codec->bus->pci &&
10118 codec->bus->pci->subsystem_vendor == 0x1025 &&
10119 spec->cdefine.platform_type == 1)
10120 err = alc_codec_rename(codec, "ALC271X");
10121 spec->codec_variant = ALC269_TYPE_ALC269VB;
10124 if (codec->bus->pci &&
10125 codec->bus->pci->subsystem_vendor == 0x17aa &&
10126 codec->bus->pci->subsystem_device == 0x21f3)
10127 err = alc_codec_rename(codec, "ALC3202");
10128 spec->codec_variant = ALC269_TYPE_ALC269VC;
10131 spec->codec_variant = ALC269_TYPE_ALC269VD;
10134 alc_fix_pll_init(codec, 0x20, 0x04, 15);
10138 spec->shutup = alc269_shutup;
10139 spec->init_hook = alc269_fill_coef;
10140 alc269_fill_coef(codec);
10145 spec->codec_variant = ALC269_TYPE_ALC280;
10148 spec->codec_variant = ALC269_TYPE_ALC282;
10149 spec->shutup = alc282_shutup;
10150 spec->init_hook = alc282_init;
10154 spec->codec_variant = ALC269_TYPE_ALC283;
10155 spec->shutup = alc283_shutup;
10156 spec->init_hook = alc283_init;
10160 spec->codec_variant = ALC269_TYPE_ALC284;
10163 spec->codec_variant = ALC269_TYPE_ALC293;
10167 spec->codec_variant = ALC269_TYPE_ALC286;
10170 spec->codec_variant = ALC269_TYPE_ALC298;
10174 spec->codec_variant = ALC269_TYPE_ALC255;
10175 spec->shutup = alc256_shutup;
10176 spec->init_hook = alc256_init;
10182 spec->codec_variant = ALC269_TYPE_ALC256;
10183 spec->shutup = alc256_shutup;
10184 spec->init_hook = alc256_init;
10185 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
10188 spec->codec_variant = ALC269_TYPE_ALC257;
10189 spec->shutup = alc256_shutup;
10190 spec->init_hook = alc256_init;
10191 spec->gen.mixer_nid = 0;
10197 if (alc_get_coef0(codec) & 0x0010)
10198 spec->codec_variant = ALC269_TYPE_ALC245;
10200 spec->codec_variant = ALC269_TYPE_ALC215;
10201 spec->shutup = alc225_shutup;
10202 spec->init_hook = alc225_init;
10203 spec->gen.mixer_nid = 0;
10208 spec->codec_variant = ALC269_TYPE_ALC225;
10209 spec->shutup = alc225_shutup;
10210 spec->init_hook = alc225_init;
10211 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
10214 spec->codec_variant = ALC269_TYPE_ALC287;
10215 spec->shutup = alc225_shutup;
10216 spec->init_hook = alc225_init;
10217 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
10222 spec->codec_variant = ALC269_TYPE_ALC294;
10223 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
10224 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
10225 spec->init_hook = alc294_init;
10228 spec->codec_variant = ALC269_TYPE_ALC300;
10229 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
10232 spec->codec_variant = ALC269_TYPE_ALC623;
10238 spec->codec_variant = ALC269_TYPE_ALC700;
10239 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
10240 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
10241 spec->init_hook = alc294_init;
10246 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
10247 spec->has_alc5505_dsp = 1;
10248 spec->init_hook = alc5505_dsp_init;
10251 alc_pre_init(codec);
10253 snd_hda_pick_fixup(codec, alc269_fixup_models,
10254 alc269_fixup_tbl, alc269_fixups);
10255 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
10256 * the quirk breaks the latter (bko#214101).
10257 * Clear the wrong entry.
10259 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
10260 codec->core.vendor_id == 0x10ec0294) {
10261 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
10262 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
10265 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
10266 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
10267 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
10269 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
10271 alc_auto_parse_customize_define(codec);
10273 if (has_cdefine_beep(codec))
10274 spec->gen.beep_nid = 0x01;
10276 /* automatic parse from the BIOS config */
10277 err = alc269_parse_auto_config(codec);
10281 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
10282 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
10287 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
10300 static int alc861_parse_auto_config(struct hda_codec *codec)
10302 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
10303 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
10304 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
10307 /* Pin config fixes */
10309 ALC861_FIXUP_FSC_AMILO_PI1505,
10310 ALC861_FIXUP_AMP_VREF_0F,
10311 ALC861_FIXUP_NO_JACK_DETECT,
10312 ALC861_FIXUP_ASUS_A6RP,
10313 ALC660_FIXUP_ASUS_W7J,
10316 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
10317 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
10318 const struct hda_fixup *fix, int action)
10320 struct alc_spec *spec = codec->spec;
10323 if (action != HDA_FIXUP_ACT_INIT)
10325 val = snd_hda_codec_get_pin_target(codec, 0x0f);
10326 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
10327 val |= AC_PINCTL_IN_EN;
10328 val |= AC_PINCTL_VREF_50;
10329 snd_hda_set_pin_ctl(codec, 0x0f, val);
10330 spec->gen.keep_vref_in_automute = 1;
10333 /* suppress the jack-detection */
10334 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
10335 const struct hda_fixup *fix, int action)
10337 if (action == HDA_FIXUP_ACT_PRE_PROBE)
10338 codec->no_jack_detect = 1;
10341 static const struct hda_fixup alc861_fixups[] = {
10342 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
10343 .type = HDA_FIXUP_PINS,
10344 .v.pins = (const struct hda_pintbl[]) {
10345 { 0x0b, 0x0221101f }, /* HP */
10346 { 0x0f, 0x90170310 }, /* speaker */
10350 [ALC861_FIXUP_AMP_VREF_0F] = {
10351 .type = HDA_FIXUP_FUNC,
10352 .v.func = alc861_fixup_asus_amp_vref_0f,
10354 [ALC861_FIXUP_NO_JACK_DETECT] = {
10355 .type = HDA_FIXUP_FUNC,
10356 .v.func = alc_fixup_no_jack_detect,
10358 [ALC861_FIXUP_ASUS_A6RP] = {
10359 .type = HDA_FIXUP_FUNC,
10360 .v.func = alc861_fixup_asus_amp_vref_0f,
10362 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
10364 [ALC660_FIXUP_ASUS_W7J] = {
10365 .type = HDA_FIXUP_VERBS,
10366 .v.verbs = (const struct hda_verb[]) {
10367 /* ASUS W7J needs a magic pin setup on unused NID 0x10
10368 * for enabling outputs
10370 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
10376 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
10377 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
10378 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
10379 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
10380 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
10381 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
10382 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
10383 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
10389 static int patch_alc861(struct hda_codec *codec)
10391 struct alc_spec *spec;
10394 err = alc_alloc_spec(codec, 0x15);
10398 spec = codec->spec;
10399 if (has_cdefine_beep(codec))
10400 spec->gen.beep_nid = 0x23;
10403 spec->power_hook = alc_power_eapd;
10406 alc_pre_init(codec);
10408 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
10409 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
10411 /* automatic parse from the BIOS config */
10412 err = alc861_parse_auto_config(codec);
10416 if (!spec->gen.no_analog) {
10417 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
10422 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
10432 * ALC861-VD support
10436 * In addition, an independent DAC
10438 static int alc861vd_parse_auto_config(struct hda_codec *codec)
10440 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
10441 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
10442 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
10446 ALC660VD_FIX_ASUS_GPIO1,
10447 ALC861VD_FIX_DALLAS,
10450 /* exclude VREF80 */
10451 static void alc861vd_fixup_dallas(struct hda_codec *codec,
10452 const struct hda_fixup *fix, int action)
10454 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10455 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
10456 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
10461 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
10462 const struct hda_fixup *fix, int action)
10464 struct alc_spec *spec = codec->spec;
10466 if (action == HDA_FIXUP_ACT_PRE_PROBE)
10467 spec->gpio_mask |= 0x02;
10468 alc_fixup_gpio(codec, action, 0x01);
10471 static const struct hda_fixup alc861vd_fixups[] = {
10472 [ALC660VD_FIX_ASUS_GPIO1] = {
10473 .type = HDA_FIXUP_FUNC,
10474 .v.func = alc660vd_fixup_asus_gpio1,
10476 [ALC861VD_FIX_DALLAS] = {
10477 .type = HDA_FIXUP_FUNC,
10478 .v.func = alc861vd_fixup_dallas,
10482 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
10483 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
10484 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
10485 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
10491 static int patch_alc861vd(struct hda_codec *codec)
10493 struct alc_spec *spec;
10496 err = alc_alloc_spec(codec, 0x0b);
10500 spec = codec->spec;
10501 if (has_cdefine_beep(codec))
10502 spec->gen.beep_nid = 0x23;
10504 spec->shutup = alc_eapd_shutup;
10506 alc_pre_init(codec);
10508 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
10509 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
10511 /* automatic parse from the BIOS config */
10512 err = alc861vd_parse_auto_config(codec);
10516 if (!spec->gen.no_analog) {
10517 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
10522 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
10534 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
10535 * configuration. Each pin widget can choose any input DACs and a mixer.
10536 * Each ADC is connected from a mixer of all inputs. This makes possible
10537 * 6-channel independent captures.
10539 * In addition, an independent DAC for the multi-playback (not used in this
10544 * BIOS auto configuration
10547 static int alc662_parse_auto_config(struct hda_codec *codec)
10549 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
10550 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
10551 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
10552 const hda_nid_t *ssids;
10554 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
10555 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
10556 codec->core.vendor_id == 0x10ec0671)
10557 ssids = alc663_ssids;
10559 ssids = alc662_ssids;
10560 return alc_parse_auto_config(codec, alc662_ignore, ssids);
10563 static void alc272_fixup_mario(struct hda_codec *codec,
10564 const struct hda_fixup *fix, int action)
10566 if (action != HDA_FIXUP_ACT_PRE_PROBE)
10568 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
10569 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
10570 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
10571 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
10572 (0 << AC_AMPCAP_MUTE_SHIFT)))
10573 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
10576 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
10578 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
10580 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
10581 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
10585 /* override the 2.1 chmap */
10586 static void alc_fixup_bass_chmap(struct hda_codec *codec,
10587 const struct hda_fixup *fix, int action)
10589 if (action == HDA_FIXUP_ACT_BUILD) {
10590 struct alc_spec *spec = codec->spec;
10591 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
10595 /* avoid D3 for keeping GPIO up */
10596 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
10598 unsigned int power_state)
10600 struct alc_spec *spec = codec->spec;
10601 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
10602 return AC_PWRST_D0;
10603 return power_state;
10606 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
10607 const struct hda_fixup *fix, int action)
10609 struct alc_spec *spec = codec->spec;
10611 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
10612 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10613 spec->mute_led_polarity = 1;
10614 codec->power_filter = gpio_led_power_filter;
10618 static void alc662_usi_automute_hook(struct hda_codec *codec,
10619 struct hda_jack_callback *jack)
10621 struct alc_spec *spec = codec->spec;
10624 snd_hda_gen_hp_automute(codec, jack);
10626 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
10628 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
10632 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
10633 const struct hda_fixup *fix, int action)
10635 struct alc_spec *spec = codec->spec;
10636 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10637 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
10638 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
10642 static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
10643 struct hda_jack_callback *cb)
10645 /* surround speakers at 0x1b already get muted automatically when
10646 * headphones are plugged in, but we have to mute/unmute the remaining
10647 * channels manually:
10648 * 0x15 - front left/front right
10649 * 0x18 - front center/ LFE
10651 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
10652 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
10653 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
10655 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
10656 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
10660 static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
10661 const struct hda_fixup *fix, int action)
10663 /* Pin 0x1b: shared headphones jack and surround speakers */
10664 if (!is_jack_detectable(codec, 0x1b))
10668 case HDA_FIXUP_ACT_PRE_PROBE:
10669 snd_hda_jack_detect_enable_callback(codec, 0x1b,
10670 alc662_aspire_ethos_mute_speakers);
10671 /* subwoofer needs an extra GPIO setting to become audible */
10672 alc_setup_gpio(codec, 0x02);
10674 case HDA_FIXUP_ACT_INIT:
10675 /* Make sure to start in a correct state, i.e. if
10676 * headphones have been plugged in before powering up the system
10678 alc662_aspire_ethos_mute_speakers(codec, NULL);
10683 static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
10684 const struct hda_fixup *fix, int action)
10686 struct alc_spec *spec = codec->spec;
10688 static const struct hda_pintbl pincfgs[] = {
10689 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
10690 { 0x1b, 0x0181304f },
10695 case HDA_FIXUP_ACT_PRE_PROBE:
10696 spec->gen.mixer_nid = 0;
10697 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
10698 snd_hda_apply_pincfgs(codec, pincfgs);
10700 case HDA_FIXUP_ACT_INIT:
10701 alc_write_coef_idx(codec, 0x19, 0xa054);
10706 static void alc897_hp_automute_hook(struct hda_codec *codec,
10707 struct hda_jack_callback *jack)
10709 struct alc_spec *spec = codec->spec;
10712 snd_hda_gen_hp_automute(codec, jack);
10713 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
10714 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
10718 static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
10719 const struct hda_fixup *fix, int action)
10721 struct alc_spec *spec = codec->spec;
10722 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10723 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
10727 static const struct coef_fw alc668_coefs[] = {
10728 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
10729 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
10730 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
10731 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
10732 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
10733 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
10734 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
10735 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
10736 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
10737 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
10738 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
10739 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
10740 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
10741 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
10742 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
10743 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
10744 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
10745 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
10746 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
10747 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
10751 static void alc668_restore_default_value(struct hda_codec *codec)
10753 alc_process_coef_fw(codec, alc668_coefs);
10757 ALC662_FIXUP_ASPIRE,
10758 ALC662_FIXUP_LED_GPIO1,
10759 ALC662_FIXUP_IDEAPAD,
10760 ALC272_FIXUP_MARIO,
10761 ALC662_FIXUP_CZC_ET26,
10762 ALC662_FIXUP_CZC_P10T,
10763 ALC662_FIXUP_SKU_IGNORE,
10764 ALC662_FIXUP_HP_RP5800,
10765 ALC662_FIXUP_ASUS_MODE1,
10766 ALC662_FIXUP_ASUS_MODE2,
10767 ALC662_FIXUP_ASUS_MODE3,
10768 ALC662_FIXUP_ASUS_MODE4,
10769 ALC662_FIXUP_ASUS_MODE5,
10770 ALC662_FIXUP_ASUS_MODE6,
10771 ALC662_FIXUP_ASUS_MODE7,
10772 ALC662_FIXUP_ASUS_MODE8,
10773 ALC662_FIXUP_NO_JACK_DETECT,
10774 ALC662_FIXUP_ZOTAC_Z68,
10775 ALC662_FIXUP_INV_DMIC,
10776 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
10777 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
10778 ALC662_FIXUP_HEADSET_MODE,
10779 ALC668_FIXUP_HEADSET_MODE,
10780 ALC662_FIXUP_BASS_MODE4_CHMAP,
10781 ALC662_FIXUP_BASS_16,
10782 ALC662_FIXUP_BASS_1A,
10783 ALC662_FIXUP_BASS_CHMAP,
10784 ALC668_FIXUP_AUTO_MUTE,
10785 ALC668_FIXUP_DELL_DISABLE_AAMIX,
10786 ALC668_FIXUP_DELL_XPS13,
10787 ALC662_FIXUP_ASUS_Nx50,
10788 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
10789 ALC668_FIXUP_ASUS_Nx51,
10790 ALC668_FIXUP_MIC_COEF,
10791 ALC668_FIXUP_ASUS_G751,
10792 ALC891_FIXUP_HEADSET_MODE,
10793 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
10794 ALC662_FIXUP_ACER_VERITON,
10795 ALC892_FIXUP_ASROCK_MOBO,
10796 ALC662_FIXUP_USI_FUNC,
10797 ALC662_FIXUP_USI_HEADSET_MODE,
10798 ALC662_FIXUP_LENOVO_MULTI_CODECS,
10799 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
10800 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
10801 ALC671_FIXUP_HP_HEADSET_MIC2,
10802 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
10803 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
10804 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
10805 ALC668_FIXUP_HEADSET_MIC,
10806 ALC668_FIXUP_MIC_DET_COEF,
10807 ALC897_FIXUP_LENOVO_HEADSET_MIC,
10808 ALC897_FIXUP_HEADSET_MIC_PIN,
10809 ALC897_FIXUP_HP_HSMIC_VERB,
10812 static const struct hda_fixup alc662_fixups[] = {
10813 [ALC662_FIXUP_ASPIRE] = {
10814 .type = HDA_FIXUP_PINS,
10815 .v.pins = (const struct hda_pintbl[]) {
10816 { 0x15, 0x99130112 }, /* subwoofer */
10820 [ALC662_FIXUP_LED_GPIO1] = {
10821 .type = HDA_FIXUP_FUNC,
10822 .v.func = alc662_fixup_led_gpio1,
10824 [ALC662_FIXUP_IDEAPAD] = {
10825 .type = HDA_FIXUP_PINS,
10826 .v.pins = (const struct hda_pintbl[]) {
10827 { 0x17, 0x99130112 }, /* subwoofer */
10831 .chain_id = ALC662_FIXUP_LED_GPIO1,
10833 [ALC272_FIXUP_MARIO] = {
10834 .type = HDA_FIXUP_FUNC,
10835 .v.func = alc272_fixup_mario,
10837 [ALC662_FIXUP_CZC_ET26] = {
10838 .type = HDA_FIXUP_PINS,
10839 .v.pins = (const struct hda_pintbl[]) {
10840 {0x12, 0x403cc000},
10841 {0x14, 0x90170110}, /* speaker */
10842 {0x15, 0x411111f0},
10843 {0x16, 0x411111f0},
10844 {0x18, 0x01a19030}, /* mic */
10845 {0x19, 0x90a7013f}, /* int-mic */
10846 {0x1a, 0x01014020},
10847 {0x1b, 0x0121401f},
10848 {0x1c, 0x411111f0},
10849 {0x1d, 0x411111f0},
10850 {0x1e, 0x40478e35},
10854 .chain_id = ALC662_FIXUP_SKU_IGNORE
10856 [ALC662_FIXUP_CZC_P10T] = {
10857 .type = HDA_FIXUP_VERBS,
10858 .v.verbs = (const struct hda_verb[]) {
10859 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
10863 [ALC662_FIXUP_SKU_IGNORE] = {
10864 .type = HDA_FIXUP_FUNC,
10865 .v.func = alc_fixup_sku_ignore,
10867 [ALC662_FIXUP_HP_RP5800] = {
10868 .type = HDA_FIXUP_PINS,
10869 .v.pins = (const struct hda_pintbl[]) {
10870 { 0x14, 0x0221201f }, /* HP out */
10874 .chain_id = ALC662_FIXUP_SKU_IGNORE
10876 [ALC662_FIXUP_ASUS_MODE1] = {
10877 .type = HDA_FIXUP_PINS,
10878 .v.pins = (const struct hda_pintbl[]) {
10879 { 0x14, 0x99130110 }, /* speaker */
10880 { 0x18, 0x01a19c20 }, /* mic */
10881 { 0x19, 0x99a3092f }, /* int-mic */
10882 { 0x21, 0x0121401f }, /* HP out */
10886 .chain_id = ALC662_FIXUP_SKU_IGNORE
10888 [ALC662_FIXUP_ASUS_MODE2] = {
10889 .type = HDA_FIXUP_PINS,
10890 .v.pins = (const struct hda_pintbl[]) {
10891 { 0x14, 0x99130110 }, /* speaker */
10892 { 0x18, 0x01a19820 }, /* mic */
10893 { 0x19, 0x99a3092f }, /* int-mic */
10894 { 0x1b, 0x0121401f }, /* HP out */
10898 .chain_id = ALC662_FIXUP_SKU_IGNORE
10900 [ALC662_FIXUP_ASUS_MODE3] = {
10901 .type = HDA_FIXUP_PINS,
10902 .v.pins = (const struct hda_pintbl[]) {
10903 { 0x14, 0x99130110 }, /* speaker */
10904 { 0x15, 0x0121441f }, /* HP */
10905 { 0x18, 0x01a19840 }, /* mic */
10906 { 0x19, 0x99a3094f }, /* int-mic */
10907 { 0x21, 0x01211420 }, /* HP2 */
10911 .chain_id = ALC662_FIXUP_SKU_IGNORE
10913 [ALC662_FIXUP_ASUS_MODE4] = {
10914 .type = HDA_FIXUP_PINS,
10915 .v.pins = (const struct hda_pintbl[]) {
10916 { 0x14, 0x99130110 }, /* speaker */
10917 { 0x16, 0x99130111 }, /* speaker */
10918 { 0x18, 0x01a19840 }, /* mic */
10919 { 0x19, 0x99a3094f }, /* int-mic */
10920 { 0x21, 0x0121441f }, /* HP */
10924 .chain_id = ALC662_FIXUP_SKU_IGNORE
10926 [ALC662_FIXUP_ASUS_MODE5] = {
10927 .type = HDA_FIXUP_PINS,
10928 .v.pins = (const struct hda_pintbl[]) {
10929 { 0x14, 0x99130110 }, /* speaker */
10930 { 0x15, 0x0121441f }, /* HP */
10931 { 0x16, 0x99130111 }, /* speaker */
10932 { 0x18, 0x01a19840 }, /* mic */
10933 { 0x19, 0x99a3094f }, /* int-mic */
10937 .chain_id = ALC662_FIXUP_SKU_IGNORE
10939 [ALC662_FIXUP_ASUS_MODE6] = {
10940 .type = HDA_FIXUP_PINS,
10941 .v.pins = (const struct hda_pintbl[]) {
10942 { 0x14, 0x99130110 }, /* speaker */
10943 { 0x15, 0x01211420 }, /* HP2 */
10944 { 0x18, 0x01a19840 }, /* mic */
10945 { 0x19, 0x99a3094f }, /* int-mic */
10946 { 0x1b, 0x0121441f }, /* HP */
10950 .chain_id = ALC662_FIXUP_SKU_IGNORE
10952 [ALC662_FIXUP_ASUS_MODE7] = {
10953 .type = HDA_FIXUP_PINS,
10954 .v.pins = (const struct hda_pintbl[]) {
10955 { 0x14, 0x99130110 }, /* speaker */
10956 { 0x17, 0x99130111 }, /* speaker */
10957 { 0x18, 0x01a19840 }, /* mic */
10958 { 0x19, 0x99a3094f }, /* int-mic */
10959 { 0x1b, 0x01214020 }, /* HP */
10960 { 0x21, 0x0121401f }, /* HP */
10964 .chain_id = ALC662_FIXUP_SKU_IGNORE
10966 [ALC662_FIXUP_ASUS_MODE8] = {
10967 .type = HDA_FIXUP_PINS,
10968 .v.pins = (const struct hda_pintbl[]) {
10969 { 0x14, 0x99130110 }, /* speaker */
10970 { 0x12, 0x99a30970 }, /* int-mic */
10971 { 0x15, 0x01214020 }, /* HP */
10972 { 0x17, 0x99130111 }, /* speaker */
10973 { 0x18, 0x01a19840 }, /* mic */
10974 { 0x21, 0x0121401f }, /* HP */
10978 .chain_id = ALC662_FIXUP_SKU_IGNORE
10980 [ALC662_FIXUP_NO_JACK_DETECT] = {
10981 .type = HDA_FIXUP_FUNC,
10982 .v.func = alc_fixup_no_jack_detect,
10984 [ALC662_FIXUP_ZOTAC_Z68] = {
10985 .type = HDA_FIXUP_PINS,
10986 .v.pins = (const struct hda_pintbl[]) {
10987 { 0x1b, 0x02214020 }, /* Front HP */
10991 [ALC662_FIXUP_INV_DMIC] = {
10992 .type = HDA_FIXUP_FUNC,
10993 .v.func = alc_fixup_inv_dmic,
10995 [ALC668_FIXUP_DELL_XPS13] = {
10996 .type = HDA_FIXUP_FUNC,
10997 .v.func = alc_fixup_dell_xps13,
10999 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11001 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
11002 .type = HDA_FIXUP_FUNC,
11003 .v.func = alc_fixup_disable_aamix,
11005 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11007 [ALC668_FIXUP_AUTO_MUTE] = {
11008 .type = HDA_FIXUP_FUNC,
11009 .v.func = alc_fixup_auto_mute_via_amp,
11011 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11013 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
11014 .type = HDA_FIXUP_PINS,
11015 .v.pins = (const struct hda_pintbl[]) {
11016 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11017 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
11021 .chain_id = ALC662_FIXUP_HEADSET_MODE
11023 [ALC662_FIXUP_HEADSET_MODE] = {
11024 .type = HDA_FIXUP_FUNC,
11025 .v.func = alc_fixup_headset_mode_alc662,
11027 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
11028 .type = HDA_FIXUP_PINS,
11029 .v.pins = (const struct hda_pintbl[]) {
11030 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11031 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11035 .chain_id = ALC668_FIXUP_HEADSET_MODE
11037 [ALC668_FIXUP_HEADSET_MODE] = {
11038 .type = HDA_FIXUP_FUNC,
11039 .v.func = alc_fixup_headset_mode_alc668,
11041 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
11042 .type = HDA_FIXUP_FUNC,
11043 .v.func = alc_fixup_bass_chmap,
11045 .chain_id = ALC662_FIXUP_ASUS_MODE4
11047 [ALC662_FIXUP_BASS_16] = {
11048 .type = HDA_FIXUP_PINS,
11049 .v.pins = (const struct hda_pintbl[]) {
11050 {0x16, 0x80106111}, /* bass speaker */
11054 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11056 [ALC662_FIXUP_BASS_1A] = {
11057 .type = HDA_FIXUP_PINS,
11058 .v.pins = (const struct hda_pintbl[]) {
11059 {0x1a, 0x80106111}, /* bass speaker */
11063 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11065 [ALC662_FIXUP_BASS_CHMAP] = {
11066 .type = HDA_FIXUP_FUNC,
11067 .v.func = alc_fixup_bass_chmap,
11069 [ALC662_FIXUP_ASUS_Nx50] = {
11070 .type = HDA_FIXUP_FUNC,
11071 .v.func = alc_fixup_auto_mute_via_amp,
11073 .chain_id = ALC662_FIXUP_BASS_1A
11075 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
11076 .type = HDA_FIXUP_FUNC,
11077 .v.func = alc_fixup_headset_mode_alc668,
11078 .chain_id = ALC662_FIXUP_BASS_CHMAP
11080 [ALC668_FIXUP_ASUS_Nx51] = {
11081 .type = HDA_FIXUP_PINS,
11082 .v.pins = (const struct hda_pintbl[]) {
11083 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11084 { 0x1a, 0x90170151 }, /* bass speaker */
11085 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11089 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
11091 [ALC668_FIXUP_MIC_COEF] = {
11092 .type = HDA_FIXUP_VERBS,
11093 .v.verbs = (const struct hda_verb[]) {
11094 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
11095 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
11099 [ALC668_FIXUP_ASUS_G751] = {
11100 .type = HDA_FIXUP_PINS,
11101 .v.pins = (const struct hda_pintbl[]) {
11102 { 0x16, 0x0421101f }, /* HP */
11106 .chain_id = ALC668_FIXUP_MIC_COEF
11108 [ALC891_FIXUP_HEADSET_MODE] = {
11109 .type = HDA_FIXUP_FUNC,
11110 .v.func = alc_fixup_headset_mode,
11112 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
11113 .type = HDA_FIXUP_PINS,
11114 .v.pins = (const struct hda_pintbl[]) {
11115 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11116 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11120 .chain_id = ALC891_FIXUP_HEADSET_MODE
11122 [ALC662_FIXUP_ACER_VERITON] = {
11123 .type = HDA_FIXUP_PINS,
11124 .v.pins = (const struct hda_pintbl[]) {
11125 { 0x15, 0x50170120 }, /* no internal speaker */
11129 [ALC892_FIXUP_ASROCK_MOBO] = {
11130 .type = HDA_FIXUP_PINS,
11131 .v.pins = (const struct hda_pintbl[]) {
11132 { 0x15, 0x40f000f0 }, /* disabled */
11133 { 0x16, 0x40f000f0 }, /* disabled */
11137 [ALC662_FIXUP_USI_FUNC] = {
11138 .type = HDA_FIXUP_FUNC,
11139 .v.func = alc662_fixup_usi_headset_mic,
11141 [ALC662_FIXUP_USI_HEADSET_MODE] = {
11142 .type = HDA_FIXUP_PINS,
11143 .v.pins = (const struct hda_pintbl[]) {
11144 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
11145 { 0x18, 0x01a1903d },
11149 .chain_id = ALC662_FIXUP_USI_FUNC
11151 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
11152 .type = HDA_FIXUP_FUNC,
11153 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
11155 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
11156 .type = HDA_FIXUP_FUNC,
11157 .v.func = alc662_fixup_aspire_ethos_hp,
11159 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
11160 .type = HDA_FIXUP_PINS,
11161 .v.pins = (const struct hda_pintbl[]) {
11162 { 0x15, 0x92130110 }, /* front speakers */
11163 { 0x18, 0x99130111 }, /* center/subwoofer */
11164 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
11168 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
11170 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
11171 .type = HDA_FIXUP_FUNC,
11172 .v.func = alc671_fixup_hp_headset_mic2,
11174 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
11175 .type = HDA_FIXUP_PINS,
11176 .v.pins = (const struct hda_pintbl[]) {
11177 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
11181 .chain_id = ALC662_FIXUP_USI_FUNC
11183 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
11184 .type = HDA_FIXUP_PINS,
11185 .v.pins = (const struct hda_pintbl[]) {
11186 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
11187 { 0x1b, 0x0221144f },
11191 .chain_id = ALC662_FIXUP_USI_FUNC
11193 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
11194 .type = HDA_FIXUP_PINS,
11195 .v.pins = (const struct hda_pintbl[]) {
11196 { 0x1b, 0x04a1112c },
11200 .chain_id = ALC668_FIXUP_HEADSET_MIC
11202 [ALC668_FIXUP_HEADSET_MIC] = {
11203 .type = HDA_FIXUP_FUNC,
11204 .v.func = alc269_fixup_headset_mic,
11206 .chain_id = ALC668_FIXUP_MIC_DET_COEF
11208 [ALC668_FIXUP_MIC_DET_COEF] = {
11209 .type = HDA_FIXUP_VERBS,
11210 .v.verbs = (const struct hda_verb[]) {
11211 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
11212 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
11216 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
11217 .type = HDA_FIXUP_FUNC,
11218 .v.func = alc897_fixup_lenovo_headset_mic,
11220 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
11221 .type = HDA_FIXUP_PINS,
11222 .v.pins = (const struct hda_pintbl[]) {
11223 { 0x1a, 0x03a11050 },
11227 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
11229 [ALC897_FIXUP_HP_HSMIC_VERB] = {
11230 .type = HDA_FIXUP_PINS,
11231 .v.pins = (const struct hda_pintbl[]) {
11232 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
11238 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
11239 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
11240 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
11241 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
11242 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
11243 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
11244 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
11245 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
11246 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
11247 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
11248 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
11249 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
11250 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11251 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11252 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
11253 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
11254 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
11255 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11256 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11257 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11258 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11259 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11260 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
11261 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
11262 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
11263 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
11264 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
11265 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
11266 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
11267 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11268 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
11269 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
11270 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
11271 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
11272 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
11273 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
11274 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
11275 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
11276 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
11277 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
11278 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
11279 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
11280 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
11281 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
11282 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
11283 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
11284 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
11285 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
11286 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
11287 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
11288 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
11289 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
11290 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
11291 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
11292 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
11293 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
11294 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
11297 /* Below is a quirk table taken from the old code.
11298 * Basically the device should work as is without the fixup table.
11299 * If BIOS doesn't give a proper info, enable the corresponding
11302 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
11303 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
11304 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
11305 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
11306 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11307 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11308 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11309 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
11310 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
11311 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11312 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
11313 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
11314 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
11315 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
11316 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
11317 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11318 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
11319 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
11320 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11321 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11322 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11323 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11324 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
11325 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
11326 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
11327 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11328 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
11329 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11330 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11331 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
11332 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11333 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11334 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
11335 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
11336 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
11337 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
11338 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
11339 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
11340 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
11341 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11342 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
11343 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
11344 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11345 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
11346 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
11347 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
11348 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
11349 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
11350 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11351 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
11356 static const struct hda_model_fixup alc662_fixup_models[] = {
11357 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
11358 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
11359 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
11360 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
11361 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
11362 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
11363 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
11364 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
11365 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
11366 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
11367 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
11368 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
11369 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
11370 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
11371 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
11372 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
11373 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
11374 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
11375 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
11376 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
11377 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
11378 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
11379 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
11380 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
11381 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
11382 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
11383 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
11384 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
11385 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
11386 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
11387 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
11388 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
11392 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
11393 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11394 {0x17, 0x02211010},
11395 {0x18, 0x01a19030},
11396 {0x1a, 0x01813040},
11397 {0x21, 0x01014020}),
11398 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11399 {0x16, 0x01813030},
11400 {0x17, 0x02211010},
11401 {0x18, 0x01a19040},
11402 {0x21, 0x01014020}),
11403 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
11404 {0x14, 0x01014010},
11405 {0x18, 0x01a19020},
11406 {0x1a, 0x0181302f},
11407 {0x1b, 0x0221401f}),
11408 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11409 {0x12, 0x99a30130},
11410 {0x14, 0x90170110},
11411 {0x15, 0x0321101f},
11412 {0x16, 0x03011020}),
11413 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11414 {0x12, 0x99a30140},
11415 {0x14, 0x90170110},
11416 {0x15, 0x0321101f},
11417 {0x16, 0x03011020}),
11418 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11419 {0x12, 0x99a30150},
11420 {0x14, 0x90170110},
11421 {0x15, 0x0321101f},
11422 {0x16, 0x03011020}),
11423 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11424 {0x14, 0x90170110},
11425 {0x15, 0x0321101f},
11426 {0x16, 0x03011020}),
11427 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
11428 {0x12, 0x90a60130},
11429 {0x14, 0x90170110},
11430 {0x15, 0x0321101f}),
11431 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11432 {0x14, 0x01014010},
11433 {0x17, 0x90170150},
11434 {0x19, 0x02a11060},
11435 {0x1b, 0x01813030},
11436 {0x21, 0x02211020}),
11437 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11438 {0x14, 0x01014010},
11439 {0x18, 0x01a19040},
11440 {0x1b, 0x01813030},
11441 {0x21, 0x02211020}),
11442 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11443 {0x14, 0x01014020},
11444 {0x17, 0x90170110},
11445 {0x18, 0x01a19050},
11446 {0x1b, 0x01813040},
11447 {0x21, 0x02211030}),
11453 static int patch_alc662(struct hda_codec *codec)
11455 struct alc_spec *spec;
11458 err = alc_alloc_spec(codec, 0x0b);
11462 spec = codec->spec;
11464 spec->shutup = alc_eapd_shutup;
11466 /* handle multiple HPs as is */
11467 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
11469 alc_fix_pll_init(codec, 0x20, 0x04, 15);
11471 switch (codec->core.vendor_id) {
11473 spec->init_hook = alc668_restore_default_value;
11477 alc_pre_init(codec);
11479 snd_hda_pick_fixup(codec, alc662_fixup_models,
11480 alc662_fixup_tbl, alc662_fixups);
11481 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
11482 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11484 alc_auto_parse_customize_define(codec);
11486 if (has_cdefine_beep(codec))
11487 spec->gen.beep_nid = 0x01;
11489 if ((alc_get_coef0(codec) & (1 << 14)) &&
11490 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
11491 spec->cdefine.platform_type == 1) {
11492 err = alc_codec_rename(codec, "ALC272X");
11497 /* automatic parse from the BIOS config */
11498 err = alc662_parse_auto_config(codec);
11502 if (!spec->gen.no_analog && spec->gen.beep_nid) {
11503 switch (codec->core.vendor_id) {
11505 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11511 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
11514 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
11521 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11534 static int alc680_parse_auto_config(struct hda_codec *codec)
11536 return alc_parse_auto_config(codec, NULL, NULL);
11541 static int patch_alc680(struct hda_codec *codec)
11545 /* ALC680 has no aa-loopback mixer */
11546 err = alc_alloc_spec(codec, 0);
11550 /* automatic parse from the BIOS config */
11551 err = alc680_parse_auto_config(codec);
11563 static const struct hda_device_id snd_hda_id_realtek[] = {
11564 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
11565 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
11566 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
11567 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
11568 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
11569 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
11570 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
11571 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
11572 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
11573 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
11574 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
11575 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
11576 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
11577 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
11578 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
11579 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
11580 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
11581 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
11582 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
11583 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
11584 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
11585 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
11586 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
11587 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
11588 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
11589 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
11590 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
11591 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
11592 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
11593 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
11594 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
11595 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
11596 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
11597 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
11598 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
11599 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
11600 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
11601 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
11602 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
11603 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
11604 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
11605 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
11606 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
11607 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
11608 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
11609 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
11610 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
11611 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
11612 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
11613 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
11614 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
11615 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
11616 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
11617 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
11618 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
11619 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
11620 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
11621 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
11622 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
11623 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
11624 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
11625 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
11626 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
11627 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
11628 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
11629 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
11630 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
11631 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
11632 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
11633 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
11634 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
11635 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
11636 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
11637 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
11638 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
11639 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
11640 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
11641 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
11642 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
11643 {} /* terminator */
11645 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
11647 MODULE_LICENSE("GPL");
11648 MODULE_DESCRIPTION("Realtek HD-audio codec");
11650 static struct hda_codec_driver realtek_driver = {
11651 .id = snd_hda_id_realtek,
11654 module_hda_codec_driver(realtek_driver);