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