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