Linux-libre 5.3.12-gnu
[librecmc/linux-libre.git] / sound / pci / hda / patch_realtek.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Universal Interface for Intel High Definition Audio Codec
4  *
5  * HD audio interface patch for Realtek ALC codecs
6  *
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>
11  */
12
13 #include <linux/init.h>
14 #include <linux/delay.h>
15 #include <linux/slab.h>
16 #include <linux/pci.h>
17 #include <linux/dmi.h>
18 #include <linux/module.h>
19 #include <linux/input.h>
20 #include <sound/core.h>
21 #include <sound/jack.h>
22 #include <sound/hda_codec.h>
23 #include "hda_local.h"
24 #include "hda_auto_parser.h"
25 #include "hda_jack.h"
26 #include "hda_generic.h"
27
28 /* keep halting ALC5505 DSP, for power saving */
29 #define HALT_REALTEK_ALC5505
30
31 /* extra amp-initialization sequence types */
32 enum {
33         ALC_INIT_UNDEFINED,
34         ALC_INIT_NONE,
35         ALC_INIT_DEFAULT,
36 };
37
38 enum {
39         ALC_HEADSET_MODE_UNKNOWN,
40         ALC_HEADSET_MODE_UNPLUGGED,
41         ALC_HEADSET_MODE_HEADSET,
42         ALC_HEADSET_MODE_MIC,
43         ALC_HEADSET_MODE_HEADPHONE,
44 };
45
46 enum {
47         ALC_HEADSET_TYPE_UNKNOWN,
48         ALC_HEADSET_TYPE_CTIA,
49         ALC_HEADSET_TYPE_OMTP,
50 };
51
52 enum {
53         ALC_KEY_MICMUTE_INDEX,
54 };
55
56 struct alc_customize_define {
57         unsigned int  sku_cfg;
58         unsigned char port_connectivity;
59         unsigned char check_sum;
60         unsigned char customization;
61         unsigned char external_amp;
62         unsigned int  enable_pcbeep:1;
63         unsigned int  platform_type:1;
64         unsigned int  swap:1;
65         unsigned int  override:1;
66         unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */
67 };
68
69 struct alc_spec {
70         struct hda_gen_spec gen; /* must be at head */
71
72         /* codec parameterization */
73         struct alc_customize_define cdefine;
74         unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
75
76         /* GPIO bits */
77         unsigned int gpio_mask;
78         unsigned int gpio_dir;
79         unsigned int gpio_data;
80         bool gpio_write_delay;  /* add a delay before writing gpio_data */
81
82         /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
83         int mute_led_polarity;
84         hda_nid_t mute_led_nid;
85         hda_nid_t cap_mute_led_nid;
86
87         unsigned int gpio_mute_led_mask;
88         unsigned int gpio_mic_led_mask;
89
90         hda_nid_t headset_mic_pin;
91         hda_nid_t headphone_mic_pin;
92         int current_headset_mode;
93         int current_headset_type;
94
95         /* hooks */
96         void (*init_hook)(struct hda_codec *codec);
97 #ifdef CONFIG_PM
98         void (*power_hook)(struct hda_codec *codec);
99 #endif
100         void (*shutup)(struct hda_codec *codec);
101         void (*reboot_notify)(struct hda_codec *codec);
102
103         int init_amp;
104         int codec_variant;      /* flag for other variants */
105         unsigned int has_alc5505_dsp:1;
106         unsigned int no_depop_delay:1;
107         unsigned int done_hp_init:1;
108         unsigned int no_shutup_pins:1;
109         unsigned int ultra_low_power:1;
110
111         /* for PLL fix */
112         hda_nid_t pll_nid;
113         unsigned int pll_coef_idx, pll_coef_bit;
114         unsigned int coef0;
115         struct input_dev *kb_dev;
116         u8 alc_mute_keycode_map[1];
117 };
118
119 /*
120  * COEF access helper functions
121  */
122
123 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
124                                unsigned int coef_idx)
125 {
126         unsigned int val;
127
128         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
129         val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
130         return val;
131 }
132
133 #define alc_read_coef_idx(codec, coef_idx) \
134         alc_read_coefex_idx(codec, 0x20, coef_idx)
135
136 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
137                                  unsigned int coef_idx, unsigned int coef_val)
138 {
139         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
140         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
141 }
142
143 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
144         alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
145
146 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
147                                   unsigned int coef_idx, unsigned int mask,
148                                   unsigned int bits_set)
149 {
150         unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
151
152         if (val != -1)
153                 alc_write_coefex_idx(codec, nid, coef_idx,
154                                      (val & ~mask) | bits_set);
155 }
156
157 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set)    \
158         alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
159
160 /* a special bypass for COEF 0; read the cached value at the second time */
161 static unsigned int alc_get_coef0(struct hda_codec *codec)
162 {
163         struct alc_spec *spec = codec->spec;
164
165         if (!spec->coef0)
166                 spec->coef0 = alc_read_coef_idx(codec, 0);
167         return spec->coef0;
168 }
169
170 /* coef writes/updates batch */
171 struct coef_fw {
172         unsigned char nid;
173         unsigned char idx;
174         unsigned short mask;
175         unsigned short val;
176 };
177
178 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
179         { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
180 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
181 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
182 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
183
184 static void alc_process_coef_fw(struct hda_codec *codec,
185                                 const struct coef_fw *fw)
186 {
187         for (; fw->nid; fw++) {
188                 if (fw->mask == (unsigned short)-1)
189                         alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
190                 else
191                         alc_update_coefex_idx(codec, fw->nid, fw->idx,
192                                               fw->mask, fw->val);
193         }
194 }
195
196 /*
197  * GPIO setup tables, used in initialization
198  */
199
200 /* Enable GPIO mask and set output */
201 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
202 {
203         struct alc_spec *spec = codec->spec;
204
205         spec->gpio_mask |= mask;
206         spec->gpio_dir |= mask;
207         spec->gpio_data |= mask;
208 }
209
210 static void alc_write_gpio_data(struct hda_codec *codec)
211 {
212         struct alc_spec *spec = codec->spec;
213
214         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
215                             spec->gpio_data);
216 }
217
218 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
219                                  bool on)
220 {
221         struct alc_spec *spec = codec->spec;
222         unsigned int oldval = spec->gpio_data;
223
224         if (on)
225                 spec->gpio_data |= mask;
226         else
227                 spec->gpio_data &= ~mask;
228         if (oldval != spec->gpio_data)
229                 alc_write_gpio_data(codec);
230 }
231
232 static void alc_write_gpio(struct hda_codec *codec)
233 {
234         struct alc_spec *spec = codec->spec;
235
236         if (!spec->gpio_mask)
237                 return;
238
239         snd_hda_codec_write(codec, codec->core.afg, 0,
240                             AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
241         snd_hda_codec_write(codec, codec->core.afg, 0,
242                             AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
243         if (spec->gpio_write_delay)
244                 msleep(1);
245         alc_write_gpio_data(codec);
246 }
247
248 static void alc_fixup_gpio(struct hda_codec *codec, int action,
249                            unsigned int mask)
250 {
251         if (action == HDA_FIXUP_ACT_PRE_PROBE)
252                 alc_setup_gpio(codec, mask);
253 }
254
255 static void alc_fixup_gpio1(struct hda_codec *codec,
256                             const struct hda_fixup *fix, int action)
257 {
258         alc_fixup_gpio(codec, action, 0x01);
259 }
260
261 static void alc_fixup_gpio2(struct hda_codec *codec,
262                             const struct hda_fixup *fix, int action)
263 {
264         alc_fixup_gpio(codec, action, 0x02);
265 }
266
267 static void alc_fixup_gpio3(struct hda_codec *codec,
268                             const struct hda_fixup *fix, int action)
269 {
270         alc_fixup_gpio(codec, action, 0x03);
271 }
272
273 static void alc_fixup_gpio4(struct hda_codec *codec,
274                             const struct hda_fixup *fix, int action)
275 {
276         alc_fixup_gpio(codec, action, 0x04);
277 }
278
279 /*
280  * Fix hardware PLL issue
281  * On some codecs, the analog PLL gating control must be off while
282  * the default value is 1.
283  */
284 static void alc_fix_pll(struct hda_codec *codec)
285 {
286         struct alc_spec *spec = codec->spec;
287
288         if (spec->pll_nid)
289                 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
290                                       1 << spec->pll_coef_bit, 0);
291 }
292
293 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
294                              unsigned int coef_idx, unsigned int coef_bit)
295 {
296         struct alc_spec *spec = codec->spec;
297         spec->pll_nid = nid;
298         spec->pll_coef_idx = coef_idx;
299         spec->pll_coef_bit = coef_bit;
300         alc_fix_pll(codec);
301 }
302
303 /* update the master volume per volume-knob's unsol event */
304 static void alc_update_knob_master(struct hda_codec *codec,
305                                    struct hda_jack_callback *jack)
306 {
307         unsigned int val;
308         struct snd_kcontrol *kctl;
309         struct snd_ctl_elem_value *uctl;
310
311         kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
312         if (!kctl)
313                 return;
314         uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
315         if (!uctl)
316                 return;
317         val = snd_hda_codec_read(codec, jack->nid, 0,
318                                  AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
319         val &= HDA_AMP_VOLMASK;
320         uctl->value.integer.value[0] = val;
321         uctl->value.integer.value[1] = val;
322         kctl->put(kctl, uctl);
323         kfree(uctl);
324 }
325
326 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
327 {
328         /* For some reason, the res given from ALC880 is broken.
329            Here we adjust it properly. */
330         snd_hda_jack_unsol_event(codec, res >> 2);
331 }
332
333 /* Change EAPD to verb control */
334 static void alc_fill_eapd_coef(struct hda_codec *codec)
335 {
336         int coef;
337
338         coef = alc_get_coef0(codec);
339
340         switch (codec->core.vendor_id) {
341         case 0x10ec0262:
342                 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
343                 break;
344         case 0x10ec0267:
345         case 0x10ec0268:
346                 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
347                 break;
348         case 0x10ec0269:
349                 if ((coef & 0x00f0) == 0x0010)
350                         alc_update_coef_idx(codec, 0xd, 0, 1<<14);
351                 if ((coef & 0x00f0) == 0x0020)
352                         alc_update_coef_idx(codec, 0x4, 1<<15, 0);
353                 if ((coef & 0x00f0) == 0x0030)
354                         alc_update_coef_idx(codec, 0x10, 1<<9, 0);
355                 break;
356         case 0x10ec0280:
357         case 0x10ec0284:
358         case 0x10ec0290:
359         case 0x10ec0292:
360                 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
361                 break;
362         case 0x10ec0225:
363         case 0x10ec0295:
364         case 0x10ec0299:
365                 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
366                 /* fallthrough */
367         case 0x10ec0215:
368         case 0x10ec0233:
369         case 0x10ec0235:
370         case 0x10ec0236:
371         case 0x10ec0255:
372         case 0x10ec0256:
373         case 0x10ec0257:
374         case 0x10ec0282:
375         case 0x10ec0283:
376         case 0x10ec0286:
377         case 0x10ec0288:
378         case 0x10ec0285:
379         case 0x10ec0298:
380         case 0x10ec0289:
381         case 0x10ec0300:
382                 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
383                 break;
384         case 0x10ec0275:
385                 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
386                 break;
387         case 0x10ec0293:
388                 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
389                 break;
390         case 0x10ec0234:
391         case 0x10ec0274:
392         case 0x10ec0294:
393         case 0x10ec0700:
394         case 0x10ec0701:
395         case 0x10ec0703:
396         case 0x10ec0711:
397                 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
398                 break;
399         case 0x10ec0662:
400                 if ((coef & 0x00f0) == 0x0030)
401                         alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
402                 break;
403         case 0x10ec0272:
404         case 0x10ec0273:
405         case 0x10ec0663:
406         case 0x10ec0665:
407         case 0x10ec0670:
408         case 0x10ec0671:
409         case 0x10ec0672:
410                 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
411                 break;
412         case 0x10ec0623:
413                 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
414                 break;
415         case 0x10ec0668:
416                 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
417                 break;
418         case 0x10ec0867:
419                 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
420                 break;
421         case 0x10ec0888:
422                 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
423                         alc_update_coef_idx(codec, 0x7, 1<<5, 0);
424                 break;
425         case 0x10ec0892:
426                 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
427                 break;
428         case 0x10ec0899:
429         case 0x10ec0900:
430         case 0x10ec1168:
431         case 0x10ec1220:
432                 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
433                 break;
434         }
435 }
436
437 /* additional initialization for ALC888 variants */
438 static void alc888_coef_init(struct hda_codec *codec)
439 {
440         switch (alc_get_coef0(codec) & 0x00f0) {
441         /* alc888-VA */
442         case 0x00:
443         /* alc888-VB */
444         case 0x10:
445                 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
446                 break;
447         }
448 }
449
450 /* turn on/off EAPD control (only if available) */
451 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
452 {
453         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
454                 return;
455         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
456                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
457                                     on ? 2 : 0);
458 }
459
460 /* turn on/off EAPD controls of the codec */
461 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
462 {
463         /* We currently only handle front, HP */
464         static hda_nid_t pins[] = {
465                 0x0f, 0x10, 0x14, 0x15, 0x17, 0
466         };
467         hda_nid_t *p;
468         for (p = pins; *p; p++)
469                 set_eapd(codec, *p, on);
470 }
471
472 static int find_ext_mic_pin(struct hda_codec *codec);
473
474 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
475 {
476         const struct hda_pincfg *pin;
477         int mic_pin = find_ext_mic_pin(codec);
478         int i;
479
480         /* don't shut up pins when unloading the driver; otherwise it breaks
481          * the default pin setup at the next load of the driver
482          */
483         if (codec->bus->shutdown)
484                 return;
485
486         snd_array_for_each(&codec->init_pins, i, pin) {
487                 /* use read here for syncing after issuing each verb */
488                 if (pin->nid != mic_pin)
489                         snd_hda_codec_read(codec, pin->nid, 0,
490                                         AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
491         }
492
493         codec->pins_shutup = 1;
494 }
495
496 static void alc_shutup_pins(struct hda_codec *codec)
497 {
498         struct alc_spec *spec = codec->spec;
499
500         switch (codec->core.vendor_id) {
501         case 0x10ec0286:
502         case 0x10ec0288:
503         case 0x10ec0298:
504                 alc_headset_mic_no_shutup(codec);
505                 break;
506         default:
507                 if (!spec->no_shutup_pins)
508                         snd_hda_shutup_pins(codec);
509                 break;
510         }
511 }
512
513 /* generic shutup callback;
514  * just turning off EAPD and a little pause for avoiding pop-noise
515  */
516 static void alc_eapd_shutup(struct hda_codec *codec)
517 {
518         struct alc_spec *spec = codec->spec;
519
520         alc_auto_setup_eapd(codec, false);
521         if (!spec->no_depop_delay)
522                 msleep(200);
523         alc_shutup_pins(codec);
524 }
525
526 /* generic EAPD initialization */
527 static void alc_auto_init_amp(struct hda_codec *codec, int type)
528 {
529         alc_auto_setup_eapd(codec, true);
530         alc_write_gpio(codec);
531         switch (type) {
532         case ALC_INIT_DEFAULT:
533                 switch (codec->core.vendor_id) {
534                 case 0x10ec0260:
535                         alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
536                         break;
537                 case 0x10ec0880:
538                 case 0x10ec0882:
539                 case 0x10ec0883:
540                 case 0x10ec0885:
541                         alc_update_coef_idx(codec, 7, 0, 0x2030);
542                         break;
543                 case 0x10ec0888:
544                         alc888_coef_init(codec);
545                         break;
546                 }
547                 break;
548         }
549 }
550
551 /* get a primary headphone pin if available */
552 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
553 {
554         if (spec->gen.autocfg.hp_pins[0])
555                 return spec->gen.autocfg.hp_pins[0];
556         if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
557                 return spec->gen.autocfg.line_out_pins[0];
558         return 0;
559 }
560
561 /*
562  * Realtek SSID verification
563  */
564
565 /* Could be any non-zero and even value. When used as fixup, tells
566  * the driver to ignore any present sku defines.
567  */
568 #define ALC_FIXUP_SKU_IGNORE (2)
569
570 static void alc_fixup_sku_ignore(struct hda_codec *codec,
571                                  const struct hda_fixup *fix, int action)
572 {
573         struct alc_spec *spec = codec->spec;
574         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
575                 spec->cdefine.fixup = 1;
576                 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
577         }
578 }
579
580 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
581                                     const struct hda_fixup *fix, int action)
582 {
583         struct alc_spec *spec = codec->spec;
584
585         if (action == HDA_FIXUP_ACT_PROBE) {
586                 spec->no_depop_delay = 1;
587                 codec->depop_delay = 0;
588         }
589 }
590
591 static int alc_auto_parse_customize_define(struct hda_codec *codec)
592 {
593         unsigned int ass, tmp, i;
594         unsigned nid = 0;
595         struct alc_spec *spec = codec->spec;
596
597         spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
598
599         if (spec->cdefine.fixup) {
600                 ass = spec->cdefine.sku_cfg;
601                 if (ass == ALC_FIXUP_SKU_IGNORE)
602                         return -1;
603                 goto do_sku;
604         }
605
606         if (!codec->bus->pci)
607                 return -1;
608         ass = codec->core.subsystem_id & 0xffff;
609         if (ass != codec->bus->pci->subsystem_device && (ass & 1))
610                 goto do_sku;
611
612         nid = 0x1d;
613         if (codec->core.vendor_id == 0x10ec0260)
614                 nid = 0x17;
615         ass = snd_hda_codec_get_pincfg(codec, nid);
616
617         if (!(ass & 1)) {
618                 codec_info(codec, "%s: SKU not ready 0x%08x\n",
619                            codec->core.chip_name, ass);
620                 return -1;
621         }
622
623         /* check sum */
624         tmp = 0;
625         for (i = 1; i < 16; i++) {
626                 if ((ass >> i) & 1)
627                         tmp++;
628         }
629         if (((ass >> 16) & 0xf) != tmp)
630                 return -1;
631
632         spec->cdefine.port_connectivity = ass >> 30;
633         spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
634         spec->cdefine.check_sum = (ass >> 16) & 0xf;
635         spec->cdefine.customization = ass >> 8;
636 do_sku:
637         spec->cdefine.sku_cfg = ass;
638         spec->cdefine.external_amp = (ass & 0x38) >> 3;
639         spec->cdefine.platform_type = (ass & 0x4) >> 2;
640         spec->cdefine.swap = (ass & 0x2) >> 1;
641         spec->cdefine.override = ass & 0x1;
642
643         codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
644                    nid, spec->cdefine.sku_cfg);
645         codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
646                    spec->cdefine.port_connectivity);
647         codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
648         codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
649         codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
650         codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
651         codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
652         codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
653         codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
654
655         return 0;
656 }
657
658 /* return the position of NID in the list, or -1 if not found */
659 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
660 {
661         int i;
662         for (i = 0; i < nums; i++)
663                 if (list[i] == nid)
664                         return i;
665         return -1;
666 }
667 /* return true if the given NID is found in the list */
668 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
669 {
670         return find_idx_in_nid_list(nid, list, nums) >= 0;
671 }
672
673 /* check subsystem ID and set up device-specific initialization;
674  * return 1 if initialized, 0 if invalid SSID
675  */
676 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
677  *      31 ~ 16 :       Manufacture ID
678  *      15 ~ 8  :       SKU ID
679  *      7  ~ 0  :       Assembly ID
680  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
681  */
682 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
683 {
684         unsigned int ass, tmp, i;
685         unsigned nid;
686         struct alc_spec *spec = codec->spec;
687
688         if (spec->cdefine.fixup) {
689                 ass = spec->cdefine.sku_cfg;
690                 if (ass == ALC_FIXUP_SKU_IGNORE)
691                         return 0;
692                 goto do_sku;
693         }
694
695         ass = codec->core.subsystem_id & 0xffff;
696         if (codec->bus->pci &&
697             ass != codec->bus->pci->subsystem_device && (ass & 1))
698                 goto do_sku;
699
700         /* invalid SSID, check the special NID pin defcfg instead */
701         /*
702          * 31~30        : port connectivity
703          * 29~21        : reserve
704          * 20           : PCBEEP input
705          * 19~16        : Check sum (15:1)
706          * 15~1         : Custom
707          * 0            : override
708         */
709         nid = 0x1d;
710         if (codec->core.vendor_id == 0x10ec0260)
711                 nid = 0x17;
712         ass = snd_hda_codec_get_pincfg(codec, nid);
713         codec_dbg(codec,
714                   "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
715                    ass, nid);
716         if (!(ass & 1))
717                 return 0;
718         if ((ass >> 30) != 1)   /* no physical connection */
719                 return 0;
720
721         /* check sum */
722         tmp = 0;
723         for (i = 1; i < 16; i++) {
724                 if ((ass >> i) & 1)
725                         tmp++;
726         }
727         if (((ass >> 16) & 0xf) != tmp)
728                 return 0;
729 do_sku:
730         codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
731                    ass & 0xffff, codec->core.vendor_id);
732         /*
733          * 0 : override
734          * 1 :  Swap Jack
735          * 2 : 0 --> Desktop, 1 --> Laptop
736          * 3~5 : External Amplifier control
737          * 7~6 : Reserved
738         */
739         tmp = (ass & 0x38) >> 3;        /* external Amp control */
740         if (spec->init_amp == ALC_INIT_UNDEFINED) {
741                 switch (tmp) {
742                 case 1:
743                         alc_setup_gpio(codec, 0x01);
744                         break;
745                 case 3:
746                         alc_setup_gpio(codec, 0x02);
747                         break;
748                 case 7:
749                         alc_setup_gpio(codec, 0x03);
750                         break;
751                 case 5:
752                 default:
753                         spec->init_amp = ALC_INIT_DEFAULT;
754                         break;
755                 }
756         }
757
758         /* is laptop or Desktop and enable the function "Mute internal speaker
759          * when the external headphone out jack is plugged"
760          */
761         if (!(ass & 0x8000))
762                 return 1;
763         /*
764          * 10~8 : Jack location
765          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
766          * 14~13: Resvered
767          * 15   : 1 --> enable the function "Mute internal speaker
768          *              when the external headphone out jack is plugged"
769          */
770         if (!alc_get_hp_pin(spec)) {
771                 hda_nid_t nid;
772                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
773                 nid = ports[tmp];
774                 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
775                                       spec->gen.autocfg.line_outs))
776                         return 1;
777                 spec->gen.autocfg.hp_pins[0] = nid;
778         }
779         return 1;
780 }
781
782 /* Check the validity of ALC subsystem-id
783  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
784 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
785 {
786         if (!alc_subsystem_id(codec, ports)) {
787                 struct alc_spec *spec = codec->spec;
788                 codec_dbg(codec,
789                           "realtek: Enable default setup for auto mode as fallback\n");
790                 spec->init_amp = ALC_INIT_DEFAULT;
791         }
792 }
793
794 /*
795  */
796
797 static void alc_fixup_inv_dmic(struct hda_codec *codec,
798                                const struct hda_fixup *fix, int action)
799 {
800         struct alc_spec *spec = codec->spec;
801
802         spec->gen.inv_dmic_split = 1;
803 }
804
805
806 static int alc_build_controls(struct hda_codec *codec)
807 {
808         int err;
809
810         err = snd_hda_gen_build_controls(codec);
811         if (err < 0)
812                 return err;
813
814         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
815         return 0;
816 }
817
818
819 /*
820  * Common callbacks
821  */
822
823 static void alc_pre_init(struct hda_codec *codec)
824 {
825         alc_fill_eapd_coef(codec);
826 }
827
828 #define is_s3_resume(codec) \
829         ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
830 #define is_s4_resume(codec) \
831         ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
832
833 static int alc_init(struct hda_codec *codec)
834 {
835         struct alc_spec *spec = codec->spec;
836
837         /* hibernation resume needs the full chip initialization */
838         if (is_s4_resume(codec))
839                 alc_pre_init(codec);
840
841         if (spec->init_hook)
842                 spec->init_hook(codec);
843
844         spec->gen.skip_verbs = 1; /* applied in below */
845         snd_hda_gen_init(codec);
846         alc_fix_pll(codec);
847         alc_auto_init_amp(codec, spec->init_amp);
848         snd_hda_apply_verbs(codec); /* apply verbs here after own init */
849
850         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
851
852         return 0;
853 }
854
855 static inline void alc_shutup(struct hda_codec *codec)
856 {
857         struct alc_spec *spec = codec->spec;
858
859         if (!snd_hda_get_bool_hint(codec, "shutup"))
860                 return; /* disabled explicitly by hints */
861
862         if (spec && spec->shutup)
863                 spec->shutup(codec);
864         else
865                 alc_shutup_pins(codec);
866 }
867
868 static void alc_reboot_notify(struct hda_codec *codec)
869 {
870         struct alc_spec *spec = codec->spec;
871
872         if (spec && spec->reboot_notify)
873                 spec->reboot_notify(codec);
874         else
875                 alc_shutup(codec);
876 }
877
878 #define alc_free        snd_hda_gen_free
879
880 #ifdef CONFIG_PM
881 static void alc_power_eapd(struct hda_codec *codec)
882 {
883         alc_auto_setup_eapd(codec, false);
884 }
885
886 static int alc_suspend(struct hda_codec *codec)
887 {
888         struct alc_spec *spec = codec->spec;
889         alc_shutup(codec);
890         if (spec && spec->power_hook)
891                 spec->power_hook(codec);
892         return 0;
893 }
894 #endif
895
896 #ifdef CONFIG_PM
897 static int alc_resume(struct hda_codec *codec)
898 {
899         struct alc_spec *spec = codec->spec;
900
901         if (!spec->no_depop_delay)
902                 msleep(150); /* to avoid pop noise */
903         codec->patch_ops.init(codec);
904         regcache_sync(codec->core.regmap);
905         hda_call_check_power_status(codec, 0x01);
906         return 0;
907 }
908 #endif
909
910 /*
911  */
912 static const struct hda_codec_ops alc_patch_ops = {
913         .build_controls = alc_build_controls,
914         .build_pcms = snd_hda_gen_build_pcms,
915         .init = alc_init,
916         .free = alc_free,
917         .unsol_event = snd_hda_jack_unsol_event,
918 #ifdef CONFIG_PM
919         .resume = alc_resume,
920         .suspend = alc_suspend,
921         .check_power_status = snd_hda_gen_check_power_status,
922 #endif
923         .reboot_notify = alc_reboot_notify,
924 };
925
926
927 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
928
929 /*
930  * Rename codecs appropriately from COEF value or subvendor id
931  */
932 struct alc_codec_rename_table {
933         unsigned int vendor_id;
934         unsigned short coef_mask;
935         unsigned short coef_bits;
936         const char *name;
937 };
938
939 struct alc_codec_rename_pci_table {
940         unsigned int codec_vendor_id;
941         unsigned short pci_subvendor;
942         unsigned short pci_subdevice;
943         const char *name;
944 };
945
946 static struct alc_codec_rename_table rename_tbl[] = {
947         { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
948         { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
949         { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
950         { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
951         { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
952         { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
953         { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
954         { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
955         { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
956         { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
957         { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
958         { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
959         { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
960         { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
961         { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
962         { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
963         { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
964         { } /* terminator */
965 };
966
967 static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
968         { 0x10ec0280, 0x1028, 0, "ALC3220" },
969         { 0x10ec0282, 0x1028, 0, "ALC3221" },
970         { 0x10ec0283, 0x1028, 0, "ALC3223" },
971         { 0x10ec0288, 0x1028, 0, "ALC3263" },
972         { 0x10ec0292, 0x1028, 0, "ALC3226" },
973         { 0x10ec0293, 0x1028, 0, "ALC3235" },
974         { 0x10ec0255, 0x1028, 0, "ALC3234" },
975         { 0x10ec0668, 0x1028, 0, "ALC3661" },
976         { 0x10ec0275, 0x1028, 0, "ALC3260" },
977         { 0x10ec0899, 0x1028, 0, "ALC3861" },
978         { 0x10ec0298, 0x1028, 0, "ALC3266" },
979         { 0x10ec0236, 0x1028, 0, "ALC3204" },
980         { 0x10ec0256, 0x1028, 0, "ALC3246" },
981         { 0x10ec0225, 0x1028, 0, "ALC3253" },
982         { 0x10ec0295, 0x1028, 0, "ALC3254" },
983         { 0x10ec0299, 0x1028, 0, "ALC3271" },
984         { 0x10ec0670, 0x1025, 0, "ALC669X" },
985         { 0x10ec0676, 0x1025, 0, "ALC679X" },
986         { 0x10ec0282, 0x1043, 0, "ALC3229" },
987         { 0x10ec0233, 0x1043, 0, "ALC3236" },
988         { 0x10ec0280, 0x103c, 0, "ALC3228" },
989         { 0x10ec0282, 0x103c, 0, "ALC3227" },
990         { 0x10ec0286, 0x103c, 0, "ALC3242" },
991         { 0x10ec0290, 0x103c, 0, "ALC3241" },
992         { 0x10ec0668, 0x103c, 0, "ALC3662" },
993         { 0x10ec0283, 0x17aa, 0, "ALC3239" },
994         { 0x10ec0292, 0x17aa, 0, "ALC3232" },
995         { } /* terminator */
996 };
997
998 static int alc_codec_rename_from_preset(struct hda_codec *codec)
999 {
1000         const struct alc_codec_rename_table *p;
1001         const struct alc_codec_rename_pci_table *q;
1002
1003         for (p = rename_tbl; p->vendor_id; p++) {
1004                 if (p->vendor_id != codec->core.vendor_id)
1005                         continue;
1006                 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1007                         return alc_codec_rename(codec, p->name);
1008         }
1009
1010         if (!codec->bus->pci)
1011                 return 0;
1012         for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1013                 if (q->codec_vendor_id != codec->core.vendor_id)
1014                         continue;
1015                 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1016                         continue;
1017                 if (!q->pci_subdevice ||
1018                     q->pci_subdevice == codec->bus->pci->subsystem_device)
1019                         return alc_codec_rename(codec, q->name);
1020         }
1021
1022         return 0;
1023 }
1024
1025
1026 /*
1027  * Digital-beep handlers
1028  */
1029 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1030
1031 /* additional beep mixers; private_value will be overwritten */
1032 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1033         HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1034         HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1035 };
1036
1037 /* set up and create beep controls */
1038 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1039                         int idx, int dir)
1040 {
1041         struct snd_kcontrol_new *knew;
1042         unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1043         int i;
1044
1045         for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1046                 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1047                                             &alc_beep_mixer[i]);
1048                 if (!knew)
1049                         return -ENOMEM;
1050                 knew->private_value = beep_amp;
1051         }
1052         return 0;
1053 }
1054
1055 static const struct snd_pci_quirk beep_white_list[] = {
1056         SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1057         SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1058         SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1059         SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1060         SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1061         SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1062         SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1063         SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1064         SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1065         /* blacklist -- no beep available */
1066         SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1067         SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1068         {}
1069 };
1070
1071 static inline int has_cdefine_beep(struct hda_codec *codec)
1072 {
1073         struct alc_spec *spec = codec->spec;
1074         const struct snd_pci_quirk *q;
1075         q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
1076         if (q)
1077                 return q->value;
1078         return spec->cdefine.enable_pcbeep;
1079 }
1080 #else
1081 #define set_beep_amp(spec, nid, idx, dir)       0
1082 #define has_cdefine_beep(codec)         0
1083 #endif
1084
1085 /* parse the BIOS configuration and set up the alc_spec */
1086 /* return 1 if successful, 0 if the proper config is not found,
1087  * or a negative error code
1088  */
1089 static int alc_parse_auto_config(struct hda_codec *codec,
1090                                  const hda_nid_t *ignore_nids,
1091                                  const hda_nid_t *ssid_nids)
1092 {
1093         struct alc_spec *spec = codec->spec;
1094         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1095         int err;
1096
1097         err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1098                                        spec->parse_flags);
1099         if (err < 0)
1100                 return err;
1101
1102         if (ssid_nids)
1103                 alc_ssid_check(codec, ssid_nids);
1104
1105         err = snd_hda_gen_parse_auto_config(codec, cfg);
1106         if (err < 0)
1107                 return err;
1108
1109         return 1;
1110 }
1111
1112 /* common preparation job for alc_spec */
1113 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1114 {
1115         struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1116         int err;
1117
1118         if (!spec)
1119                 return -ENOMEM;
1120         codec->spec = spec;
1121         snd_hda_gen_spec_init(&spec->gen);
1122         spec->gen.mixer_nid = mixer_nid;
1123         spec->gen.own_eapd_ctl = 1;
1124         codec->single_adc_amp = 1;
1125         /* FIXME: do we need this for all Realtek codec models? */
1126         codec->spdif_status_reset = 1;
1127         codec->patch_ops = alc_patch_ops;
1128
1129         err = alc_codec_rename_from_preset(codec);
1130         if (err < 0) {
1131                 kfree(spec);
1132                 return err;
1133         }
1134         return 0;
1135 }
1136
1137 static int alc880_parse_auto_config(struct hda_codec *codec)
1138 {
1139         static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1140         static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1141         return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1142 }
1143
1144 /*
1145  * ALC880 fix-ups
1146  */
1147 enum {
1148         ALC880_FIXUP_GPIO1,
1149         ALC880_FIXUP_GPIO2,
1150         ALC880_FIXUP_MEDION_RIM,
1151         ALC880_FIXUP_LG,
1152         ALC880_FIXUP_LG_LW25,
1153         ALC880_FIXUP_W810,
1154         ALC880_FIXUP_EAPD_COEF,
1155         ALC880_FIXUP_TCL_S700,
1156         ALC880_FIXUP_VOL_KNOB,
1157         ALC880_FIXUP_FUJITSU,
1158         ALC880_FIXUP_F1734,
1159         ALC880_FIXUP_UNIWILL,
1160         ALC880_FIXUP_UNIWILL_DIG,
1161         ALC880_FIXUP_Z71V,
1162         ALC880_FIXUP_ASUS_W5A,
1163         ALC880_FIXUP_3ST_BASE,
1164         ALC880_FIXUP_3ST,
1165         ALC880_FIXUP_3ST_DIG,
1166         ALC880_FIXUP_5ST_BASE,
1167         ALC880_FIXUP_5ST,
1168         ALC880_FIXUP_5ST_DIG,
1169         ALC880_FIXUP_6ST_BASE,
1170         ALC880_FIXUP_6ST,
1171         ALC880_FIXUP_6ST_DIG,
1172         ALC880_FIXUP_6ST_AUTOMUTE,
1173 };
1174
1175 /* enable the volume-knob widget support on NID 0x21 */
1176 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1177                                   const struct hda_fixup *fix, int action)
1178 {
1179         if (action == HDA_FIXUP_ACT_PROBE)
1180                 snd_hda_jack_detect_enable_callback(codec, 0x21,
1181                                                     alc_update_knob_master);
1182 }
1183
1184 static const struct hda_fixup alc880_fixups[] = {
1185         [ALC880_FIXUP_GPIO1] = {
1186                 .type = HDA_FIXUP_FUNC,
1187                 .v.func = alc_fixup_gpio1,
1188         },
1189         [ALC880_FIXUP_GPIO2] = {
1190                 .type = HDA_FIXUP_FUNC,
1191                 .v.func = alc_fixup_gpio2,
1192         },
1193         [ALC880_FIXUP_MEDION_RIM] = {
1194                 .type = HDA_FIXUP_VERBS,
1195                 .v.verbs = (const struct hda_verb[]) {
1196                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1197                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1198                         { }
1199                 },
1200                 .chained = true,
1201                 .chain_id = ALC880_FIXUP_GPIO2,
1202         },
1203         [ALC880_FIXUP_LG] = {
1204                 .type = HDA_FIXUP_PINS,
1205                 .v.pins = (const struct hda_pintbl[]) {
1206                         /* disable bogus unused pins */
1207                         { 0x16, 0x411111f0 },
1208                         { 0x18, 0x411111f0 },
1209                         { 0x1a, 0x411111f0 },
1210                         { }
1211                 }
1212         },
1213         [ALC880_FIXUP_LG_LW25] = {
1214                 .type = HDA_FIXUP_PINS,
1215                 .v.pins = (const struct hda_pintbl[]) {
1216                         { 0x1a, 0x0181344f }, /* line-in */
1217                         { 0x1b, 0x0321403f }, /* headphone */
1218                         { }
1219                 }
1220         },
1221         [ALC880_FIXUP_W810] = {
1222                 .type = HDA_FIXUP_PINS,
1223                 .v.pins = (const struct hda_pintbl[]) {
1224                         /* disable bogus unused pins */
1225                         { 0x17, 0x411111f0 },
1226                         { }
1227                 },
1228                 .chained = true,
1229                 .chain_id = ALC880_FIXUP_GPIO2,
1230         },
1231         [ALC880_FIXUP_EAPD_COEF] = {
1232                 .type = HDA_FIXUP_VERBS,
1233                 .v.verbs = (const struct hda_verb[]) {
1234                         /* change to EAPD mode */
1235                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1236                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1237                         {}
1238                 },
1239         },
1240         [ALC880_FIXUP_TCL_S700] = {
1241                 .type = HDA_FIXUP_VERBS,
1242                 .v.verbs = (const struct hda_verb[]) {
1243                         /* change to EAPD mode */
1244                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1245                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
1246                         {}
1247                 },
1248                 .chained = true,
1249                 .chain_id = ALC880_FIXUP_GPIO2,
1250         },
1251         [ALC880_FIXUP_VOL_KNOB] = {
1252                 .type = HDA_FIXUP_FUNC,
1253                 .v.func = alc880_fixup_vol_knob,
1254         },
1255         [ALC880_FIXUP_FUJITSU] = {
1256                 /* override all pins as BIOS on old Amilo is broken */
1257                 .type = HDA_FIXUP_PINS,
1258                 .v.pins = (const struct hda_pintbl[]) {
1259                         { 0x14, 0x0121401f }, /* HP */
1260                         { 0x15, 0x99030120 }, /* speaker */
1261                         { 0x16, 0x99030130 }, /* bass speaker */
1262                         { 0x17, 0x411111f0 }, /* N/A */
1263                         { 0x18, 0x411111f0 }, /* N/A */
1264                         { 0x19, 0x01a19950 }, /* mic-in */
1265                         { 0x1a, 0x411111f0 }, /* N/A */
1266                         { 0x1b, 0x411111f0 }, /* N/A */
1267                         { 0x1c, 0x411111f0 }, /* N/A */
1268                         { 0x1d, 0x411111f0 }, /* N/A */
1269                         { 0x1e, 0x01454140 }, /* SPDIF out */
1270                         { }
1271                 },
1272                 .chained = true,
1273                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1274         },
1275         [ALC880_FIXUP_F1734] = {
1276                 /* almost compatible with FUJITSU, but no bass and SPDIF */
1277                 .type = HDA_FIXUP_PINS,
1278                 .v.pins = (const struct hda_pintbl[]) {
1279                         { 0x14, 0x0121401f }, /* HP */
1280                         { 0x15, 0x99030120 }, /* speaker */
1281                         { 0x16, 0x411111f0 }, /* N/A */
1282                         { 0x17, 0x411111f0 }, /* N/A */
1283                         { 0x18, 0x411111f0 }, /* N/A */
1284                         { 0x19, 0x01a19950 }, /* mic-in */
1285                         { 0x1a, 0x411111f0 }, /* N/A */
1286                         { 0x1b, 0x411111f0 }, /* N/A */
1287                         { 0x1c, 0x411111f0 }, /* N/A */
1288                         { 0x1d, 0x411111f0 }, /* N/A */
1289                         { 0x1e, 0x411111f0 }, /* N/A */
1290                         { }
1291                 },
1292                 .chained = true,
1293                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1294         },
1295         [ALC880_FIXUP_UNIWILL] = {
1296                 /* need to fix HP and speaker pins to be parsed correctly */
1297                 .type = HDA_FIXUP_PINS,
1298                 .v.pins = (const struct hda_pintbl[]) {
1299                         { 0x14, 0x0121411f }, /* HP */
1300                         { 0x15, 0x99030120 }, /* speaker */
1301                         { 0x16, 0x99030130 }, /* bass speaker */
1302                         { }
1303                 },
1304         },
1305         [ALC880_FIXUP_UNIWILL_DIG] = {
1306                 .type = HDA_FIXUP_PINS,
1307                 .v.pins = (const struct hda_pintbl[]) {
1308                         /* disable bogus unused pins */
1309                         { 0x17, 0x411111f0 },
1310                         { 0x19, 0x411111f0 },
1311                         { 0x1b, 0x411111f0 },
1312                         { 0x1f, 0x411111f0 },
1313                         { }
1314                 }
1315         },
1316         [ALC880_FIXUP_Z71V] = {
1317                 .type = HDA_FIXUP_PINS,
1318                 .v.pins = (const struct hda_pintbl[]) {
1319                         /* set up the whole pins as BIOS is utterly broken */
1320                         { 0x14, 0x99030120 }, /* speaker */
1321                         { 0x15, 0x0121411f }, /* HP */
1322                         { 0x16, 0x411111f0 }, /* N/A */
1323                         { 0x17, 0x411111f0 }, /* N/A */
1324                         { 0x18, 0x01a19950 }, /* mic-in */
1325                         { 0x19, 0x411111f0 }, /* N/A */
1326                         { 0x1a, 0x01813031 }, /* line-in */
1327                         { 0x1b, 0x411111f0 }, /* N/A */
1328                         { 0x1c, 0x411111f0 }, /* N/A */
1329                         { 0x1d, 0x411111f0 }, /* N/A */
1330                         { 0x1e, 0x0144111e }, /* SPDIF */
1331                         { }
1332                 }
1333         },
1334         [ALC880_FIXUP_ASUS_W5A] = {
1335                 .type = HDA_FIXUP_PINS,
1336                 .v.pins = (const struct hda_pintbl[]) {
1337                         /* set up the whole pins as BIOS is utterly broken */
1338                         { 0x14, 0x0121411f }, /* HP */
1339                         { 0x15, 0x411111f0 }, /* N/A */
1340                         { 0x16, 0x411111f0 }, /* N/A */
1341                         { 0x17, 0x411111f0 }, /* N/A */
1342                         { 0x18, 0x90a60160 }, /* mic */
1343                         { 0x19, 0x411111f0 }, /* N/A */
1344                         { 0x1a, 0x411111f0 }, /* N/A */
1345                         { 0x1b, 0x411111f0 }, /* N/A */
1346                         { 0x1c, 0x411111f0 }, /* N/A */
1347                         { 0x1d, 0x411111f0 }, /* N/A */
1348                         { 0x1e, 0xb743111e }, /* SPDIF out */
1349                         { }
1350                 },
1351                 .chained = true,
1352                 .chain_id = ALC880_FIXUP_GPIO1,
1353         },
1354         [ALC880_FIXUP_3ST_BASE] = {
1355                 .type = HDA_FIXUP_PINS,
1356                 .v.pins = (const struct hda_pintbl[]) {
1357                         { 0x14, 0x01014010 }, /* line-out */
1358                         { 0x15, 0x411111f0 }, /* N/A */
1359                         { 0x16, 0x411111f0 }, /* N/A */
1360                         { 0x17, 0x411111f0 }, /* N/A */
1361                         { 0x18, 0x01a19c30 }, /* mic-in */
1362                         { 0x19, 0x0121411f }, /* HP */
1363                         { 0x1a, 0x01813031 }, /* line-in */
1364                         { 0x1b, 0x02a19c40 }, /* front-mic */
1365                         { 0x1c, 0x411111f0 }, /* N/A */
1366                         { 0x1d, 0x411111f0 }, /* N/A */
1367                         /* 0x1e is filled in below */
1368                         { 0x1f, 0x411111f0 }, /* N/A */
1369                         { }
1370                 }
1371         },
1372         [ALC880_FIXUP_3ST] = {
1373                 .type = HDA_FIXUP_PINS,
1374                 .v.pins = (const struct hda_pintbl[]) {
1375                         { 0x1e, 0x411111f0 }, /* N/A */
1376                         { }
1377                 },
1378                 .chained = true,
1379                 .chain_id = ALC880_FIXUP_3ST_BASE,
1380         },
1381         [ALC880_FIXUP_3ST_DIG] = {
1382                 .type = HDA_FIXUP_PINS,
1383                 .v.pins = (const struct hda_pintbl[]) {
1384                         { 0x1e, 0x0144111e }, /* SPDIF */
1385                         { }
1386                 },
1387                 .chained = true,
1388                 .chain_id = ALC880_FIXUP_3ST_BASE,
1389         },
1390         [ALC880_FIXUP_5ST_BASE] = {
1391                 .type = HDA_FIXUP_PINS,
1392                 .v.pins = (const struct hda_pintbl[]) {
1393                         { 0x14, 0x01014010 }, /* front */
1394                         { 0x15, 0x411111f0 }, /* N/A */
1395                         { 0x16, 0x01011411 }, /* CLFE */
1396                         { 0x17, 0x01016412 }, /* surr */
1397                         { 0x18, 0x01a19c30 }, /* mic-in */
1398                         { 0x19, 0x0121411f }, /* HP */
1399                         { 0x1a, 0x01813031 }, /* line-in */
1400                         { 0x1b, 0x02a19c40 }, /* front-mic */
1401                         { 0x1c, 0x411111f0 }, /* N/A */
1402                         { 0x1d, 0x411111f0 }, /* N/A */
1403                         /* 0x1e is filled in below */
1404                         { 0x1f, 0x411111f0 }, /* N/A */
1405                         { }
1406                 }
1407         },
1408         [ALC880_FIXUP_5ST] = {
1409                 .type = HDA_FIXUP_PINS,
1410                 .v.pins = (const struct hda_pintbl[]) {
1411                         { 0x1e, 0x411111f0 }, /* N/A */
1412                         { }
1413                 },
1414                 .chained = true,
1415                 .chain_id = ALC880_FIXUP_5ST_BASE,
1416         },
1417         [ALC880_FIXUP_5ST_DIG] = {
1418                 .type = HDA_FIXUP_PINS,
1419                 .v.pins = (const struct hda_pintbl[]) {
1420                         { 0x1e, 0x0144111e }, /* SPDIF */
1421                         { }
1422                 },
1423                 .chained = true,
1424                 .chain_id = ALC880_FIXUP_5ST_BASE,
1425         },
1426         [ALC880_FIXUP_6ST_BASE] = {
1427                 .type = HDA_FIXUP_PINS,
1428                 .v.pins = (const struct hda_pintbl[]) {
1429                         { 0x14, 0x01014010 }, /* front */
1430                         { 0x15, 0x01016412 }, /* surr */
1431                         { 0x16, 0x01011411 }, /* CLFE */
1432                         { 0x17, 0x01012414 }, /* side */
1433                         { 0x18, 0x01a19c30 }, /* mic-in */
1434                         { 0x19, 0x02a19c40 }, /* front-mic */
1435                         { 0x1a, 0x01813031 }, /* line-in */
1436                         { 0x1b, 0x0121411f }, /* HP */
1437                         { 0x1c, 0x411111f0 }, /* N/A */
1438                         { 0x1d, 0x411111f0 }, /* N/A */
1439                         /* 0x1e is filled in below */
1440                         { 0x1f, 0x411111f0 }, /* N/A */
1441                         { }
1442                 }
1443         },
1444         [ALC880_FIXUP_6ST] = {
1445                 .type = HDA_FIXUP_PINS,
1446                 .v.pins = (const struct hda_pintbl[]) {
1447                         { 0x1e, 0x411111f0 }, /* N/A */
1448                         { }
1449                 },
1450                 .chained = true,
1451                 .chain_id = ALC880_FIXUP_6ST_BASE,
1452         },
1453         [ALC880_FIXUP_6ST_DIG] = {
1454                 .type = HDA_FIXUP_PINS,
1455                 .v.pins = (const struct hda_pintbl[]) {
1456                         { 0x1e, 0x0144111e }, /* SPDIF */
1457                         { }
1458                 },
1459                 .chained = true,
1460                 .chain_id = ALC880_FIXUP_6ST_BASE,
1461         },
1462         [ALC880_FIXUP_6ST_AUTOMUTE] = {
1463                 .type = HDA_FIXUP_PINS,
1464                 .v.pins = (const struct hda_pintbl[]) {
1465                         { 0x1b, 0x0121401f }, /* HP with jack detect */
1466                         { }
1467                 },
1468                 .chained_before = true,
1469                 .chain_id = ALC880_FIXUP_6ST_BASE,
1470         },
1471 };
1472
1473 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1474         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1475         SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1476         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1477         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1478         SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1479         SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1480         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1481         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1482         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1483         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1484         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1485         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1486         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1487         SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1488         SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1489         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1490         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1491         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1492         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1493         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1494         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1495         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1496         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1497
1498         /* Below is the copied entries from alc880_quirks.c.
1499          * It's not quite sure whether BIOS sets the correct pin-config table
1500          * on these machines, thus they are kept to be compatible with
1501          * the old static quirks.  Once when it's confirmed to work without
1502          * these overrides, it'd be better to remove.
1503          */
1504         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1505         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1506         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1507         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1508         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1509         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1510         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1511         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1512         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1513         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1514         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1515         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1516         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1517         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1518         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1519         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1520         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1521         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1522         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1523         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1524         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1525         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1526         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1527         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1528         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1529         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1530         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1531         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1532         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1533         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1534         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1535         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1536         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1537         /* default Intel */
1538         SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1539         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1540         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1541         {}
1542 };
1543
1544 static const struct hda_model_fixup alc880_fixup_models[] = {
1545         {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1546         {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1547         {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1548         {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1549         {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1550         {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1551         {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1552         {}
1553 };
1554
1555
1556 /*
1557  * OK, here we have finally the patch for ALC880
1558  */
1559 static int patch_alc880(struct hda_codec *codec)
1560 {
1561         struct alc_spec *spec;
1562         int err;
1563
1564         err = alc_alloc_spec(codec, 0x0b);
1565         if (err < 0)
1566                 return err;
1567
1568         spec = codec->spec;
1569         spec->gen.need_dac_fix = 1;
1570         spec->gen.beep_nid = 0x01;
1571
1572         codec->patch_ops.unsol_event = alc880_unsol_event;
1573
1574         alc_pre_init(codec);
1575
1576         snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1577                        alc880_fixups);
1578         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1579
1580         /* automatic parse from the BIOS config */
1581         err = alc880_parse_auto_config(codec);
1582         if (err < 0)
1583                 goto error;
1584
1585         if (!spec->gen.no_analog) {
1586                 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1587                 if (err < 0)
1588                         goto error;
1589         }
1590
1591         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1592
1593         return 0;
1594
1595  error:
1596         alc_free(codec);
1597         return err;
1598 }
1599
1600
1601 /*
1602  * ALC260 support
1603  */
1604 static int alc260_parse_auto_config(struct hda_codec *codec)
1605 {
1606         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1607         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1608         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1609 }
1610
1611 /*
1612  * Pin config fixes
1613  */
1614 enum {
1615         ALC260_FIXUP_HP_DC5750,
1616         ALC260_FIXUP_HP_PIN_0F,
1617         ALC260_FIXUP_COEF,
1618         ALC260_FIXUP_GPIO1,
1619         ALC260_FIXUP_GPIO1_TOGGLE,
1620         ALC260_FIXUP_REPLACER,
1621         ALC260_FIXUP_HP_B1900,
1622         ALC260_FIXUP_KN1,
1623         ALC260_FIXUP_FSC_S7020,
1624         ALC260_FIXUP_FSC_S7020_JWSE,
1625         ALC260_FIXUP_VAIO_PINS,
1626 };
1627
1628 static void alc260_gpio1_automute(struct hda_codec *codec)
1629 {
1630         struct alc_spec *spec = codec->spec;
1631
1632         alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1633 }
1634
1635 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1636                                       const struct hda_fixup *fix, int action)
1637 {
1638         struct alc_spec *spec = codec->spec;
1639         if (action == HDA_FIXUP_ACT_PROBE) {
1640                 /* although the machine has only one output pin, we need to
1641                  * toggle GPIO1 according to the jack state
1642                  */
1643                 spec->gen.automute_hook = alc260_gpio1_automute;
1644                 spec->gen.detect_hp = 1;
1645                 spec->gen.automute_speaker = 1;
1646                 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1647                 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1648                                                     snd_hda_gen_hp_automute);
1649                 alc_setup_gpio(codec, 0x01);
1650         }
1651 }
1652
1653 static void alc260_fixup_kn1(struct hda_codec *codec,
1654                              const struct hda_fixup *fix, int action)
1655 {
1656         struct alc_spec *spec = codec->spec;
1657         static const struct hda_pintbl pincfgs[] = {
1658                 { 0x0f, 0x02214000 }, /* HP/speaker */
1659                 { 0x12, 0x90a60160 }, /* int mic */
1660                 { 0x13, 0x02a19000 }, /* ext mic */
1661                 { 0x18, 0x01446000 }, /* SPDIF out */
1662                 /* disable bogus I/O pins */
1663                 { 0x10, 0x411111f0 },
1664                 { 0x11, 0x411111f0 },
1665                 { 0x14, 0x411111f0 },
1666                 { 0x15, 0x411111f0 },
1667                 { 0x16, 0x411111f0 },
1668                 { 0x17, 0x411111f0 },
1669                 { 0x19, 0x411111f0 },
1670                 { }
1671         };
1672
1673         switch (action) {
1674         case HDA_FIXUP_ACT_PRE_PROBE:
1675                 snd_hda_apply_pincfgs(codec, pincfgs);
1676                 spec->init_amp = ALC_INIT_NONE;
1677                 break;
1678         }
1679 }
1680
1681 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1682                                    const struct hda_fixup *fix, int action)
1683 {
1684         struct alc_spec *spec = codec->spec;
1685         if (action == HDA_FIXUP_ACT_PRE_PROBE)
1686                 spec->init_amp = ALC_INIT_NONE;
1687 }
1688
1689 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1690                                    const struct hda_fixup *fix, int action)
1691 {
1692         struct alc_spec *spec = codec->spec;
1693         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1694                 spec->gen.add_jack_modes = 1;
1695                 spec->gen.hp_mic = 1;
1696         }
1697 }
1698
1699 static const struct hda_fixup alc260_fixups[] = {
1700         [ALC260_FIXUP_HP_DC5750] = {
1701                 .type = HDA_FIXUP_PINS,
1702                 .v.pins = (const struct hda_pintbl[]) {
1703                         { 0x11, 0x90130110 }, /* speaker */
1704                         { }
1705                 }
1706         },
1707         [ALC260_FIXUP_HP_PIN_0F] = {
1708                 .type = HDA_FIXUP_PINS,
1709                 .v.pins = (const struct hda_pintbl[]) {
1710                         { 0x0f, 0x01214000 }, /* HP */
1711                         { }
1712                 }
1713         },
1714         [ALC260_FIXUP_COEF] = {
1715                 .type = HDA_FIXUP_VERBS,
1716                 .v.verbs = (const struct hda_verb[]) {
1717                         { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1718                         { 0x1a, AC_VERB_SET_PROC_COEF,  0x3040 },
1719                         { }
1720                 },
1721         },
1722         [ALC260_FIXUP_GPIO1] = {
1723                 .type = HDA_FIXUP_FUNC,
1724                 .v.func = alc_fixup_gpio1,
1725         },
1726         [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727                 .type = HDA_FIXUP_FUNC,
1728                 .v.func = alc260_fixup_gpio1_toggle,
1729                 .chained = true,
1730                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1731         },
1732         [ALC260_FIXUP_REPLACER] = {
1733                 .type = HDA_FIXUP_VERBS,
1734                 .v.verbs = (const struct hda_verb[]) {
1735                         { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1736                         { 0x1a, AC_VERB_SET_PROC_COEF,  0x3050 },
1737                         { }
1738                 },
1739                 .chained = true,
1740                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1741         },
1742         [ALC260_FIXUP_HP_B1900] = {
1743                 .type = HDA_FIXUP_FUNC,
1744                 .v.func = alc260_fixup_gpio1_toggle,
1745                 .chained = true,
1746                 .chain_id = ALC260_FIXUP_COEF,
1747         },
1748         [ALC260_FIXUP_KN1] = {
1749                 .type = HDA_FIXUP_FUNC,
1750                 .v.func = alc260_fixup_kn1,
1751         },
1752         [ALC260_FIXUP_FSC_S7020] = {
1753                 .type = HDA_FIXUP_FUNC,
1754                 .v.func = alc260_fixup_fsc_s7020,
1755         },
1756         [ALC260_FIXUP_FSC_S7020_JWSE] = {
1757                 .type = HDA_FIXUP_FUNC,
1758                 .v.func = alc260_fixup_fsc_s7020_jwse,
1759                 .chained = true,
1760                 .chain_id = ALC260_FIXUP_FSC_S7020,
1761         },
1762         [ALC260_FIXUP_VAIO_PINS] = {
1763                 .type = HDA_FIXUP_PINS,
1764                 .v.pins = (const struct hda_pintbl[]) {
1765                         /* Pin configs are missing completely on some VAIOs */
1766                         { 0x0f, 0x01211020 },
1767                         { 0x10, 0x0001003f },
1768                         { 0x11, 0x411111f0 },
1769                         { 0x12, 0x01a15930 },
1770                         { 0x13, 0x411111f0 },
1771                         { 0x14, 0x411111f0 },
1772                         { 0x15, 0x411111f0 },
1773                         { 0x16, 0x411111f0 },
1774                         { 0x17, 0x411111f0 },
1775                         { 0x18, 0x411111f0 },
1776                         { 0x19, 0x411111f0 },
1777                         { }
1778                 }
1779         },
1780 };
1781
1782 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1783         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1784         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1785         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1786         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1787         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1788         SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1789         SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1790         SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1791         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1792         SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1793         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1794         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1795         {}
1796 };
1797
1798 static const struct hda_model_fixup alc260_fixup_models[] = {
1799         {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1800         {.id = ALC260_FIXUP_COEF, .name = "coef"},
1801         {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1802         {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1803         {}
1804 };
1805
1806 /*
1807  */
1808 static int patch_alc260(struct hda_codec *codec)
1809 {
1810         struct alc_spec *spec;
1811         int err;
1812
1813         err = alc_alloc_spec(codec, 0x07);
1814         if (err < 0)
1815                 return err;
1816
1817         spec = codec->spec;
1818         /* as quite a few machines require HP amp for speaker outputs,
1819          * it's easier to enable it unconditionally; even if it's unneeded,
1820          * it's almost harmless.
1821          */
1822         spec->gen.prefer_hp_amp = 1;
1823         spec->gen.beep_nid = 0x01;
1824
1825         spec->shutup = alc_eapd_shutup;
1826
1827         alc_pre_init(codec);
1828
1829         snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1830                            alc260_fixups);
1831         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1832
1833         /* automatic parse from the BIOS config */
1834         err = alc260_parse_auto_config(codec);
1835         if (err < 0)
1836                 goto error;
1837
1838         if (!spec->gen.no_analog) {
1839                 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1840                 if (err < 0)
1841                         goto error;
1842         }
1843
1844         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1845
1846         return 0;
1847
1848  error:
1849         alc_free(codec);
1850         return err;
1851 }
1852
1853
1854 /*
1855  * ALC882/883/885/888/889 support
1856  *
1857  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1858  * configuration.  Each pin widget can choose any input DACs and a mixer.
1859  * Each ADC is connected from a mixer of all inputs.  This makes possible
1860  * 6-channel independent captures.
1861  *
1862  * In addition, an independent DAC for the multi-playback (not used in this
1863  * driver yet).
1864  */
1865
1866 /*
1867  * Pin config fixes
1868  */
1869 enum {
1870         ALC882_FIXUP_ABIT_AW9D_MAX,
1871         ALC882_FIXUP_LENOVO_Y530,
1872         ALC882_FIXUP_PB_M5210,
1873         ALC882_FIXUP_ACER_ASPIRE_7736,
1874         ALC882_FIXUP_ASUS_W90V,
1875         ALC889_FIXUP_CD,
1876         ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1877         ALC889_FIXUP_VAIO_TT,
1878         ALC888_FIXUP_EEE1601,
1879         ALC882_FIXUP_EAPD,
1880         ALC883_FIXUP_EAPD,
1881         ALC883_FIXUP_ACER_EAPD,
1882         ALC882_FIXUP_GPIO1,
1883         ALC882_FIXUP_GPIO2,
1884         ALC882_FIXUP_GPIO3,
1885         ALC889_FIXUP_COEF,
1886         ALC882_FIXUP_ASUS_W2JC,
1887         ALC882_FIXUP_ACER_ASPIRE_4930G,
1888         ALC882_FIXUP_ACER_ASPIRE_8930G,
1889         ALC882_FIXUP_ASPIRE_8930G_VERBS,
1890         ALC885_FIXUP_MACPRO_GPIO,
1891         ALC889_FIXUP_DAC_ROUTE,
1892         ALC889_FIXUP_MBP_VREF,
1893         ALC889_FIXUP_IMAC91_VREF,
1894         ALC889_FIXUP_MBA11_VREF,
1895         ALC889_FIXUP_MBA21_VREF,
1896         ALC889_FIXUP_MP11_VREF,
1897         ALC889_FIXUP_MP41_VREF,
1898         ALC882_FIXUP_INV_DMIC,
1899         ALC882_FIXUP_NO_PRIMARY_HP,
1900         ALC887_FIXUP_ASUS_BASS,
1901         ALC887_FIXUP_BASS_CHMAP,
1902         ALC1220_FIXUP_GB_DUAL_CODECS,
1903         ALC1220_FIXUP_CLEVO_P950,
1904         ALC1220_FIXUP_CLEVO_PB51ED,
1905         ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1906 };
1907
1908 static void alc889_fixup_coef(struct hda_codec *codec,
1909                               const struct hda_fixup *fix, int action)
1910 {
1911         if (action != HDA_FIXUP_ACT_INIT)
1912                 return;
1913         alc_update_coef_idx(codec, 7, 0, 0x2030);
1914 }
1915
1916 /* set up GPIO at initialization */
1917 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1918                                      const struct hda_fixup *fix, int action)
1919 {
1920         struct alc_spec *spec = codec->spec;
1921
1922         spec->gpio_write_delay = true;
1923         alc_fixup_gpio3(codec, fix, action);
1924 }
1925
1926 /* Fix the connection of some pins for ALC889:
1927  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1928  * work correctly (bko#42740)
1929  */
1930 static void alc889_fixup_dac_route(struct hda_codec *codec,
1931                                    const struct hda_fixup *fix, int action)
1932 {
1933         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1934                 /* fake the connections during parsing the tree */
1935                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1936                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1937                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1938                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1939                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1940                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1941         } else if (action == HDA_FIXUP_ACT_PROBE) {
1942                 /* restore the connections */
1943                 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1944                 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1945                 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1946                 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1947                 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1948         }
1949 }
1950
1951 /* Set VREF on HP pin */
1952 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1953                                   const struct hda_fixup *fix, int action)
1954 {
1955         struct alc_spec *spec = codec->spec;
1956         static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
1957         int i;
1958
1959         if (action != HDA_FIXUP_ACT_INIT)
1960                 return;
1961         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1962                 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1963                 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1964                         continue;
1965                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1966                 val |= AC_PINCTL_VREF_80;
1967                 snd_hda_set_pin_ctl(codec, nids[i], val);
1968                 spec->gen.keep_vref_in_automute = 1;
1969                 break;
1970         }
1971 }
1972
1973 static void alc889_fixup_mac_pins(struct hda_codec *codec,
1974                                   const hda_nid_t *nids, int num_nids)
1975 {
1976         struct alc_spec *spec = codec->spec;
1977         int i;
1978
1979         for (i = 0; i < num_nids; i++) {
1980                 unsigned int val;
1981                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1982                 val |= AC_PINCTL_VREF_50;
1983                 snd_hda_set_pin_ctl(codec, nids[i], val);
1984         }
1985         spec->gen.keep_vref_in_automute = 1;
1986 }
1987
1988 /* Set VREF on speaker pins on imac91 */
1989 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1990                                      const struct hda_fixup *fix, int action)
1991 {
1992         static hda_nid_t nids[2] = { 0x18, 0x1a };
1993
1994         if (action == HDA_FIXUP_ACT_INIT)
1995                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1996 }
1997
1998 /* Set VREF on speaker pins on mba11 */
1999 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2000                                     const struct hda_fixup *fix, int action)
2001 {
2002         static hda_nid_t nids[1] = { 0x18 };
2003
2004         if (action == HDA_FIXUP_ACT_INIT)
2005                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2006 }
2007
2008 /* Set VREF on speaker pins on mba21 */
2009 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2010                                     const struct hda_fixup *fix, int action)
2011 {
2012         static hda_nid_t nids[2] = { 0x18, 0x19 };
2013
2014         if (action == HDA_FIXUP_ACT_INIT)
2015                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2016 }
2017
2018 /* Don't take HP output as primary
2019  * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2020  * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2021  */
2022 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2023                                        const struct hda_fixup *fix, int action)
2024 {
2025         struct alc_spec *spec = codec->spec;
2026         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2027                 spec->gen.no_primary_hp = 1;
2028                 spec->gen.no_multi_io = 1;
2029         }
2030 }
2031
2032 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2033                                  const struct hda_fixup *fix, int action);
2034
2035 /* For dual-codec configuration, we need to disable some features to avoid
2036  * conflicts of kctls and PCM streams
2037  */
2038 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2039                                   const struct hda_fixup *fix, int action)
2040 {
2041         struct alc_spec *spec = codec->spec;
2042
2043         if (action != HDA_FIXUP_ACT_PRE_PROBE)
2044                 return;
2045         /* disable vmaster */
2046         spec->gen.suppress_vmaster = 1;
2047         /* auto-mute and auto-mic switch don't work with multiple codecs */
2048         spec->gen.suppress_auto_mute = 1;
2049         spec->gen.suppress_auto_mic = 1;
2050         /* disable aamix as well */
2051         spec->gen.mixer_nid = 0;
2052         /* add location prefix to avoid conflicts */
2053         codec->force_pin_prefix = 1;
2054 }
2055
2056 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2057                        const char *newname)
2058 {
2059         struct snd_kcontrol *kctl;
2060
2061         kctl = snd_hda_find_mixer_ctl(codec, oldname);
2062         if (kctl)
2063                 strcpy(kctl->id.name, newname);
2064 }
2065
2066 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2067                                          const struct hda_fixup *fix,
2068                                          int action)
2069 {
2070         alc_fixup_dual_codecs(codec, fix, action);
2071         switch (action) {
2072         case HDA_FIXUP_ACT_PRE_PROBE:
2073                 /* override card longname to provide a unique UCM profile */
2074                 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2075                 break;
2076         case HDA_FIXUP_ACT_BUILD:
2077                 /* rename Capture controls depending on the codec */
2078                 rename_ctl(codec, "Capture Volume",
2079                            codec->addr == 0 ?
2080                            "Rear-Panel Capture Volume" :
2081                            "Front-Panel Capture Volume");
2082                 rename_ctl(codec, "Capture Switch",
2083                            codec->addr == 0 ?
2084                            "Rear-Panel Capture Switch" :
2085                            "Front-Panel Capture Switch");
2086                 break;
2087         }
2088 }
2089
2090 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2091                                      const struct hda_fixup *fix,
2092                                      int action)
2093 {
2094         hda_nid_t conn1[1] = { 0x0c };
2095
2096         if (action != HDA_FIXUP_ACT_PRE_PROBE)
2097                 return;
2098
2099         alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2100         /* We therefore want to make sure 0x14 (front headphone) and
2101          * 0x1b (speakers) use the stereo DAC 0x02
2102          */
2103         snd_hda_override_conn_list(codec, 0x14, 1, conn1);
2104         snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
2105 }
2106
2107 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2108                                 const struct hda_fixup *fix, int action);
2109
2110 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2111                                      const struct hda_fixup *fix,
2112                                      int action)
2113 {
2114         alc1220_fixup_clevo_p950(codec, fix, action);
2115         alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2116 }
2117
2118 static const struct hda_fixup alc882_fixups[] = {
2119         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2120                 .type = HDA_FIXUP_PINS,
2121                 .v.pins = (const struct hda_pintbl[]) {
2122                         { 0x15, 0x01080104 }, /* side */
2123                         { 0x16, 0x01011012 }, /* rear */
2124                         { 0x17, 0x01016011 }, /* clfe */
2125                         { }
2126                 }
2127         },
2128         [ALC882_FIXUP_LENOVO_Y530] = {
2129                 .type = HDA_FIXUP_PINS,
2130                 .v.pins = (const struct hda_pintbl[]) {
2131                         { 0x15, 0x99130112 }, /* rear int speakers */
2132                         { 0x16, 0x99130111 }, /* subwoofer */
2133                         { }
2134                 }
2135         },
2136         [ALC882_FIXUP_PB_M5210] = {
2137                 .type = HDA_FIXUP_PINCTLS,
2138                 .v.pins = (const struct hda_pintbl[]) {
2139                         { 0x19, PIN_VREF50 },
2140                         {}
2141                 }
2142         },
2143         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2144                 .type = HDA_FIXUP_FUNC,
2145                 .v.func = alc_fixup_sku_ignore,
2146         },
2147         [ALC882_FIXUP_ASUS_W90V] = {
2148                 .type = HDA_FIXUP_PINS,
2149                 .v.pins = (const struct hda_pintbl[]) {
2150                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2151                         { }
2152                 }
2153         },
2154         [ALC889_FIXUP_CD] = {
2155                 .type = HDA_FIXUP_PINS,
2156                 .v.pins = (const struct hda_pintbl[]) {
2157                         { 0x1c, 0x993301f0 }, /* CD */
2158                         { }
2159                 }
2160         },
2161         [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2162                 .type = HDA_FIXUP_PINS,
2163                 .v.pins = (const struct hda_pintbl[]) {
2164                         { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2165                         { }
2166                 },
2167                 .chained = true,
2168                 .chain_id = ALC889_FIXUP_CD,
2169         },
2170         [ALC889_FIXUP_VAIO_TT] = {
2171                 .type = HDA_FIXUP_PINS,
2172                 .v.pins = (const struct hda_pintbl[]) {
2173                         { 0x17, 0x90170111 }, /* hidden surround speaker */
2174                         { }
2175                 }
2176         },
2177         [ALC888_FIXUP_EEE1601] = {
2178                 .type = HDA_FIXUP_VERBS,
2179                 .v.verbs = (const struct hda_verb[]) {
2180                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2181                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
2182                         { }
2183                 }
2184         },
2185         [ALC882_FIXUP_EAPD] = {
2186                 .type = HDA_FIXUP_VERBS,
2187                 .v.verbs = (const struct hda_verb[]) {
2188                         /* change to EAPD mode */
2189                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2190                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2191                         { }
2192                 }
2193         },
2194         [ALC883_FIXUP_EAPD] = {
2195                 .type = HDA_FIXUP_VERBS,
2196                 .v.verbs = (const struct hda_verb[]) {
2197                         /* change to EAPD mode */
2198                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2199                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2200                         { }
2201                 }
2202         },
2203         [ALC883_FIXUP_ACER_EAPD] = {
2204                 .type = HDA_FIXUP_VERBS,
2205                 .v.verbs = (const struct hda_verb[]) {
2206                         /* eanable EAPD on Acer laptops */
2207                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2208                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2209                         { }
2210                 }
2211         },
2212         [ALC882_FIXUP_GPIO1] = {
2213                 .type = HDA_FIXUP_FUNC,
2214                 .v.func = alc_fixup_gpio1,
2215         },
2216         [ALC882_FIXUP_GPIO2] = {
2217                 .type = HDA_FIXUP_FUNC,
2218                 .v.func = alc_fixup_gpio2,
2219         },
2220         [ALC882_FIXUP_GPIO3] = {
2221                 .type = HDA_FIXUP_FUNC,
2222                 .v.func = alc_fixup_gpio3,
2223         },
2224         [ALC882_FIXUP_ASUS_W2JC] = {
2225                 .type = HDA_FIXUP_FUNC,
2226                 .v.func = alc_fixup_gpio1,
2227                 .chained = true,
2228                 .chain_id = ALC882_FIXUP_EAPD,
2229         },
2230         [ALC889_FIXUP_COEF] = {
2231                 .type = HDA_FIXUP_FUNC,
2232                 .v.func = alc889_fixup_coef,
2233         },
2234         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2235                 .type = HDA_FIXUP_PINS,
2236                 .v.pins = (const struct hda_pintbl[]) {
2237                         { 0x16, 0x99130111 }, /* CLFE speaker */
2238                         { 0x17, 0x99130112 }, /* surround speaker */
2239                         { }
2240                 },
2241                 .chained = true,
2242                 .chain_id = ALC882_FIXUP_GPIO1,
2243         },
2244         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2245                 .type = HDA_FIXUP_PINS,
2246                 .v.pins = (const struct hda_pintbl[]) {
2247                         { 0x16, 0x99130111 }, /* CLFE speaker */
2248                         { 0x1b, 0x99130112 }, /* surround speaker */
2249                         { }
2250                 },
2251                 .chained = true,
2252                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2253         },
2254         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2255                 /* additional init verbs for Acer Aspire 8930G */
2256                 .type = HDA_FIXUP_VERBS,
2257                 .v.verbs = (const struct hda_verb[]) {
2258                         /* Enable all DACs */
2259                         /* DAC DISABLE/MUTE 1? */
2260                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
2261                          *  apparently. Init=0x38 */
2262                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2263                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2264                         /* DAC DISABLE/MUTE 2? */
2265                         /*  some bit here disables the other DACs.
2266                          *  Init=0x4900 */
2267                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2268                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2269                         /* DMIC fix
2270                          * This laptop has a stereo digital microphone.
2271                          * The mics are only 1cm apart which makes the stereo
2272                          * useless. However, either the mic or the ALC889
2273                          * makes the signal become a difference/sum signal
2274                          * instead of standard stereo, which is annoying.
2275                          * So instead we flip this bit which makes the
2276                          * codec replicate the sum signal to both channels,
2277                          * turning it into a normal mono mic.
2278                          */
2279                         /* DMIC_CONTROL? Init value = 0x0001 */
2280                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2281                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2282                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2283                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2284                         { }
2285                 },
2286                 .chained = true,
2287                 .chain_id = ALC882_FIXUP_GPIO1,
2288         },
2289         [ALC885_FIXUP_MACPRO_GPIO] = {
2290                 .type = HDA_FIXUP_FUNC,
2291                 .v.func = alc885_fixup_macpro_gpio,
2292         },
2293         [ALC889_FIXUP_DAC_ROUTE] = {
2294                 .type = HDA_FIXUP_FUNC,
2295                 .v.func = alc889_fixup_dac_route,
2296         },
2297         [ALC889_FIXUP_MBP_VREF] = {
2298                 .type = HDA_FIXUP_FUNC,
2299                 .v.func = alc889_fixup_mbp_vref,
2300                 .chained = true,
2301                 .chain_id = ALC882_FIXUP_GPIO1,
2302         },
2303         [ALC889_FIXUP_IMAC91_VREF] = {
2304                 .type = HDA_FIXUP_FUNC,
2305                 .v.func = alc889_fixup_imac91_vref,
2306                 .chained = true,
2307                 .chain_id = ALC882_FIXUP_GPIO1,
2308         },
2309         [ALC889_FIXUP_MBA11_VREF] = {
2310                 .type = HDA_FIXUP_FUNC,
2311                 .v.func = alc889_fixup_mba11_vref,
2312                 .chained = true,
2313                 .chain_id = ALC889_FIXUP_MBP_VREF,
2314         },
2315         [ALC889_FIXUP_MBA21_VREF] = {
2316                 .type = HDA_FIXUP_FUNC,
2317                 .v.func = alc889_fixup_mba21_vref,
2318                 .chained = true,
2319                 .chain_id = ALC889_FIXUP_MBP_VREF,
2320         },
2321         [ALC889_FIXUP_MP11_VREF] = {
2322                 .type = HDA_FIXUP_FUNC,
2323                 .v.func = alc889_fixup_mba11_vref,
2324                 .chained = true,
2325                 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2326         },
2327         [ALC889_FIXUP_MP41_VREF] = {
2328                 .type = HDA_FIXUP_FUNC,
2329                 .v.func = alc889_fixup_mbp_vref,
2330                 .chained = true,
2331                 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2332         },
2333         [ALC882_FIXUP_INV_DMIC] = {
2334                 .type = HDA_FIXUP_FUNC,
2335                 .v.func = alc_fixup_inv_dmic,
2336         },
2337         [ALC882_FIXUP_NO_PRIMARY_HP] = {
2338                 .type = HDA_FIXUP_FUNC,
2339                 .v.func = alc882_fixup_no_primary_hp,
2340         },
2341         [ALC887_FIXUP_ASUS_BASS] = {
2342                 .type = HDA_FIXUP_PINS,
2343                 .v.pins = (const struct hda_pintbl[]) {
2344                         {0x16, 0x99130130}, /* bass speaker */
2345                         {}
2346                 },
2347                 .chained = true,
2348                 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2349         },
2350         [ALC887_FIXUP_BASS_CHMAP] = {
2351                 .type = HDA_FIXUP_FUNC,
2352                 .v.func = alc_fixup_bass_chmap,
2353         },
2354         [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2355                 .type = HDA_FIXUP_FUNC,
2356                 .v.func = alc1220_fixup_gb_dual_codecs,
2357         },
2358         [ALC1220_FIXUP_CLEVO_P950] = {
2359                 .type = HDA_FIXUP_FUNC,
2360                 .v.func = alc1220_fixup_clevo_p950,
2361         },
2362         [ALC1220_FIXUP_CLEVO_PB51ED] = {
2363                 .type = HDA_FIXUP_FUNC,
2364                 .v.func = alc1220_fixup_clevo_pb51ed,
2365         },
2366         [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2367                 .type = HDA_FIXUP_PINS,
2368                 .v.pins = (const struct hda_pintbl[]) {
2369                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2370                         {}
2371                 },
2372                 .chained = true,
2373                 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2374         },
2375 };
2376
2377 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2378         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2379         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2380         SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2381         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2382         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2383         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2384         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2385         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2386                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2387         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2388                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2389         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2390                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2391         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2392                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2393         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2394                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2395         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2396                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2397         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2398                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2399         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2400         SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2401                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2402         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2403         SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2404         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2405         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2406         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2407         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2408         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2409         SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2410         SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2411         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2412         SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2413         SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2414         SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2415         SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2416
2417         /* All Apple entries are in codec SSIDs */
2418         SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2419         SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2420         SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2421         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2422         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2423         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2424         SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2425         SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2426         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2427         SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2428         SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2429         SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2430         SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2431         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2432         SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2433         SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2434         SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2435         SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2436         SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2437         SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2438         SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2439         SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2440
2441         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2442         SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2443         SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2444         SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2445         SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2446         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2447         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2448         SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2449         SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2450         SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2451         SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2452         SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2453         SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2454         SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2455         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2456         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2457         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2458         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2459         {}
2460 };
2461
2462 static const struct hda_model_fixup alc882_fixup_models[] = {
2463         {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2464         {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2465         {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2466         {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2467         {.id = ALC889_FIXUP_CD, .name = "cd"},
2468         {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2469         {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2470         {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2471         {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2472         {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2473         {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2474         {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2475         {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2476         {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2477         {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2478         {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2479         {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2480         {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2481         {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2482         {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2483         {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2484         {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2485         {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2486         {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2487         {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2488         {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2489         {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2490         {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2491         {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2492         {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2493         {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2494         {}
2495 };
2496
2497 /*
2498  * BIOS auto configuration
2499  */
2500 /* almost identical with ALC880 parser... */
2501 static int alc882_parse_auto_config(struct hda_codec *codec)
2502 {
2503         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2504         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2505         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2506 }
2507
2508 /*
2509  */
2510 static int patch_alc882(struct hda_codec *codec)
2511 {
2512         struct alc_spec *spec;
2513         int err;
2514
2515         err = alc_alloc_spec(codec, 0x0b);
2516         if (err < 0)
2517                 return err;
2518
2519         spec = codec->spec;
2520
2521         switch (codec->core.vendor_id) {
2522         case 0x10ec0882:
2523         case 0x10ec0885:
2524         case 0x10ec0900:
2525         case 0x10ec1220:
2526                 break;
2527         default:
2528                 /* ALC883 and variants */
2529                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2530                 break;
2531         }
2532
2533         alc_pre_init(codec);
2534
2535         snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2536                        alc882_fixups);
2537         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2538
2539         alc_auto_parse_customize_define(codec);
2540
2541         if (has_cdefine_beep(codec))
2542                 spec->gen.beep_nid = 0x01;
2543
2544         /* automatic parse from the BIOS config */
2545         err = alc882_parse_auto_config(codec);
2546         if (err < 0)
2547                 goto error;
2548
2549         if (!spec->gen.no_analog && spec->gen.beep_nid) {
2550                 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2551                 if (err < 0)
2552                         goto error;
2553         }
2554
2555         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2556
2557         return 0;
2558
2559  error:
2560         alc_free(codec);
2561         return err;
2562 }
2563
2564
2565 /*
2566  * ALC262 support
2567  */
2568 static int alc262_parse_auto_config(struct hda_codec *codec)
2569 {
2570         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2571         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2572         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2573 }
2574
2575 /*
2576  * Pin config fixes
2577  */
2578 enum {
2579         ALC262_FIXUP_FSC_H270,
2580         ALC262_FIXUP_FSC_S7110,
2581         ALC262_FIXUP_HP_Z200,
2582         ALC262_FIXUP_TYAN,
2583         ALC262_FIXUP_LENOVO_3000,
2584         ALC262_FIXUP_BENQ,
2585         ALC262_FIXUP_BENQ_T31,
2586         ALC262_FIXUP_INV_DMIC,
2587         ALC262_FIXUP_INTEL_BAYLEYBAY,
2588 };
2589
2590 static const struct hda_fixup alc262_fixups[] = {
2591         [ALC262_FIXUP_FSC_H270] = {
2592                 .type = HDA_FIXUP_PINS,
2593                 .v.pins = (const struct hda_pintbl[]) {
2594                         { 0x14, 0x99130110 }, /* speaker */
2595                         { 0x15, 0x0221142f }, /* front HP */
2596                         { 0x1b, 0x0121141f }, /* rear HP */
2597                         { }
2598                 }
2599         },
2600         [ALC262_FIXUP_FSC_S7110] = {
2601                 .type = HDA_FIXUP_PINS,
2602                 .v.pins = (const struct hda_pintbl[]) {
2603                         { 0x15, 0x90170110 }, /* speaker */
2604                         { }
2605                 },
2606                 .chained = true,
2607                 .chain_id = ALC262_FIXUP_BENQ,
2608         },
2609         [ALC262_FIXUP_HP_Z200] = {
2610                 .type = HDA_FIXUP_PINS,
2611                 .v.pins = (const struct hda_pintbl[]) {
2612                         { 0x16, 0x99130120 }, /* internal speaker */
2613                         { }
2614                 }
2615         },
2616         [ALC262_FIXUP_TYAN] = {
2617                 .type = HDA_FIXUP_PINS,
2618                 .v.pins = (const struct hda_pintbl[]) {
2619                         { 0x14, 0x1993e1f0 }, /* int AUX */
2620                         { }
2621                 }
2622         },
2623         [ALC262_FIXUP_LENOVO_3000] = {
2624                 .type = HDA_FIXUP_PINCTLS,
2625                 .v.pins = (const struct hda_pintbl[]) {
2626                         { 0x19, PIN_VREF50 },
2627                         {}
2628                 },
2629                 .chained = true,
2630                 .chain_id = ALC262_FIXUP_BENQ,
2631         },
2632         [ALC262_FIXUP_BENQ] = {
2633                 .type = HDA_FIXUP_VERBS,
2634                 .v.verbs = (const struct hda_verb[]) {
2635                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2636                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2637                         {}
2638                 }
2639         },
2640         [ALC262_FIXUP_BENQ_T31] = {
2641                 .type = HDA_FIXUP_VERBS,
2642                 .v.verbs = (const struct hda_verb[]) {
2643                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2644                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2645                         {}
2646                 }
2647         },
2648         [ALC262_FIXUP_INV_DMIC] = {
2649                 .type = HDA_FIXUP_FUNC,
2650                 .v.func = alc_fixup_inv_dmic,
2651         },
2652         [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2653                 .type = HDA_FIXUP_FUNC,
2654                 .v.func = alc_fixup_no_depop_delay,
2655         },
2656 };
2657
2658 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2659         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2660         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2661         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2662         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2663         SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2664         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2665         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2666         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2667         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2668         SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2669         {}
2670 };
2671
2672 static const struct hda_model_fixup alc262_fixup_models[] = {
2673         {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2674         {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2675         {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2676         {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2677         {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2678         {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2679         {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2680         {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2681         {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2682         {}
2683 };
2684
2685 /*
2686  */
2687 static int patch_alc262(struct hda_codec *codec)
2688 {
2689         struct alc_spec *spec;
2690         int err;
2691
2692         err = alc_alloc_spec(codec, 0x0b);
2693         if (err < 0)
2694                 return err;
2695
2696         spec = codec->spec;
2697         spec->gen.shared_mic_vref_pin = 0x18;
2698
2699         spec->shutup = alc_eapd_shutup;
2700
2701 #if 0
2702         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
2703          * under-run
2704          */
2705         alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2706 #endif
2707         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2708
2709         alc_pre_init(codec);
2710
2711         snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2712                        alc262_fixups);
2713         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2714
2715         alc_auto_parse_customize_define(codec);
2716
2717         if (has_cdefine_beep(codec))
2718                 spec->gen.beep_nid = 0x01;
2719
2720         /* automatic parse from the BIOS config */
2721         err = alc262_parse_auto_config(codec);
2722         if (err < 0)
2723                 goto error;
2724
2725         if (!spec->gen.no_analog && spec->gen.beep_nid) {
2726                 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2727                 if (err < 0)
2728                         goto error;
2729         }
2730
2731         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2732
2733         return 0;
2734
2735  error:
2736         alc_free(codec);
2737         return err;
2738 }
2739
2740 /*
2741  *  ALC268
2742  */
2743 /* bind Beep switches of both NID 0x0f and 0x10 */
2744 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2745                                   struct snd_ctl_elem_value *ucontrol)
2746 {
2747         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2748         unsigned long pval;
2749         int err;
2750
2751         mutex_lock(&codec->control_mutex);
2752         pval = kcontrol->private_value;
2753         kcontrol->private_value = (pval & ~0xff) | 0x0f;
2754         err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2755         if (err >= 0) {
2756                 kcontrol->private_value = (pval & ~0xff) | 0x10;
2757                 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2758         }
2759         kcontrol->private_value = pval;
2760         mutex_unlock(&codec->control_mutex);
2761         return err;
2762 }
2763
2764 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2765         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2766         {
2767                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2768                 .name = "Beep Playback Switch",
2769                 .subdevice = HDA_SUBDEV_AMP_FLAG,
2770                 .info = snd_hda_mixer_amp_switch_info,
2771                 .get = snd_hda_mixer_amp_switch_get,
2772                 .put = alc268_beep_switch_put,
2773                 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2774         },
2775 };
2776
2777 /* set PCBEEP vol = 0, mute connections */
2778 static const struct hda_verb alc268_beep_init_verbs[] = {
2779         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2780         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2781         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2782         { }
2783 };
2784
2785 enum {
2786         ALC268_FIXUP_INV_DMIC,
2787         ALC268_FIXUP_HP_EAPD,
2788         ALC268_FIXUP_SPDIF,
2789 };
2790
2791 static const struct hda_fixup alc268_fixups[] = {
2792         [ALC268_FIXUP_INV_DMIC] = {
2793                 .type = HDA_FIXUP_FUNC,
2794                 .v.func = alc_fixup_inv_dmic,
2795         },
2796         [ALC268_FIXUP_HP_EAPD] = {
2797                 .type = HDA_FIXUP_VERBS,
2798                 .v.verbs = (const struct hda_verb[]) {
2799                         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2800                         {}
2801                 }
2802         },
2803         [ALC268_FIXUP_SPDIF] = {
2804                 .type = HDA_FIXUP_PINS,
2805                 .v.pins = (const struct hda_pintbl[]) {
2806                         { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2807                         {}
2808                 }
2809         },
2810 };
2811
2812 static const struct hda_model_fixup alc268_fixup_models[] = {
2813         {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2814         {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2815         {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
2816         {}
2817 };
2818
2819 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2820         SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2821         SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2822         /* below is codec SSID since multiple Toshiba laptops have the
2823          * same PCI SSID 1179:ff00
2824          */
2825         SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2826         {}
2827 };
2828
2829 /*
2830  * BIOS auto configuration
2831  */
2832 static int alc268_parse_auto_config(struct hda_codec *codec)
2833 {
2834         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2835         return alc_parse_auto_config(codec, NULL, alc268_ssids);
2836 }
2837
2838 /*
2839  */
2840 static int patch_alc268(struct hda_codec *codec)
2841 {
2842         struct alc_spec *spec;
2843         int i, err;
2844
2845         /* ALC268 has no aa-loopback mixer */
2846         err = alc_alloc_spec(codec, 0);
2847         if (err < 0)
2848                 return err;
2849
2850         spec = codec->spec;
2851         spec->gen.beep_nid = 0x01;
2852
2853         spec->shutup = alc_eapd_shutup;
2854
2855         alc_pre_init(codec);
2856
2857         snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2858         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2859
2860         /* automatic parse from the BIOS config */
2861         err = alc268_parse_auto_config(codec);
2862         if (err < 0)
2863                 goto error;
2864
2865         if (err > 0 && !spec->gen.no_analog &&
2866             spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2867                 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
2868                         if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
2869                                                   &alc268_beep_mixer[i])) {
2870                                 err = -ENOMEM;
2871                                 goto error;
2872                         }
2873                 }
2874                 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2875                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2876                         /* override the amp caps for beep generator */
2877                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2878                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2879                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2880                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2881                                           (0 << AC_AMPCAP_MUTE_SHIFT));
2882         }
2883
2884         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2885
2886         return 0;
2887
2888  error:
2889         alc_free(codec);
2890         return err;
2891 }
2892
2893 /*
2894  * ALC269
2895  */
2896
2897 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2898         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2899 };
2900
2901 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2902         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2903 };
2904
2905 /* different alc269-variants */
2906 enum {
2907         ALC269_TYPE_ALC269VA,
2908         ALC269_TYPE_ALC269VB,
2909         ALC269_TYPE_ALC269VC,
2910         ALC269_TYPE_ALC269VD,
2911         ALC269_TYPE_ALC280,
2912         ALC269_TYPE_ALC282,
2913         ALC269_TYPE_ALC283,
2914         ALC269_TYPE_ALC284,
2915         ALC269_TYPE_ALC293,
2916         ALC269_TYPE_ALC286,
2917         ALC269_TYPE_ALC298,
2918         ALC269_TYPE_ALC255,
2919         ALC269_TYPE_ALC256,
2920         ALC269_TYPE_ALC257,
2921         ALC269_TYPE_ALC215,
2922         ALC269_TYPE_ALC225,
2923         ALC269_TYPE_ALC294,
2924         ALC269_TYPE_ALC300,
2925         ALC269_TYPE_ALC623,
2926         ALC269_TYPE_ALC700,
2927 };
2928
2929 /*
2930  * BIOS auto configuration
2931  */
2932 static int alc269_parse_auto_config(struct hda_codec *codec)
2933 {
2934         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2935         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2936         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2937         struct alc_spec *spec = codec->spec;
2938         const hda_nid_t *ssids;
2939
2940         switch (spec->codec_variant) {
2941         case ALC269_TYPE_ALC269VA:
2942         case ALC269_TYPE_ALC269VC:
2943         case ALC269_TYPE_ALC280:
2944         case ALC269_TYPE_ALC284:
2945         case ALC269_TYPE_ALC293:
2946                 ssids = alc269va_ssids;
2947                 break;
2948         case ALC269_TYPE_ALC269VB:
2949         case ALC269_TYPE_ALC269VD:
2950         case ALC269_TYPE_ALC282:
2951         case ALC269_TYPE_ALC283:
2952         case ALC269_TYPE_ALC286:
2953         case ALC269_TYPE_ALC298:
2954         case ALC269_TYPE_ALC255:
2955         case ALC269_TYPE_ALC256:
2956         case ALC269_TYPE_ALC257:
2957         case ALC269_TYPE_ALC215:
2958         case ALC269_TYPE_ALC225:
2959         case ALC269_TYPE_ALC294:
2960         case ALC269_TYPE_ALC300:
2961         case ALC269_TYPE_ALC623:
2962         case ALC269_TYPE_ALC700:
2963                 ssids = alc269_ssids;
2964                 break;
2965         default:
2966                 ssids = alc269_ssids;
2967                 break;
2968         }
2969
2970         return alc_parse_auto_config(codec, alc269_ignore, ssids);
2971 }
2972
2973 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2974 {
2975         alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
2976 }
2977
2978 static void alc269_shutup(struct hda_codec *codec)
2979 {
2980         struct alc_spec *spec = codec->spec;
2981
2982         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2983                 alc269vb_toggle_power_output(codec, 0);
2984         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2985                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2986                 msleep(150);
2987         }
2988         alc_shutup_pins(codec);
2989 }
2990
2991 static struct coef_fw alc282_coefs[] = {
2992         WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2993         UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2994         WRITE_COEF(0x07, 0x0200), /* DMIC control */
2995         UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2996         UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2997         WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2998         WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2999         WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3000         UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3001         UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3002         WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3003         UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3004         WRITE_COEF(0x34, 0xa0c0), /* ANC */
3005         UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3006         UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3007         UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3008         WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3009         WRITE_COEF(0x63, 0x2902), /* PLL */
3010         WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3011         WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3012         WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3013         WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3014         UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3015         WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3016         UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3017         WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3018         WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3019         UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3020         WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3021         {}
3022 };
3023
3024 static void alc282_restore_default_value(struct hda_codec *codec)
3025 {
3026         alc_process_coef_fw(codec, alc282_coefs);
3027 }
3028
3029 static void alc282_init(struct hda_codec *codec)
3030 {
3031         struct alc_spec *spec = codec->spec;
3032         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3033         bool hp_pin_sense;
3034         int coef78;
3035
3036         alc282_restore_default_value(codec);
3037
3038         if (!hp_pin)
3039                 return;
3040         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3041         coef78 = alc_read_coef_idx(codec, 0x78);
3042
3043         /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3044         /* Headphone capless set to high power mode */
3045         alc_write_coef_idx(codec, 0x78, 0x9004);
3046
3047         if (hp_pin_sense)
3048                 msleep(2);
3049
3050         snd_hda_codec_write(codec, hp_pin, 0,
3051                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3052
3053         if (hp_pin_sense)
3054                 msleep(85);
3055
3056         snd_hda_codec_write(codec, hp_pin, 0,
3057                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3058
3059         if (hp_pin_sense)
3060                 msleep(100);
3061
3062         /* Headphone capless set to normal mode */
3063         alc_write_coef_idx(codec, 0x78, coef78);
3064 }
3065
3066 static void alc282_shutup(struct hda_codec *codec)
3067 {
3068         struct alc_spec *spec = codec->spec;
3069         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3070         bool hp_pin_sense;
3071         int coef78;
3072
3073         if (!hp_pin) {
3074                 alc269_shutup(codec);
3075                 return;
3076         }
3077
3078         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3079         coef78 = alc_read_coef_idx(codec, 0x78);
3080         alc_write_coef_idx(codec, 0x78, 0x9004);
3081
3082         if (hp_pin_sense)
3083                 msleep(2);
3084
3085         snd_hda_codec_write(codec, hp_pin, 0,
3086                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3087
3088         if (hp_pin_sense)
3089                 msleep(85);
3090
3091         if (!spec->no_shutup_pins)
3092                 snd_hda_codec_write(codec, hp_pin, 0,
3093                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3094
3095         if (hp_pin_sense)
3096                 msleep(100);
3097
3098         alc_auto_setup_eapd(codec, false);
3099         alc_shutup_pins(codec);
3100         alc_write_coef_idx(codec, 0x78, coef78);
3101 }
3102
3103 static struct coef_fw alc283_coefs[] = {
3104         WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3105         UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3106         WRITE_COEF(0x07, 0x0200), /* DMIC control */
3107         UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3108         UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3109         WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3110         WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3111         WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3112         UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3113         UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3114         WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3115         UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3116         WRITE_COEF(0x22, 0xa0c0), /* ANC */
3117         UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3118         UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3119         UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3120         WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3121         WRITE_COEF(0x2e, 0x2902), /* PLL */
3122         WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3123         WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3124         WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3125         WRITE_COEF(0x36, 0x0), /* capless control 5 */
3126         UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3127         WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3128         UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3129         WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3130         WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3131         UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3132         WRITE_COEF(0x49, 0x0), /* test mode */
3133         UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3134         UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3135         WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3136         UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3137         {}
3138 };
3139
3140 static void alc283_restore_default_value(struct hda_codec *codec)
3141 {
3142         alc_process_coef_fw(codec, alc283_coefs);
3143 }
3144
3145 static void alc283_init(struct hda_codec *codec)
3146 {
3147         struct alc_spec *spec = codec->spec;
3148         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3149         bool hp_pin_sense;
3150
3151         alc283_restore_default_value(codec);
3152
3153         if (!hp_pin)
3154                 return;
3155
3156         msleep(30);
3157         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3158
3159         /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3160         /* Headphone capless set to high power mode */
3161         alc_write_coef_idx(codec, 0x43, 0x9004);
3162
3163         snd_hda_codec_write(codec, hp_pin, 0,
3164                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3165
3166         if (hp_pin_sense)
3167                 msleep(85);
3168
3169         snd_hda_codec_write(codec, hp_pin, 0,
3170                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3171
3172         if (hp_pin_sense)
3173                 msleep(85);
3174         /* Index 0x46 Combo jack auto switch control 2 */
3175         /* 3k pull low control for Headset jack. */
3176         alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3177         /* Headphone capless set to normal mode */
3178         alc_write_coef_idx(codec, 0x43, 0x9614);
3179 }
3180
3181 static void alc283_shutup(struct hda_codec *codec)
3182 {
3183         struct alc_spec *spec = codec->spec;
3184         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3185         bool hp_pin_sense;
3186
3187         if (!hp_pin) {
3188                 alc269_shutup(codec);
3189                 return;
3190         }
3191
3192         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3193
3194         alc_write_coef_idx(codec, 0x43, 0x9004);
3195
3196         /*depop hp during suspend*/
3197         alc_write_coef_idx(codec, 0x06, 0x2100);
3198
3199         snd_hda_codec_write(codec, hp_pin, 0,
3200                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3201
3202         if (hp_pin_sense)
3203                 msleep(100);
3204
3205         if (!spec->no_shutup_pins)
3206                 snd_hda_codec_write(codec, hp_pin, 0,
3207                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3208
3209         alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3210
3211         if (hp_pin_sense)
3212                 msleep(100);
3213         alc_auto_setup_eapd(codec, false);
3214         alc_shutup_pins(codec);
3215         alc_write_coef_idx(codec, 0x43, 0x9614);
3216 }
3217
3218 static void alc256_init(struct hda_codec *codec)
3219 {
3220         struct alc_spec *spec = codec->spec;
3221         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3222         bool hp_pin_sense;
3223
3224         if (!hp_pin)
3225                 hp_pin = 0x21;
3226
3227         msleep(30);
3228
3229         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3230
3231         if (hp_pin_sense)
3232                 msleep(2);
3233
3234         alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3235         if (spec->ultra_low_power) {
3236                 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3237                 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3238                 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3239                 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3240                 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3241                 msleep(30);
3242         }
3243
3244         snd_hda_codec_write(codec, hp_pin, 0,
3245                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3246
3247         if (hp_pin_sense || spec->ultra_low_power)
3248                 msleep(85);
3249
3250         snd_hda_codec_write(codec, hp_pin, 0,
3251                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3252
3253         if (hp_pin_sense || spec->ultra_low_power)
3254                 msleep(100);
3255
3256         alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3257         alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3258         alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3259         alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3260         alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
3261 }
3262
3263 static void alc256_shutup(struct hda_codec *codec)
3264 {
3265         struct alc_spec *spec = codec->spec;
3266         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3267         bool hp_pin_sense;
3268
3269         if (!hp_pin)
3270                 hp_pin = 0x21;
3271
3272         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3273
3274         if (hp_pin_sense)
3275                 msleep(2);
3276
3277         snd_hda_codec_write(codec, hp_pin, 0,
3278                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3279
3280         if (hp_pin_sense || spec->ultra_low_power)
3281                 msleep(85);
3282
3283         /* 3k pull low control for Headset jack. */
3284         /* NOTE: call this before clearing the pin, otherwise codec stalls */
3285         alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3286
3287         if (!spec->no_shutup_pins)
3288                 snd_hda_codec_write(codec, hp_pin, 0,
3289                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3290
3291         if (hp_pin_sense || spec->ultra_low_power)
3292                 msleep(100);
3293
3294         alc_auto_setup_eapd(codec, false);
3295         alc_shutup_pins(codec);
3296         if (spec->ultra_low_power) {
3297                 msleep(50);
3298                 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3299                 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3300                 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3301                 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3302                 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3303                 msleep(30);
3304         }
3305 }
3306
3307 static void alc225_init(struct hda_codec *codec)
3308 {
3309         struct alc_spec *spec = codec->spec;
3310         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3311         bool hp1_pin_sense, hp2_pin_sense;
3312
3313         if (!hp_pin)
3314                 hp_pin = 0x21;
3315         msleep(30);
3316
3317         hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3318         hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3319
3320         if (hp1_pin_sense || hp2_pin_sense)
3321                 msleep(2);
3322
3323         alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3324         if (spec->ultra_low_power) {
3325                 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3326                 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3327                 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3328                 msleep(30);
3329         }
3330
3331         if (hp1_pin_sense || spec->ultra_low_power)
3332                 snd_hda_codec_write(codec, hp_pin, 0,
3333                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3334         if (hp2_pin_sense)
3335                 snd_hda_codec_write(codec, 0x16, 0,
3336                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3337
3338         if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3339                 msleep(85);
3340
3341         if (hp1_pin_sense || spec->ultra_low_power)
3342                 snd_hda_codec_write(codec, hp_pin, 0,
3343                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3344         if (hp2_pin_sense)
3345                 snd_hda_codec_write(codec, 0x16, 0,
3346                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3347
3348         if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3349                 msleep(100);
3350
3351         alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3352         alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3353 }
3354
3355 static void alc225_shutup(struct hda_codec *codec)
3356 {
3357         struct alc_spec *spec = codec->spec;
3358         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3359         bool hp1_pin_sense, hp2_pin_sense;
3360
3361         if (!hp_pin)
3362                 hp_pin = 0x21;
3363         /* 3k pull low control for Headset jack. */
3364         alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3365
3366         hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3367         hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3368
3369         if (hp1_pin_sense || hp2_pin_sense)
3370                 msleep(2);
3371
3372         if (hp1_pin_sense || spec->ultra_low_power)
3373                 snd_hda_codec_write(codec, hp_pin, 0,
3374                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3375         if (hp2_pin_sense)
3376                 snd_hda_codec_write(codec, 0x16, 0,
3377                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3378
3379         if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3380                 msleep(85);
3381
3382         if (hp1_pin_sense || spec->ultra_low_power)
3383                 snd_hda_codec_write(codec, hp_pin, 0,
3384                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3385         if (hp2_pin_sense)
3386                 snd_hda_codec_write(codec, 0x16, 0,
3387                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3388
3389         if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3390                 msleep(100);
3391
3392         alc_auto_setup_eapd(codec, false);
3393         alc_shutup_pins(codec);
3394         if (spec->ultra_low_power) {
3395                 msleep(50);
3396                 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3397                 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3398                 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3399                 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3400                 msleep(30);
3401         }
3402 }
3403
3404 static void alc_default_init(struct hda_codec *codec)
3405 {
3406         struct alc_spec *spec = codec->spec;
3407         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3408         bool hp_pin_sense;
3409
3410         if (!hp_pin)
3411                 return;
3412
3413         msleep(30);
3414
3415         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3416
3417         if (hp_pin_sense)
3418                 msleep(2);
3419
3420         snd_hda_codec_write(codec, hp_pin, 0,
3421                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3422
3423         if (hp_pin_sense)
3424                 msleep(85);
3425
3426         snd_hda_codec_write(codec, hp_pin, 0,
3427                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3428
3429         if (hp_pin_sense)
3430                 msleep(100);
3431 }
3432
3433 static void alc_default_shutup(struct hda_codec *codec)
3434 {
3435         struct alc_spec *spec = codec->spec;
3436         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3437         bool hp_pin_sense;
3438
3439         if (!hp_pin) {
3440                 alc269_shutup(codec);
3441                 return;
3442         }
3443
3444         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3445
3446         if (hp_pin_sense)
3447                 msleep(2);
3448
3449         snd_hda_codec_write(codec, hp_pin, 0,
3450                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3451
3452         if (hp_pin_sense)
3453                 msleep(85);
3454
3455         if (!spec->no_shutup_pins)
3456                 snd_hda_codec_write(codec, hp_pin, 0,
3457                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3458
3459         if (hp_pin_sense)
3460                 msleep(100);
3461
3462         alc_auto_setup_eapd(codec, false);
3463         alc_shutup_pins(codec);
3464 }
3465
3466 static void alc294_hp_init(struct hda_codec *codec)
3467 {
3468         struct alc_spec *spec = codec->spec;
3469         hda_nid_t hp_pin = alc_get_hp_pin(spec);
3470         int i, val;
3471
3472         if (!hp_pin)
3473                 return;
3474
3475         snd_hda_codec_write(codec, hp_pin, 0,
3476                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3477
3478         msleep(100);
3479
3480         if (!spec->no_shutup_pins)
3481                 snd_hda_codec_write(codec, hp_pin, 0,
3482                                     AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3483
3484         alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3485         alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3486
3487         /* Wait for depop procedure finish  */
3488         val = alc_read_coefex_idx(codec, 0x58, 0x01);
3489         for (i = 0; i < 20 && val & 0x0080; i++) {
3490                 msleep(50);
3491                 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3492         }
3493         /* Set HP depop to auto mode */
3494         alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3495         msleep(50);
3496 }
3497
3498 static void alc294_init(struct hda_codec *codec)
3499 {
3500         struct alc_spec *spec = codec->spec;
3501
3502         /* required only at boot or S4 resume time */
3503         if (!spec->done_hp_init ||
3504             codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3505                 alc294_hp_init(codec);
3506                 spec->done_hp_init = true;
3507         }
3508         alc_default_init(codec);
3509 }
3510
3511 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3512                              unsigned int val)
3513 {
3514         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3515         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3516         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3517 }
3518
3519 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3520 {
3521         unsigned int val;
3522
3523         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3524         val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3525                 & 0xffff;
3526         val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3527                 << 16;
3528         return val;
3529 }
3530
3531 static void alc5505_dsp_halt(struct hda_codec *codec)
3532 {
3533         unsigned int val;
3534
3535         alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3536         alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3537         alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3538         alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3539         alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3540         alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3541         alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3542         val = alc5505_coef_get(codec, 0x6220);
3543         alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3544 }
3545
3546 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3547 {
3548         alc5505_coef_set(codec, 0x61b8, 0x04133302);
3549         alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3550         alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3551         alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3552         alc5505_coef_set(codec, 0x6220, 0x2002010f);
3553         alc5505_coef_set(codec, 0x880c, 0x00000004);
3554 }
3555
3556 static void alc5505_dsp_init(struct hda_codec *codec)
3557 {
3558         unsigned int val;
3559
3560         alc5505_dsp_halt(codec);
3561         alc5505_dsp_back_from_halt(codec);
3562         alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3563         alc5505_coef_set(codec, 0x61b0, 0x5b16);
3564         alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3565         alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3566         alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3567         alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3568         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3569         alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3570         alc5505_coef_set(codec, 0x61b8, 0x04173302);
3571         alc5505_coef_set(codec, 0x61b8, 0x04163302);
3572         alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3573         alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3574         alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3575
3576         val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3577         if (val <= 3)
3578                 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3579         else
3580                 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3581
3582         alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3583         alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3584         alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3585         alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3586         alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3587         alc5505_coef_set(codec, 0x880c, 0x00000003);
3588         alc5505_coef_set(codec, 0x880c, 0x00000010);
3589
3590 #ifdef HALT_REALTEK_ALC5505
3591         alc5505_dsp_halt(codec);
3592 #endif
3593 }
3594
3595 #ifdef HALT_REALTEK_ALC5505
3596 #define alc5505_dsp_suspend(codec)      /* NOP */
3597 #define alc5505_dsp_resume(codec)       /* NOP */
3598 #else
3599 #define alc5505_dsp_suspend(codec)      alc5505_dsp_halt(codec)
3600 #define alc5505_dsp_resume(codec)       alc5505_dsp_back_from_halt(codec)
3601 #endif
3602
3603 #ifdef CONFIG_PM
3604 static int alc269_suspend(struct hda_codec *codec)
3605 {
3606         struct alc_spec *spec = codec->spec;
3607
3608         if (spec->has_alc5505_dsp)
3609                 alc5505_dsp_suspend(codec);
3610         return alc_suspend(codec);
3611 }
3612
3613 static int alc269_resume(struct hda_codec *codec)
3614 {
3615         struct alc_spec *spec = codec->spec;
3616
3617         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3618                 alc269vb_toggle_power_output(codec, 0);
3619         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3620                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3621                 msleep(150);
3622         }
3623
3624         codec->patch_ops.init(codec);
3625
3626         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3627                 alc269vb_toggle_power_output(codec, 1);
3628         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3629                         (alc_get_coef0(codec) & 0x00ff) == 0x017) {
3630                 msleep(200);
3631         }
3632
3633         regcache_sync(codec->core.regmap);
3634         hda_call_check_power_status(codec, 0x01);
3635
3636         /* on some machine, the BIOS will clear the codec gpio data when enter
3637          * suspend, and won't restore the data after resume, so we restore it
3638          * in the driver.
3639          */
3640         if (spec->gpio_data)
3641                 alc_write_gpio_data(codec);
3642
3643         if (spec->has_alc5505_dsp)
3644                 alc5505_dsp_resume(codec);
3645
3646         return 0;
3647 }
3648 #endif /* CONFIG_PM */
3649
3650 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
3651                                                  const struct hda_fixup *fix, int action)
3652 {
3653         struct alc_spec *spec = codec->spec;
3654
3655         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3656                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3657 }
3658
3659 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
3660                                                  const struct hda_fixup *fix,
3661                                                  int action)
3662 {
3663         unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
3664         unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
3665
3666         if (cfg_headphone && cfg_headset_mic == 0x411111f0)
3667                 snd_hda_codec_set_pincfg(codec, 0x19,
3668                         (cfg_headphone & ~AC_DEFCFG_DEVICE) |
3669                         (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
3670 }
3671
3672 static void alc269_fixup_hweq(struct hda_codec *codec,
3673                                const struct hda_fixup *fix, int action)
3674 {
3675         if (action == HDA_FIXUP_ACT_INIT)
3676                 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
3677 }
3678
3679 static void alc269_fixup_headset_mic(struct hda_codec *codec,
3680                                        const struct hda_fixup *fix, int action)
3681 {
3682         struct alc_spec *spec = codec->spec;
3683
3684         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3685                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3686 }
3687
3688 static void alc271_fixup_dmic(struct hda_codec *codec,
3689                               const struct hda_fixup *fix, int action)
3690 {
3691         static const struct hda_verb verbs[] = {
3692                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3693                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3694                 {}
3695         };
3696         unsigned int cfg;
3697
3698         if (strcmp(codec->core.chip_name, "ALC271X") &&
3699             strcmp(codec->core.chip_name, "ALC269VB"))
3700                 return;
3701         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3702         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3703                 snd_hda_sequence_write(codec, verbs);
3704 }
3705
3706 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
3707                                  const struct hda_fixup *fix, int action)
3708 {
3709         struct alc_spec *spec = codec->spec;
3710
3711         if (action != HDA_FIXUP_ACT_PROBE)
3712                 return;
3713
3714         /* Due to a hardware problem on Lenovo Ideadpad, we need to
3715          * fix the sample rate of analog I/O to 44.1kHz
3716          */
3717         spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3718         spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
3719 }
3720
3721 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3722                                      const struct hda_fixup *fix, int action)
3723 {
3724         /* The digital-mic unit sends PDM (differential signal) instead of
3725          * the standard PCM, thus you can't record a valid mono stream as is.
3726          * Below is a workaround specific to ALC269 to control the dmic
3727          * signal source as mono.
3728          */
3729         if (action == HDA_FIXUP_ACT_INIT)
3730                 alc_update_coef_idx(codec, 0x07, 0, 0x80);
3731 }
3732
3733 static void alc269_quanta_automute(struct hda_codec *codec)
3734 {
3735         snd_hda_gen_update_outputs(codec);
3736
3737         alc_write_coef_idx(codec, 0x0c, 0x680);
3738         alc_write_coef_idx(codec, 0x0c, 0x480);
3739 }
3740
3741 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3742                                      const struct hda_fixup *fix, int action)
3743 {
3744         struct alc_spec *spec = codec->spec;
3745         if (action != HDA_FIXUP_ACT_PROBE)
3746                 return;
3747         spec->gen.automute_hook = alc269_quanta_automute;
3748 }
3749
3750 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3751                                          struct hda_jack_callback *jack)
3752 {
3753         struct alc_spec *spec = codec->spec;
3754         int vref;
3755         msleep(200);
3756         snd_hda_gen_hp_automute(codec, jack);
3757
3758         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3759         msleep(100);
3760         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3761                             vref);
3762         msleep(500);
3763         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3764                             vref);
3765 }
3766
3767 /*
3768  * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
3769  */
3770 struct hda_alc298_mbxinit {
3771         unsigned char value_0x23;
3772         unsigned char value_0x25;
3773 };
3774
3775 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
3776                                          const struct hda_alc298_mbxinit *initval,
3777                                          bool first)
3778 {
3779         snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
3780         alc_write_coef_idx(codec, 0x26, 0xb000);
3781
3782         if (first)
3783                 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
3784
3785         snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3786         alc_write_coef_idx(codec, 0x26, 0xf000);
3787         alc_write_coef_idx(codec, 0x23, initval->value_0x23);
3788
3789         if (initval->value_0x23 != 0x1e)
3790                 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
3791
3792         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3793         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3794 }
3795
3796 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
3797                                            const struct hda_fixup *fix,
3798                                            int action)
3799 {
3800         /* Initialization magic */
3801         static const struct hda_alc298_mbxinit dac_init[] = {
3802                 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
3803                 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
3804                 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
3805                 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
3806                 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
3807                 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
3808                 {0x2f, 0x00},
3809                 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
3810                 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
3811                 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
3812                 {}
3813         };
3814         const struct hda_alc298_mbxinit *seq;
3815
3816         if (action != HDA_FIXUP_ACT_INIT)
3817                 return;
3818
3819         /* Start */
3820         snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
3821         snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3822         alc_write_coef_idx(codec, 0x26, 0xf000);
3823         alc_write_coef_idx(codec, 0x22, 0x31);
3824         alc_write_coef_idx(codec, 0x23, 0x0b);
3825         alc_write_coef_idx(codec, 0x25, 0x00);
3826         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3827         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3828
3829         for (seq = dac_init; seq->value_0x23; seq++)
3830                 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
3831 }
3832
3833 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3834                                      const struct hda_fixup *fix, int action)
3835 {
3836         struct alc_spec *spec = codec->spec;
3837         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3838                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3839                 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3840         }
3841 }
3842
3843
3844 /* update mute-LED according to the speaker mute state via mic VREF pin */
3845 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3846 {
3847         struct hda_codec *codec = private_data;
3848         struct alc_spec *spec = codec->spec;
3849         unsigned int pinval;
3850
3851         if (spec->mute_led_polarity)
3852                 enabled = !enabled;
3853         pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3854         pinval &= ~AC_PINCTL_VREFEN;
3855         pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3856         if (spec->mute_led_nid) {
3857                 /* temporarily power up/down for setting VREF */
3858                 snd_hda_power_up_pm(codec);
3859                 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3860                 snd_hda_power_down_pm(codec);
3861         }
3862 }
3863
3864 /* Make sure the led works even in runtime suspend */
3865 static unsigned int led_power_filter(struct hda_codec *codec,
3866                                                   hda_nid_t nid,
3867                                                   unsigned int power_state)
3868 {
3869         struct alc_spec *spec = codec->spec;
3870
3871         if (power_state != AC_PWRST_D3 || nid == 0 ||
3872             (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
3873                 return power_state;
3874
3875         /* Set pin ctl again, it might have just been set to 0 */
3876         snd_hda_set_pin_ctl(codec, nid,
3877                             snd_hda_codec_get_pin_target(codec, nid));
3878
3879         return snd_hda_gen_path_power_filter(codec, nid, power_state);
3880 }
3881
3882 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3883                                      const struct hda_fixup *fix, int action)
3884 {
3885         struct alc_spec *spec = codec->spec;
3886         const struct dmi_device *dev = NULL;
3887
3888         if (action != HDA_FIXUP_ACT_PRE_PROBE)
3889                 return;
3890
3891         while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3892                 int pol, pin;
3893                 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3894                         continue;
3895                 if (pin < 0x0a || pin >= 0x10)
3896                         break;
3897                 spec->mute_led_polarity = pol;
3898                 spec->mute_led_nid = pin - 0x0a + 0x18;
3899                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3900                 spec->gen.vmaster_mute_enum = 1;
3901                 codec->power_filter = led_power_filter;
3902                 codec_dbg(codec,
3903                           "Detected mute LED for %x:%d\n", spec->mute_led_nid,
3904                            spec->mute_led_polarity);
3905                 break;
3906         }
3907 }
3908
3909 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
3910                                           const struct hda_fixup *fix,
3911                                           int action, hda_nid_t pin)
3912 {
3913         struct alc_spec *spec = codec->spec;
3914
3915         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3916                 spec->mute_led_polarity = 0;
3917                 spec->mute_led_nid = pin;
3918                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3919                 spec->gen.vmaster_mute_enum = 1;
3920                 codec->power_filter = led_power_filter;
3921         }
3922 }
3923
3924 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3925                                 const struct hda_fixup *fix, int action)
3926 {
3927         alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
3928 }
3929
3930 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3931                                 const struct hda_fixup *fix, int action)
3932 {
3933         alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
3934 }
3935
3936 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
3937                                 const struct hda_fixup *fix, int action)
3938 {
3939         alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
3940 }
3941
3942 /* update LED status via GPIO */
3943 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3944                                 bool enabled)
3945 {
3946         struct alc_spec *spec = codec->spec;
3947
3948         if (spec->mute_led_polarity)
3949                 enabled = !enabled;
3950         alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
3951 }
3952
3953 /* turn on/off mute LED via GPIO per vmaster hook */
3954 static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
3955 {
3956         struct hda_codec *codec = private_data;
3957         struct alc_spec *spec = codec->spec;
3958
3959         alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3960 }
3961
3962 /* turn on/off mic-mute LED via GPIO per capture hook */
3963 static void alc_gpio_micmute_update(struct hda_codec *codec)
3964 {
3965         struct alc_spec *spec = codec->spec;
3966
3967         alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3968                             spec->gen.micmute_led.led_value);
3969 }
3970
3971 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
3972 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
3973                                   int action,
3974                                   unsigned int mute_mask,
3975                                   unsigned int micmute_mask)
3976 {
3977         struct alc_spec *spec = codec->spec;
3978
3979         alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
3980
3981         if (action != HDA_FIXUP_ACT_PRE_PROBE)
3982                 return;
3983         if (mute_mask) {
3984                 spec->gpio_mute_led_mask = mute_mask;
3985                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3986         }
3987         if (micmute_mask) {
3988                 spec->gpio_mic_led_mask = micmute_mask;
3989                 snd_hda_gen_add_micmute_led(codec, alc_gpio_micmute_update);
3990         }
3991 }
3992
3993 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3994                                 const struct hda_fixup *fix, int action)
3995 {
3996         alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
3997 }
3998
3999 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4000                                 const struct hda_fixup *fix, int action)
4001 {
4002         alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4003 }
4004
4005 /* turn on/off mic-mute LED per capture hook */
4006 static void alc_cap_micmute_update(struct hda_codec *codec)
4007 {
4008         struct alc_spec *spec = codec->spec;
4009         unsigned int pinval;
4010
4011         if (!spec->cap_mute_led_nid)
4012                 return;
4013         pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
4014         pinval &= ~AC_PINCTL_VREFEN;
4015         if (spec->gen.micmute_led.led_value)
4016                 pinval |= AC_PINCTL_VREF_80;
4017         else
4018                 pinval |= AC_PINCTL_VREF_HIZ;
4019         snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
4020 }
4021
4022 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4023                                 const struct hda_fixup *fix, int action)
4024 {
4025         struct alc_spec *spec = codec->spec;
4026
4027         alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4028         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4029                 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4030                  * enable headphone amp
4031                  */
4032                 spec->gpio_mask |= 0x10;
4033                 spec->gpio_dir |= 0x10;
4034                 spec->cap_mute_led_nid = 0x18;
4035                 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
4036                 codec->power_filter = led_power_filter;
4037         }
4038 }
4039
4040 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4041                                    const struct hda_fixup *fix, int action)
4042 {
4043         struct alc_spec *spec = codec->spec;
4044
4045         alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4046         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4047                 spec->cap_mute_led_nid = 0x18;
4048                 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
4049                 codec->power_filter = led_power_filter;
4050         }
4051 }
4052
4053 #if IS_REACHABLE(CONFIG_INPUT)
4054 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4055                                    struct hda_jack_callback *event)
4056 {
4057         struct alc_spec *spec = codec->spec;
4058
4059         /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4060            send both key on and key off event for every interrupt. */
4061         input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4062         input_sync(spec->kb_dev);
4063         input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4064         input_sync(spec->kb_dev);
4065 }
4066
4067 static int alc_register_micmute_input_device(struct hda_codec *codec)
4068 {
4069         struct alc_spec *spec = codec->spec;
4070         int i;
4071
4072         spec->kb_dev = input_allocate_device();
4073         if (!spec->kb_dev) {
4074                 codec_err(codec, "Out of memory (input_allocate_device)\n");
4075                 return -ENOMEM;
4076         }
4077
4078         spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4079
4080         spec->kb_dev->name = "Microphone Mute Button";
4081         spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4082         spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4083         spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4084         spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4085         for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4086                 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4087
4088         if (input_register_device(spec->kb_dev)) {
4089                 codec_err(codec, "input_register_device failed\n");
4090                 input_free_device(spec->kb_dev);
4091                 spec->kb_dev = NULL;
4092                 return -ENOMEM;
4093         }
4094
4095         return 0;
4096 }
4097
4098 /* GPIO1 = set according to SKU external amp
4099  * GPIO2 = mic mute hotkey
4100  * GPIO3 = mute LED
4101  * GPIO4 = mic mute LED
4102  */
4103 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4104                                              const struct hda_fixup *fix, int action)
4105 {
4106         struct alc_spec *spec = codec->spec;
4107
4108         alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4109         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4110                 spec->init_amp = ALC_INIT_DEFAULT;
4111                 if (alc_register_micmute_input_device(codec) != 0)
4112                         return;
4113
4114                 spec->gpio_mask |= 0x06;
4115                 spec->gpio_dir |= 0x02;
4116                 spec->gpio_data |= 0x02;
4117                 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4118                                           AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4119                 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4120                                                     gpio2_mic_hotkey_event);
4121                 return;
4122         }
4123
4124         if (!spec->kb_dev)
4125                 return;
4126
4127         switch (action) {
4128         case HDA_FIXUP_ACT_FREE:
4129                 input_unregister_device(spec->kb_dev);
4130                 spec->kb_dev = NULL;
4131         }
4132 }
4133
4134 /* Line2 = mic mute hotkey
4135  * GPIO2 = mic mute LED
4136  */
4137 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4138                                              const struct hda_fixup *fix, int action)
4139 {
4140         struct alc_spec *spec = codec->spec;
4141
4142         alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4143         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4144                 spec->init_amp = ALC_INIT_DEFAULT;
4145                 if (alc_register_micmute_input_device(codec) != 0)
4146                         return;
4147
4148                 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4149                                                     gpio2_mic_hotkey_event);
4150                 return;
4151         }
4152
4153         if (!spec->kb_dev)
4154                 return;
4155
4156         switch (action) {
4157         case HDA_FIXUP_ACT_FREE:
4158                 input_unregister_device(spec->kb_dev);
4159                 spec->kb_dev = NULL;
4160         }
4161 }
4162 #else /* INPUT */
4163 #define alc280_fixup_hp_gpio2_mic_hotkey        NULL
4164 #define alc233_fixup_lenovo_line2_mic_hotkey    NULL
4165 #endif /* INPUT */
4166
4167 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4168                                 const struct hda_fixup *fix, int action)
4169 {
4170         struct alc_spec *spec = codec->spec;
4171
4172         alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4173         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4174                 spec->cap_mute_led_nid = 0x18;
4175                 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
4176         }
4177 }
4178
4179 static struct coef_fw alc225_pre_hsmode[] = {
4180         UPDATE_COEF(0x4a, 1<<8, 0),
4181         UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4182         UPDATE_COEF(0x63, 3<<14, 3<<14),
4183         UPDATE_COEF(0x4a, 3<<4, 2<<4),
4184         UPDATE_COEF(0x4a, 3<<10, 3<<10),
4185         UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4186         UPDATE_COEF(0x4a, 3<<10, 0),
4187         {}
4188 };
4189
4190 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4191 {
4192         static struct coef_fw coef0255[] = {
4193                 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4194                 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4195                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4196                 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4197                 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4198                 {}
4199         };
4200         static struct coef_fw coef0256[] = {
4201                 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4202                 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4203                 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4204                 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4205                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4206                 {}
4207         };
4208         static struct coef_fw coef0233[] = {
4209                 WRITE_COEF(0x1b, 0x0c0b),
4210                 WRITE_COEF(0x45, 0xc429),
4211                 UPDATE_COEF(0x35, 0x4000, 0),
4212                 WRITE_COEF(0x06, 0x2104),
4213                 WRITE_COEF(0x1a, 0x0001),
4214                 WRITE_COEF(0x26, 0x0004),
4215                 WRITE_COEF(0x32, 0x42a3),
4216                 {}
4217         };
4218         static struct coef_fw coef0288[] = {
4219                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4220                 UPDATE_COEF(0x50, 0x2000, 0x2000),
4221                 UPDATE_COEF(0x56, 0x0006, 0x0006),
4222                 UPDATE_COEF(0x66, 0x0008, 0),
4223                 UPDATE_COEF(0x67, 0x2000, 0),
4224                 {}
4225         };
4226         static struct coef_fw coef0298[] = {
4227                 UPDATE_COEF(0x19, 0x1300, 0x0300),
4228                 {}
4229         };
4230         static struct coef_fw coef0292[] = {
4231                 WRITE_COEF(0x76, 0x000e),
4232                 WRITE_COEF(0x6c, 0x2400),
4233                 WRITE_COEF(0x18, 0x7308),
4234                 WRITE_COEF(0x6b, 0xc429),
4235                 {}
4236         };
4237         static struct coef_fw coef0293[] = {
4238                 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4239                 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4240                 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4241                 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4242                 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4243                 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4244                 {}
4245         };
4246         static struct coef_fw coef0668[] = {
4247                 WRITE_COEF(0x15, 0x0d40),
4248                 WRITE_COEF(0xb7, 0x802b),
4249                 {}
4250         };
4251         static struct coef_fw coef0225[] = {
4252                 UPDATE_COEF(0x63, 3<<14, 0),
4253                 {}
4254         };
4255         static struct coef_fw coef0274[] = {
4256                 UPDATE_COEF(0x4a, 0x0100, 0),
4257                 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4258                 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4259                 UPDATE_COEF(0x4a, 0x0010, 0),
4260                 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4261                 WRITE_COEF(0x45, 0x5289),
4262                 UPDATE_COEF(0x4a, 0x0c00, 0),
4263                 {}
4264         };
4265
4266         switch (codec->core.vendor_id) {
4267         case 0x10ec0255:
4268                 alc_process_coef_fw(codec, coef0255);
4269                 break;
4270         case 0x10ec0236:
4271         case 0x10ec0256:
4272                 alc_process_coef_fw(codec, coef0256);
4273                 break;
4274         case 0x10ec0234:
4275         case 0x10ec0274:
4276         case 0x10ec0294:
4277                 alc_process_coef_fw(codec, coef0274);
4278                 break;
4279         case 0x10ec0233:
4280         case 0x10ec0283:
4281                 alc_process_coef_fw(codec, coef0233);
4282                 break;
4283         case 0x10ec0286:
4284         case 0x10ec0288:
4285                 alc_process_coef_fw(codec, coef0288);
4286                 break;
4287         case 0x10ec0298:
4288                 alc_process_coef_fw(codec, coef0298);
4289                 alc_process_coef_fw(codec, coef0288);
4290                 break;
4291         case 0x10ec0292:
4292                 alc_process_coef_fw(codec, coef0292);
4293                 break;
4294         case 0x10ec0293:
4295                 alc_process_coef_fw(codec, coef0293);
4296                 break;
4297         case 0x10ec0668:
4298                 alc_process_coef_fw(codec, coef0668);
4299                 break;
4300         case 0x10ec0215:
4301         case 0x10ec0225:
4302         case 0x10ec0285:
4303         case 0x10ec0295:
4304         case 0x10ec0289:
4305         case 0x10ec0299:
4306                 alc_process_coef_fw(codec, alc225_pre_hsmode);
4307                 alc_process_coef_fw(codec, coef0225);
4308                 break;
4309         case 0x10ec0867:
4310                 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4311                 break;
4312         }
4313         codec_dbg(codec, "Headset jack set to unplugged mode.\n");
4314 }
4315
4316
4317 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4318                                     hda_nid_t mic_pin)
4319 {
4320         static struct coef_fw coef0255[] = {
4321                 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4322                 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4323                 {}
4324         };
4325         static struct coef_fw coef0256[] = {
4326                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
4327                 WRITE_COEFEX(0x57, 0x03, 0x09a3),
4328                 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4329                 {}
4330         };
4331         static struct coef_fw coef0233[] = {
4332                 UPDATE_COEF(0x35, 0, 1<<14),
4333                 WRITE_COEF(0x06, 0x2100),
4334                 WRITE_COEF(0x1a, 0x0021),
4335                 WRITE_COEF(0x26, 0x008c),
4336                 {}
4337         };
4338         static struct coef_fw coef0288[] = {
4339                 UPDATE_COEF(0x4f, 0x00c0, 0),
4340                 UPDATE_COEF(0x50, 0x2000, 0),
4341                 UPDATE_COEF(0x56, 0x0006, 0),
4342                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4343                 UPDATE_COEF(0x66, 0x0008, 0x0008),
4344                 UPDATE_COEF(0x67, 0x2000, 0x2000),
4345                 {}
4346         };
4347         static struct coef_fw coef0292[] = {
4348                 WRITE_COEF(0x19, 0xa208),
4349                 WRITE_COEF(0x2e, 0xacf0),
4350                 {}
4351         };
4352         static struct coef_fw coef0293[] = {
4353                 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4354                 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4355                 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4356                 {}
4357         };
4358         static struct coef_fw coef0688[] = {
4359                 WRITE_COEF(0xb7, 0x802b),
4360                 WRITE_COEF(0xb5, 0x1040),
4361                 UPDATE_COEF(0xc3, 0, 1<<12),
4362                 {}
4363         };
4364         static struct coef_fw coef0225[] = {
4365                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4366                 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4367                 UPDATE_COEF(0x63, 3<<14, 0),
4368                 {}
4369         };
4370         static struct coef_fw coef0274[] = {
4371                 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
4372                 UPDATE_COEF(0x4a, 0x0010, 0),
4373                 UPDATE_COEF(0x6b, 0xf000, 0),
4374                 {}
4375         };
4376
4377         switch (codec->core.vendor_id) {
4378         case 0x10ec0255:
4379                 alc_write_coef_idx(codec, 0x45, 0xc489);
4380                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4381                 alc_process_coef_fw(codec, coef0255);
4382                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4383                 break;
4384         case 0x10ec0236:
4385         case 0x10ec0256:
4386                 alc_write_coef_idx(codec, 0x45, 0xc489);
4387                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4388                 alc_process_coef_fw(codec, coef0256);
4389                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4390                 break;
4391         case 0x10ec0234:
4392         case 0x10ec0274:
4393         case 0x10ec0294:
4394                 alc_write_coef_idx(codec, 0x45, 0x4689);
4395                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4396                 alc_process_coef_fw(codec, coef0274);
4397                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4398                 break;
4399         case 0x10ec0233:
4400         case 0x10ec0283:
4401                 alc_write_coef_idx(codec, 0x45, 0xc429);
4402                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4403                 alc_process_coef_fw(codec, coef0233);
4404                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4405                 break;
4406         case 0x10ec0286:
4407         case 0x10ec0288:
4408         case 0x10ec0298:
4409                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4410                 alc_process_coef_fw(codec, coef0288);
4411                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4412                 break;
4413         case 0x10ec0292:
4414                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4415                 alc_process_coef_fw(codec, coef0292);
4416                 break;
4417         case 0x10ec0293:
4418                 /* Set to TRS mode */
4419                 alc_write_coef_idx(codec, 0x45, 0xc429);
4420                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4421                 alc_process_coef_fw(codec, coef0293);
4422                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4423                 break;
4424         case 0x10ec0867:
4425                 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
4426                 /* fallthru */
4427         case 0x10ec0221:
4428         case 0x10ec0662:
4429                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4430                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4431                 break;
4432         case 0x10ec0668:
4433                 alc_write_coef_idx(codec, 0x11, 0x0001);
4434                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4435                 alc_process_coef_fw(codec, coef0688);
4436                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4437                 break;
4438         case 0x10ec0215:
4439         case 0x10ec0225:
4440         case 0x10ec0285:
4441         case 0x10ec0295:
4442         case 0x10ec0289:
4443         case 0x10ec0299:
4444                 alc_process_coef_fw(codec, alc225_pre_hsmode);
4445                 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
4446                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4447                 alc_process_coef_fw(codec, coef0225);
4448                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4449                 break;
4450         }
4451         codec_dbg(codec, "Headset jack set to mic-in mode.\n");
4452 }
4453
4454 static void alc_headset_mode_default(struct hda_codec *codec)
4455 {
4456         static struct coef_fw coef0225[] = {
4457                 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
4458                 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
4459                 UPDATE_COEF(0x49, 3<<8, 0<<8),
4460                 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4461                 UPDATE_COEF(0x63, 3<<14, 0),
4462                 UPDATE_COEF(0x67, 0xf000, 0x3000),
4463                 {}
4464         };
4465         static struct coef_fw coef0255[] = {
4466                 WRITE_COEF(0x45, 0xc089),
4467                 WRITE_COEF(0x45, 0xc489),
4468                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4469                 WRITE_COEF(0x49, 0x0049),
4470                 {}
4471         };
4472         static struct coef_fw coef0256[] = {
4473                 WRITE_COEF(0x45, 0xc489),
4474                 WRITE_COEFEX(0x57, 0x03, 0x0da3),
4475                 WRITE_COEF(0x49, 0x0049),
4476                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4477                 WRITE_COEF(0x06, 0x6100),
4478                 {}
4479         };
4480         static struct coef_fw coef0233[] = {
4481                 WRITE_COEF(0x06, 0x2100),
4482                 WRITE_COEF(0x32, 0x4ea3),
4483                 {}
4484         };
4485         static struct coef_fw coef0288[] = {
4486                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
4487                 UPDATE_COEF(0x50, 0x2000, 0x2000),
4488                 UPDATE_COEF(0x56, 0x0006, 0x0006),
4489                 UPDATE_COEF(0x66, 0x0008, 0),
4490                 UPDATE_COEF(0x67, 0x2000, 0),
4491                 {}
4492         };
4493         static struct coef_fw coef0292[] = {
4494                 WRITE_COEF(0x76, 0x000e),
4495                 WRITE_COEF(0x6c, 0x2400),
4496                 WRITE_COEF(0x6b, 0xc429),
4497                 WRITE_COEF(0x18, 0x7308),
4498                 {}
4499         };
4500         static struct coef_fw coef0293[] = {
4501                 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4502                 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
4503                 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4504                 {}
4505         };
4506         static struct coef_fw coef0688[] = {
4507                 WRITE_COEF(0x11, 0x0041),
4508                 WRITE_COEF(0x15, 0x0d40),
4509                 WRITE_COEF(0xb7, 0x802b),
4510                 {}
4511         };
4512         static struct coef_fw coef0274[] = {
4513                 WRITE_COEF(0x45, 0x4289),
4514                 UPDATE_COEF(0x4a, 0x0010, 0x0010),
4515                 UPDATE_COEF(0x6b, 0x0f00, 0),
4516                 UPDATE_COEF(0x49, 0x0300, 0x0300),
4517                 {}
4518         };
4519
4520         switch (codec->core.vendor_id) {
4521         case 0x10ec0215:
4522         case 0x10ec0225:
4523         case 0x10ec0285:
4524         case 0x10ec0295:
4525         case 0x10ec0289:
4526         case 0x10ec0299:
4527                 alc_process_coef_fw(codec, alc225_pre_hsmode);
4528                 alc_process_coef_fw(codec, coef0225);
4529                 break;
4530         case 0x10ec0255:
4531                 alc_process_coef_fw(codec, coef0255);
4532                 break;
4533         case 0x10ec0236:
4534         case 0x10ec0256:
4535                 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4536                 alc_write_coef_idx(codec, 0x45, 0xc089);
4537                 msleep(50);
4538                 alc_process_coef_fw(codec, coef0256);
4539                 break;
4540         case 0x10ec0234:
4541         case 0x10ec0274:
4542         case 0x10ec0294:
4543                 alc_process_coef_fw(codec, coef0274);
4544                 break;
4545         case 0x10ec0233:
4546         case 0x10ec0283:
4547                 alc_process_coef_fw(codec, coef0233);
4548                 break;
4549         case 0x10ec0286:
4550         case 0x10ec0288:
4551         case 0x10ec0298:
4552                 alc_process_coef_fw(codec, coef0288);
4553                 break;
4554         case 0x10ec0292:
4555                 alc_process_coef_fw(codec, coef0292);
4556                 break;
4557         case 0x10ec0293:
4558                 alc_process_coef_fw(codec, coef0293);
4559                 break;
4560         case 0x10ec0668:
4561                 alc_process_coef_fw(codec, coef0688);
4562                 break;
4563         case 0x10ec0867:
4564                 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4565                 break;
4566         }
4567         codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
4568 }
4569
4570 /* Iphone type */
4571 static void alc_headset_mode_ctia(struct hda_codec *codec)
4572 {
4573         int val;
4574
4575         static struct coef_fw coef0255[] = {
4576                 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4577                 WRITE_COEF(0x1b, 0x0c2b),
4578                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4579                 {}
4580         };
4581         static struct coef_fw coef0256[] = {
4582                 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4583                 WRITE_COEF(0x1b, 0x0e6b),
4584                 {}
4585         };
4586         static struct coef_fw coef0233[] = {
4587                 WRITE_COEF(0x45, 0xd429),
4588                 WRITE_COEF(0x1b, 0x0c2b),
4589                 WRITE_COEF(0x32, 0x4ea3),
4590                 {}
4591         };
4592         static struct coef_fw coef0288[] = {
4593                 UPDATE_COEF(0x50, 0x2000, 0x2000),
4594                 UPDATE_COEF(0x56, 0x0006, 0x0006),
4595                 UPDATE_COEF(0x66, 0x0008, 0),
4596                 UPDATE_COEF(0x67, 0x2000, 0),
4597                 {}
4598         };
4599         static struct coef_fw coef0292[] = {
4600                 WRITE_COEF(0x6b, 0xd429),
4601                 WRITE_COEF(0x76, 0x0008),
4602                 WRITE_COEF(0x18, 0x7388),
4603                 {}
4604         };
4605         static struct coef_fw coef0293[] = {
4606                 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
4607                 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4608                 {}
4609         };
4610         static struct coef_fw coef0688[] = {
4611                 WRITE_COEF(0x11, 0x0001),
4612                 WRITE_COEF(0x15, 0x0d60),
4613                 WRITE_COEF(0xc3, 0x0000),
4614                 {}
4615         };
4616         static struct coef_fw coef0225_1[] = {
4617                 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4618                 UPDATE_COEF(0x63, 3<<14, 2<<14),
4619                 {}
4620         };
4621         static struct coef_fw coef0225_2[] = {
4622                 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4623                 UPDATE_COEF(0x63, 3<<14, 1<<14),
4624                 {}
4625         };
4626
4627         switch (codec->core.vendor_id) {
4628         case 0x10ec0255:
4629                 alc_process_coef_fw(codec, coef0255);
4630                 break;
4631         case 0x10ec0236:
4632         case 0x10ec0256:
4633                 alc_process_coef_fw(codec, coef0256);
4634                 break;
4635         case 0x10ec0234:
4636         case 0x10ec0274:
4637         case 0x10ec0294:
4638                 alc_write_coef_idx(codec, 0x45, 0xd689);
4639                 break;
4640         case 0x10ec0233:
4641         case 0x10ec0283:
4642                 alc_process_coef_fw(codec, coef0233);
4643                 break;
4644         case 0x10ec0298:
4645                 val = alc_read_coef_idx(codec, 0x50);
4646                 if (val & (1 << 12)) {
4647                         alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4648                         alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4649                         msleep(300);
4650                 } else {
4651                         alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4652                         alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4653                         msleep(300);
4654                 }
4655                 break;
4656         case 0x10ec0286:
4657         case 0x10ec0288:
4658                 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4659                 msleep(300);
4660                 alc_process_coef_fw(codec, coef0288);
4661                 break;
4662         case 0x10ec0292:
4663                 alc_process_coef_fw(codec, coef0292);
4664                 break;
4665         case 0x10ec0293:
4666                 alc_process_coef_fw(codec, coef0293);
4667                 break;
4668         case 0x10ec0668:
4669                 alc_process_coef_fw(codec, coef0688);
4670                 break;
4671         case 0x10ec0215:
4672         case 0x10ec0225:
4673         case 0x10ec0285:
4674         case 0x10ec0295:
4675         case 0x10ec0289:
4676         case 0x10ec0299:
4677                 val = alc_read_coef_idx(codec, 0x45);
4678                 if (val & (1 << 9))
4679                         alc_process_coef_fw(codec, coef0225_2);
4680                 else
4681                         alc_process_coef_fw(codec, coef0225_1);
4682                 break;
4683         case 0x10ec0867:
4684                 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4685                 break;
4686         }
4687         codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
4688 }
4689
4690 /* Nokia type */
4691 static void alc_headset_mode_omtp(struct hda_codec *codec)
4692 {
4693         static struct coef_fw coef0255[] = {
4694                 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4695                 WRITE_COEF(0x1b, 0x0c2b),
4696                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4697                 {}
4698         };
4699         static struct coef_fw coef0256[] = {
4700                 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4701                 WRITE_COEF(0x1b, 0x0e6b),
4702                 {}
4703         };
4704         static struct coef_fw coef0233[] = {
4705                 WRITE_COEF(0x45, 0xe429),
4706                 WRITE_COEF(0x1b, 0x0c2b),
4707                 WRITE_COEF(0x32, 0x4ea3),
4708                 {}
4709         };
4710         static struct coef_fw coef0288[] = {
4711                 UPDATE_COEF(0x50, 0x2000, 0x2000),
4712                 UPDATE_COEF(0x56, 0x0006, 0x0006),
4713                 UPDATE_COEF(0x66, 0x0008, 0),
4714                 UPDATE_COEF(0x67, 0x2000, 0),
4715                 {}
4716         };
4717         static struct coef_fw coef0292[] = {
4718                 WRITE_COEF(0x6b, 0xe429),
4719                 WRITE_COEF(0x76, 0x0008),
4720                 WRITE_COEF(0x18, 0x7388),
4721                 {}
4722         };
4723         static struct coef_fw coef0293[] = {
4724                 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4725                 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4726                 {}
4727         };
4728         static struct coef_fw coef0688[] = {
4729                 WRITE_COEF(0x11, 0x0001),
4730                 WRITE_COEF(0x15, 0x0d50),
4731                 WRITE_COEF(0xc3, 0x0000),
4732                 {}
4733         };
4734         static struct coef_fw coef0225[] = {
4735                 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
4736                 UPDATE_COEF(0x63, 3<<14, 2<<14),
4737                 {}
4738         };
4739
4740         switch (codec->core.vendor_id) {
4741         case 0x10ec0255:
4742                 alc_process_coef_fw(codec, coef0255);
4743                 break;
4744         case 0x10ec0236:
4745         case 0x10ec0256:
4746                 alc_process_coef_fw(codec, coef0256);
4747                 break;
4748         case 0x10ec0234:
4749         case 0x10ec0274:
4750         case 0x10ec0294:
4751                 alc_write_coef_idx(codec, 0x45, 0xe689);
4752                 break;
4753         case 0x10ec0233:
4754         case 0x10ec0283:
4755                 alc_process_coef_fw(codec, coef0233);
4756                 break;
4757         case 0x10ec0298:
4758                 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
4759                 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4760                 msleep(300);
4761                 break;
4762         case 0x10ec0286:
4763         case 0x10ec0288:
4764                 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4765                 msleep(300);
4766                 alc_process_coef_fw(codec, coef0288);
4767                 break;
4768         case 0x10ec0292:
4769                 alc_process_coef_fw(codec, coef0292);
4770                 break;
4771         case 0x10ec0293:
4772                 alc_process_coef_fw(codec, coef0293);
4773                 break;
4774         case 0x10ec0668:
4775                 alc_process_coef_fw(codec, coef0688);
4776                 break;
4777         case 0x10ec0215:
4778         case 0x10ec0225:
4779         case 0x10ec0285:
4780         case 0x10ec0295:
4781         case 0x10ec0289:
4782         case 0x10ec0299:
4783                 alc_process_coef_fw(codec, coef0225);
4784                 break;
4785         }
4786         codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
4787 }
4788
4789 static void alc_determine_headset_type(struct hda_codec *codec)
4790 {
4791         int val;
4792         bool is_ctia = false;
4793         struct alc_spec *spec = codec->spec;
4794         static struct coef_fw coef0255[] = {
4795                 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4796                 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4797  conteol) */
4798                 {}
4799         };
4800         static struct coef_fw coef0288[] = {
4801                 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4802                 {}
4803         };
4804         static struct coef_fw coef0298[] = {
4805                 UPDATE_COEF(0x50, 0x2000, 0x2000),
4806                 UPDATE_COEF(0x56, 0x0006, 0x0006),
4807                 UPDATE_COEF(0x66, 0x0008, 0),
4808                 UPDATE_COEF(0x67, 0x2000, 0),
4809                 UPDATE_COEF(0x19, 0x1300, 0x1300),
4810                 {}
4811         };
4812         static struct coef_fw coef0293[] = {
4813                 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4814                 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4815                 {}
4816         };
4817         static struct coef_fw coef0688[] = {
4818                 WRITE_COEF(0x11, 0x0001),
4819                 WRITE_COEF(0xb7, 0x802b),
4820                 WRITE_COEF(0x15, 0x0d60),
4821                 WRITE_COEF(0xc3, 0x0c00),
4822                 {}
4823         };
4824         static struct coef_fw coef0274[] = {
4825                 UPDATE_COEF(0x4a, 0x0010, 0),
4826                 UPDATE_COEF(0x4a, 0x8000, 0),
4827                 WRITE_COEF(0x45, 0xd289),
4828                 UPDATE_COEF(0x49, 0x0300, 0x0300),
4829                 {}
4830         };
4831
4832         switch (codec->core.vendor_id) {
4833         case 0x10ec0255:
4834                 alc_process_coef_fw(codec, coef0255);
4835                 msleep(300);
4836                 val = alc_read_coef_idx(codec, 0x46);
4837                 is_ctia = (val & 0x0070) == 0x0070;
4838                 break;
4839         case 0x10ec0236:
4840         case 0x10ec0256:
4841                 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4842                 alc_write_coef_idx(codec, 0x06, 0x6104);
4843                 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
4844
4845                 snd_hda_codec_write(codec, 0x21, 0,
4846                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4847                 msleep(80);
4848                 snd_hda_codec_write(codec, 0x21, 0,
4849                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4850
4851                 alc_process_coef_fw(codec, coef0255);
4852                 msleep(300);
4853                 val = alc_read_coef_idx(codec, 0x46);
4854                 is_ctia = (val & 0x0070) == 0x0070;
4855
4856                 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
4857                 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4858
4859                 snd_hda_codec_write(codec, 0x21, 0,
4860                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4861                 msleep(80);
4862                 snd_hda_codec_write(codec, 0x21, 0,
4863                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4864                 break;
4865         case 0x10ec0234:
4866         case 0x10ec0274:
4867         case 0x10ec0294:
4868                 alc_process_coef_fw(codec, coef0274);
4869                 msleep(80);
4870                 val = alc_read_coef_idx(codec, 0x46);
4871                 is_ctia = (val & 0x00f0) == 0x00f0;
4872                 break;
4873         case 0x10ec0233:
4874         case 0x10ec0283:
4875                 alc_write_coef_idx(codec, 0x45, 0xd029);
4876                 msleep(300);
4877                 val = alc_read_coef_idx(codec, 0x46);
4878                 is_ctia = (val & 0x0070) == 0x0070;
4879                 break;
4880         case 0x10ec0298:
4881                 snd_hda_codec_write(codec, 0x21, 0,
4882                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4883                 msleep(100);
4884                 snd_hda_codec_write(codec, 0x21, 0,
4885                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4886                 msleep(200);
4887
4888                 val = alc_read_coef_idx(codec, 0x50);
4889                 if (val & (1 << 12)) {
4890                         alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4891                         alc_process_coef_fw(codec, coef0288);
4892                         msleep(350);
4893                         val = alc_read_coef_idx(codec, 0x50);
4894                         is_ctia = (val & 0x0070) == 0x0070;
4895                 } else {
4896                         alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4897                         alc_process_coef_fw(codec, coef0288);
4898                         msleep(350);
4899                         val = alc_read_coef_idx(codec, 0x50);
4900                         is_ctia = (val & 0x0070) == 0x0070;
4901                 }
4902                 alc_process_coef_fw(codec, coef0298);
4903                 snd_hda_codec_write(codec, 0x21, 0,
4904                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4905                 msleep(75);
4906                 snd_hda_codec_write(codec, 0x21, 0,
4907                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4908                 break;
4909         case 0x10ec0286:
4910         case 0x10ec0288:
4911                 alc_process_coef_fw(codec, coef0288);
4912                 msleep(350);
4913                 val = alc_read_coef_idx(codec, 0x50);
4914                 is_ctia = (val & 0x0070) == 0x0070;
4915                 break;
4916         case 0x10ec0292:
4917                 alc_write_coef_idx(codec, 0x6b, 0xd429);
4918                 msleep(300);
4919                 val = alc_read_coef_idx(codec, 0x6c);
4920                 is_ctia = (val & 0x001c) == 0x001c;
4921                 break;
4922         case 0x10ec0293:
4923                 alc_process_coef_fw(codec, coef0293);
4924                 msleep(300);
4925                 val = alc_read_coef_idx(codec, 0x46);
4926                 is_ctia = (val & 0x0070) == 0x0070;
4927                 break;
4928         case 0x10ec0668:
4929                 alc_process_coef_fw(codec, coef0688);
4930                 msleep(300);
4931                 val = alc_read_coef_idx(codec, 0xbe);
4932                 is_ctia = (val & 0x1c02) == 0x1c02;
4933                 break;
4934         case 0x10ec0215:
4935         case 0x10ec0225:
4936         case 0x10ec0285:
4937         case 0x10ec0295:
4938         case 0x10ec0289:
4939         case 0x10ec0299:
4940                 snd_hda_codec_write(codec, 0x21, 0,
4941                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4942                 msleep(80);
4943                 snd_hda_codec_write(codec, 0x21, 0,
4944                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4945
4946                 alc_process_coef_fw(codec, alc225_pre_hsmode);
4947                 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
4948                 val = alc_read_coef_idx(codec, 0x45);
4949                 if (val & (1 << 9)) {
4950                         alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4951                         alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
4952                         msleep(800);
4953                         val = alc_read_coef_idx(codec, 0x46);
4954                         is_ctia = (val & 0x00f0) == 0x00f0;
4955                 } else {
4956                         alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4957                         alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
4958                         msleep(800);
4959                         val = alc_read_coef_idx(codec, 0x46);
4960                         is_ctia = (val & 0x00f0) == 0x00f0;
4961                 }
4962                 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
4963                 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
4964                 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
4965
4966                 snd_hda_codec_write(codec, 0x21, 0,
4967                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4968                 msleep(80);
4969                 snd_hda_codec_write(codec, 0x21, 0,
4970                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4971                 break;
4972         case 0x10ec0867:
4973                 is_ctia = true;
4974                 break;
4975         }
4976
4977         codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
4978                     is_ctia ? "yes" : "no");
4979         spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
4980 }
4981
4982 static void alc_update_headset_mode(struct hda_codec *codec)
4983 {
4984         struct alc_spec *spec = codec->spec;
4985
4986         hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
4987         hda_nid_t hp_pin = alc_get_hp_pin(spec);
4988
4989         int new_headset_mode;
4990
4991         if (!snd_hda_jack_detect(codec, hp_pin))
4992                 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
4993         else if (mux_pin == spec->headset_mic_pin)
4994                 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
4995         else if (mux_pin == spec->headphone_mic_pin)
4996                 new_headset_mode = ALC_HEADSET_MODE_MIC;
4997         else
4998                 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
4999
5000         if (new_headset_mode == spec->current_headset_mode) {
5001                 snd_hda_gen_update_outputs(codec);
5002                 return;
5003         }
5004
5005         switch (new_headset_mode) {
5006         case ALC_HEADSET_MODE_UNPLUGGED:
5007                 alc_headset_mode_unplugged(codec);
5008                 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5009                 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5010                 spec->gen.hp_jack_present = false;
5011                 break;
5012         case ALC_HEADSET_MODE_HEADSET:
5013                 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5014                         alc_determine_headset_type(codec);
5015                 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5016                         alc_headset_mode_ctia(codec);
5017                 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5018                         alc_headset_mode_omtp(codec);
5019                 spec->gen.hp_jack_present = true;
5020                 break;
5021         case ALC_HEADSET_MODE_MIC:
5022                 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5023                 spec->gen.hp_jack_present = false;
5024                 break;
5025         case ALC_HEADSET_MODE_HEADPHONE:
5026                 alc_headset_mode_default(codec);
5027                 spec->gen.hp_jack_present = true;
5028                 break;
5029         }
5030         if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5031                 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5032                                           AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5033                 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5034                         snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5035                                                   PIN_VREFHIZ);
5036         }
5037         spec->current_headset_mode = new_headset_mode;
5038
5039         snd_hda_gen_update_outputs(codec);
5040 }
5041
5042 static void alc_update_headset_mode_hook(struct hda_codec *codec,
5043                                          struct snd_kcontrol *kcontrol,
5044                                          struct snd_ctl_elem_value *ucontrol)
5045 {
5046         alc_update_headset_mode(codec);
5047 }
5048
5049 static void alc_update_headset_jack_cb(struct hda_codec *codec,
5050                                        struct hda_jack_callback *jack)
5051 {
5052         snd_hda_gen_hp_automute(codec, jack);
5053 }
5054
5055 static void alc_probe_headset_mode(struct hda_codec *codec)
5056 {
5057         int i;
5058         struct alc_spec *spec = codec->spec;
5059         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5060
5061         /* Find mic pins */
5062         for (i = 0; i < cfg->num_inputs; i++) {
5063                 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5064                         spec->headset_mic_pin = cfg->inputs[i].pin;
5065                 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5066                         spec->headphone_mic_pin = cfg->inputs[i].pin;
5067         }
5068
5069         WARN_ON(spec->gen.cap_sync_hook);
5070         spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5071         spec->gen.automute_hook = alc_update_headset_mode;
5072         spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5073 }
5074
5075 static void alc_fixup_headset_mode(struct hda_codec *codec,
5076                                 const struct hda_fixup *fix, int action)
5077 {
5078         struct alc_spec *spec = codec->spec;
5079
5080         switch (action) {
5081         case HDA_FIXUP_ACT_PRE_PROBE:
5082                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5083                 break;
5084         case HDA_FIXUP_ACT_PROBE:
5085                 alc_probe_headset_mode(codec);
5086                 break;
5087         case HDA_FIXUP_ACT_INIT:
5088                 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5089                         spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5090                         spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5091                 }
5092                 alc_update_headset_mode(codec);
5093                 break;
5094         }
5095 }
5096
5097 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5098                                 const struct hda_fixup *fix, int action)
5099 {
5100         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5101                 struct alc_spec *spec = codec->spec;
5102                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5103         }
5104         else
5105                 alc_fixup_headset_mode(codec, fix, action);
5106 }
5107
5108 static void alc255_set_default_jack_type(struct hda_codec *codec)
5109 {
5110         /* Set to iphone type */
5111         static struct coef_fw alc255fw[] = {
5112                 WRITE_COEF(0x1b, 0x880b),
5113                 WRITE_COEF(0x45, 0xd089),
5114                 WRITE_COEF(0x1b, 0x080b),
5115                 WRITE_COEF(0x46, 0x0004),
5116                 WRITE_COEF(0x1b, 0x0c0b),
5117                 {}
5118         };
5119         static struct coef_fw alc256fw[] = {
5120                 WRITE_COEF(0x1b, 0x884b),
5121                 WRITE_COEF(0x45, 0xd089),
5122                 WRITE_COEF(0x1b, 0x084b),
5123                 WRITE_COEF(0x46, 0x0004),
5124                 WRITE_COEF(0x1b, 0x0c4b),
5125                 {}
5126         };
5127         switch (codec->core.vendor_id) {
5128         case 0x10ec0255:
5129                 alc_process_coef_fw(codec, alc255fw);
5130                 break;
5131         case 0x10ec0236:
5132         case 0x10ec0256:
5133                 alc_process_coef_fw(codec, alc256fw);
5134                 break;
5135         }
5136         msleep(30);
5137 }
5138
5139 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5140                                 const struct hda_fixup *fix, int action)
5141 {
5142         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5143                 alc255_set_default_jack_type(codec);
5144         }
5145         alc_fixup_headset_mode(codec, fix, action);
5146 }
5147
5148 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5149                                 const struct hda_fixup *fix, int action)
5150 {
5151         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5152                 struct alc_spec *spec = codec->spec;
5153                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5154                 alc255_set_default_jack_type(codec);
5155         } 
5156         else
5157                 alc_fixup_headset_mode(codec, fix, action);
5158 }
5159
5160 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5161                                        struct hda_jack_callback *jack)
5162 {
5163         struct alc_spec *spec = codec->spec;
5164
5165         alc_update_headset_jack_cb(codec, jack);
5166         /* Headset Mic enable or disable, only for Dell Dino */
5167         alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5168 }
5169
5170 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5171                                 const struct hda_fixup *fix, int action)
5172 {
5173         alc_fixup_headset_mode(codec, fix, action);
5174         if (action == HDA_FIXUP_ACT_PROBE) {
5175                 struct alc_spec *spec = codec->spec;
5176                 /* toggled via hp_automute_hook */
5177                 spec->gpio_mask |= 0x40;
5178                 spec->gpio_dir |= 0x40;
5179                 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5180         }
5181 }
5182
5183 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5184                                         const struct hda_fixup *fix, int action)
5185 {
5186         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5187                 struct alc_spec *spec = codec->spec;
5188                 spec->gen.auto_mute_via_amp = 1;
5189         }
5190 }
5191
5192 static void alc_fixup_no_shutup(struct hda_codec *codec,
5193                                 const struct hda_fixup *fix, int action)
5194 {
5195         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5196                 struct alc_spec *spec = codec->spec;
5197                 spec->no_shutup_pins = 1;
5198         }
5199 }
5200
5201 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5202                                     const struct hda_fixup *fix, int action)
5203 {
5204         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5205                 struct alc_spec *spec = codec->spec;
5206                 /* Disable AA-loopback as it causes white noise */
5207                 spec->gen.mixer_nid = 0;
5208         }
5209 }
5210
5211 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5212 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5213                                   const struct hda_fixup *fix, int action)
5214 {
5215         static const struct hda_pintbl pincfgs[] = {
5216                 { 0x16, 0x21211010 }, /* dock headphone */
5217                 { 0x19, 0x21a11010 }, /* dock mic */
5218                 { }
5219         };
5220         struct alc_spec *spec = codec->spec;
5221
5222         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5223                 spec->reboot_notify = snd_hda_gen_reboot_notify; /* reduce noise */
5224                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5225                 codec->power_save_node = 0; /* avoid click noises */
5226                 snd_hda_apply_pincfgs(codec, pincfgs);
5227         }
5228 }
5229
5230 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5231                                   const struct hda_fixup *fix, int action)
5232 {
5233         static const struct hda_pintbl pincfgs[] = {
5234                 { 0x17, 0x21211010 }, /* dock headphone */
5235                 { 0x19, 0x21a11010 }, /* dock mic */
5236                 { }
5237         };
5238         /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
5239          * the speaker output becomes too low by some reason on Thinkpads with
5240          * ALC298 codec
5241          */
5242         static hda_nid_t preferred_pairs[] = {
5243                 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
5244                 0
5245         };
5246         struct alc_spec *spec = codec->spec;
5247
5248         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5249                 spec->gen.preferred_dacs = preferred_pairs;
5250                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5251                 snd_hda_apply_pincfgs(codec, pincfgs);
5252         } else if (action == HDA_FIXUP_ACT_INIT) {
5253                 /* Enable DOCK device */
5254                 snd_hda_codec_write(codec, 0x17, 0,
5255                             AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5256                 /* Enable DOCK device */
5257                 snd_hda_codec_write(codec, 0x19, 0,
5258                             AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5259         }
5260 }
5261
5262 static void alc_shutup_dell_xps13(struct hda_codec *codec)
5263 {
5264         struct alc_spec *spec = codec->spec;
5265         int hp_pin = alc_get_hp_pin(spec);
5266
5267         /* Prevent pop noises when headphones are plugged in */
5268         snd_hda_codec_write(codec, hp_pin, 0,
5269                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5270         msleep(20);
5271 }
5272
5273 static void alc_fixup_dell_xps13(struct hda_codec *codec,
5274                                 const struct hda_fixup *fix, int action)
5275 {
5276         struct alc_spec *spec = codec->spec;
5277         struct hda_input_mux *imux = &spec->gen.input_mux;
5278         int i;
5279
5280         switch (action) {
5281         case HDA_FIXUP_ACT_PRE_PROBE:
5282                 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5283                  * it causes a click noise at start up
5284                  */
5285                 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5286                 spec->shutup = alc_shutup_dell_xps13;
5287                 break;
5288         case HDA_FIXUP_ACT_PROBE:
5289                 /* Make the internal mic the default input source. */
5290                 for (i = 0; i < imux->num_items; i++) {
5291                         if (spec->gen.imux_pins[i] == 0x12) {
5292                                 spec->gen.cur_mux[0] = i;
5293                                 break;
5294                         }
5295                 }
5296                 break;
5297         }
5298 }
5299
5300 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5301                                 const struct hda_fixup *fix, int action)
5302 {
5303         struct alc_spec *spec = codec->spec;
5304
5305         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5306                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5307                 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
5308
5309                 /* Disable boost for mic-in permanently. (This code is only called
5310                    from quirks that guarantee that the headphone is at NID 0x1b.) */
5311                 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
5312                 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
5313         } else
5314                 alc_fixup_headset_mode(codec, fix, action);
5315 }
5316
5317 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
5318                                 const struct hda_fixup *fix, int action)
5319 {
5320         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5321                 alc_write_coef_idx(codec, 0xc4, 0x8000);
5322                 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
5323                 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
5324         }
5325         alc_fixup_headset_mode(codec, fix, action);
5326 }
5327
5328 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
5329 static int find_ext_mic_pin(struct hda_codec *codec)
5330 {
5331         struct alc_spec *spec = codec->spec;
5332         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5333         hda_nid_t nid;
5334         unsigned int defcfg;
5335         int i;
5336
5337         for (i = 0; i < cfg->num_inputs; i++) {
5338                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5339                         continue;
5340                 nid = cfg->inputs[i].pin;
5341                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5342                 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
5343                         continue;
5344                 return nid;
5345         }
5346
5347         return 0;
5348 }
5349
5350 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
5351                                     const struct hda_fixup *fix,
5352                                     int action)
5353 {
5354         struct alc_spec *spec = codec->spec;
5355
5356         if (action == HDA_FIXUP_ACT_PROBE) {
5357                 int mic_pin = find_ext_mic_pin(codec);
5358                 int hp_pin = alc_get_hp_pin(spec);
5359
5360                 if (snd_BUG_ON(!mic_pin || !hp_pin))
5361                         return;
5362                 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
5363         }
5364 }
5365
5366 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
5367                                              const struct hda_fixup *fix,
5368                                              int action)
5369 {
5370         struct alc_spec *spec = codec->spec;
5371         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5372         int i;
5373
5374         /* The mic boosts on level 2 and 3 are too noisy
5375            on the internal mic input.
5376            Therefore limit the boost to 0 or 1. */
5377
5378         if (action != HDA_FIXUP_ACT_PROBE)
5379                 return;
5380
5381         for (i = 0; i < cfg->num_inputs; i++) {
5382                 hda_nid_t nid = cfg->inputs[i].pin;
5383                 unsigned int defcfg;
5384                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5385                         continue;
5386                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5387                 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
5388                         continue;
5389
5390                 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
5391                                           (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
5392                                           (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5393                                           (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
5394                                           (0 << AC_AMPCAP_MUTE_SHIFT));
5395         }
5396 }
5397
5398 static void alc283_hp_automute_hook(struct hda_codec *codec,
5399                                     struct hda_jack_callback *jack)
5400 {
5401         struct alc_spec *spec = codec->spec;
5402         int vref;
5403
5404         msleep(200);
5405         snd_hda_gen_hp_automute(codec, jack);
5406
5407         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
5408
5409         msleep(600);
5410         snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5411                             vref);
5412 }
5413
5414 static void alc283_fixup_chromebook(struct hda_codec *codec,
5415                                     const struct hda_fixup *fix, int action)
5416 {
5417         struct alc_spec *spec = codec->spec;
5418
5419         switch (action) {
5420         case HDA_FIXUP_ACT_PRE_PROBE:
5421                 snd_hda_override_wcaps(codec, 0x03, 0);
5422                 /* Disable AA-loopback as it causes white noise */
5423                 spec->gen.mixer_nid = 0;
5424                 break;
5425         case HDA_FIXUP_ACT_INIT:
5426                 /* MIC2-VREF control */
5427                 /* Set to manual mode */
5428                 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
5429                 /* Enable Line1 input control by verb */
5430                 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
5431                 break;
5432         }
5433 }
5434
5435 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
5436                                     const struct hda_fixup *fix, int action)
5437 {
5438         struct alc_spec *spec = codec->spec;
5439
5440         switch (action) {
5441         case HDA_FIXUP_ACT_PRE_PROBE:
5442                 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
5443                 break;
5444         case HDA_FIXUP_ACT_INIT:
5445                 /* MIC2-VREF control */
5446                 /* Set to manual mode */
5447                 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
5448                 break;
5449         }
5450 }
5451
5452 /* mute tablet speaker pin (0x14) via dock plugging in addition */
5453 static void asus_tx300_automute(struct hda_codec *codec)
5454 {
5455         struct alc_spec *spec = codec->spec;
5456         snd_hda_gen_update_outputs(codec);
5457         if (snd_hda_jack_detect(codec, 0x1b))
5458                 spec->gen.mute_bits |= (1ULL << 0x14);
5459 }
5460
5461 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
5462                                     const struct hda_fixup *fix, int action)
5463 {
5464         struct alc_spec *spec = codec->spec;
5465         static const struct hda_pintbl dock_pins[] = {
5466                 { 0x1b, 0x21114000 }, /* dock speaker pin */
5467                 {}
5468         };
5469
5470         switch (action) {
5471         case HDA_FIXUP_ACT_PRE_PROBE:
5472                 spec->init_amp = ALC_INIT_DEFAULT;
5473                 /* TX300 needs to set up GPIO2 for the speaker amp */
5474                 alc_setup_gpio(codec, 0x04);
5475                 snd_hda_apply_pincfgs(codec, dock_pins);
5476                 spec->gen.auto_mute_via_amp = 1;
5477                 spec->gen.automute_hook = asus_tx300_automute;
5478                 snd_hda_jack_detect_enable_callback(codec, 0x1b,
5479                                                     snd_hda_gen_hp_automute);
5480                 break;
5481         case HDA_FIXUP_ACT_PROBE:
5482                 spec->init_amp = ALC_INIT_DEFAULT;
5483                 break;
5484         case HDA_FIXUP_ACT_BUILD:
5485                 /* this is a bit tricky; give more sane names for the main
5486                  * (tablet) speaker and the dock speaker, respectively
5487                  */
5488                 rename_ctl(codec, "Speaker Playback Switch",
5489                            "Dock Speaker Playback Switch");
5490                 rename_ctl(codec, "Bass Speaker Playback Switch",
5491                            "Speaker Playback Switch");
5492                 break;
5493         }
5494 }
5495
5496 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
5497                                        const struct hda_fixup *fix, int action)
5498 {
5499         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5500                 /* DAC node 0x03 is giving mono output. We therefore want to
5501                    make sure 0x14 (front speaker) and 0x15 (headphones) use the
5502                    stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
5503                 hda_nid_t conn1[2] = { 0x0c };
5504                 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5505                 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
5506         }
5507 }
5508
5509 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
5510                                         const struct hda_fixup *fix, int action)
5511 {
5512         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5513                 /* The speaker is routed to the Node 0x06 by a mistake, as a result
5514                    we can't adjust the speaker's volume since this node does not has
5515                    Amp-out capability. we change the speaker's route to:
5516                    Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
5517                    Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
5518                    speaker's volume now. */
5519
5520                 hda_nid_t conn1[1] = { 0x0c };
5521                 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
5522         }
5523 }
5524
5525 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
5526 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
5527                                       const struct hda_fixup *fix, int action)
5528 {
5529         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5530                 hda_nid_t conn[2] = { 0x02, 0x03 };
5531                 snd_hda_override_conn_list(codec, 0x17, 2, conn);
5532         }
5533 }
5534
5535 /* Hook to update amp GPIO4 for automute */
5536 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
5537                                           struct hda_jack_callback *jack)
5538 {
5539         struct alc_spec *spec = codec->spec;
5540
5541         snd_hda_gen_hp_automute(codec, jack);
5542         /* mute_led_polarity is set to 0, so we pass inverted value here */
5543         alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
5544 }
5545
5546 /* Manage GPIOs for HP EliteBook Folio 9480m.
5547  *
5548  * GPIO4 is the headphone amplifier power control
5549  * GPIO3 is the audio output mute indicator LED
5550  */
5551
5552 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
5553                                   const struct hda_fixup *fix,
5554                                   int action)
5555 {
5556         struct alc_spec *spec = codec->spec;
5557
5558         alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
5559         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5560                 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
5561                 spec->gpio_mask |= 0x10;
5562                 spec->gpio_dir |= 0x10;
5563                 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
5564         }
5565 }
5566
5567 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
5568                                    const struct hda_fixup *fix,
5569                                    int action)
5570 {
5571         struct alc_spec *spec = codec->spec;
5572
5573         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5574                 spec->gpio_mask |= 0x04;
5575                 spec->gpio_dir |= 0x04;
5576                 /* set data bit low */
5577         }
5578 }
5579
5580 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
5581                                          const struct hda_fixup *fix,
5582                                          int action)
5583 {
5584         alc_fixup_dual_codecs(codec, fix, action);
5585         switch (action) {
5586         case HDA_FIXUP_ACT_PRE_PROBE:
5587                 /* override card longname to provide a unique UCM profile */
5588                 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
5589                 break;
5590         case HDA_FIXUP_ACT_BUILD:
5591                 /* rename Capture controls depending on the codec */
5592                 rename_ctl(codec, "Capture Volume",
5593                            codec->addr == 0 ?
5594                            "Rear-Panel Capture Volume" :
5595                            "Front-Panel Capture Volume");
5596                 rename_ctl(codec, "Capture Switch",
5597                            codec->addr == 0 ?
5598                            "Rear-Panel Capture Switch" :
5599                            "Front-Panel Capture Switch");
5600                 break;
5601         }
5602 }
5603
5604 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
5605 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
5606                                     const struct hda_fixup *fix, int action)
5607 {
5608         struct alc_spec *spec = codec->spec;
5609         static hda_nid_t preferred_pairs[] = {
5610                 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
5611                 0
5612         };
5613
5614         if (action != HDA_FIXUP_ACT_PRE_PROBE)
5615                 return;
5616
5617         spec->gen.preferred_dacs = preferred_pairs;
5618         spec->gen.auto_mute_via_amp = 1;
5619         codec->power_save_node = 0;
5620 }
5621
5622 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
5623 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
5624                               const struct hda_fixup *fix, int action)
5625 {
5626         if (action != HDA_FIXUP_ACT_PRE_PROBE)
5627                 return;
5628
5629         snd_hda_override_wcaps(codec, 0x03, 0);
5630 }
5631
5632 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
5633         { SND_JACK_BTN_0, KEY_PLAYPAUSE },
5634         { SND_JACK_BTN_1, KEY_VOICECOMMAND },
5635         { SND_JACK_BTN_2, KEY_VOLUMEUP },
5636         { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
5637         {}
5638 };
5639
5640 static void alc_headset_btn_callback(struct hda_codec *codec,
5641                                      struct hda_jack_callback *jack)
5642 {
5643         int report = 0;
5644
5645         if (jack->unsol_res & (7 << 13))
5646                 report |= SND_JACK_BTN_0;
5647
5648         if (jack->unsol_res  & (1 << 16 | 3 << 8))
5649                 report |= SND_JACK_BTN_1;
5650
5651         /* Volume up key */
5652         if (jack->unsol_res & (7 << 23))
5653                 report |= SND_JACK_BTN_2;
5654
5655         /* Volume down key */
5656         if (jack->unsol_res & (7 << 10))
5657                 report |= SND_JACK_BTN_3;
5658
5659         jack->jack->button_state = report;
5660 }
5661
5662 static void alc_fixup_headset_jack(struct hda_codec *codec,
5663                                     const struct hda_fixup *fix, int action)
5664 {
5665
5666         switch (action) {
5667         case HDA_FIXUP_ACT_PRE_PROBE:
5668                 snd_hda_jack_detect_enable_callback(codec, 0x55,
5669                                                     alc_headset_btn_callback);
5670                 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", false,
5671                                       SND_JACK_HEADSET, alc_headset_btn_keymap);
5672                 break;
5673         case HDA_FIXUP_ACT_INIT:
5674                 switch (codec->core.vendor_id) {
5675                 case 0x10ec0225:
5676                 case 0x10ec0295:
5677                 case 0x10ec0299:
5678                         alc_write_coef_idx(codec, 0x48, 0xd011);
5679                         alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5680                         alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
5681                         break;
5682                 case 0x10ec0236:
5683                 case 0x10ec0256:
5684                         alc_write_coef_idx(codec, 0x48, 0xd011);
5685                         alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5686                         break;
5687                 }
5688                 break;
5689         }
5690 }
5691
5692 static void alc295_fixup_chromebook(struct hda_codec *codec,
5693                                     const struct hda_fixup *fix, int action)
5694 {
5695         struct alc_spec *spec = codec->spec;
5696
5697         switch (action) {
5698         case HDA_FIXUP_ACT_PRE_PROBE:
5699                 spec->ultra_low_power = true;
5700                 break;
5701         case HDA_FIXUP_ACT_INIT:
5702                 switch (codec->core.vendor_id) {
5703                 case 0x10ec0295:
5704                         alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
5705                         alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
5706                         break;
5707                 case 0x10ec0236:
5708                         alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
5709                         alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
5710                         break;
5711                 }
5712                 break;
5713         }
5714 }
5715
5716 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
5717                                   const struct hda_fixup *fix, int action)
5718 {
5719         if (action == HDA_FIXUP_ACT_PRE_PROBE)
5720                 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5721 }
5722
5723 /* for hda_fixup_thinkpad_acpi() */
5724 #include "thinkpad_helper.c"
5725
5726 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
5727                                     const struct hda_fixup *fix, int action)
5728 {
5729         alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
5730         hda_fixup_thinkpad_acpi(codec, fix, action);
5731 }
5732
5733 /* for alc295_fixup_hp_top_speakers */
5734 #include "hp_x360_helper.c"
5735
5736 enum {
5737         ALC269_FIXUP_SONY_VAIO,
5738         ALC275_FIXUP_SONY_VAIO_GPIO2,
5739         ALC269_FIXUP_DELL_M101Z,
5740         ALC269_FIXUP_SKU_IGNORE,
5741         ALC269_FIXUP_ASUS_G73JW,
5742         ALC269_FIXUP_LENOVO_EAPD,
5743         ALC275_FIXUP_SONY_HWEQ,
5744         ALC275_FIXUP_SONY_DISABLE_AAMIX,
5745         ALC271_FIXUP_DMIC,
5746         ALC269_FIXUP_PCM_44K,
5747         ALC269_FIXUP_STEREO_DMIC,
5748         ALC269_FIXUP_HEADSET_MIC,
5749         ALC269_FIXUP_QUANTA_MUTE,
5750         ALC269_FIXUP_LIFEBOOK,
5751         ALC269_FIXUP_LIFEBOOK_EXTMIC,
5752         ALC269_FIXUP_LIFEBOOK_HP_PIN,
5753         ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
5754         ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
5755         ALC269_FIXUP_AMIC,
5756         ALC269_FIXUP_DMIC,
5757         ALC269VB_FIXUP_AMIC,
5758         ALC269VB_FIXUP_DMIC,
5759         ALC269_FIXUP_HP_MUTE_LED,
5760         ALC269_FIXUP_HP_MUTE_LED_MIC1,
5761         ALC269_FIXUP_HP_MUTE_LED_MIC2,
5762         ALC269_FIXUP_HP_MUTE_LED_MIC3,
5763         ALC269_FIXUP_HP_GPIO_LED,
5764         ALC269_FIXUP_HP_GPIO_MIC1_LED,
5765         ALC269_FIXUP_HP_LINE1_MIC1_LED,
5766         ALC269_FIXUP_INV_DMIC,
5767         ALC269_FIXUP_LENOVO_DOCK,
5768         ALC269_FIXUP_NO_SHUTUP,
5769         ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
5770         ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
5771         ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5772         ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
5773         ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5774         ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
5775         ALC269_FIXUP_HEADSET_MODE,
5776         ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
5777         ALC269_FIXUP_ASPIRE_HEADSET_MIC,
5778         ALC269_FIXUP_ASUS_X101_FUNC,
5779         ALC269_FIXUP_ASUS_X101_VERB,
5780         ALC269_FIXUP_ASUS_X101,
5781         ALC271_FIXUP_AMIC_MIC2,
5782         ALC271_FIXUP_HP_GATE_MIC_JACK,
5783         ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
5784         ALC269_FIXUP_ACER_AC700,
5785         ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
5786         ALC269VB_FIXUP_ASUS_ZENBOOK,
5787         ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
5788         ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
5789         ALC269VB_FIXUP_ORDISSIMO_EVE2,
5790         ALC283_FIXUP_CHROME_BOOK,
5791         ALC283_FIXUP_SENSE_COMBO_JACK,
5792         ALC282_FIXUP_ASUS_TX300,
5793         ALC283_FIXUP_INT_MIC,
5794         ALC290_FIXUP_MONO_SPEAKERS,
5795         ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5796         ALC290_FIXUP_SUBWOOFER,
5797         ALC290_FIXUP_SUBWOOFER_HSJACK,
5798         ALC269_FIXUP_THINKPAD_ACPI,
5799         ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5800         ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
5801         ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
5802         ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5803         ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
5804         ALC255_FIXUP_HEADSET_MODE,
5805         ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
5806         ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
5807         ALC292_FIXUP_TPT440_DOCK,
5808         ALC292_FIXUP_TPT440,
5809         ALC283_FIXUP_HEADSET_MIC,
5810         ALC255_FIXUP_MIC_MUTE_LED,
5811         ALC282_FIXUP_ASPIRE_V5_PINS,
5812         ALC280_FIXUP_HP_GPIO4,
5813         ALC286_FIXUP_HP_GPIO_LED,
5814         ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
5815         ALC280_FIXUP_HP_DOCK_PINS,
5816         ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
5817         ALC280_FIXUP_HP_9480M,
5818         ALC288_FIXUP_DELL_HEADSET_MODE,
5819         ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
5820         ALC288_FIXUP_DELL_XPS_13,
5821         ALC288_FIXUP_DISABLE_AAMIX,
5822         ALC292_FIXUP_DELL_E7X,
5823         ALC292_FIXUP_DISABLE_AAMIX,
5824         ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
5825         ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5826         ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
5827         ALC275_FIXUP_DELL_XPS,
5828         ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
5829         ALC293_FIXUP_LENOVO_SPK_NOISE,
5830         ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
5831         ALC255_FIXUP_DELL_SPK_NOISE,
5832         ALC225_FIXUP_DISABLE_MIC_VREF,
5833         ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
5834         ALC295_FIXUP_DISABLE_DAC3,
5835         ALC280_FIXUP_HP_HEADSET_MIC,
5836         ALC221_FIXUP_HP_FRONT_MIC,
5837         ALC292_FIXUP_TPT460,
5838         ALC298_FIXUP_SPK_VOLUME,
5839         ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
5840         ALC269_FIXUP_ATIV_BOOK_8,
5841         ALC221_FIXUP_HP_MIC_NO_PRESENCE,
5842         ALC256_FIXUP_ASUS_HEADSET_MODE,
5843         ALC256_FIXUP_ASUS_MIC,
5844         ALC256_FIXUP_ASUS_AIO_GPIO2,
5845         ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5846         ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
5847         ALC233_FIXUP_LENOVO_MULTI_CODECS,
5848         ALC233_FIXUP_ACER_HEADSET_MIC,
5849         ALC294_FIXUP_LENOVO_MIC_LOCATION,
5850         ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
5851         ALC700_FIXUP_INTEL_REFERENCE,
5852         ALC274_FIXUP_DELL_BIND_DACS,
5853         ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
5854         ALC298_FIXUP_TPT470_DOCK,
5855         ALC255_FIXUP_DUMMY_LINEOUT_VERB,
5856         ALC255_FIXUP_DELL_HEADSET_MIC,
5857         ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
5858         ALC298_FIXUP_HUAWEI_MBX_STEREO,
5859         ALC295_FIXUP_HP_X360,
5860         ALC221_FIXUP_HP_HEADSET_MIC,
5861         ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
5862         ALC295_FIXUP_HP_AUTO_MUTE,
5863         ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
5864         ALC294_FIXUP_ASUS_MIC,
5865         ALC294_FIXUP_ASUS_HEADSET_MIC,
5866         ALC294_FIXUP_ASUS_SPK,
5867         ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
5868         ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
5869         ALC255_FIXUP_ACER_HEADSET_MIC,
5870         ALC295_FIXUP_CHROME_BOOK,
5871         ALC225_FIXUP_HEADSET_JACK,
5872         ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
5873         ALC225_FIXUP_WYSE_AUTO_MUTE,
5874         ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
5875         ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
5876         ALC256_FIXUP_ASUS_HEADSET_MIC,
5877         ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
5878         ALC299_FIXUP_PREDATOR_SPK,
5879         ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC,
5880         ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
5881 };
5882
5883 static const struct hda_fixup alc269_fixups[] = {
5884         [ALC269_FIXUP_SONY_VAIO] = {
5885                 .type = HDA_FIXUP_PINCTLS,
5886                 .v.pins = (const struct hda_pintbl[]) {
5887                         {0x19, PIN_VREFGRD},
5888                         {}
5889                 }
5890         },
5891         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5892                 .type = HDA_FIXUP_FUNC,
5893                 .v.func = alc275_fixup_gpio4_off,
5894                 .chained = true,
5895                 .chain_id = ALC269_FIXUP_SONY_VAIO
5896         },
5897         [ALC269_FIXUP_DELL_M101Z] = {
5898                 .type = HDA_FIXUP_VERBS,
5899                 .v.verbs = (const struct hda_verb[]) {
5900                         /* Enables internal speaker */
5901                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
5902                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5903                         {}
5904                 }
5905         },
5906         [ALC269_FIXUP_SKU_IGNORE] = {
5907                 .type = HDA_FIXUP_FUNC,
5908                 .v.func = alc_fixup_sku_ignore,
5909         },
5910         [ALC269_FIXUP_ASUS_G73JW] = {
5911                 .type = HDA_FIXUP_PINS,
5912                 .v.pins = (const struct hda_pintbl[]) {
5913                         { 0x17, 0x99130111 }, /* subwoofer */
5914                         { }
5915                 }
5916         },
5917         [ALC269_FIXUP_LENOVO_EAPD] = {
5918                 .type = HDA_FIXUP_VERBS,
5919                 .v.verbs = (const struct hda_verb[]) {
5920                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5921                         {}
5922                 }
5923         },
5924         [ALC275_FIXUP_SONY_HWEQ] = {
5925                 .type = HDA_FIXUP_FUNC,
5926                 .v.func = alc269_fixup_hweq,
5927                 .chained = true,
5928                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5929         },
5930         [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5931                 .type = HDA_FIXUP_FUNC,
5932                 .v.func = alc_fixup_disable_aamix,
5933                 .chained = true,
5934                 .chain_id = ALC269_FIXUP_SONY_VAIO
5935         },
5936         [ALC271_FIXUP_DMIC] = {
5937                 .type = HDA_FIXUP_FUNC,
5938                 .v.func = alc271_fixup_dmic,
5939         },
5940         [ALC269_FIXUP_PCM_44K] = {
5941                 .type = HDA_FIXUP_FUNC,
5942                 .v.func = alc269_fixup_pcm_44k,
5943                 .chained = true,
5944                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5945         },
5946         [ALC269_FIXUP_STEREO_DMIC] = {
5947                 .type = HDA_FIXUP_FUNC,
5948                 .v.func = alc269_fixup_stereo_dmic,
5949         },
5950         [ALC269_FIXUP_HEADSET_MIC] = {
5951                 .type = HDA_FIXUP_FUNC,
5952                 .v.func = alc269_fixup_headset_mic,
5953         },
5954         [ALC269_FIXUP_QUANTA_MUTE] = {
5955                 .type = HDA_FIXUP_FUNC,
5956                 .v.func = alc269_fixup_quanta_mute,
5957         },
5958         [ALC269_FIXUP_LIFEBOOK] = {
5959                 .type = HDA_FIXUP_PINS,
5960                 .v.pins = (const struct hda_pintbl[]) {
5961                         { 0x1a, 0x2101103f }, /* dock line-out */
5962                         { 0x1b, 0x23a11040 }, /* dock mic-in */
5963                         { }
5964                 },
5965                 .chained = true,
5966                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5967         },
5968         [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
5969                 .type = HDA_FIXUP_PINS,
5970                 .v.pins = (const struct hda_pintbl[]) {
5971                         { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
5972                         { }
5973                 },
5974         },
5975         [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
5976                 .type = HDA_FIXUP_PINS,
5977                 .v.pins = (const struct hda_pintbl[]) {
5978                         { 0x21, 0x0221102f }, /* HP out */
5979                         { }
5980                 },
5981         },
5982         [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
5983                 .type = HDA_FIXUP_FUNC,
5984                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5985         },
5986         [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
5987                 .type = HDA_FIXUP_FUNC,
5988                 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
5989         },
5990         [ALC269_FIXUP_AMIC] = {
5991                 .type = HDA_FIXUP_PINS,
5992                 .v.pins = (const struct hda_pintbl[]) {
5993                         { 0x14, 0x99130110 }, /* speaker */
5994                         { 0x15, 0x0121401f }, /* HP out */
5995                         { 0x18, 0x01a19c20 }, /* mic */
5996                         { 0x19, 0x99a3092f }, /* int-mic */
5997                         { }
5998                 },
5999         },
6000         [ALC269_FIXUP_DMIC] = {
6001                 .type = HDA_FIXUP_PINS,
6002                 .v.pins = (const struct hda_pintbl[]) {
6003                         { 0x12, 0x99a3092f }, /* int-mic */
6004                         { 0x14, 0x99130110 }, /* speaker */
6005                         { 0x15, 0x0121401f }, /* HP out */
6006                         { 0x18, 0x01a19c20 }, /* mic */
6007                         { }
6008                 },
6009         },
6010         [ALC269VB_FIXUP_AMIC] = {
6011                 .type = HDA_FIXUP_PINS,
6012                 .v.pins = (const struct hda_pintbl[]) {
6013                         { 0x14, 0x99130110 }, /* speaker */
6014                         { 0x18, 0x01a19c20 }, /* mic */
6015                         { 0x19, 0x99a3092f }, /* int-mic */
6016                         { 0x21, 0x0121401f }, /* HP out */
6017                         { }
6018                 },
6019         },
6020         [ALC269VB_FIXUP_DMIC] = {
6021                 .type = HDA_FIXUP_PINS,
6022                 .v.pins = (const struct hda_pintbl[]) {
6023                         { 0x12, 0x99a3092f }, /* int-mic */
6024                         { 0x14, 0x99130110 }, /* speaker */
6025                         { 0x18, 0x01a19c20 }, /* mic */
6026                         { 0x21, 0x0121401f }, /* HP out */
6027                         { }
6028                 },
6029         },
6030         [ALC269_FIXUP_HP_MUTE_LED] = {
6031                 .type = HDA_FIXUP_FUNC,
6032                 .v.func = alc269_fixup_hp_mute_led,
6033         },
6034         [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
6035                 .type = HDA_FIXUP_FUNC,
6036                 .v.func = alc269_fixup_hp_mute_led_mic1,
6037         },
6038         [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
6039                 .type = HDA_FIXUP_FUNC,
6040                 .v.func = alc269_fixup_hp_mute_led_mic2,
6041         },
6042         [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
6043                 .type = HDA_FIXUP_FUNC,
6044                 .v.func = alc269_fixup_hp_mute_led_mic3,
6045                 .chained = true,
6046                 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
6047         },
6048         [ALC269_FIXUP_HP_GPIO_LED] = {
6049                 .type = HDA_FIXUP_FUNC,
6050                 .v.func = alc269_fixup_hp_gpio_led,
6051         },
6052         [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
6053                 .type = HDA_FIXUP_FUNC,
6054                 .v.func = alc269_fixup_hp_gpio_mic1_led,
6055         },
6056         [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
6057                 .type = HDA_FIXUP_FUNC,
6058                 .v.func = alc269_fixup_hp_line1_mic1_led,
6059         },
6060         [ALC269_FIXUP_INV_DMIC] = {
6061                 .type = HDA_FIXUP_FUNC,
6062                 .v.func = alc_fixup_inv_dmic,
6063         },
6064         [ALC269_FIXUP_NO_SHUTUP] = {
6065                 .type = HDA_FIXUP_FUNC,
6066                 .v.func = alc_fixup_no_shutup,
6067         },
6068         [ALC269_FIXUP_LENOVO_DOCK] = {
6069                 .type = HDA_FIXUP_PINS,
6070                 .v.pins = (const struct hda_pintbl[]) {
6071                         { 0x19, 0x23a11040 }, /* dock mic */
6072                         { 0x1b, 0x2121103f }, /* dock headphone */
6073                         { }
6074                 },
6075                 .chained = true,
6076                 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6077         },
6078         [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
6079                 .type = HDA_FIXUP_FUNC,
6080                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6081                 .chained = true,
6082                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6083         },
6084         [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6085                 .type = HDA_FIXUP_PINS,
6086                 .v.pins = (const struct hda_pintbl[]) {
6087                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6088                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6089                         { }
6090                 },
6091                 .chained = true,
6092                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6093         },
6094         [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6095                 .type = HDA_FIXUP_PINS,
6096                 .v.pins = (const struct hda_pintbl[]) {
6097                         { 0x16, 0x21014020 }, /* dock line out */
6098                         { 0x19, 0x21a19030 }, /* dock mic */
6099                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6100                         { }
6101                 },
6102                 .chained = true,
6103                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6104         },
6105         [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
6106                 .type = HDA_FIXUP_PINS,
6107                 .v.pins = (const struct hda_pintbl[]) {
6108                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6109                         { }
6110                 },
6111                 .chained = true,
6112                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6113         },
6114         [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
6115                 .type = HDA_FIXUP_PINS,
6116                 .v.pins = (const struct hda_pintbl[]) {
6117                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6118                         { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6119                         { }
6120                 },
6121                 .chained = true,
6122                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6123         },
6124         [ALC269_FIXUP_HEADSET_MODE] = {
6125                 .type = HDA_FIXUP_FUNC,
6126                 .v.func = alc_fixup_headset_mode,
6127                 .chained = true,
6128                 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6129         },
6130         [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6131                 .type = HDA_FIXUP_FUNC,
6132                 .v.func = alc_fixup_headset_mode_no_hp_mic,
6133         },
6134         [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
6135                 .type = HDA_FIXUP_PINS,
6136                 .v.pins = (const struct hda_pintbl[]) {
6137                         { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
6138                         { }
6139                 },
6140                 .chained = true,
6141                 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6142         },
6143         [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
6144                 .type = HDA_FIXUP_PINS,
6145                 .v.pins = (const struct hda_pintbl[]) {
6146                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6147                         { }
6148                 },
6149                 .chained = true,
6150                 .chain_id = ALC269_FIXUP_HEADSET_MIC
6151         },
6152         [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
6153                 .type = HDA_FIXUP_PINS,
6154                 .v.pins = (const struct hda_pintbl[]) {
6155                         {0x12, 0x90a60130},
6156                         {0x13, 0x40000000},
6157                         {0x14, 0x90170110},
6158                         {0x18, 0x411111f0},
6159                         {0x19, 0x04a11040},
6160                         {0x1a, 0x411111f0},
6161                         {0x1b, 0x90170112},
6162                         {0x1d, 0x40759a05},
6163                         {0x1e, 0x411111f0},
6164                         {0x21, 0x04211020},
6165                         { }
6166                 },
6167                 .chained = true,
6168                 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6169         },
6170         [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
6171                 .type = HDA_FIXUP_FUNC,
6172                 .v.func = alc298_fixup_huawei_mbx_stereo,
6173                 .chained = true,
6174                 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6175         },
6176         [ALC269_FIXUP_ASUS_X101_FUNC] = {
6177                 .type = HDA_FIXUP_FUNC,
6178                 .v.func = alc269_fixup_x101_headset_mic,
6179         },
6180         [ALC269_FIXUP_ASUS_X101_VERB] = {
6181                 .type = HDA_FIXUP_VERBS,
6182                 .v.verbs = (const struct hda_verb[]) {
6183                         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
6184                         {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
6185                         {0x20, AC_VERB_SET_PROC_COEF,  0x0310},
6186                         { }
6187                 },
6188                 .chained = true,
6189                 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
6190         },
6191         [ALC269_FIXUP_ASUS_X101] = {
6192                 .type = HDA_FIXUP_PINS,
6193                 .v.pins = (const struct hda_pintbl[]) {
6194                         { 0x18, 0x04a1182c }, /* Headset mic */
6195                         { }
6196                 },
6197                 .chained = true,
6198                 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
6199         },
6200         [ALC271_FIXUP_AMIC_MIC2] = {
6201                 .type = HDA_FIXUP_PINS,
6202                 .v.pins = (const struct hda_pintbl[]) {
6203                         { 0x14, 0x99130110 }, /* speaker */
6204                         { 0x19, 0x01a19c20 }, /* mic */
6205                         { 0x1b, 0x99a7012f }, /* int-mic */
6206                         { 0x21, 0x0121401f }, /* HP out */
6207                         { }
6208                 },
6209         },
6210         [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
6211                 .type = HDA_FIXUP_FUNC,
6212                 .v.func = alc271_hp_gate_mic_jack,
6213                 .chained = true,
6214                 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6215         },
6216         [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
6217                 .type = HDA_FIXUP_FUNC,
6218                 .v.func = alc269_fixup_limit_int_mic_boost,
6219                 .chained = true,
6220                 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
6221         },
6222         [ALC269_FIXUP_ACER_AC700] = {
6223                 .type = HDA_FIXUP_PINS,
6224                 .v.pins = (const struct hda_pintbl[]) {
6225                         { 0x12, 0x99a3092f }, /* int-mic */
6226                         { 0x14, 0x99130110 }, /* speaker */
6227                         { 0x18, 0x03a11c20 }, /* mic */
6228                         { 0x1e, 0x0346101e }, /* SPDIF1 */
6229                         { 0x21, 0x0321101f }, /* HP out */
6230                         { }
6231                 },
6232                 .chained = true,
6233                 .chain_id = ALC271_FIXUP_DMIC,
6234         },
6235         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
6236                 .type = HDA_FIXUP_FUNC,
6237                 .v.func = alc269_fixup_limit_int_mic_boost,
6238                 .chained = true,
6239                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6240         },
6241         [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
6242                 .type = HDA_FIXUP_FUNC,
6243                 .v.func = alc269_fixup_limit_int_mic_boost,
6244                 .chained = true,
6245                 .chain_id = ALC269VB_FIXUP_DMIC,
6246         },
6247         [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
6248                 .type = HDA_FIXUP_VERBS,
6249                 .v.verbs = (const struct hda_verb[]) {
6250                         /* class-D output amp +5dB */
6251                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
6252                         { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
6253                         {}
6254                 },
6255                 .chained = true,
6256                 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
6257         },
6258         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
6259                 .type = HDA_FIXUP_FUNC,
6260                 .v.func = alc269_fixup_limit_int_mic_boost,
6261                 .chained = true,
6262                 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
6263         },
6264         [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
6265                 .type = HDA_FIXUP_PINS,
6266                 .v.pins = (const struct hda_pintbl[]) {
6267                         { 0x12, 0x99a3092f }, /* int-mic */
6268                         { 0x18, 0x03a11d20 }, /* mic */
6269                         { 0x19, 0x411111f0 }, /* Unused bogus pin */
6270                         { }
6271                 },
6272         },
6273         [ALC283_FIXUP_CHROME_BOOK] = {
6274                 .type = HDA_FIXUP_FUNC,
6275                 .v.func = alc283_fixup_chromebook,
6276         },
6277         [ALC283_FIXUP_SENSE_COMBO_JACK] = {
6278                 .type = HDA_FIXUP_FUNC,
6279                 .v.func = alc283_fixup_sense_combo_jack,
6280                 .chained = true,
6281                 .chain_id = ALC283_FIXUP_CHROME_BOOK,
6282         },
6283         [ALC282_FIXUP_ASUS_TX300] = {
6284                 .type = HDA_FIXUP_FUNC,
6285                 .v.func = alc282_fixup_asus_tx300,
6286         },
6287         [ALC283_FIXUP_INT_MIC] = {
6288                 .type = HDA_FIXUP_VERBS,
6289                 .v.verbs = (const struct hda_verb[]) {
6290                         {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
6291                         {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
6292                         { }
6293                 },
6294                 .chained = true,
6295                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6296         },
6297         [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
6298                 .type = HDA_FIXUP_PINS,
6299                 .v.pins = (const struct hda_pintbl[]) {
6300                         { 0x17, 0x90170112 }, /* subwoofer */
6301                         { }
6302                 },
6303                 .chained = true,
6304                 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6305         },
6306         [ALC290_FIXUP_SUBWOOFER] = {
6307                 .type = HDA_FIXUP_PINS,
6308                 .v.pins = (const struct hda_pintbl[]) {
6309                         { 0x17, 0x90170112 }, /* subwoofer */
6310                         { }
6311                 },
6312                 .chained = true,
6313                 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
6314         },
6315         [ALC290_FIXUP_MONO_SPEAKERS] = {
6316                 .type = HDA_FIXUP_FUNC,
6317                 .v.func = alc290_fixup_mono_speakers,
6318         },
6319         [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
6320                 .type = HDA_FIXUP_FUNC,
6321                 .v.func = alc290_fixup_mono_speakers,
6322                 .chained = true,
6323                 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6324         },
6325         [ALC269_FIXUP_THINKPAD_ACPI] = {
6326                 .type = HDA_FIXUP_FUNC,
6327                 .v.func = alc_fixup_thinkpad_acpi,
6328                 .chained = true,
6329                 .chain_id = ALC269_FIXUP_SKU_IGNORE,
6330         },
6331         [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
6332                 .type = HDA_FIXUP_FUNC,
6333                 .v.func = alc_fixup_inv_dmic,
6334                 .chained = true,
6335                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6336         },
6337         [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
6338                 .type = HDA_FIXUP_PINS,
6339                 .v.pins = (const struct hda_pintbl[]) {
6340                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6341                         { }
6342                 },
6343                 .chained = true,
6344                 .chain_id = ALC255_FIXUP_HEADSET_MODE
6345         },
6346         [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6347                 .type = HDA_FIXUP_PINS,
6348                 .v.pins = (const struct hda_pintbl[]) {
6349                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6350                         { }
6351                 },
6352                 .chained = true,
6353                 .chain_id = ALC255_FIXUP_HEADSET_MODE
6354         },
6355         [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6356                 .type = HDA_FIXUP_PINS,
6357                 .v.pins = (const struct hda_pintbl[]) {
6358                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6359                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6360                         { }
6361                 },
6362                 .chained = true,
6363                 .chain_id = ALC255_FIXUP_HEADSET_MODE
6364         },
6365         [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6366                 .type = HDA_FIXUP_PINS,
6367                 .v.pins = (const struct hda_pintbl[]) {
6368                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6369                         { }
6370                 },
6371                 .chained = true,
6372                 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6373         },
6374         [ALC255_FIXUP_HEADSET_MODE] = {
6375                 .type = HDA_FIXUP_FUNC,
6376                 .v.func = alc_fixup_headset_mode_alc255,
6377                 .chained = true,
6378                 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6379         },
6380         [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6381                 .type = HDA_FIXUP_FUNC,
6382                 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
6383         },
6384         [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6385                 .type = HDA_FIXUP_PINS,
6386                 .v.pins = (const struct hda_pintbl[]) {
6387                         { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6388                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6389                         { }
6390                 },
6391                 .chained = true,
6392                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6393         },
6394         [ALC292_FIXUP_TPT440_DOCK] = {
6395                 .type = HDA_FIXUP_FUNC,
6396                 .v.func = alc_fixup_tpt440_dock,
6397                 .chained = true,
6398                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6399         },
6400         [ALC292_FIXUP_TPT440] = {
6401                 .type = HDA_FIXUP_FUNC,
6402                 .v.func = alc_fixup_disable_aamix,
6403                 .chained = true,
6404                 .chain_id = ALC292_FIXUP_TPT440_DOCK,
6405         },
6406         [ALC283_FIXUP_HEADSET_MIC] = {
6407                 .type = HDA_FIXUP_PINS,
6408                 .v.pins = (const struct hda_pintbl[]) {
6409                         { 0x19, 0x04a110f0 },
6410                         { },
6411                 },
6412         },
6413         [ALC255_FIXUP_MIC_MUTE_LED] = {
6414                 .type = HDA_FIXUP_FUNC,
6415                 .v.func = snd_hda_gen_fixup_micmute_led,
6416         },
6417         [ALC282_FIXUP_ASPIRE_V5_PINS] = {
6418                 .type = HDA_FIXUP_PINS,
6419                 .v.pins = (const struct hda_pintbl[]) {
6420                         { 0x12, 0x90a60130 },
6421                         { 0x14, 0x90170110 },
6422                         { 0x17, 0x40000008 },
6423                         { 0x18, 0x411111f0 },
6424                         { 0x19, 0x01a1913c },
6425                         { 0x1a, 0x411111f0 },
6426                         { 0x1b, 0x411111f0 },
6427                         { 0x1d, 0x40f89b2d },
6428                         { 0x1e, 0x411111f0 },
6429                         { 0x21, 0x0321101f },
6430                         { },
6431                 },
6432         },
6433         [ALC280_FIXUP_HP_GPIO4] = {
6434                 .type = HDA_FIXUP_FUNC,
6435                 .v.func = alc280_fixup_hp_gpio4,
6436         },
6437         [ALC286_FIXUP_HP_GPIO_LED] = {
6438                 .type = HDA_FIXUP_FUNC,
6439                 .v.func = alc286_fixup_hp_gpio_led,
6440         },
6441         [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
6442                 .type = HDA_FIXUP_FUNC,
6443                 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
6444         },
6445         [ALC280_FIXUP_HP_DOCK_PINS] = {
6446                 .type = HDA_FIXUP_PINS,
6447                 .v.pins = (const struct hda_pintbl[]) {
6448                         { 0x1b, 0x21011020 }, /* line-out */
6449                         { 0x1a, 0x01a1903c }, /* headset mic */
6450                         { 0x18, 0x2181103f }, /* line-in */
6451                         { },
6452                 },
6453                 .chained = true,
6454                 .chain_id = ALC280_FIXUP_HP_GPIO4
6455         },
6456         [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
6457                 .type = HDA_FIXUP_PINS,
6458                 .v.pins = (const struct hda_pintbl[]) {
6459                         { 0x1b, 0x21011020 }, /* line-out */
6460                         { 0x18, 0x2181103f }, /* line-in */
6461                         { },
6462                 },
6463                 .chained = true,
6464                 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
6465         },
6466         [ALC280_FIXUP_HP_9480M] = {
6467                 .type = HDA_FIXUP_FUNC,
6468                 .v.func = alc280_fixup_hp_9480m,
6469         },
6470         [ALC288_FIXUP_DELL_HEADSET_MODE] = {
6471                 .type = HDA_FIXUP_FUNC,
6472                 .v.func = alc_fixup_headset_mode_dell_alc288,
6473                 .chained = true,
6474                 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6475         },
6476         [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6477                 .type = HDA_FIXUP_PINS,
6478                 .v.pins = (const struct hda_pintbl[]) {
6479                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6480                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6481                         { }
6482                 },
6483                 .chained = true,
6484                 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
6485         },
6486         [ALC288_FIXUP_DISABLE_AAMIX] = {
6487                 .type = HDA_FIXUP_FUNC,
6488                 .v.func = alc_fixup_disable_aamix,
6489                 .chained = true,
6490                 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
6491         },
6492         [ALC288_FIXUP_DELL_XPS_13] = {
6493                 .type = HDA_FIXUP_FUNC,
6494                 .v.func = alc_fixup_dell_xps13,
6495                 .chained = true,
6496                 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
6497         },
6498         [ALC292_FIXUP_DISABLE_AAMIX] = {
6499                 .type = HDA_FIXUP_FUNC,
6500                 .v.func = alc_fixup_disable_aamix,
6501                 .chained = true,
6502                 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
6503         },
6504         [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
6505                 .type = HDA_FIXUP_FUNC,
6506                 .v.func = alc_fixup_disable_aamix,
6507                 .chained = true,
6508                 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
6509         },
6510         [ALC292_FIXUP_DELL_E7X] = {
6511                 .type = HDA_FIXUP_FUNC,
6512                 .v.func = alc_fixup_dell_xps13,
6513                 .chained = true,
6514                 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
6515         },
6516         [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6517                 .type = HDA_FIXUP_PINS,
6518                 .v.pins = (const struct hda_pintbl[]) {
6519                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6520                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6521                         { }
6522                 },
6523                 .chained = true,
6524                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6525         },
6526         [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
6527                 .type = HDA_FIXUP_PINS,
6528                 .v.pins = (const struct hda_pintbl[]) {
6529                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6530                         { }
6531                 },
6532                 .chained = true,
6533                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6534         },
6535         [ALC275_FIXUP_DELL_XPS] = {
6536                 .type = HDA_FIXUP_VERBS,
6537                 .v.verbs = (const struct hda_verb[]) {
6538                         /* Enables internal speaker */
6539                         {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
6540                         {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
6541                         {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
6542                         {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
6543                         {}
6544                 }
6545         },
6546         [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
6547                 .type = HDA_FIXUP_VERBS,
6548                 .v.verbs = (const struct hda_verb[]) {
6549                         /* Disable pass-through path for FRONT 14h */
6550                         {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
6551                         {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
6552                         {}
6553                 },
6554                 .chained = true,
6555                 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6556         },
6557         [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
6558                 .type = HDA_FIXUP_FUNC,
6559                 .v.func = alc_fixup_disable_aamix,
6560                 .chained = true,
6561                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6562         },
6563         [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
6564                 .type = HDA_FIXUP_FUNC,
6565                 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
6566         },
6567         [ALC255_FIXUP_DELL_SPK_NOISE] = {
6568                 .type = HDA_FIXUP_FUNC,
6569                 .v.func = alc_fixup_disable_aamix,
6570                 .chained = true,
6571                 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6572         },
6573         [ALC225_FIXUP_DISABLE_MIC_VREF] = {
6574                 .type = HDA_FIXUP_FUNC,
6575                 .v.func = alc_fixup_disable_mic_vref,
6576                 .chained = true,
6577                 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6578         },
6579         [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6580                 .type = HDA_FIXUP_VERBS,
6581                 .v.verbs = (const struct hda_verb[]) {
6582                         /* Disable pass-through path for FRONT 14h */
6583                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6584                         { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6585                         {}
6586                 },
6587                 .chained = true,
6588                 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
6589         },
6590         [ALC280_FIXUP_HP_HEADSET_MIC] = {
6591                 .type = HDA_FIXUP_FUNC,
6592                 .v.func = alc_fixup_disable_aamix,
6593                 .chained = true,
6594                 .chain_id = ALC269_FIXUP_HEADSET_MIC,
6595         },
6596         [ALC221_FIXUP_HP_FRONT_MIC] = {
6597                 .type = HDA_FIXUP_PINS,
6598                 .v.pins = (const struct hda_pintbl[]) {
6599                         { 0x19, 0x02a19020 }, /* Front Mic */
6600                         { }
6601                 },
6602         },
6603         [ALC292_FIXUP_TPT460] = {
6604                 .type = HDA_FIXUP_FUNC,
6605                 .v.func = alc_fixup_tpt440_dock,
6606                 .chained = true,
6607                 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6608         },
6609         [ALC298_FIXUP_SPK_VOLUME] = {
6610                 .type = HDA_FIXUP_FUNC,
6611                 .v.func = alc298_fixup_speaker_volume,
6612                 .chained = true,
6613                 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6614         },
6615         [ALC295_FIXUP_DISABLE_DAC3] = {
6616                 .type = HDA_FIXUP_FUNC,
6617                 .v.func = alc295_fixup_disable_dac3,
6618         },
6619         [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6620                 .type = HDA_FIXUP_PINS,
6621                 .v.pins = (const struct hda_pintbl[]) {
6622                         { 0x1b, 0x90170151 },
6623                         { }
6624                 },
6625                 .chained = true,
6626                 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6627         },
6628         [ALC269_FIXUP_ATIV_BOOK_8] = {
6629                 .type = HDA_FIXUP_FUNC,
6630                 .v.func = alc_fixup_auto_mute_via_amp,
6631                 .chained = true,
6632                 .chain_id = ALC269_FIXUP_NO_SHUTUP
6633         },
6634         [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6635                 .type = HDA_FIXUP_PINS,
6636                 .v.pins = (const struct hda_pintbl[]) {
6637                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6638                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6639                         { }
6640                 },
6641                 .chained = true,
6642                 .chain_id = ALC269_FIXUP_HEADSET_MODE
6643         },
6644         [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6645                 .type = HDA_FIXUP_FUNC,
6646                 .v.func = alc_fixup_headset_mode,
6647         },
6648         [ALC256_FIXUP_ASUS_MIC] = {
6649                 .type = HDA_FIXUP_PINS,
6650                 .v.pins = (const struct hda_pintbl[]) {
6651                         { 0x13, 0x90a60160 }, /* use as internal mic */
6652                         { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6653                         { }
6654                 },
6655                 .chained = true,
6656                 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6657         },
6658         [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
6659                 .type = HDA_FIXUP_FUNC,
6660                 /* Set up GPIO2 for the speaker amp */
6661                 .v.func = alc_fixup_gpio4,
6662         },
6663         [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6664                 .type = HDA_FIXUP_PINS,
6665                 .v.pins = (const struct hda_pintbl[]) {
6666                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6667                         { }
6668                 },
6669                 .chained = true,
6670                 .chain_id = ALC269_FIXUP_HEADSET_MIC
6671         },
6672         [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6673                 .type = HDA_FIXUP_VERBS,
6674                 .v.verbs = (const struct hda_verb[]) {
6675                         /* Enables internal speaker */
6676                         {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6677                         {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6678                         {}
6679                 },
6680                 .chained = true,
6681                 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6682         },
6683         [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6684                 .type = HDA_FIXUP_FUNC,
6685                 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6686         },
6687         [ALC233_FIXUP_ACER_HEADSET_MIC] = {
6688                 .type = HDA_FIXUP_VERBS,
6689                 .v.verbs = (const struct hda_verb[]) {
6690                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
6691                         { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
6692                         { }
6693                 },
6694                 .chained = true,
6695                 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6696         },
6697         [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6698                 .type = HDA_FIXUP_PINS,
6699                 .v.pins = (const struct hda_pintbl[]) {
6700                         /* Change the mic location from front to right, otherwise there are
6701                            two front mics with the same name, pulseaudio can't handle them.
6702                            This is just a temporary workaround, after applying this fixup,
6703                            there will be one "Front Mic" and one "Mic" in this machine.
6704                          */
6705                         { 0x1a, 0x04a19040 },
6706                         { }
6707                 },
6708         },
6709         [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6710                 .type = HDA_FIXUP_PINS,
6711                 .v.pins = (const struct hda_pintbl[]) {
6712                         { 0x16, 0x0101102f }, /* Rear Headset HP */
6713                         { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6714                         { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6715                         { 0x1b, 0x02011020 },
6716                         { }
6717                 },
6718                 .chained = true,
6719                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6720         },
6721         [ALC700_FIXUP_INTEL_REFERENCE] = {
6722                 .type = HDA_FIXUP_VERBS,
6723                 .v.verbs = (const struct hda_verb[]) {
6724                         /* Enables internal speaker */
6725                         {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
6726                         {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
6727                         {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
6728                         {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
6729                         {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
6730                         {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
6731                         {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
6732                         {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
6733                         {}
6734                 }
6735         },
6736         [ALC274_FIXUP_DELL_BIND_DACS] = {
6737                 .type = HDA_FIXUP_FUNC,
6738                 .v.func = alc274_fixup_bind_dacs,
6739                 .chained = true,
6740                 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6741         },
6742         [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6743                 .type = HDA_FIXUP_PINS,
6744                 .v.pins = (const struct hda_pintbl[]) {
6745                         { 0x1b, 0x0401102f },
6746                         { }
6747                 },
6748                 .chained = true,
6749                 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6750         },
6751         [ALC298_FIXUP_TPT470_DOCK] = {
6752                 .type = HDA_FIXUP_FUNC,
6753                 .v.func = alc_fixup_tpt470_dock,
6754                 .chained = true,
6755                 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
6756         },
6757         [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
6758                 .type = HDA_FIXUP_PINS,
6759                 .v.pins = (const struct hda_pintbl[]) {
6760                         { 0x14, 0x0201101f },
6761                         { }
6762                 },
6763                 .chained = true,
6764                 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6765         },
6766         [ALC255_FIXUP_DELL_HEADSET_MIC] = {
6767                 .type = HDA_FIXUP_PINS,
6768                 .v.pins = (const struct hda_pintbl[]) {
6769                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6770                         { }
6771                 },
6772                 .chained = true,
6773                 .chain_id = ALC269_FIXUP_HEADSET_MIC
6774         },
6775         [ALC295_FIXUP_HP_X360] = {
6776                 .type = HDA_FIXUP_FUNC,
6777                 .v.func = alc295_fixup_hp_top_speakers,
6778                 .chained = true,
6779                 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
6780         },
6781         [ALC221_FIXUP_HP_HEADSET_MIC] = {
6782                 .type = HDA_FIXUP_PINS,
6783                 .v.pins = (const struct hda_pintbl[]) {
6784                         { 0x19, 0x0181313f},
6785                         { }
6786                 },
6787                 .chained = true,
6788                 .chain_id = ALC269_FIXUP_HEADSET_MIC
6789         },
6790         [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
6791                 .type = HDA_FIXUP_FUNC,
6792                 .v.func = alc285_fixup_invalidate_dacs,
6793                 .chained = true,
6794                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6795         },
6796         [ALC295_FIXUP_HP_AUTO_MUTE] = {
6797                 .type = HDA_FIXUP_FUNC,
6798                 .v.func = alc_fixup_auto_mute_via_amp,
6799         },
6800         [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
6801                 .type = HDA_FIXUP_PINS,
6802                 .v.pins = (const struct hda_pintbl[]) {
6803                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6804                         { }
6805                 },
6806                 .chained = true,
6807                 .chain_id = ALC269_FIXUP_HEADSET_MIC
6808         },
6809         [ALC294_FIXUP_ASUS_MIC] = {
6810                 .type = HDA_FIXUP_PINS,
6811                 .v.pins = (const struct hda_pintbl[]) {
6812                         { 0x13, 0x90a60160 }, /* use as internal mic */
6813                         { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6814                         { }
6815                 },
6816                 .chained = true,
6817                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6818         },
6819         [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
6820                 .type = HDA_FIXUP_PINS,
6821                 .v.pins = (const struct hda_pintbl[]) {
6822                         { 0x19, 0x01a1103c }, /* use as headset mic */
6823                         { }
6824                 },
6825                 .chained = true,
6826                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6827         },
6828         [ALC294_FIXUP_ASUS_SPK] = {
6829                 .type = HDA_FIXUP_VERBS,
6830                 .v.verbs = (const struct hda_verb[]) {
6831                         /* Set EAPD high */
6832                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
6833                         { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
6834                         { }
6835                 },
6836                 .chained = true,
6837                 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
6838         },
6839         [ALC295_FIXUP_CHROME_BOOK] = {
6840                 .type = HDA_FIXUP_FUNC,
6841                 .v.func = alc295_fixup_chromebook,
6842                 .chained = true,
6843                 .chain_id = ALC225_FIXUP_HEADSET_JACK
6844         },
6845         [ALC225_FIXUP_HEADSET_JACK] = {
6846                 .type = HDA_FIXUP_FUNC,
6847                 .v.func = alc_fixup_headset_jack,
6848         },
6849         [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
6850                 .type = HDA_FIXUP_PINS,
6851                 .v.pins = (const struct hda_pintbl[]) {
6852                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6853                         { }
6854                 },
6855                 .chained = true,
6856                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6857         },
6858         [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
6859                 .type = HDA_FIXUP_VERBS,
6860                 .v.verbs = (const struct hda_verb[]) {
6861                         /* Disable PCBEEP-IN passthrough */
6862                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6863                         { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6864                         { }
6865                 },
6866                 .chained = true,
6867                 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
6868         },
6869         [ALC255_FIXUP_ACER_HEADSET_MIC] = {
6870                 .type = HDA_FIXUP_PINS,
6871                 .v.pins = (const struct hda_pintbl[]) {
6872                         { 0x19, 0x03a11130 },
6873                         { 0x1a, 0x90a60140 }, /* use as internal mic */
6874                         { }
6875                 },
6876                 .chained = true,
6877                 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6878         },
6879         [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
6880                 .type = HDA_FIXUP_PINS,
6881                 .v.pins = (const struct hda_pintbl[]) {
6882                         { 0x16, 0x01011020 }, /* Rear Line out */
6883                         { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
6884                         { }
6885                 },
6886                 .chained = true,
6887                 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
6888         },
6889         [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
6890                 .type = HDA_FIXUP_FUNC,
6891                 .v.func = alc_fixup_auto_mute_via_amp,
6892                 .chained = true,
6893                 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
6894         },
6895         [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
6896                 .type = HDA_FIXUP_FUNC,
6897                 .v.func = alc_fixup_disable_mic_vref,
6898                 .chained = true,
6899                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6900         },
6901         [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
6902                 .type = HDA_FIXUP_VERBS,
6903                 .v.verbs = (const struct hda_verb[]) {
6904                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
6905                         { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
6906                         { }
6907                 },
6908                 .chained = true,
6909                 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
6910         },
6911         [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
6912                 .type = HDA_FIXUP_PINS,
6913                 .v.pins = (const struct hda_pintbl[]) {
6914                         { 0x19, 0x03a11020 }, /* headset mic with jack detect */
6915                         { }
6916                 },
6917                 .chained = true,
6918                 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6919         },
6920         [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6921                 .type = HDA_FIXUP_PINS,
6922                 .v.pins = (const struct hda_pintbl[]) {
6923                         { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6924                         { }
6925                 },
6926                 .chained = true,
6927                 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6928         },
6929         [ALC299_FIXUP_PREDATOR_SPK] = {
6930                 .type = HDA_FIXUP_PINS,
6931                 .v.pins = (const struct hda_pintbl[]) {
6932                         { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
6933                         { }
6934                 }
6935         },
6936         [ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC] = {
6937                 .type = HDA_FIXUP_PINS,
6938                 .v.pins = (const struct hda_pintbl[]) {
6939                         { 0x14, 0x411111f0 }, /* disable confusing internal speaker */
6940                         { 0x19, 0x04a11150 }, /* use as headset mic, without its own jack detect */
6941                         { }
6942                 },
6943                 .chained = true,
6944                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6945         },
6946         [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
6947                 .type = HDA_FIXUP_PINS,
6948                 .v.pins = (const struct hda_pintbl[]) {
6949                         { 0x19, 0x04a11040 },
6950                         { 0x21, 0x04211020 },
6951                         { }
6952                 },
6953                 .chained = true,
6954                 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6955         },
6956 };
6957
6958 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
6959         SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
6960         SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6961         SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
6962         SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
6963         SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6964         SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6965         SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
6966         SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
6967         SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6968         SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6969         SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
6970         SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
6971         SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
6972         SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
6973         SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
6974         SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
6975         SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6976         SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6977         SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6978         SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
6979         SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
6980         SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
6981         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6982         SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
6983         SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
6984         SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
6985         SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
6986         SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
6987         SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
6988         SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6989         SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6990         SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6991         SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6992         SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6993         SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
6994         SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
6995         SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
6996         SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6997         SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6998         SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
6999         SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
7000         SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
7001         SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
7002         SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7003         SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7004         SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7005         SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7006         SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7007         SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7008         SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7009         SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
7010         SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
7011         SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
7012         SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
7013         SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
7014         SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
7015         SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
7016         SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
7017         SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
7018         SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
7019         SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
7020         SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
7021         SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
7022         SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
7023         SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
7024         SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
7025         SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
7026         SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
7027         SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
7028         SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7029         SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7030         SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
7031         SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
7032         SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
7033         SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
7034         /* ALC282 */
7035         SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7036         SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7037         SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7038         SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7039         SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7040         SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7041         SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7042         SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7043         SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7044         SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7045         SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7046         SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7047         SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
7048         SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
7049         SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
7050         SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7051         SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7052         SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7053         SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7054         SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7055         SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
7056         SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7057         SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7058         /* ALC290 */
7059         SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7060         SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7061         SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7062         SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7063         SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7064         SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7065         SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7066         SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7067         SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7068         SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
7069         SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7070         SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7071         SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7072         SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7073         SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7074         SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7075         SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7076         SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7077         SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7078         SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7079         SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7080         SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7081         SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7082         SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7083         SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7084         SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7085         SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7086         SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7087         SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7088         SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
7089         SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7090         SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7091         SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
7092         SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
7093         SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
7094         SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7095         SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7096         SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
7097         SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
7098         SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
7099         SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7100         SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
7101         SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7102         SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
7103         SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7104         SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7105         SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7106         SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7107         SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
7108         SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
7109         SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
7110         SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
7111         SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
7112         SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
7113         SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
7114         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
7115         SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC),
7116         SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
7117         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
7118         SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
7119         SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
7120         SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7121         SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7122         SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
7123         SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
7124         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
7125         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
7126         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7127         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7128         SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
7129         SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
7130         SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
7131         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
7132         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7133         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7134         SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
7135         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
7136         SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
7137         SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
7138         SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
7139         SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
7140         SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
7141         SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
7142         SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
7143         SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
7144         SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
7145         SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
7146         SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
7147         SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
7148         SND_PCI_QUIRK(0x1558, 0x1325, "System76 Darter Pro (darp5)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7149         SND_PCI_QUIRK(0x1558, 0x8550, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7150         SND_PCI_QUIRK(0x1558, 0x8551, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7151         SND_PCI_QUIRK(0x1558, 0x8560, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7152         SND_PCI_QUIRK(0x1558, 0x8561, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7153         SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
7154         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
7155         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
7156         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
7157         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
7158         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
7159         SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
7160         SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
7161         SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
7162         SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
7163         SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
7164         SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
7165         SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
7166         SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
7167         SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
7168         SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
7169         SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7170         SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
7171         SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7172         SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
7173         SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
7174         SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
7175         SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7176         SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7177         SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
7178         SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
7179         SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
7180         SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7181         SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7182         SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
7183         SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7184         SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7185         SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7186         SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7187         SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
7188         SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
7189         SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7190         SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7191         SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7192         SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7193         SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
7194         SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
7195         SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
7196         SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
7197         SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
7198         SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
7199         SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
7200         SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7201         SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
7202         SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
7203         SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7204         SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
7205         SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
7206         SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
7207         SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
7208         SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
7209         SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
7210         SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
7211         SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
7212         SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7213         SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7214         SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7215         SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
7216         SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7217         SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7218         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
7219         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
7220         SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
7221         SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
7222         SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
7223
7224 #if 0
7225         /* Below is a quirk table taken from the old code.
7226          * Basically the device should work as is without the fixup table.
7227          * If BIOS doesn't give a proper info, enable the corresponding
7228          * fixup entry.
7229          */
7230         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
7231                       ALC269_FIXUP_AMIC),
7232         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
7233         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
7234         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
7235         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
7236         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
7237         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
7238         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
7239         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
7240         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
7241         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
7242         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
7243         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
7244         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
7245         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
7246         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
7247         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
7248         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
7249         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
7250         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
7251         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
7252         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
7253         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
7254         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
7255         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
7256         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
7257         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
7258         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
7259         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
7260         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
7261         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
7262         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
7263         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
7264         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
7265         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
7266         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
7267         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
7268         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
7269         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
7270         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
7271 #endif
7272         {}
7273 };
7274
7275 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
7276         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
7277         SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
7278         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
7279         SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
7280         SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
7281         {}
7282 };
7283
7284 static const struct hda_model_fixup alc269_fixup_models[] = {
7285         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
7286         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
7287         {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
7288         {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
7289         {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7290         {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
7291         {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
7292         {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
7293         {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
7294         {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7295         {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
7296         {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
7297         {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
7298         {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
7299         {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
7300         {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
7301         {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
7302         {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
7303         {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
7304         {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
7305         {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
7306         {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
7307         {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
7308         {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
7309         {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
7310         {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
7311         {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
7312         {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
7313         {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
7314         {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
7315         {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
7316         {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
7317         {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
7318         {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
7319         {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
7320         {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
7321         {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
7322         {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
7323         {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
7324         {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
7325         {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
7326         {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
7327         {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
7328         {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
7329         {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
7330         {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
7331         {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
7332         {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
7333         {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
7334         {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
7335         {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
7336         {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
7337         {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
7338         {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
7339         {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
7340         {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
7341         {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
7342         {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
7343         {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
7344         {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
7345         {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
7346         {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
7347         {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
7348         {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
7349         {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
7350         {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
7351         {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7352         {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
7353         {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
7354         {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
7355         {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
7356         {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
7357         {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
7358         {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
7359         {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
7360         {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
7361         {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
7362         {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
7363         {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
7364         {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"},
7365         {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
7366         {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
7367         {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
7368         {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
7369         {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
7370         {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
7371         {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
7372         {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
7373         {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
7374         {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
7375         {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
7376         {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
7377         {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
7378         {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
7379         {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
7380         {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
7381         {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
7382         {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
7383         {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
7384         {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
7385         {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
7386         {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
7387         {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
7388         {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
7389         {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
7390         {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
7391         {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
7392         {}
7393 };
7394 #define ALC225_STANDARD_PINS \
7395         {0x21, 0x04211020}
7396
7397 #define ALC256_STANDARD_PINS \
7398         {0x12, 0x90a60140}, \
7399         {0x14, 0x90170110}, \
7400         {0x21, 0x02211020}
7401
7402 #define ALC282_STANDARD_PINS \
7403         {0x14, 0x90170110}
7404
7405 #define ALC290_STANDARD_PINS \
7406         {0x12, 0x99a30130}
7407
7408 #define ALC292_STANDARD_PINS \
7409         {0x14, 0x90170110}, \
7410         {0x15, 0x0221401f}
7411
7412 #define ALC295_STANDARD_PINS \
7413         {0x12, 0xb7a60130}, \
7414         {0x14, 0x90170110}, \
7415         {0x21, 0x04211020}
7416
7417 #define ALC298_STANDARD_PINS \
7418         {0x12, 0x90a60130}, \
7419         {0x21, 0x03211020}
7420
7421 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
7422         SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
7423                 {0x14, 0x01014020},
7424                 {0x17, 0x90170110},
7425                 {0x18, 0x02a11030},
7426                 {0x19, 0x0181303F},
7427                 {0x21, 0x0221102f}),
7428         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7429                 {0x12, 0x90a601c0},
7430                 {0x14, 0x90171120},
7431                 {0x21, 0x02211030}),
7432         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7433                 {0x14, 0x90170110},
7434                 {0x1b, 0x90a70130},
7435                 {0x21, 0x03211020}),
7436         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7437                 {0x1a, 0x90a70130},
7438                 {0x1b, 0x90170110},
7439                 {0x21, 0x03211020}),
7440         SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7441                 ALC225_STANDARD_PINS,
7442                 {0x12, 0xb7a60130},
7443                 {0x14, 0x901701a0}),
7444         SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7445                 ALC225_STANDARD_PINS,
7446                 {0x12, 0xb7a60130},
7447                 {0x14, 0x901701b0}),
7448         SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7449                 ALC225_STANDARD_PINS,
7450                 {0x12, 0xb7a60150},
7451                 {0x14, 0x901701a0}),
7452         SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7453                 ALC225_STANDARD_PINS,
7454                 {0x12, 0xb7a60150},
7455                 {0x14, 0x901701b0}),
7456         SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7457                 ALC225_STANDARD_PINS,
7458                 {0x12, 0xb7a60130},
7459                 {0x1b, 0x90170110}),
7460         SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7461                 {0x1b, 0x01111010},
7462                 {0x1e, 0x01451130},
7463                 {0x21, 0x02211020}),
7464         SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7465                 {0x12, 0x90a60140},
7466                 {0x14, 0x90170110},
7467                 {0x19, 0x02a11030},
7468                 {0x21, 0x02211020}),
7469         SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7470                 {0x14, 0x90170110},
7471                 {0x19, 0x02a11030},
7472                 {0x1a, 0x02a11040},
7473                 {0x1b, 0x01014020},
7474                 {0x21, 0x0221101f}),
7475         SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7476                 {0x14, 0x90170110},
7477                 {0x19, 0x02a11030},
7478                 {0x1a, 0x02a11040},
7479                 {0x1b, 0x01011020},
7480                 {0x21, 0x0221101f}),
7481         SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7482                 {0x14, 0x90170110},
7483                 {0x19, 0x02a11020},
7484                 {0x1a, 0x02a11030},
7485                 {0x21, 0x0221101f}),
7486         SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7487                 {0x12, 0x90a60140},
7488                 {0x14, 0x90170110},
7489                 {0x21, 0x02211020}),
7490         SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7491                 {0x12, 0x90a60140},
7492                 {0x14, 0x90170150},
7493                 {0x21, 0x02211020}),
7494         SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7495                 {0x21, 0x02211020}),
7496         SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7497                 {0x12, 0x40000000},
7498                 {0x14, 0x90170110},
7499                 {0x21, 0x02211020}),
7500         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7501                 {0x14, 0x90170110},
7502                 {0x21, 0x02211020}),
7503         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7504                 {0x14, 0x90170130},
7505                 {0x21, 0x02211040}),
7506         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7507                 {0x12, 0x90a60140},
7508                 {0x14, 0x90170110},
7509                 {0x21, 0x02211020}),
7510         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7511                 {0x12, 0x90a60160},
7512                 {0x14, 0x90170120},
7513                 {0x21, 0x02211030}),
7514         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7515                 {0x14, 0x90170110},
7516                 {0x1b, 0x02011020},
7517                 {0x21, 0x0221101f}),
7518         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7519                 {0x14, 0x90170110},
7520                 {0x1b, 0x01011020},
7521                 {0x21, 0x0221101f}),
7522         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7523                 {0x14, 0x90170130},
7524                 {0x1b, 0x01014020},
7525                 {0x21, 0x0221103f}),
7526         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7527                 {0x14, 0x90170130},
7528                 {0x1b, 0x01011020},
7529                 {0x21, 0x0221103f}),
7530         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7531                 {0x14, 0x90170130},
7532                 {0x1b, 0x02011020},
7533                 {0x21, 0x0221103f}),
7534         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7535                 {0x14, 0x90170150},
7536                 {0x1b, 0x02011020},
7537                 {0x21, 0x0221105f}),
7538         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7539                 {0x14, 0x90170110},
7540                 {0x1b, 0x01014020},
7541                 {0x21, 0x0221101f}),
7542         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7543                 {0x12, 0x90a60160},
7544                 {0x14, 0x90170120},
7545                 {0x17, 0x90170140},
7546                 {0x21, 0x0321102f}),
7547         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7548                 {0x12, 0x90a60160},
7549                 {0x14, 0x90170130},
7550                 {0x21, 0x02211040}),
7551         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7552                 {0x12, 0x90a60160},
7553                 {0x14, 0x90170140},
7554                 {0x21, 0x02211050}),
7555         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7556                 {0x12, 0x90a60170},
7557                 {0x14, 0x90170120},
7558                 {0x21, 0x02211030}),
7559         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7560                 {0x12, 0x90a60170},
7561                 {0x14, 0x90170130},
7562                 {0x21, 0x02211040}),
7563         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7564                 {0x12, 0x90a60170},
7565                 {0x14, 0x90171130},
7566                 {0x21, 0x02211040}),
7567         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7568                 {0x12, 0x90a60170},
7569                 {0x14, 0x90170140},
7570                 {0x21, 0x02211050}),
7571         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7572                 {0x12, 0x90a60180},
7573                 {0x14, 0x90170130},
7574                 {0x21, 0x02211040}),
7575         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7576                 {0x12, 0x90a60180},
7577                 {0x14, 0x90170120},
7578                 {0x21, 0x02211030}),
7579         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7580                 {0x1b, 0x01011020},
7581                 {0x21, 0x02211010}),
7582         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7583                 {0x12, 0x90a60130},
7584                 {0x14, 0x90170110},
7585                 {0x1b, 0x01011020},
7586                 {0x21, 0x0221101f}),
7587         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7588                 {0x12, 0x90a60160},
7589                 {0x14, 0x90170120},
7590                 {0x21, 0x02211030}),
7591         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7592                 {0x12, 0x90a60170},
7593                 {0x14, 0x90170120},
7594                 {0x21, 0x02211030}),
7595         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7596                 {0x12, 0x90a60180},
7597                 {0x14, 0x90170120},
7598                 {0x21, 0x02211030}),
7599         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7600                 {0x12, 0xb7a60130},
7601                 {0x14, 0x90170110},
7602                 {0x21, 0x02211020}),
7603         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7604                 {0x12, 0x90a60130},
7605                 {0x14, 0x90170110},
7606                 {0x14, 0x01011020},
7607                 {0x21, 0x0221101f}),
7608         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7609                 ALC256_STANDARD_PINS),
7610         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7611                 {0x14, 0x90170110},
7612                 {0x1b, 0x01011020},
7613                 {0x21, 0x0221101f}),
7614         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7615                 {0x14, 0x90170110},
7616                 {0x1b, 0x90a70130},
7617                 {0x21, 0x04211020}),
7618         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7619                 {0x14, 0x90170110},
7620                 {0x1b, 0x90a70130},
7621                 {0x21, 0x03211020}),
7622         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7623                 {0x12, 0x90a60130},
7624                 {0x14, 0x90170110},
7625                 {0x21, 0x03211020}),
7626         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7627                 {0x12, 0x90a60130},
7628                 {0x14, 0x90170110},
7629                 {0x21, 0x04211020}),
7630         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7631                 {0x1a, 0x90a70130},
7632                 {0x1b, 0x90170110},
7633                 {0x21, 0x03211020}),
7634         SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7635                 {0x12, 0xb7a60130},
7636                 {0x13, 0xb8a61140},
7637                 {0x16, 0x90170110},
7638                 {0x21, 0x04211020}),
7639         SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
7640                 {0x12, 0x90a60130},
7641                 {0x14, 0x90170110},
7642                 {0x15, 0x0421101f},
7643                 {0x1a, 0x04a11020}),
7644         SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
7645                 {0x12, 0x90a60140},
7646                 {0x14, 0x90170110},
7647                 {0x15, 0x0421101f},
7648                 {0x18, 0x02811030},
7649                 {0x1a, 0x04a1103f},
7650                 {0x1b, 0x02011020}),
7651         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7652                 ALC282_STANDARD_PINS,
7653                 {0x12, 0x99a30130},
7654                 {0x19, 0x03a11020},
7655                 {0x21, 0x0321101f}),
7656         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7657                 ALC282_STANDARD_PINS,
7658                 {0x12, 0x99a30130},
7659                 {0x19, 0x03a11020},
7660                 {0x21, 0x03211040}),
7661         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7662                 ALC282_STANDARD_PINS,
7663                 {0x12, 0x99a30130},
7664                 {0x19, 0x03a11030},
7665                 {0x21, 0x03211020}),
7666         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7667                 ALC282_STANDARD_PINS,
7668                 {0x12, 0x99a30130},
7669                 {0x19, 0x04a11020},
7670                 {0x21, 0x0421101f}),
7671         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
7672                 ALC282_STANDARD_PINS,
7673                 {0x12, 0x90a60140},
7674                 {0x19, 0x04a11030},
7675                 {0x21, 0x04211020}),
7676         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7677                 ALC282_STANDARD_PINS,
7678                 {0x12, 0x90a60130},
7679                 {0x21, 0x0321101f}),
7680         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7681                 {0x12, 0x90a60160},
7682                 {0x14, 0x90170120},
7683                 {0x21, 0x02211030}),
7684         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7685                 ALC282_STANDARD_PINS,
7686                 {0x12, 0x90a60130},
7687                 {0x19, 0x03a11020},
7688                 {0x21, 0x0321101f}),
7689         SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7690                 {0x12, 0x90a60130},
7691                 {0x14, 0x90170110},
7692                 {0x19, 0x04a11040},
7693                 {0x21, 0x04211020}),
7694         SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7695                 {0x12, 0x90a60130},
7696                 {0x17, 0x90170110},
7697                 {0x21, 0x02211020}),
7698         SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7699                 {0x12, 0x90a60120},
7700                 {0x14, 0x90170110},
7701                 {0x21, 0x0321101f}),
7702         SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7703                 {0x12, 0xb7a60130},
7704                 {0x14, 0x90170110},
7705                 {0x21, 0x04211020}),
7706         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7707                 ALC290_STANDARD_PINS,
7708                 {0x15, 0x04211040},
7709                 {0x18, 0x90170112},
7710                 {0x1a, 0x04a11020}),
7711         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7712                 ALC290_STANDARD_PINS,
7713                 {0x15, 0x04211040},
7714                 {0x18, 0x90170110},
7715                 {0x1a, 0x04a11020}),
7716         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7717                 ALC290_STANDARD_PINS,
7718                 {0x15, 0x0421101f},
7719                 {0x1a, 0x04a11020}),
7720         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7721                 ALC290_STANDARD_PINS,
7722                 {0x15, 0x04211020},
7723                 {0x1a, 0x04a11040}),
7724         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7725                 ALC290_STANDARD_PINS,
7726                 {0x14, 0x90170110},
7727                 {0x15, 0x04211020},
7728                 {0x1a, 0x04a11040}),
7729         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7730                 ALC290_STANDARD_PINS,
7731                 {0x14, 0x90170110},
7732                 {0x15, 0x04211020},
7733                 {0x1a, 0x04a11020}),
7734         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
7735                 ALC290_STANDARD_PINS,
7736                 {0x14, 0x90170110},
7737                 {0x15, 0x0421101f},
7738                 {0x1a, 0x04a11020}),
7739         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7740                 ALC292_STANDARD_PINS,
7741                 {0x12, 0x90a60140},
7742                 {0x16, 0x01014020},
7743                 {0x19, 0x01a19030}),
7744         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7745                 ALC292_STANDARD_PINS,
7746                 {0x12, 0x90a60140},
7747                 {0x16, 0x01014020},
7748                 {0x18, 0x02a19031},
7749                 {0x19, 0x01a1903e}),
7750         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7751                 ALC292_STANDARD_PINS,
7752                 {0x12, 0x90a60140}),
7753         SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7754                 ALC292_STANDARD_PINS,
7755                 {0x13, 0x90a60140},
7756                 {0x16, 0x21014020},
7757                 {0x19, 0x21a19030}),
7758         SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7759                 ALC292_STANDARD_PINS,
7760                 {0x13, 0x90a60140}),
7761         SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
7762                 {0x14, 0x90170110},
7763                 {0x1b, 0x90a70130},
7764                 {0x21, 0x04211020}),
7765         SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7766                 {0x12, 0x90a60130},
7767                 {0x17, 0x90170110},
7768                 {0x21, 0x03211020}),
7769         SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7770                 {0x12, 0x90a60130},
7771                 {0x17, 0x90170110},
7772                 {0x21, 0x04211020}),
7773         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7774                 {0x12, 0x90a60130},
7775                 {0x17, 0x90170110},
7776                 {0x21, 0x03211020}),
7777         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7778                 {0x14, 0x90170110},
7779                 {0x21, 0x04211020}),
7780         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7781                 {0x14, 0x90170110},
7782                 {0x21, 0x04211030}),
7783         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7784                 ALC295_STANDARD_PINS,
7785                 {0x17, 0x21014020},
7786                 {0x18, 0x21a19030}),
7787         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7788                 ALC295_STANDARD_PINS,
7789                 {0x17, 0x21014040},
7790                 {0x18, 0x21a19050}),
7791         SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7792                 ALC295_STANDARD_PINS),
7793         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7794                 ALC298_STANDARD_PINS,
7795                 {0x17, 0x90170110}),
7796         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7797                 ALC298_STANDARD_PINS,
7798                 {0x17, 0x90170140}),
7799         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7800                 ALC298_STANDARD_PINS,
7801                 {0x17, 0x90170150}),
7802         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
7803                 {0x12, 0xb7a60140},
7804                 {0x13, 0xb7a60150},
7805                 {0x17, 0x90170110},
7806                 {0x1a, 0x03011020},
7807                 {0x21, 0x03211030}),
7808         SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7809                 ALC225_STANDARD_PINS,
7810                 {0x12, 0xb7a60130},
7811                 {0x17, 0x90170110}),
7812         {}
7813 };
7814
7815 static void alc269_fill_coef(struct hda_codec *codec)
7816 {
7817         struct alc_spec *spec = codec->spec;
7818         int val;
7819
7820         if (spec->codec_variant != ALC269_TYPE_ALC269VB)
7821                 return;
7822
7823         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
7824                 alc_write_coef_idx(codec, 0xf, 0x960b);
7825                 alc_write_coef_idx(codec, 0xe, 0x8817);
7826         }
7827
7828         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
7829                 alc_write_coef_idx(codec, 0xf, 0x960b);
7830                 alc_write_coef_idx(codec, 0xe, 0x8814);
7831         }
7832
7833         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
7834                 /* Power up output pin */
7835                 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
7836         }
7837
7838         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
7839                 val = alc_read_coef_idx(codec, 0xd);
7840                 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
7841                         /* Capless ramp up clock control */
7842                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
7843                 }
7844                 val = alc_read_coef_idx(codec, 0x17);
7845                 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
7846                         /* Class D power on reset */
7847                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
7848                 }
7849         }
7850
7851         /* HP */
7852         alc_update_coef_idx(codec, 0x4, 0, 1<<11);
7853 }
7854
7855 /*
7856  */
7857 static int patch_alc269(struct hda_codec *codec)
7858 {
7859         struct alc_spec *spec;
7860         int err;
7861
7862         err = alc_alloc_spec(codec, 0x0b);
7863         if (err < 0)
7864                 return err;
7865
7866         spec = codec->spec;
7867         spec->gen.shared_mic_vref_pin = 0x18;
7868         codec->power_save_node = 0;
7869
7870 #ifdef CONFIG_PM
7871         codec->patch_ops.suspend = alc269_suspend;
7872         codec->patch_ops.resume = alc269_resume;
7873 #endif
7874         spec->shutup = alc_default_shutup;
7875         spec->init_hook = alc_default_init;
7876
7877         switch (codec->core.vendor_id) {
7878         case 0x10ec0269:
7879                 spec->codec_variant = ALC269_TYPE_ALC269VA;
7880                 switch (alc_get_coef0(codec) & 0x00f0) {
7881                 case 0x0010:
7882                         if (codec->bus->pci &&
7883                             codec->bus->pci->subsystem_vendor == 0x1025 &&
7884                             spec->cdefine.platform_type == 1)
7885                                 err = alc_codec_rename(codec, "ALC271X");
7886                         spec->codec_variant = ALC269_TYPE_ALC269VB;
7887                         break;
7888                 case 0x0020:
7889                         if (codec->bus->pci &&
7890                             codec->bus->pci->subsystem_vendor == 0x17aa &&
7891                             codec->bus->pci->subsystem_device == 0x21f3)
7892                                 err = alc_codec_rename(codec, "ALC3202");
7893                         spec->codec_variant = ALC269_TYPE_ALC269VC;
7894                         break;
7895                 case 0x0030:
7896                         spec->codec_variant = ALC269_TYPE_ALC269VD;
7897                         break;
7898                 default:
7899                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
7900                 }
7901                 if (err < 0)
7902                         goto error;
7903                 spec->shutup = alc269_shutup;
7904                 spec->init_hook = alc269_fill_coef;
7905                 alc269_fill_coef(codec);
7906                 break;
7907
7908         case 0x10ec0280:
7909         case 0x10ec0290:
7910                 spec->codec_variant = ALC269_TYPE_ALC280;
7911                 break;
7912         case 0x10ec0282:
7913                 spec->codec_variant = ALC269_TYPE_ALC282;
7914                 spec->shutup = alc282_shutup;
7915                 spec->init_hook = alc282_init;
7916                 break;
7917         case 0x10ec0233:
7918         case 0x10ec0283:
7919                 spec->codec_variant = ALC269_TYPE_ALC283;
7920                 spec->shutup = alc283_shutup;
7921                 spec->init_hook = alc283_init;
7922                 break;
7923         case 0x10ec0284:
7924         case 0x10ec0292:
7925                 spec->codec_variant = ALC269_TYPE_ALC284;
7926                 break;
7927         case 0x10ec0293:
7928                 spec->codec_variant = ALC269_TYPE_ALC293;
7929                 break;
7930         case 0x10ec0286:
7931         case 0x10ec0288:
7932                 spec->codec_variant = ALC269_TYPE_ALC286;
7933                 break;
7934         case 0x10ec0298:
7935                 spec->codec_variant = ALC269_TYPE_ALC298;
7936                 break;
7937         case 0x10ec0235:
7938         case 0x10ec0255:
7939                 spec->codec_variant = ALC269_TYPE_ALC255;
7940                 spec->shutup = alc256_shutup;
7941                 spec->init_hook = alc256_init;
7942                 break;
7943         case 0x10ec0236:
7944         case 0x10ec0256:
7945                 spec->codec_variant = ALC269_TYPE_ALC256;
7946                 spec->shutup = alc256_shutup;
7947                 spec->init_hook = alc256_init;
7948                 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
7949                 break;
7950         case 0x10ec0257:
7951                 spec->codec_variant = ALC269_TYPE_ALC257;
7952                 spec->shutup = alc256_shutup;
7953                 spec->init_hook = alc256_init;
7954                 spec->gen.mixer_nid = 0;
7955                 break;
7956         case 0x10ec0215:
7957         case 0x10ec0285:
7958         case 0x10ec0289:
7959                 spec->codec_variant = ALC269_TYPE_ALC215;
7960                 spec->shutup = alc225_shutup;
7961                 spec->init_hook = alc225_init;
7962                 spec->gen.mixer_nid = 0;
7963                 break;
7964         case 0x10ec0225:
7965         case 0x10ec0295:
7966         case 0x10ec0299:
7967                 spec->codec_variant = ALC269_TYPE_ALC225;
7968                 spec->shutup = alc225_shutup;
7969                 spec->init_hook = alc225_init;
7970                 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
7971                 break;
7972         case 0x10ec0234:
7973         case 0x10ec0274:
7974         case 0x10ec0294:
7975                 spec->codec_variant = ALC269_TYPE_ALC294;
7976                 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
7977                 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
7978                 spec->init_hook = alc294_init;
7979                 break;
7980         case 0x10ec0300:
7981                 spec->codec_variant = ALC269_TYPE_ALC300;
7982                 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
7983                 break;
7984         case 0x10ec0623:
7985                 spec->codec_variant = ALC269_TYPE_ALC623;
7986                 break;
7987         case 0x10ec0700:
7988         case 0x10ec0701:
7989         case 0x10ec0703:
7990         case 0x10ec0711:
7991                 spec->codec_variant = ALC269_TYPE_ALC700;
7992                 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
7993                 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
7994                 spec->init_hook = alc294_init;
7995                 break;
7996
7997         }
7998
7999         if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
8000                 spec->has_alc5505_dsp = 1;
8001                 spec->init_hook = alc5505_dsp_init;
8002         }
8003
8004         alc_pre_init(codec);
8005
8006         snd_hda_pick_fixup(codec, alc269_fixup_models,
8007                        alc269_fixup_tbl, alc269_fixups);
8008         snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups);
8009         snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
8010                            alc269_fixups);
8011         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8012
8013         alc_auto_parse_customize_define(codec);
8014
8015         if (has_cdefine_beep(codec))
8016                 spec->gen.beep_nid = 0x01;
8017
8018         /* automatic parse from the BIOS config */
8019         err = alc269_parse_auto_config(codec);
8020         if (err < 0)
8021                 goto error;
8022
8023         if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
8024                 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
8025                 if (err < 0)
8026                         goto error;
8027         }
8028
8029         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8030
8031         return 0;
8032
8033  error:
8034         alc_free(codec);
8035         return err;
8036 }
8037
8038 /*
8039  * ALC861
8040  */
8041
8042 static int alc861_parse_auto_config(struct hda_codec *codec)
8043 {
8044         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
8045         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
8046         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
8047 }
8048
8049 /* Pin config fixes */
8050 enum {
8051         ALC861_FIXUP_FSC_AMILO_PI1505,
8052         ALC861_FIXUP_AMP_VREF_0F,
8053         ALC861_FIXUP_NO_JACK_DETECT,
8054         ALC861_FIXUP_ASUS_A6RP,
8055         ALC660_FIXUP_ASUS_W7J,
8056 };
8057
8058 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
8059 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
8060                         const struct hda_fixup *fix, int action)
8061 {
8062         struct alc_spec *spec = codec->spec;
8063         unsigned int val;
8064
8065         if (action != HDA_FIXUP_ACT_INIT)
8066                 return;
8067         val = snd_hda_codec_get_pin_target(codec, 0x0f);
8068         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
8069                 val |= AC_PINCTL_IN_EN;
8070         val |= AC_PINCTL_VREF_50;
8071         snd_hda_set_pin_ctl(codec, 0x0f, val);
8072         spec->gen.keep_vref_in_automute = 1;
8073 }
8074
8075 /* suppress the jack-detection */
8076 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
8077                                      const struct hda_fixup *fix, int action)
8078 {
8079         if (action == HDA_FIXUP_ACT_PRE_PROBE)
8080                 codec->no_jack_detect = 1;
8081 }
8082
8083 static const struct hda_fixup alc861_fixups[] = {
8084         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
8085                 .type = HDA_FIXUP_PINS,
8086                 .v.pins = (const struct hda_pintbl[]) {
8087                         { 0x0b, 0x0221101f }, /* HP */
8088                         { 0x0f, 0x90170310 }, /* speaker */
8089                         { }
8090                 }
8091         },
8092         [ALC861_FIXUP_AMP_VREF_0F] = {
8093                 .type = HDA_FIXUP_FUNC,
8094                 .v.func = alc861_fixup_asus_amp_vref_0f,
8095         },
8096         [ALC861_FIXUP_NO_JACK_DETECT] = {
8097                 .type = HDA_FIXUP_FUNC,
8098                 .v.func = alc_fixup_no_jack_detect,
8099         },
8100         [ALC861_FIXUP_ASUS_A6RP] = {
8101                 .type = HDA_FIXUP_FUNC,
8102                 .v.func = alc861_fixup_asus_amp_vref_0f,
8103                 .chained = true,
8104                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
8105         },
8106         [ALC660_FIXUP_ASUS_W7J] = {
8107                 .type = HDA_FIXUP_VERBS,
8108                 .v.verbs = (const struct hda_verb[]) {
8109                         /* ASUS W7J needs a magic pin setup on unused NID 0x10
8110                          * for enabling outputs
8111                          */
8112                         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8113                         { }
8114                 },
8115         }
8116 };
8117
8118 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
8119         SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
8120         SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
8121         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
8122         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
8123         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
8124         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
8125         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
8126         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
8127         {}
8128 };
8129
8130 /*
8131  */
8132 static int patch_alc861(struct hda_codec *codec)
8133 {
8134         struct alc_spec *spec;
8135         int err;
8136
8137         err = alc_alloc_spec(codec, 0x15);
8138         if (err < 0)
8139                 return err;
8140
8141         spec = codec->spec;
8142         spec->gen.beep_nid = 0x23;
8143
8144 #ifdef CONFIG_PM
8145         spec->power_hook = alc_power_eapd;
8146 #endif
8147
8148         alc_pre_init(codec);
8149
8150         snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
8151         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8152
8153         /* automatic parse from the BIOS config */
8154         err = alc861_parse_auto_config(codec);
8155         if (err < 0)
8156                 goto error;
8157
8158         if (!spec->gen.no_analog) {
8159                 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
8160                 if (err < 0)
8161                         goto error;
8162         }
8163
8164         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8165
8166         return 0;
8167
8168  error:
8169         alc_free(codec);
8170         return err;
8171 }
8172
8173 /*
8174  * ALC861-VD support
8175  *
8176  * Based on ALC882
8177  *
8178  * In addition, an independent DAC
8179  */
8180 static int alc861vd_parse_auto_config(struct hda_codec *codec)
8181 {
8182         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
8183         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8184         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
8185 }
8186
8187 enum {
8188         ALC660VD_FIX_ASUS_GPIO1,
8189         ALC861VD_FIX_DALLAS,
8190 };
8191
8192 /* exclude VREF80 */
8193 static void alc861vd_fixup_dallas(struct hda_codec *codec,
8194                                   const struct hda_fixup *fix, int action)
8195 {
8196         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8197                 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
8198                 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8199         }
8200 }
8201
8202 /* reset GPIO1 */
8203 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
8204                                       const struct hda_fixup *fix, int action)
8205 {
8206         struct alc_spec *spec = codec->spec;
8207
8208         if (action == HDA_FIXUP_ACT_PRE_PROBE)
8209                 spec->gpio_mask |= 0x02;
8210         alc_fixup_gpio(codec, action, 0x01);
8211 }
8212
8213 static const struct hda_fixup alc861vd_fixups[] = {
8214         [ALC660VD_FIX_ASUS_GPIO1] = {
8215                 .type = HDA_FIXUP_FUNC,
8216                 .v.func = alc660vd_fixup_asus_gpio1,
8217         },
8218         [ALC861VD_FIX_DALLAS] = {
8219                 .type = HDA_FIXUP_FUNC,
8220                 .v.func = alc861vd_fixup_dallas,
8221         },
8222 };
8223
8224 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8225         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
8226         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8227         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
8228         {}
8229 };
8230
8231 /*
8232  */
8233 static int patch_alc861vd(struct hda_codec *codec)
8234 {
8235         struct alc_spec *spec;
8236         int err;
8237
8238         err = alc_alloc_spec(codec, 0x0b);
8239         if (err < 0)
8240                 return err;
8241
8242         spec = codec->spec;
8243         spec->gen.beep_nid = 0x23;
8244
8245         spec->shutup = alc_eapd_shutup;
8246
8247         alc_pre_init(codec);
8248
8249         snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
8250         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8251
8252         /* automatic parse from the BIOS config */
8253         err = alc861vd_parse_auto_config(codec);
8254         if (err < 0)
8255                 goto error;
8256
8257         if (!spec->gen.no_analog) {
8258                 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
8259                 if (err < 0)
8260                         goto error;
8261         }
8262
8263         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
8264
8265         return 0;
8266
8267  error:
8268         alc_free(codec);
8269         return err;
8270 }
8271
8272 /*
8273  * ALC662 support
8274  *
8275  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
8276  * configuration.  Each pin widget can choose any input DACs and a mixer.
8277  * Each ADC is connected from a mixer of all inputs.  This makes possible
8278  * 6-channel independent captures.
8279  *
8280  * In addition, an independent DAC for the multi-playback (not used in this
8281  * driver yet).
8282  */
8283
8284 /*
8285  * BIOS auto configuration
8286  */
8287
8288 static int alc662_parse_auto_config(struct hda_codec *codec)
8289 {
8290         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
8291         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
8292         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8293         const hda_nid_t *ssids;
8294
8295         if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
8296             codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
8297             codec->core.vendor_id == 0x10ec0671)
8298                 ssids = alc663_ssids;
8299         else
8300                 ssids = alc662_ssids;
8301         return alc_parse_auto_config(codec, alc662_ignore, ssids);
8302 }
8303
8304 static void alc272_fixup_mario(struct hda_codec *codec,
8305                                const struct hda_fixup *fix, int action)
8306 {
8307         if (action != HDA_FIXUP_ACT_PRE_PROBE)
8308                 return;
8309         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
8310                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
8311                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
8312                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
8313                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
8314                 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
8315 }
8316
8317 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
8318         { .channels = 2,
8319           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
8320         { .channels = 4,
8321           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
8322                    SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
8323         { }
8324 };
8325
8326 /* override the 2.1 chmap */
8327 static void alc_fixup_bass_chmap(struct hda_codec *codec,
8328                                     const struct hda_fixup *fix, int action)
8329 {
8330         if (action == HDA_FIXUP_ACT_BUILD) {
8331                 struct alc_spec *spec = codec->spec;
8332                 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8333         }
8334 }
8335
8336 /* avoid D3 for keeping GPIO up */
8337 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
8338                                           hda_nid_t nid,
8339                                           unsigned int power_state)
8340 {
8341         struct alc_spec *spec = codec->spec;
8342         if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
8343                 return AC_PWRST_D0;
8344         return power_state;
8345 }
8346
8347 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
8348                                    const struct hda_fixup *fix, int action)
8349 {
8350         struct alc_spec *spec = codec->spec;
8351
8352         alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
8353         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8354                 spec->mute_led_polarity = 1;
8355                 codec->power_filter = gpio_led_power_filter;
8356         }
8357 }
8358
8359 static void alc662_usi_automute_hook(struct hda_codec *codec,
8360                                          struct hda_jack_callback *jack)
8361 {
8362         struct alc_spec *spec = codec->spec;
8363         int vref;
8364         msleep(200);
8365         snd_hda_gen_hp_automute(codec, jack);
8366
8367         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
8368         msleep(100);
8369         snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8370                             vref);
8371 }
8372
8373 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
8374                                      const struct hda_fixup *fix, int action)
8375 {
8376         struct alc_spec *spec = codec->spec;
8377         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8378                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
8379                 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
8380         }
8381 }
8382
8383 static struct coef_fw alc668_coefs[] = {
8384         WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03,    0x0),
8385         WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06,    0x0), WRITE_COEF(0x07, 0x0f80),
8386         WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b,    0x0),
8387         WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
8388         WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
8389         WRITE_COEF(0x13,    0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
8390         WRITE_COEF(0x19,    0x0), WRITE_COEF(0x1a,    0x0), WRITE_COEF(0x1b,    0x0),
8391         WRITE_COEF(0x1c,    0x0), WRITE_COEF(0x1d,    0x0), WRITE_COEF(0x1e, 0x7418),
8392         WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
8393         WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
8394         WRITE_COEF(0x27,    0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
8395         WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
8396         WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac,    0x0),
8397         WRITE_COEF(0xad,    0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
8398         WRITE_COEF(0xb0,    0x0), WRITE_COEF(0xb1,    0x0), WRITE_COEF(0xb2,    0x0),
8399         WRITE_COEF(0xb3,    0x0), WRITE_COEF(0xb4,    0x0), WRITE_COEF(0xb5, 0x1040),
8400         WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
8401         WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
8402         WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
8403         WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
8404         {}
8405 };
8406
8407 static void alc668_restore_default_value(struct hda_codec *codec)
8408 {
8409         alc_process_coef_fw(codec, alc668_coefs);
8410 }
8411
8412 enum {
8413         ALC662_FIXUP_ASPIRE,
8414         ALC662_FIXUP_LED_GPIO1,
8415         ALC662_FIXUP_IDEAPAD,
8416         ALC272_FIXUP_MARIO,
8417         ALC662_FIXUP_CZC_P10T,
8418         ALC662_FIXUP_SKU_IGNORE,
8419         ALC662_FIXUP_HP_RP5800,
8420         ALC662_FIXUP_ASUS_MODE1,
8421         ALC662_FIXUP_ASUS_MODE2,
8422         ALC662_FIXUP_ASUS_MODE3,
8423         ALC662_FIXUP_ASUS_MODE4,
8424         ALC662_FIXUP_ASUS_MODE5,
8425         ALC662_FIXUP_ASUS_MODE6,
8426         ALC662_FIXUP_ASUS_MODE7,
8427         ALC662_FIXUP_ASUS_MODE8,
8428         ALC662_FIXUP_NO_JACK_DETECT,
8429         ALC662_FIXUP_ZOTAC_Z68,
8430         ALC662_FIXUP_INV_DMIC,
8431         ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
8432         ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
8433         ALC662_FIXUP_HEADSET_MODE,
8434         ALC668_FIXUP_HEADSET_MODE,
8435         ALC662_FIXUP_BASS_MODE4_CHMAP,
8436         ALC662_FIXUP_BASS_16,
8437         ALC662_FIXUP_BASS_1A,
8438         ALC662_FIXUP_BASS_CHMAP,
8439         ALC668_FIXUP_AUTO_MUTE,
8440         ALC668_FIXUP_DELL_DISABLE_AAMIX,
8441         ALC668_FIXUP_DELL_XPS13,
8442         ALC662_FIXUP_ASUS_Nx50,
8443         ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
8444         ALC668_FIXUP_ASUS_Nx51,
8445         ALC668_FIXUP_MIC_COEF,
8446         ALC668_FIXUP_ASUS_G751,
8447         ALC891_FIXUP_HEADSET_MODE,
8448         ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8449         ALC662_FIXUP_ACER_VERITON,
8450         ALC892_FIXUP_ASROCK_MOBO,
8451         ALC662_FIXUP_USI_FUNC,
8452         ALC662_FIXUP_USI_HEADSET_MODE,
8453         ALC662_FIXUP_LENOVO_MULTI_CODECS,
8454 };
8455
8456 static const struct hda_fixup alc662_fixups[] = {
8457         [ALC662_FIXUP_ASPIRE] = {
8458                 .type = HDA_FIXUP_PINS,
8459                 .v.pins = (const struct hda_pintbl[]) {
8460                         { 0x15, 0x99130112 }, /* subwoofer */
8461                         { }
8462                 }
8463         },
8464         [ALC662_FIXUP_LED_GPIO1] = {
8465                 .type = HDA_FIXUP_FUNC,
8466                 .v.func = alc662_fixup_led_gpio1,
8467         },
8468         [ALC662_FIXUP_IDEAPAD] = {
8469                 .type = HDA_FIXUP_PINS,
8470                 .v.pins = (const struct hda_pintbl[]) {
8471                         { 0x17, 0x99130112 }, /* subwoofer */
8472                         { }
8473                 },
8474                 .chained = true,
8475                 .chain_id = ALC662_FIXUP_LED_GPIO1,
8476         },
8477         [ALC272_FIXUP_MARIO] = {
8478                 .type = HDA_FIXUP_FUNC,
8479                 .v.func = alc272_fixup_mario,
8480         },
8481         [ALC662_FIXUP_CZC_P10T] = {
8482                 .type = HDA_FIXUP_VERBS,
8483                 .v.verbs = (const struct hda_verb[]) {
8484                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
8485                         {}
8486                 }
8487         },
8488         [ALC662_FIXUP_SKU_IGNORE] = {
8489                 .type = HDA_FIXUP_FUNC,
8490                 .v.func = alc_fixup_sku_ignore,
8491         },
8492         [ALC662_FIXUP_HP_RP5800] = {
8493                 .type = HDA_FIXUP_PINS,
8494                 .v.pins = (const struct hda_pintbl[]) {
8495                         { 0x14, 0x0221201f }, /* HP out */
8496                         { }
8497                 },
8498                 .chained = true,
8499                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8500         },
8501         [ALC662_FIXUP_ASUS_MODE1] = {
8502                 .type = HDA_FIXUP_PINS,
8503                 .v.pins = (const struct hda_pintbl[]) {
8504                         { 0x14, 0x99130110 }, /* speaker */
8505                         { 0x18, 0x01a19c20 }, /* mic */
8506                         { 0x19, 0x99a3092f }, /* int-mic */
8507                         { 0x21, 0x0121401f }, /* HP out */
8508                         { }
8509                 },
8510                 .chained = true,
8511                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8512         },
8513         [ALC662_FIXUP_ASUS_MODE2] = {
8514                 .type = HDA_FIXUP_PINS,
8515                 .v.pins = (const struct hda_pintbl[]) {
8516                         { 0x14, 0x99130110 }, /* speaker */
8517                         { 0x18, 0x01a19820 }, /* mic */
8518                         { 0x19, 0x99a3092f }, /* int-mic */
8519                         { 0x1b, 0x0121401f }, /* HP out */
8520                         { }
8521                 },
8522                 .chained = true,
8523                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8524         },
8525         [ALC662_FIXUP_ASUS_MODE3] = {
8526                 .type = HDA_FIXUP_PINS,
8527                 .v.pins = (const struct hda_pintbl[]) {
8528                         { 0x14, 0x99130110 }, /* speaker */
8529                         { 0x15, 0x0121441f }, /* HP */
8530                         { 0x18, 0x01a19840 }, /* mic */
8531                         { 0x19, 0x99a3094f }, /* int-mic */
8532                         { 0x21, 0x01211420 }, /* HP2 */
8533                         { }
8534                 },
8535                 .chained = true,
8536                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8537         },
8538         [ALC662_FIXUP_ASUS_MODE4] = {
8539                 .type = HDA_FIXUP_PINS,
8540                 .v.pins = (const struct hda_pintbl[]) {
8541                         { 0x14, 0x99130110 }, /* speaker */
8542                         { 0x16, 0x99130111 }, /* speaker */
8543                         { 0x18, 0x01a19840 }, /* mic */
8544                         { 0x19, 0x99a3094f }, /* int-mic */
8545                         { 0x21, 0x0121441f }, /* HP */
8546                         { }
8547                 },
8548                 .chained = true,
8549                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8550         },
8551         [ALC662_FIXUP_ASUS_MODE5] = {
8552                 .type = HDA_FIXUP_PINS,
8553                 .v.pins = (const struct hda_pintbl[]) {
8554                         { 0x14, 0x99130110 }, /* speaker */
8555                         { 0x15, 0x0121441f }, /* HP */
8556                         { 0x16, 0x99130111 }, /* speaker */
8557                         { 0x18, 0x01a19840 }, /* mic */
8558                         { 0x19, 0x99a3094f }, /* int-mic */
8559                         { }
8560                 },
8561                 .chained = true,
8562                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8563         },
8564         [ALC662_FIXUP_ASUS_MODE6] = {
8565                 .type = HDA_FIXUP_PINS,
8566                 .v.pins = (const struct hda_pintbl[]) {
8567                         { 0x14, 0x99130110 }, /* speaker */
8568                         { 0x15, 0x01211420 }, /* HP2 */
8569                         { 0x18, 0x01a19840 }, /* mic */
8570                         { 0x19, 0x99a3094f }, /* int-mic */
8571                         { 0x1b, 0x0121441f }, /* HP */
8572                         { }
8573                 },
8574                 .chained = true,
8575                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8576         },
8577         [ALC662_FIXUP_ASUS_MODE7] = {
8578                 .type = HDA_FIXUP_PINS,
8579                 .v.pins = (const struct hda_pintbl[]) {
8580                         { 0x14, 0x99130110 }, /* speaker */
8581                         { 0x17, 0x99130111 }, /* speaker */
8582                         { 0x18, 0x01a19840 }, /* mic */
8583                         { 0x19, 0x99a3094f }, /* int-mic */
8584                         { 0x1b, 0x01214020 }, /* HP */
8585                         { 0x21, 0x0121401f }, /* HP */
8586                         { }
8587                 },
8588                 .chained = true,
8589                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8590         },
8591         [ALC662_FIXUP_ASUS_MODE8] = {
8592                 .type = HDA_FIXUP_PINS,
8593                 .v.pins = (const struct hda_pintbl[]) {
8594                         { 0x14, 0x99130110 }, /* speaker */
8595                         { 0x12, 0x99a30970 }, /* int-mic */
8596                         { 0x15, 0x01214020 }, /* HP */
8597                         { 0x17, 0x99130111 }, /* speaker */
8598                         { 0x18, 0x01a19840 }, /* mic */
8599                         { 0x21, 0x0121401f }, /* HP */
8600                         { }
8601                 },
8602                 .chained = true,
8603                 .chain_id = ALC662_FIXUP_SKU_IGNORE
8604         },
8605         [ALC662_FIXUP_NO_JACK_DETECT] = {
8606                 .type = HDA_FIXUP_FUNC,
8607                 .v.func = alc_fixup_no_jack_detect,
8608         },
8609         [ALC662_FIXUP_ZOTAC_Z68] = {
8610                 .type = HDA_FIXUP_PINS,
8611                 .v.pins = (const struct hda_pintbl[]) {
8612                         { 0x1b, 0x02214020 }, /* Front HP */
8613                         { }
8614                 }
8615         },
8616         [ALC662_FIXUP_INV_DMIC] = {
8617                 .type = HDA_FIXUP_FUNC,
8618                 .v.func = alc_fixup_inv_dmic,
8619         },
8620         [ALC668_FIXUP_DELL_XPS13] = {
8621                 .type = HDA_FIXUP_FUNC,
8622                 .v.func = alc_fixup_dell_xps13,
8623                 .chained = true,
8624                 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
8625         },
8626         [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
8627                 .type = HDA_FIXUP_FUNC,
8628                 .v.func = alc_fixup_disable_aamix,
8629                 .chained = true,
8630                 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8631         },
8632         [ALC668_FIXUP_AUTO_MUTE] = {
8633                 .type = HDA_FIXUP_FUNC,
8634                 .v.func = alc_fixup_auto_mute_via_amp,
8635                 .chained = true,
8636                 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8637         },
8638         [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
8639                 .type = HDA_FIXUP_PINS,
8640                 .v.pins = (const struct hda_pintbl[]) {
8641                         { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8642                         /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
8643                         { }
8644                 },
8645                 .chained = true,
8646                 .chain_id = ALC662_FIXUP_HEADSET_MODE
8647         },
8648         [ALC662_FIXUP_HEADSET_MODE] = {
8649                 .type = HDA_FIXUP_FUNC,
8650                 .v.func = alc_fixup_headset_mode_alc662,
8651         },
8652         [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
8653                 .type = HDA_FIXUP_PINS,
8654                 .v.pins = (const struct hda_pintbl[]) {
8655                         { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8656                         { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8657                         { }
8658                 },
8659                 .chained = true,
8660                 .chain_id = ALC668_FIXUP_HEADSET_MODE
8661         },
8662         [ALC668_FIXUP_HEADSET_MODE] = {
8663                 .type = HDA_FIXUP_FUNC,
8664                 .v.func = alc_fixup_headset_mode_alc668,
8665         },
8666         [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8667                 .type = HDA_FIXUP_FUNC,
8668                 .v.func = alc_fixup_bass_chmap,
8669                 .chained = true,
8670                 .chain_id = ALC662_FIXUP_ASUS_MODE4
8671         },
8672         [ALC662_FIXUP_BASS_16] = {
8673                 .type = HDA_FIXUP_PINS,
8674                 .v.pins = (const struct hda_pintbl[]) {
8675                         {0x16, 0x80106111}, /* bass speaker */
8676                         {}
8677                 },
8678                 .chained = true,
8679                 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8680         },
8681         [ALC662_FIXUP_BASS_1A] = {
8682                 .type = HDA_FIXUP_PINS,
8683                 .v.pins = (const struct hda_pintbl[]) {
8684                         {0x1a, 0x80106111}, /* bass speaker */
8685                         {}
8686                 },
8687                 .chained = true,
8688                 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8689         },
8690         [ALC662_FIXUP_BASS_CHMAP] = {
8691                 .type = HDA_FIXUP_FUNC,
8692                 .v.func = alc_fixup_bass_chmap,
8693         },
8694         [ALC662_FIXUP_ASUS_Nx50] = {
8695                 .type = HDA_FIXUP_FUNC,
8696                 .v.func = alc_fixup_auto_mute_via_amp,
8697                 .chained = true,
8698                 .chain_id = ALC662_FIXUP_BASS_1A
8699         },
8700         [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
8701                 .type = HDA_FIXUP_FUNC,
8702                 .v.func = alc_fixup_headset_mode_alc668,
8703                 .chain_id = ALC662_FIXUP_BASS_CHMAP
8704         },
8705         [ALC668_FIXUP_ASUS_Nx51] = {
8706                 .type = HDA_FIXUP_PINS,
8707                 .v.pins = (const struct hda_pintbl[]) {
8708                         { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8709                         { 0x1a, 0x90170151 }, /* bass speaker */
8710                         { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8711                         {}
8712                 },
8713                 .chained = true,
8714                 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
8715         },
8716         [ALC668_FIXUP_MIC_COEF] = {
8717                 .type = HDA_FIXUP_VERBS,
8718                 .v.verbs = (const struct hda_verb[]) {
8719                         { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
8720                         { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
8721                         {}
8722                 },
8723         },
8724         [ALC668_FIXUP_ASUS_G751] = {
8725                 .type = HDA_FIXUP_PINS,
8726                 .v.pins = (const struct hda_pintbl[]) {
8727                         { 0x16, 0x0421101f }, /* HP */
8728                         {}
8729                 },
8730                 .chained = true,
8731                 .chain_id = ALC668_FIXUP_MIC_COEF
8732         },
8733         [ALC891_FIXUP_HEADSET_MODE] = {
8734                 .type = HDA_FIXUP_FUNC,
8735                 .v.func = alc_fixup_headset_mode,
8736         },
8737         [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
8738                 .type = HDA_FIXUP_PINS,
8739                 .v.pins = (const struct hda_pintbl[]) {
8740                         { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8741                         { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8742                         { }
8743                 },
8744                 .chained = true,
8745                 .chain_id = ALC891_FIXUP_HEADSET_MODE
8746         },
8747         [ALC662_FIXUP_ACER_VERITON] = {
8748                 .type = HDA_FIXUP_PINS,
8749                 .v.pins = (const struct hda_pintbl[]) {
8750                         { 0x15, 0x50170120 }, /* no internal speaker */
8751                         { }
8752                 }
8753         },
8754         [ALC892_FIXUP_ASROCK_MOBO] = {
8755                 .type = HDA_FIXUP_PINS,
8756                 .v.pins = (const struct hda_pintbl[]) {
8757                         { 0x15, 0x40f000f0 }, /* disabled */
8758                         { 0x16, 0x40f000f0 }, /* disabled */
8759                         { }
8760                 }
8761         },
8762         [ALC662_FIXUP_USI_FUNC] = {
8763                 .type = HDA_FIXUP_FUNC,
8764                 .v.func = alc662_fixup_usi_headset_mic,
8765         },
8766         [ALC662_FIXUP_USI_HEADSET_MODE] = {
8767                 .type = HDA_FIXUP_PINS,
8768                 .v.pins = (const struct hda_pintbl[]) {
8769                         { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
8770                         { 0x18, 0x01a1903d },
8771                         { }
8772                 },
8773                 .chained = true,
8774                 .chain_id = ALC662_FIXUP_USI_FUNC
8775         },
8776         [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
8777                 .type = HDA_FIXUP_FUNC,
8778                 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8779         },
8780 };
8781
8782 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
8783         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
8784         SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
8785         SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
8786         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
8787         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
8788         SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
8789         SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
8790         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
8791         SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8792         SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8793         SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
8794         SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
8795         SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
8796         SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8797         SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8798         SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8799         SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8800         SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8801         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
8802         SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
8803         SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
8804         SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
8805         SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
8806         SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
8807         SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
8808         SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
8809         SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
8810         SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
8811         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
8812         SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8813         SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
8814         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
8815         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
8816         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
8817         SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
8818         SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
8819         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
8820         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
8821         SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
8822         SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
8823         SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
8824         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
8825
8826 #if 0
8827         /* Below is a quirk table taken from the old code.
8828          * Basically the device should work as is without the fixup table.
8829          * If BIOS doesn't give a proper info, enable the corresponding
8830          * fixup entry.
8831          */
8832         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
8833         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
8834         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
8835         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
8836         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8837         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8838         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8839         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
8840         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
8841         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8842         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
8843         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
8844         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
8845         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
8846         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
8847         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8848         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
8849         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
8850         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8851         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8852         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8853         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8854         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
8855         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
8856         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
8857         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8858         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
8859         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8860         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8861         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
8862         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8863         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8864         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
8865         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
8866         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
8867         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
8868         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
8869         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
8870         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
8871         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8872         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
8873         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
8874         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8875         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
8876         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
8877         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
8878         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
8879         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
8880         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8881         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
8882 #endif
8883         {}
8884 };
8885
8886 static const struct hda_model_fixup alc662_fixup_models[] = {
8887         {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
8888         {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
8889         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
8890         {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
8891         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
8892         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
8893         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
8894         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
8895         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
8896         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
8897         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
8898         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
8899         {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
8900         {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
8901         {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
8902         {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
8903         {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
8904         {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
8905         {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
8906         {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
8907         {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
8908         {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
8909         {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
8910         {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
8911         {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
8912         {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
8913         {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
8914         {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
8915         {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
8916         {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
8917         {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
8918         {}
8919 };
8920
8921 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
8922         SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8923                 {0x17, 0x02211010},
8924                 {0x18, 0x01a19030},
8925                 {0x1a, 0x01813040},
8926                 {0x21, 0x01014020}),
8927         SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8928                 {0x16, 0x01813030},
8929                 {0x17, 0x02211010},
8930                 {0x18, 0x01a19040},
8931                 {0x21, 0x01014020}),
8932         SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
8933                 {0x14, 0x01014010},
8934                 {0x18, 0x01a19020},
8935                 {0x1a, 0x0181302f},
8936                 {0x1b, 0x0221401f}),
8937         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8938                 {0x12, 0x99a30130},
8939                 {0x14, 0x90170110},
8940                 {0x15, 0x0321101f},
8941                 {0x16, 0x03011020}),
8942         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8943                 {0x12, 0x99a30140},
8944                 {0x14, 0x90170110},
8945                 {0x15, 0x0321101f},
8946                 {0x16, 0x03011020}),
8947         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8948                 {0x12, 0x99a30150},
8949                 {0x14, 0x90170110},
8950                 {0x15, 0x0321101f},
8951                 {0x16, 0x03011020}),
8952         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8953                 {0x14, 0x90170110},
8954                 {0x15, 0x0321101f},
8955                 {0x16, 0x03011020}),
8956         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
8957                 {0x12, 0x90a60130},
8958                 {0x14, 0x90170110},
8959                 {0x15, 0x0321101f}),
8960         {}
8961 };
8962
8963 /*
8964  */
8965 static int patch_alc662(struct hda_codec *codec)
8966 {
8967         struct alc_spec *spec;
8968         int err;
8969
8970         err = alc_alloc_spec(codec, 0x0b);
8971         if (err < 0)
8972                 return err;
8973
8974         spec = codec->spec;
8975
8976         spec->shutup = alc_eapd_shutup;
8977
8978         /* handle multiple HPs as is */
8979         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
8980
8981         alc_fix_pll_init(codec, 0x20, 0x04, 15);
8982
8983         switch (codec->core.vendor_id) {
8984         case 0x10ec0668:
8985                 spec->init_hook = alc668_restore_default_value;
8986                 break;
8987         }
8988
8989         alc_pre_init(codec);
8990
8991         snd_hda_pick_fixup(codec, alc662_fixup_models,
8992                        alc662_fixup_tbl, alc662_fixups);
8993         snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups);
8994         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8995
8996         alc_auto_parse_customize_define(codec);
8997
8998         if (has_cdefine_beep(codec))
8999                 spec->gen.beep_nid = 0x01;
9000
9001         if ((alc_get_coef0(codec) & (1 << 14)) &&
9002             codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
9003             spec->cdefine.platform_type == 1) {
9004                 err = alc_codec_rename(codec, "ALC272X");
9005                 if (err < 0)
9006                         goto error;
9007         }
9008
9009         /* automatic parse from the BIOS config */
9010         err = alc662_parse_auto_config(codec);
9011         if (err < 0)
9012                 goto error;
9013
9014         if (!spec->gen.no_analog && spec->gen.beep_nid) {
9015                 switch (codec->core.vendor_id) {
9016                 case 0x10ec0662:
9017                         err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
9018                         break;
9019                 case 0x10ec0272:
9020                 case 0x10ec0663:
9021                 case 0x10ec0665:
9022                 case 0x10ec0668:
9023                         err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
9024                         break;
9025                 case 0x10ec0273:
9026                         err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
9027                         break;
9028                 }
9029                 if (err < 0)
9030                         goto error;
9031         }
9032
9033         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
9034
9035         return 0;
9036
9037  error:
9038         alc_free(codec);
9039         return err;
9040 }
9041
9042 /*
9043  * ALC680 support
9044  */
9045
9046 static int alc680_parse_auto_config(struct hda_codec *codec)
9047 {
9048         return alc_parse_auto_config(codec, NULL, NULL);
9049 }
9050
9051 /*
9052  */
9053 static int patch_alc680(struct hda_codec *codec)
9054 {
9055         int err;
9056
9057         /* ALC680 has no aa-loopback mixer */
9058         err = alc_alloc_spec(codec, 0);
9059         if (err < 0)
9060                 return err;
9061
9062         /* automatic parse from the BIOS config */
9063         err = alc680_parse_auto_config(codec);
9064         if (err < 0) {
9065                 alc_free(codec);
9066                 return err;
9067         }
9068
9069         return 0;
9070 }
9071
9072 /*
9073  * patch entries
9074  */
9075 static const struct hda_device_id snd_hda_id_realtek[] = {
9076         HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
9077         HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
9078         HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
9079         HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
9080         HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
9081         HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
9082         HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
9083         HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
9084         HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
9085         HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
9086         HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
9087         HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
9088         HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
9089         HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
9090         HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
9091         HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
9092         HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
9093         HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
9094         HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
9095         HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
9096         HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
9097         HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
9098         HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
9099         HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
9100         HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
9101         HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
9102         HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
9103         HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
9104         HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
9105         HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
9106         HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
9107         HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
9108         HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
9109         HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
9110         HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
9111         HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
9112         HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
9113         HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
9114         HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
9115         HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
9116         HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
9117         HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
9118         HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
9119         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
9120         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
9121         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
9122         HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
9123         HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
9124         HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
9125         HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
9126         HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
9127         HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
9128         HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
9129         HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
9130         HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
9131         HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
9132         HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
9133         HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
9134         HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
9135         HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
9136         HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
9137         HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
9138         HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
9139         HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
9140         HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
9141         HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
9142         HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
9143         HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
9144         HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
9145         HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
9146         HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
9147         HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
9148         HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
9149         {} /* terminator */
9150 };
9151 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
9152
9153 MODULE_LICENSE("GPL");
9154 MODULE_DESCRIPTION("Realtek HD-audio codec");
9155
9156 static struct hda_codec_driver realtek_driver = {
9157         .id = snd_hda_id_realtek,
9158 };
9159
9160 module_hda_codec_driver(realtek_driver);