]> git.karo-electronics.de Git - linux-beck.git/blob - sound/pci/hda/patch_realtek.c
Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm...
[linux-beck.git] / sound / pci / hda / patch_realtek.c
1 /*
2  * Universal Interface for Intel High Definition Audio Codec
3  *
4  * HD audio interface patch for Realtek ALC codecs
5  *
6  * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7  *                    PeiSen Hou <pshou@realtek.com.tw>
8  *                    Takashi Iwai <tiwai@suse.de>
9  *                    Jonathan Woithe <jwoithe@just42.net>
10  *
11  *  This driver is free software; you can redistribute it and/or modify
12  *  it under the terms of the GNU General Public License as published by
13  *  the Free Software Foundation; either version 2 of the License, or
14  *  (at your option) any later version.
15  *
16  *  This driver is distributed in the hope that it will be useful,
17  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
19  *  GNU General Public License for more details.
20  *
21  *  You should have received a copy of the GNU General Public License
22  *  along with this program; if not, write to the Free Software
23  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
24  */
25
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <linux/dmi.h>
31 #include <linux/module.h>
32 #include <linux/input.h>
33 #include <sound/core.h>
34 #include <sound/jack.h>
35 #include "hda_codec.h"
36 #include "hda_local.h"
37 #include "hda_auto_parser.h"
38 #include "hda_jack.h"
39 #include "hda_generic.h"
40
41 /* keep halting ALC5505 DSP, for power saving */
42 #define HALT_REALTEK_ALC5505
43
44 /* for GPIO Poll */
45 #define GPIO_MASK       0x03
46
47 /* extra amp-initialization sequence types */
48 enum {
49         ALC_INIT_NONE,
50         ALC_INIT_DEFAULT,
51         ALC_INIT_GPIO1,
52         ALC_INIT_GPIO2,
53         ALC_INIT_GPIO3,
54 };
55
56 enum {
57         ALC_HEADSET_MODE_UNKNOWN,
58         ALC_HEADSET_MODE_UNPLUGGED,
59         ALC_HEADSET_MODE_HEADSET,
60         ALC_HEADSET_MODE_MIC,
61         ALC_HEADSET_MODE_HEADPHONE,
62 };
63
64 enum {
65         ALC_HEADSET_TYPE_UNKNOWN,
66         ALC_HEADSET_TYPE_CTIA,
67         ALC_HEADSET_TYPE_OMTP,
68 };
69
70 struct alc_customize_define {
71         unsigned int  sku_cfg;
72         unsigned char port_connectivity;
73         unsigned char check_sum;
74         unsigned char customization;
75         unsigned char external_amp;
76         unsigned int  enable_pcbeep:1;
77         unsigned int  platform_type:1;
78         unsigned int  swap:1;
79         unsigned int  override:1;
80         unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */
81 };
82
83 struct alc_spec {
84         struct hda_gen_spec gen; /* must be at head */
85
86         /* codec parameterization */
87         const struct snd_kcontrol_new *mixers[5];       /* mixer arrays */
88         unsigned int num_mixers;
89         unsigned int beep_amp;  /* beep amp value, set via set_beep_amp() */
90
91         struct alc_customize_define cdefine;
92         unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
93
94         /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
95         int mute_led_polarity;
96         hda_nid_t mute_led_nid;
97         hda_nid_t cap_mute_led_nid;
98
99         unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
100         unsigned int gpio_mute_led_mask;
101         unsigned int gpio_mic_led_mask;
102
103         hda_nid_t headset_mic_pin;
104         hda_nid_t headphone_mic_pin;
105         int current_headset_mode;
106         int current_headset_type;
107
108         /* hooks */
109         void (*init_hook)(struct hda_codec *codec);
110 #ifdef CONFIG_PM
111         void (*power_hook)(struct hda_codec *codec);
112 #endif
113         void (*shutup)(struct hda_codec *codec);
114
115         int init_amp;
116         int codec_variant;      /* flag for other variants */
117         unsigned int has_alc5505_dsp:1;
118         unsigned int no_depop_delay:1;
119
120         /* for PLL fix */
121         hda_nid_t pll_nid;
122         unsigned int pll_coef_idx, pll_coef_bit;
123         unsigned int coef0;
124         struct input_dev *kb_dev;
125 };
126
127 /*
128  * COEF access helper functions
129  */
130
131 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
132                                unsigned int coef_idx)
133 {
134         unsigned int val;
135
136         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
137         val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
138         return val;
139 }
140
141 #define alc_read_coef_idx(codec, coef_idx) \
142         alc_read_coefex_idx(codec, 0x20, coef_idx)
143
144 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
145                                  unsigned int coef_idx, unsigned int coef_val)
146 {
147         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
148         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
149 }
150
151 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
152         alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
153
154 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
155                                   unsigned int coef_idx, unsigned int mask,
156                                   unsigned int bits_set)
157 {
158         unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
159
160         if (val != -1)
161                 alc_write_coefex_idx(codec, nid, coef_idx,
162                                      (val & ~mask) | bits_set);
163 }
164
165 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set)    \
166         alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
167
168 /* a special bypass for COEF 0; read the cached value at the second time */
169 static unsigned int alc_get_coef0(struct hda_codec *codec)
170 {
171         struct alc_spec *spec = codec->spec;
172
173         if (!spec->coef0)
174                 spec->coef0 = alc_read_coef_idx(codec, 0);
175         return spec->coef0;
176 }
177
178 /* coef writes/updates batch */
179 struct coef_fw {
180         unsigned char nid;
181         unsigned char idx;
182         unsigned short mask;
183         unsigned short val;
184 };
185
186 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
187         { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
188 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
189 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
190 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
191
192 static void alc_process_coef_fw(struct hda_codec *codec,
193                                 const struct coef_fw *fw)
194 {
195         for (; fw->nid; fw++) {
196                 if (fw->mask == (unsigned short)-1)
197                         alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
198                 else
199                         alc_update_coefex_idx(codec, fw->nid, fw->idx,
200                                               fw->mask, fw->val);
201         }
202 }
203
204 /*
205  * Append the given mixer and verb elements for the later use
206  * The mixer array is referred in build_controls(), and init_verbs are
207  * called in init().
208  */
209 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
210 {
211         if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
212                 return;
213         spec->mixers[spec->num_mixers++] = mix;
214 }
215
216 /*
217  * GPIO setup tables, used in initialization
218  */
219 /* Enable GPIO mask and set output */
220 static const struct hda_verb alc_gpio1_init_verbs[] = {
221         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
222         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
223         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
224         { }
225 };
226
227 static const struct hda_verb alc_gpio2_init_verbs[] = {
228         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
229         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
230         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
231         { }
232 };
233
234 static const struct hda_verb alc_gpio3_init_verbs[] = {
235         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
236         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
237         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
238         { }
239 };
240
241 /*
242  * Fix hardware PLL issue
243  * On some codecs, the analog PLL gating control must be off while
244  * the default value is 1.
245  */
246 static void alc_fix_pll(struct hda_codec *codec)
247 {
248         struct alc_spec *spec = codec->spec;
249
250         if (spec->pll_nid)
251                 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
252                                       1 << spec->pll_coef_bit, 0);
253 }
254
255 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
256                              unsigned int coef_idx, unsigned int coef_bit)
257 {
258         struct alc_spec *spec = codec->spec;
259         spec->pll_nid = nid;
260         spec->pll_coef_idx = coef_idx;
261         spec->pll_coef_bit = coef_bit;
262         alc_fix_pll(codec);
263 }
264
265 /* update the master volume per volume-knob's unsol event */
266 static void alc_update_knob_master(struct hda_codec *codec,
267                                    struct hda_jack_callback *jack)
268 {
269         unsigned int val;
270         struct snd_kcontrol *kctl;
271         struct snd_ctl_elem_value *uctl;
272
273         kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
274         if (!kctl)
275                 return;
276         uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
277         if (!uctl)
278                 return;
279         val = snd_hda_codec_read(codec, jack->tbl->nid, 0,
280                                  AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
281         val &= HDA_AMP_VOLMASK;
282         uctl->value.integer.value[0] = val;
283         uctl->value.integer.value[1] = val;
284         kctl->put(kctl, uctl);
285         kfree(uctl);
286 }
287
288 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
289 {
290         /* For some reason, the res given from ALC880 is broken.
291            Here we adjust it properly. */
292         snd_hda_jack_unsol_event(codec, res >> 2);
293 }
294
295 /* Change EAPD to verb control */
296 static void alc_fill_eapd_coef(struct hda_codec *codec)
297 {
298         int coef;
299
300         coef = alc_get_coef0(codec);
301
302         switch (codec->core.vendor_id) {
303         case 0x10ec0262:
304                 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
305                 break;
306         case 0x10ec0267:
307         case 0x10ec0268:
308                 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
309                 break;
310         case 0x10ec0269:
311                 if ((coef & 0x00f0) == 0x0010)
312                         alc_update_coef_idx(codec, 0xd, 0, 1<<14);
313                 if ((coef & 0x00f0) == 0x0020)
314                         alc_update_coef_idx(codec, 0x4, 1<<15, 0);
315                 if ((coef & 0x00f0) == 0x0030)
316                         alc_update_coef_idx(codec, 0x10, 1<<9, 0);
317                 break;
318         case 0x10ec0280:
319         case 0x10ec0284:
320         case 0x10ec0290:
321         case 0x10ec0292:
322                 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
323                 break;
324         case 0x10ec0233:
325         case 0x10ec0255:
326         case 0x10ec0256:
327         case 0x10ec0282:
328         case 0x10ec0283:
329         case 0x10ec0286:
330         case 0x10ec0288:
331         case 0x10ec0298:
332                 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
333                 break;
334         case 0x10ec0285:
335         case 0x10ec0293:
336                 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
337                 break;
338         case 0x10ec0662:
339                 if ((coef & 0x00f0) == 0x0030)
340                         alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
341                 break;
342         case 0x10ec0272:
343         case 0x10ec0273:
344         case 0x10ec0663:
345         case 0x10ec0665:
346         case 0x10ec0670:
347         case 0x10ec0671:
348         case 0x10ec0672:
349                 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
350                 break;
351         case 0x10ec0668:
352                 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
353                 break;
354         case 0x10ec0867:
355                 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
356                 break;
357         case 0x10ec0888:
358                 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
359                         alc_update_coef_idx(codec, 0x7, 1<<5, 0);
360                 break;
361         case 0x10ec0892:
362                 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
363                 break;
364         case 0x10ec0899:
365         case 0x10ec0900:
366                 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
367                 break;
368         }
369 }
370
371 /* additional initialization for ALC888 variants */
372 static void alc888_coef_init(struct hda_codec *codec)
373 {
374         switch (alc_get_coef0(codec) & 0x00f0) {
375         /* alc888-VA */
376         case 0x00:
377         /* alc888-VB */
378         case 0x10:
379                 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
380                 break;
381         }
382 }
383
384 /* turn on/off EAPD control (only if available) */
385 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
386 {
387         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
388                 return;
389         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
390                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
391                                     on ? 2 : 0);
392 }
393
394 /* turn on/off EAPD controls of the codec */
395 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
396 {
397         /* We currently only handle front, HP */
398         static hda_nid_t pins[] = {
399                 0x0f, 0x10, 0x14, 0x15, 0x17, 0
400         };
401         hda_nid_t *p;
402         for (p = pins; *p; p++)
403                 set_eapd(codec, *p, on);
404 }
405
406 /* generic shutup callback;
407  * just turning off EPAD and a little pause for avoiding pop-noise
408  */
409 static void alc_eapd_shutup(struct hda_codec *codec)
410 {
411         struct alc_spec *spec = codec->spec;
412
413         alc_auto_setup_eapd(codec, false);
414         if (!spec->no_depop_delay)
415                 msleep(200);
416         snd_hda_shutup_pins(codec);
417 }
418
419 /* generic EAPD initialization */
420 static void alc_auto_init_amp(struct hda_codec *codec, int type)
421 {
422         alc_fill_eapd_coef(codec);
423         alc_auto_setup_eapd(codec, true);
424         switch (type) {
425         case ALC_INIT_GPIO1:
426                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
427                 break;
428         case ALC_INIT_GPIO2:
429                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
430                 break;
431         case ALC_INIT_GPIO3:
432                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
433                 break;
434         case ALC_INIT_DEFAULT:
435                 switch (codec->core.vendor_id) {
436                 case 0x10ec0260:
437                         alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
438                         break;
439                 case 0x10ec0880:
440                 case 0x10ec0882:
441                 case 0x10ec0883:
442                 case 0x10ec0885:
443                         alc_update_coef_idx(codec, 7, 0, 0x2030);
444                         break;
445                 case 0x10ec0888:
446                         alc888_coef_init(codec);
447                         break;
448                 }
449                 break;
450         }
451 }
452
453
454 /*
455  * Realtek SSID verification
456  */
457
458 /* Could be any non-zero and even value. When used as fixup, tells
459  * the driver to ignore any present sku defines.
460  */
461 #define ALC_FIXUP_SKU_IGNORE (2)
462
463 static void alc_fixup_sku_ignore(struct hda_codec *codec,
464                                  const struct hda_fixup *fix, int action)
465 {
466         struct alc_spec *spec = codec->spec;
467         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
468                 spec->cdefine.fixup = 1;
469                 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
470         }
471 }
472
473 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
474                                     const struct hda_fixup *fix, int action)
475 {
476         struct alc_spec *spec = codec->spec;
477
478         if (action == HDA_FIXUP_ACT_PROBE) {
479                 spec->no_depop_delay = 1;
480                 codec->depop_delay = 0;
481         }
482 }
483
484 static int alc_auto_parse_customize_define(struct hda_codec *codec)
485 {
486         unsigned int ass, tmp, i;
487         unsigned nid = 0;
488         struct alc_spec *spec = codec->spec;
489
490         spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
491
492         if (spec->cdefine.fixup) {
493                 ass = spec->cdefine.sku_cfg;
494                 if (ass == ALC_FIXUP_SKU_IGNORE)
495                         return -1;
496                 goto do_sku;
497         }
498
499         if (!codec->bus->pci)
500                 return -1;
501         ass = codec->core.subsystem_id & 0xffff;
502         if (ass != codec->bus->pci->subsystem_device && (ass & 1))
503                 goto do_sku;
504
505         nid = 0x1d;
506         if (codec->core.vendor_id == 0x10ec0260)
507                 nid = 0x17;
508         ass = snd_hda_codec_get_pincfg(codec, nid);
509
510         if (!(ass & 1)) {
511                 codec_info(codec, "%s: SKU not ready 0x%08x\n",
512                            codec->core.chip_name, ass);
513                 return -1;
514         }
515
516         /* check sum */
517         tmp = 0;
518         for (i = 1; i < 16; i++) {
519                 if ((ass >> i) & 1)
520                         tmp++;
521         }
522         if (((ass >> 16) & 0xf) != tmp)
523                 return -1;
524
525         spec->cdefine.port_connectivity = ass >> 30;
526         spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
527         spec->cdefine.check_sum = (ass >> 16) & 0xf;
528         spec->cdefine.customization = ass >> 8;
529 do_sku:
530         spec->cdefine.sku_cfg = ass;
531         spec->cdefine.external_amp = (ass & 0x38) >> 3;
532         spec->cdefine.platform_type = (ass & 0x4) >> 2;
533         spec->cdefine.swap = (ass & 0x2) >> 1;
534         spec->cdefine.override = ass & 0x1;
535
536         codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
537                    nid, spec->cdefine.sku_cfg);
538         codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
539                    spec->cdefine.port_connectivity);
540         codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
541         codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
542         codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
543         codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
544         codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
545         codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
546         codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
547
548         return 0;
549 }
550
551 /* return the position of NID in the list, or -1 if not found */
552 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
553 {
554         int i;
555         for (i = 0; i < nums; i++)
556                 if (list[i] == nid)
557                         return i;
558         return -1;
559 }
560 /* return true if the given NID is found in the list */
561 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
562 {
563         return find_idx_in_nid_list(nid, list, nums) >= 0;
564 }
565
566 /* check subsystem ID and set up device-specific initialization;
567  * return 1 if initialized, 0 if invalid SSID
568  */
569 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
570  *      31 ~ 16 :       Manufacture ID
571  *      15 ~ 8  :       SKU ID
572  *      7  ~ 0  :       Assembly ID
573  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
574  */
575 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
576 {
577         unsigned int ass, tmp, i;
578         unsigned nid;
579         struct alc_spec *spec = codec->spec;
580
581         if (spec->cdefine.fixup) {
582                 ass = spec->cdefine.sku_cfg;
583                 if (ass == ALC_FIXUP_SKU_IGNORE)
584                         return 0;
585                 goto do_sku;
586         }
587
588         ass = codec->core.subsystem_id & 0xffff;
589         if (codec->bus->pci &&
590             ass != codec->bus->pci->subsystem_device && (ass & 1))
591                 goto do_sku;
592
593         /* invalid SSID, check the special NID pin defcfg instead */
594         /*
595          * 31~30        : port connectivity
596          * 29~21        : reserve
597          * 20           : PCBEEP input
598          * 19~16        : Check sum (15:1)
599          * 15~1         : Custom
600          * 0            : override
601         */
602         nid = 0x1d;
603         if (codec->core.vendor_id == 0x10ec0260)
604                 nid = 0x17;
605         ass = snd_hda_codec_get_pincfg(codec, nid);
606         codec_dbg(codec,
607                   "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
608                    ass, nid);
609         if (!(ass & 1))
610                 return 0;
611         if ((ass >> 30) != 1)   /* no physical connection */
612                 return 0;
613
614         /* check sum */
615         tmp = 0;
616         for (i = 1; i < 16; i++) {
617                 if ((ass >> i) & 1)
618                         tmp++;
619         }
620         if (((ass >> 16) & 0xf) != tmp)
621                 return 0;
622 do_sku:
623         codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
624                    ass & 0xffff, codec->core.vendor_id);
625         /*
626          * 0 : override
627          * 1 :  Swap Jack
628          * 2 : 0 --> Desktop, 1 --> Laptop
629          * 3~5 : External Amplifier control
630          * 7~6 : Reserved
631         */
632         tmp = (ass & 0x38) >> 3;        /* external Amp control */
633         switch (tmp) {
634         case 1:
635                 spec->init_amp = ALC_INIT_GPIO1;
636                 break;
637         case 3:
638                 spec->init_amp = ALC_INIT_GPIO2;
639                 break;
640         case 7:
641                 spec->init_amp = ALC_INIT_GPIO3;
642                 break;
643         case 5:
644         default:
645                 spec->init_amp = ALC_INIT_DEFAULT;
646                 break;
647         }
648
649         /* is laptop or Desktop and enable the function "Mute internal speaker
650          * when the external headphone out jack is plugged"
651          */
652         if (!(ass & 0x8000))
653                 return 1;
654         /*
655          * 10~8 : Jack location
656          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
657          * 14~13: Resvered
658          * 15   : 1 --> enable the function "Mute internal speaker
659          *              when the external headphone out jack is plugged"
660          */
661         if (!spec->gen.autocfg.hp_pins[0] &&
662             !(spec->gen.autocfg.line_out_pins[0] &&
663               spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
664                 hda_nid_t nid;
665                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
666                 nid = ports[tmp];
667                 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
668                                       spec->gen.autocfg.line_outs))
669                         return 1;
670                 spec->gen.autocfg.hp_pins[0] = nid;
671         }
672         return 1;
673 }
674
675 /* Check the validity of ALC subsystem-id
676  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
677 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
678 {
679         if (!alc_subsystem_id(codec, ports)) {
680                 struct alc_spec *spec = codec->spec;
681                 codec_dbg(codec,
682                           "realtek: Enable default setup for auto mode as fallback\n");
683                 spec->init_amp = ALC_INIT_DEFAULT;
684         }
685 }
686
687 /*
688  */
689
690 static void alc_fixup_inv_dmic(struct hda_codec *codec,
691                                const struct hda_fixup *fix, int action)
692 {
693         struct alc_spec *spec = codec->spec;
694
695         spec->gen.inv_dmic_split = 1;
696 }
697
698
699 #ifdef CONFIG_SND_HDA_INPUT_BEEP
700 /* additional beep mixers; the actual parameters are overwritten at build */
701 static const struct snd_kcontrol_new alc_beep_mixer[] = {
702         HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
703         HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
704         { } /* end */
705 };
706 #endif
707
708 static int alc_build_controls(struct hda_codec *codec)
709 {
710         struct alc_spec *spec = codec->spec;
711         int i, err;
712
713         err = snd_hda_gen_build_controls(codec);
714         if (err < 0)
715                 return err;
716
717         for (i = 0; i < spec->num_mixers; i++) {
718                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
719                 if (err < 0)
720                         return err;
721         }
722
723 #ifdef CONFIG_SND_HDA_INPUT_BEEP
724         /* create beep controls if needed */
725         if (spec->beep_amp) {
726                 const struct snd_kcontrol_new *knew;
727                 for (knew = alc_beep_mixer; knew->name; knew++) {
728                         struct snd_kcontrol *kctl;
729                         kctl = snd_ctl_new1(knew, codec);
730                         if (!kctl)
731                                 return -ENOMEM;
732                         kctl->private_value = spec->beep_amp;
733                         err = snd_hda_ctl_add(codec, 0, kctl);
734                         if (err < 0)
735                                 return err;
736                 }
737         }
738 #endif
739
740         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
741         return 0;
742 }
743
744
745 /*
746  * Common callbacks
747  */
748
749 static int alc_init(struct hda_codec *codec)
750 {
751         struct alc_spec *spec = codec->spec;
752
753         if (spec->init_hook)
754                 spec->init_hook(codec);
755
756         alc_fix_pll(codec);
757         alc_auto_init_amp(codec, spec->init_amp);
758
759         snd_hda_gen_init(codec);
760
761         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
762
763         return 0;
764 }
765
766 static inline void alc_shutup(struct hda_codec *codec)
767 {
768         struct alc_spec *spec = codec->spec;
769
770         if (spec && spec->shutup)
771                 spec->shutup(codec);
772         else
773                 snd_hda_shutup_pins(codec);
774 }
775
776 #define alc_free        snd_hda_gen_free
777
778 #ifdef CONFIG_PM
779 static void alc_power_eapd(struct hda_codec *codec)
780 {
781         alc_auto_setup_eapd(codec, false);
782 }
783
784 static int alc_suspend(struct hda_codec *codec)
785 {
786         struct alc_spec *spec = codec->spec;
787         alc_shutup(codec);
788         if (spec && spec->power_hook)
789                 spec->power_hook(codec);
790         return 0;
791 }
792 #endif
793
794 #ifdef CONFIG_PM
795 static int alc_resume(struct hda_codec *codec)
796 {
797         struct alc_spec *spec = codec->spec;
798
799         if (!spec->no_depop_delay)
800                 msleep(150); /* to avoid pop noise */
801         codec->patch_ops.init(codec);
802         regcache_sync(codec->core.regmap);
803         hda_call_check_power_status(codec, 0x01);
804         return 0;
805 }
806 #endif
807
808 /*
809  */
810 static const struct hda_codec_ops alc_patch_ops = {
811         .build_controls = alc_build_controls,
812         .build_pcms = snd_hda_gen_build_pcms,
813         .init = alc_init,
814         .free = alc_free,
815         .unsol_event = snd_hda_jack_unsol_event,
816 #ifdef CONFIG_PM
817         .resume = alc_resume,
818         .suspend = alc_suspend,
819         .check_power_status = snd_hda_gen_check_power_status,
820 #endif
821         .reboot_notify = alc_shutup,
822 };
823
824
825 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
826
827 /*
828  * Rename codecs appropriately from COEF value or subvendor id
829  */
830 struct alc_codec_rename_table {
831         unsigned int vendor_id;
832         unsigned short coef_mask;
833         unsigned short coef_bits;
834         const char *name;
835 };
836
837 struct alc_codec_rename_pci_table {
838         unsigned int codec_vendor_id;
839         unsigned short pci_subvendor;
840         unsigned short pci_subdevice;
841         const char *name;
842 };
843
844 static struct alc_codec_rename_table rename_tbl[] = {
845         { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
846         { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
847         { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
848         { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
849         { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
850         { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
851         { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
852         { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
853         { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
854         { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
855         { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
856         { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
857         { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
858         { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
859         { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
860         { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
861         { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
862         { } /* terminator */
863 };
864
865 static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
866         { 0x10ec0280, 0x1028, 0, "ALC3220" },
867         { 0x10ec0282, 0x1028, 0, "ALC3221" },
868         { 0x10ec0283, 0x1028, 0, "ALC3223" },
869         { 0x10ec0288, 0x1028, 0, "ALC3263" },
870         { 0x10ec0292, 0x1028, 0, "ALC3226" },
871         { 0x10ec0293, 0x1028, 0, "ALC3235" },
872         { 0x10ec0255, 0x1028, 0, "ALC3234" },
873         { 0x10ec0668, 0x1028, 0, "ALC3661" },
874         { 0x10ec0275, 0x1028, 0, "ALC3260" },
875         { 0x10ec0899, 0x1028, 0, "ALC3861" },
876         { 0x10ec0298, 0x1028, 0, "ALC3266" },
877         { 0x10ec0256, 0x1028, 0, "ALC3246" },
878         { 0x10ec0670, 0x1025, 0, "ALC669X" },
879         { 0x10ec0676, 0x1025, 0, "ALC679X" },
880         { 0x10ec0282, 0x1043, 0, "ALC3229" },
881         { 0x10ec0233, 0x1043, 0, "ALC3236" },
882         { 0x10ec0280, 0x103c, 0, "ALC3228" },
883         { 0x10ec0282, 0x103c, 0, "ALC3227" },
884         { 0x10ec0286, 0x103c, 0, "ALC3242" },
885         { 0x10ec0290, 0x103c, 0, "ALC3241" },
886         { 0x10ec0668, 0x103c, 0, "ALC3662" },
887         { 0x10ec0283, 0x17aa, 0, "ALC3239" },
888         { 0x10ec0292, 0x17aa, 0, "ALC3232" },
889         { } /* terminator */
890 };
891
892 static int alc_codec_rename_from_preset(struct hda_codec *codec)
893 {
894         const struct alc_codec_rename_table *p;
895         const struct alc_codec_rename_pci_table *q;
896
897         for (p = rename_tbl; p->vendor_id; p++) {
898                 if (p->vendor_id != codec->core.vendor_id)
899                         continue;
900                 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
901                         return alc_codec_rename(codec, p->name);
902         }
903
904         if (!codec->bus->pci)
905                 return 0;
906         for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
907                 if (q->codec_vendor_id != codec->core.vendor_id)
908                         continue;
909                 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
910                         continue;
911                 if (!q->pci_subdevice ||
912                     q->pci_subdevice == codec->bus->pci->subsystem_device)
913                         return alc_codec_rename(codec, q->name);
914         }
915
916         return 0;
917 }
918
919
920 /*
921  * Digital-beep handlers
922  */
923 #ifdef CONFIG_SND_HDA_INPUT_BEEP
924 #define set_beep_amp(spec, nid, idx, dir) \
925         ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
926
927 static const struct snd_pci_quirk beep_white_list[] = {
928         SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
929         SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
930         SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
931         SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
932         SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
933         SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
934         SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
935         SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
936         SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
937         {}
938 };
939
940 static inline int has_cdefine_beep(struct hda_codec *codec)
941 {
942         struct alc_spec *spec = codec->spec;
943         const struct snd_pci_quirk *q;
944         q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
945         if (q)
946                 return q->value;
947         return spec->cdefine.enable_pcbeep;
948 }
949 #else
950 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
951 #define has_cdefine_beep(codec)         0
952 #endif
953
954 /* parse the BIOS configuration and set up the alc_spec */
955 /* return 1 if successful, 0 if the proper config is not found,
956  * or a negative error code
957  */
958 static int alc_parse_auto_config(struct hda_codec *codec,
959                                  const hda_nid_t *ignore_nids,
960                                  const hda_nid_t *ssid_nids)
961 {
962         struct alc_spec *spec = codec->spec;
963         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
964         int err;
965
966         err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
967                                        spec->parse_flags);
968         if (err < 0)
969                 return err;
970
971         if (ssid_nids)
972                 alc_ssid_check(codec, ssid_nids);
973
974         err = snd_hda_gen_parse_auto_config(codec, cfg);
975         if (err < 0)
976                 return err;
977
978         return 1;
979 }
980
981 /* common preparation job for alc_spec */
982 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
983 {
984         struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
985         int err;
986
987         if (!spec)
988                 return -ENOMEM;
989         codec->spec = spec;
990         snd_hda_gen_spec_init(&spec->gen);
991         spec->gen.mixer_nid = mixer_nid;
992         spec->gen.own_eapd_ctl = 1;
993         codec->single_adc_amp = 1;
994         /* FIXME: do we need this for all Realtek codec models? */
995         codec->spdif_status_reset = 1;
996         codec->patch_ops = alc_patch_ops;
997
998         err = alc_codec_rename_from_preset(codec);
999         if (err < 0) {
1000                 kfree(spec);
1001                 return err;
1002         }
1003         return 0;
1004 }
1005
1006 static int alc880_parse_auto_config(struct hda_codec *codec)
1007 {
1008         static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1009         static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1010         return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1011 }
1012
1013 /*
1014  * ALC880 fix-ups
1015  */
1016 enum {
1017         ALC880_FIXUP_GPIO1,
1018         ALC880_FIXUP_GPIO2,
1019         ALC880_FIXUP_MEDION_RIM,
1020         ALC880_FIXUP_LG,
1021         ALC880_FIXUP_LG_LW25,
1022         ALC880_FIXUP_W810,
1023         ALC880_FIXUP_EAPD_COEF,
1024         ALC880_FIXUP_TCL_S700,
1025         ALC880_FIXUP_VOL_KNOB,
1026         ALC880_FIXUP_FUJITSU,
1027         ALC880_FIXUP_F1734,
1028         ALC880_FIXUP_UNIWILL,
1029         ALC880_FIXUP_UNIWILL_DIG,
1030         ALC880_FIXUP_Z71V,
1031         ALC880_FIXUP_ASUS_W5A,
1032         ALC880_FIXUP_3ST_BASE,
1033         ALC880_FIXUP_3ST,
1034         ALC880_FIXUP_3ST_DIG,
1035         ALC880_FIXUP_5ST_BASE,
1036         ALC880_FIXUP_5ST,
1037         ALC880_FIXUP_5ST_DIG,
1038         ALC880_FIXUP_6ST_BASE,
1039         ALC880_FIXUP_6ST,
1040         ALC880_FIXUP_6ST_DIG,
1041         ALC880_FIXUP_6ST_AUTOMUTE,
1042 };
1043
1044 /* enable the volume-knob widget support on NID 0x21 */
1045 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1046                                   const struct hda_fixup *fix, int action)
1047 {
1048         if (action == HDA_FIXUP_ACT_PROBE)
1049                 snd_hda_jack_detect_enable_callback(codec, 0x21,
1050                                                     alc_update_knob_master);
1051 }
1052
1053 static const struct hda_fixup alc880_fixups[] = {
1054         [ALC880_FIXUP_GPIO1] = {
1055                 .type = HDA_FIXUP_VERBS,
1056                 .v.verbs = alc_gpio1_init_verbs,
1057         },
1058         [ALC880_FIXUP_GPIO2] = {
1059                 .type = HDA_FIXUP_VERBS,
1060                 .v.verbs = alc_gpio2_init_verbs,
1061         },
1062         [ALC880_FIXUP_MEDION_RIM] = {
1063                 .type = HDA_FIXUP_VERBS,
1064                 .v.verbs = (const struct hda_verb[]) {
1065                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1066                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1067                         { }
1068                 },
1069                 .chained = true,
1070                 .chain_id = ALC880_FIXUP_GPIO2,
1071         },
1072         [ALC880_FIXUP_LG] = {
1073                 .type = HDA_FIXUP_PINS,
1074                 .v.pins = (const struct hda_pintbl[]) {
1075                         /* disable bogus unused pins */
1076                         { 0x16, 0x411111f0 },
1077                         { 0x18, 0x411111f0 },
1078                         { 0x1a, 0x411111f0 },
1079                         { }
1080                 }
1081         },
1082         [ALC880_FIXUP_LG_LW25] = {
1083                 .type = HDA_FIXUP_PINS,
1084                 .v.pins = (const struct hda_pintbl[]) {
1085                         { 0x1a, 0x0181344f }, /* line-in */
1086                         { 0x1b, 0x0321403f }, /* headphone */
1087                         { }
1088                 }
1089         },
1090         [ALC880_FIXUP_W810] = {
1091                 .type = HDA_FIXUP_PINS,
1092                 .v.pins = (const struct hda_pintbl[]) {
1093                         /* disable bogus unused pins */
1094                         { 0x17, 0x411111f0 },
1095                         { }
1096                 },
1097                 .chained = true,
1098                 .chain_id = ALC880_FIXUP_GPIO2,
1099         },
1100         [ALC880_FIXUP_EAPD_COEF] = {
1101                 .type = HDA_FIXUP_VERBS,
1102                 .v.verbs = (const struct hda_verb[]) {
1103                         /* change to EAPD mode */
1104                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1105                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1106                         {}
1107                 },
1108         },
1109         [ALC880_FIXUP_TCL_S700] = {
1110                 .type = HDA_FIXUP_VERBS,
1111                 .v.verbs = (const struct hda_verb[]) {
1112                         /* change to EAPD mode */
1113                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1114                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
1115                         {}
1116                 },
1117                 .chained = true,
1118                 .chain_id = ALC880_FIXUP_GPIO2,
1119         },
1120         [ALC880_FIXUP_VOL_KNOB] = {
1121                 .type = HDA_FIXUP_FUNC,
1122                 .v.func = alc880_fixup_vol_knob,
1123         },
1124         [ALC880_FIXUP_FUJITSU] = {
1125                 /* override all pins as BIOS on old Amilo is broken */
1126                 .type = HDA_FIXUP_PINS,
1127                 .v.pins = (const struct hda_pintbl[]) {
1128                         { 0x14, 0x0121401f }, /* HP */
1129                         { 0x15, 0x99030120 }, /* speaker */
1130                         { 0x16, 0x99030130 }, /* bass speaker */
1131                         { 0x17, 0x411111f0 }, /* N/A */
1132                         { 0x18, 0x411111f0 }, /* N/A */
1133                         { 0x19, 0x01a19950 }, /* mic-in */
1134                         { 0x1a, 0x411111f0 }, /* N/A */
1135                         { 0x1b, 0x411111f0 }, /* N/A */
1136                         { 0x1c, 0x411111f0 }, /* N/A */
1137                         { 0x1d, 0x411111f0 }, /* N/A */
1138                         { 0x1e, 0x01454140 }, /* SPDIF out */
1139                         { }
1140                 },
1141                 .chained = true,
1142                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1143         },
1144         [ALC880_FIXUP_F1734] = {
1145                 /* almost compatible with FUJITSU, but no bass and SPDIF */
1146                 .type = HDA_FIXUP_PINS,
1147                 .v.pins = (const struct hda_pintbl[]) {
1148                         { 0x14, 0x0121401f }, /* HP */
1149                         { 0x15, 0x99030120 }, /* speaker */
1150                         { 0x16, 0x411111f0 }, /* N/A */
1151                         { 0x17, 0x411111f0 }, /* N/A */
1152                         { 0x18, 0x411111f0 }, /* N/A */
1153                         { 0x19, 0x01a19950 }, /* mic-in */
1154                         { 0x1a, 0x411111f0 }, /* N/A */
1155                         { 0x1b, 0x411111f0 }, /* N/A */
1156                         { 0x1c, 0x411111f0 }, /* N/A */
1157                         { 0x1d, 0x411111f0 }, /* N/A */
1158                         { 0x1e, 0x411111f0 }, /* N/A */
1159                         { }
1160                 },
1161                 .chained = true,
1162                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1163         },
1164         [ALC880_FIXUP_UNIWILL] = {
1165                 /* need to fix HP and speaker pins to be parsed correctly */
1166                 .type = HDA_FIXUP_PINS,
1167                 .v.pins = (const struct hda_pintbl[]) {
1168                         { 0x14, 0x0121411f }, /* HP */
1169                         { 0x15, 0x99030120 }, /* speaker */
1170                         { 0x16, 0x99030130 }, /* bass speaker */
1171                         { }
1172                 },
1173         },
1174         [ALC880_FIXUP_UNIWILL_DIG] = {
1175                 .type = HDA_FIXUP_PINS,
1176                 .v.pins = (const struct hda_pintbl[]) {
1177                         /* disable bogus unused pins */
1178                         { 0x17, 0x411111f0 },
1179                         { 0x19, 0x411111f0 },
1180                         { 0x1b, 0x411111f0 },
1181                         { 0x1f, 0x411111f0 },
1182                         { }
1183                 }
1184         },
1185         [ALC880_FIXUP_Z71V] = {
1186                 .type = HDA_FIXUP_PINS,
1187                 .v.pins = (const struct hda_pintbl[]) {
1188                         /* set up the whole pins as BIOS is utterly broken */
1189                         { 0x14, 0x99030120 }, /* speaker */
1190                         { 0x15, 0x0121411f }, /* HP */
1191                         { 0x16, 0x411111f0 }, /* N/A */
1192                         { 0x17, 0x411111f0 }, /* N/A */
1193                         { 0x18, 0x01a19950 }, /* mic-in */
1194                         { 0x19, 0x411111f0 }, /* N/A */
1195                         { 0x1a, 0x01813031 }, /* line-in */
1196                         { 0x1b, 0x411111f0 }, /* N/A */
1197                         { 0x1c, 0x411111f0 }, /* N/A */
1198                         { 0x1d, 0x411111f0 }, /* N/A */
1199                         { 0x1e, 0x0144111e }, /* SPDIF */
1200                         { }
1201                 }
1202         },
1203         [ALC880_FIXUP_ASUS_W5A] = {
1204                 .type = HDA_FIXUP_PINS,
1205                 .v.pins = (const struct hda_pintbl[]) {
1206                         /* set up the whole pins as BIOS is utterly broken */
1207                         { 0x14, 0x0121411f }, /* HP */
1208                         { 0x15, 0x411111f0 }, /* N/A */
1209                         { 0x16, 0x411111f0 }, /* N/A */
1210                         { 0x17, 0x411111f0 }, /* N/A */
1211                         { 0x18, 0x90a60160 }, /* mic */
1212                         { 0x19, 0x411111f0 }, /* N/A */
1213                         { 0x1a, 0x411111f0 }, /* N/A */
1214                         { 0x1b, 0x411111f0 }, /* N/A */
1215                         { 0x1c, 0x411111f0 }, /* N/A */
1216                         { 0x1d, 0x411111f0 }, /* N/A */
1217                         { 0x1e, 0xb743111e }, /* SPDIF out */
1218                         { }
1219                 },
1220                 .chained = true,
1221                 .chain_id = ALC880_FIXUP_GPIO1,
1222         },
1223         [ALC880_FIXUP_3ST_BASE] = {
1224                 .type = HDA_FIXUP_PINS,
1225                 .v.pins = (const struct hda_pintbl[]) {
1226                         { 0x14, 0x01014010 }, /* line-out */
1227                         { 0x15, 0x411111f0 }, /* N/A */
1228                         { 0x16, 0x411111f0 }, /* N/A */
1229                         { 0x17, 0x411111f0 }, /* N/A */
1230                         { 0x18, 0x01a19c30 }, /* mic-in */
1231                         { 0x19, 0x0121411f }, /* HP */
1232                         { 0x1a, 0x01813031 }, /* line-in */
1233                         { 0x1b, 0x02a19c40 }, /* front-mic */
1234                         { 0x1c, 0x411111f0 }, /* N/A */
1235                         { 0x1d, 0x411111f0 }, /* N/A */
1236                         /* 0x1e is filled in below */
1237                         { 0x1f, 0x411111f0 }, /* N/A */
1238                         { }
1239                 }
1240         },
1241         [ALC880_FIXUP_3ST] = {
1242                 .type = HDA_FIXUP_PINS,
1243                 .v.pins = (const struct hda_pintbl[]) {
1244                         { 0x1e, 0x411111f0 }, /* N/A */
1245                         { }
1246                 },
1247                 .chained = true,
1248                 .chain_id = ALC880_FIXUP_3ST_BASE,
1249         },
1250         [ALC880_FIXUP_3ST_DIG] = {
1251                 .type = HDA_FIXUP_PINS,
1252                 .v.pins = (const struct hda_pintbl[]) {
1253                         { 0x1e, 0x0144111e }, /* SPDIF */
1254                         { }
1255                 },
1256                 .chained = true,
1257                 .chain_id = ALC880_FIXUP_3ST_BASE,
1258         },
1259         [ALC880_FIXUP_5ST_BASE] = {
1260                 .type = HDA_FIXUP_PINS,
1261                 .v.pins = (const struct hda_pintbl[]) {
1262                         { 0x14, 0x01014010 }, /* front */
1263                         { 0x15, 0x411111f0 }, /* N/A */
1264                         { 0x16, 0x01011411 }, /* CLFE */
1265                         { 0x17, 0x01016412 }, /* surr */
1266                         { 0x18, 0x01a19c30 }, /* mic-in */
1267                         { 0x19, 0x0121411f }, /* HP */
1268                         { 0x1a, 0x01813031 }, /* line-in */
1269                         { 0x1b, 0x02a19c40 }, /* front-mic */
1270                         { 0x1c, 0x411111f0 }, /* N/A */
1271                         { 0x1d, 0x411111f0 }, /* N/A */
1272                         /* 0x1e is filled in below */
1273                         { 0x1f, 0x411111f0 }, /* N/A */
1274                         { }
1275                 }
1276         },
1277         [ALC880_FIXUP_5ST] = {
1278                 .type = HDA_FIXUP_PINS,
1279                 .v.pins = (const struct hda_pintbl[]) {
1280                         { 0x1e, 0x411111f0 }, /* N/A */
1281                         { }
1282                 },
1283                 .chained = true,
1284                 .chain_id = ALC880_FIXUP_5ST_BASE,
1285         },
1286         [ALC880_FIXUP_5ST_DIG] = {
1287                 .type = HDA_FIXUP_PINS,
1288                 .v.pins = (const struct hda_pintbl[]) {
1289                         { 0x1e, 0x0144111e }, /* SPDIF */
1290                         { }
1291                 },
1292                 .chained = true,
1293                 .chain_id = ALC880_FIXUP_5ST_BASE,
1294         },
1295         [ALC880_FIXUP_6ST_BASE] = {
1296                 .type = HDA_FIXUP_PINS,
1297                 .v.pins = (const struct hda_pintbl[]) {
1298                         { 0x14, 0x01014010 }, /* front */
1299                         { 0x15, 0x01016412 }, /* surr */
1300                         { 0x16, 0x01011411 }, /* CLFE */
1301                         { 0x17, 0x01012414 }, /* side */
1302                         { 0x18, 0x01a19c30 }, /* mic-in */
1303                         { 0x19, 0x02a19c40 }, /* front-mic */
1304                         { 0x1a, 0x01813031 }, /* line-in */
1305                         { 0x1b, 0x0121411f }, /* HP */
1306                         { 0x1c, 0x411111f0 }, /* N/A */
1307                         { 0x1d, 0x411111f0 }, /* N/A */
1308                         /* 0x1e is filled in below */
1309                         { 0x1f, 0x411111f0 }, /* N/A */
1310                         { }
1311                 }
1312         },
1313         [ALC880_FIXUP_6ST] = {
1314                 .type = HDA_FIXUP_PINS,
1315                 .v.pins = (const struct hda_pintbl[]) {
1316                         { 0x1e, 0x411111f0 }, /* N/A */
1317                         { }
1318                 },
1319                 .chained = true,
1320                 .chain_id = ALC880_FIXUP_6ST_BASE,
1321         },
1322         [ALC880_FIXUP_6ST_DIG] = {
1323                 .type = HDA_FIXUP_PINS,
1324                 .v.pins = (const struct hda_pintbl[]) {
1325                         { 0x1e, 0x0144111e }, /* SPDIF */
1326                         { }
1327                 },
1328                 .chained = true,
1329                 .chain_id = ALC880_FIXUP_6ST_BASE,
1330         },
1331         [ALC880_FIXUP_6ST_AUTOMUTE] = {
1332                 .type = HDA_FIXUP_PINS,
1333                 .v.pins = (const struct hda_pintbl[]) {
1334                         { 0x1b, 0x0121401f }, /* HP with jack detect */
1335                         { }
1336                 },
1337                 .chained_before = true,
1338                 .chain_id = ALC880_FIXUP_6ST_BASE,
1339         },
1340 };
1341
1342 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1343         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1344         SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1345         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1346         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1347         SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1348         SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1349         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1350         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1351         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1352         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1353         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1354         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1355         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1356         SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1357         SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1358         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1359         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1360         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1361         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1362         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1363         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1364         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1365         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1366
1367         /* Below is the copied entries from alc880_quirks.c.
1368          * It's not quite sure whether BIOS sets the correct pin-config table
1369          * on these machines, thus they are kept to be compatible with
1370          * the old static quirks.  Once when it's confirmed to work without
1371          * these overrides, it'd be better to remove.
1372          */
1373         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1374         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1375         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1376         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1377         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1378         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1379         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1380         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1381         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1382         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1383         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1384         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1385         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1386         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1387         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1388         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1389         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1390         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1391         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1392         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1393         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1394         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1395         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1396         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1397         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1398         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1399         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1400         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1401         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1402         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1403         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1404         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1405         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1406         /* default Intel */
1407         SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1408         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1409         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1410         {}
1411 };
1412
1413 static const struct hda_model_fixup alc880_fixup_models[] = {
1414         {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1415         {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1416         {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1417         {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1418         {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1419         {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1420         {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1421         {}
1422 };
1423
1424
1425 /*
1426  * OK, here we have finally the patch for ALC880
1427  */
1428 static int patch_alc880(struct hda_codec *codec)
1429 {
1430         struct alc_spec *spec;
1431         int err;
1432
1433         err = alc_alloc_spec(codec, 0x0b);
1434         if (err < 0)
1435                 return err;
1436
1437         spec = codec->spec;
1438         spec->gen.need_dac_fix = 1;
1439         spec->gen.beep_nid = 0x01;
1440
1441         codec->patch_ops.unsol_event = alc880_unsol_event;
1442
1443         snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1444                        alc880_fixups);
1445         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1446
1447         /* automatic parse from the BIOS config */
1448         err = alc880_parse_auto_config(codec);
1449         if (err < 0)
1450                 goto error;
1451
1452         if (!spec->gen.no_analog)
1453                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1454
1455         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1456
1457         return 0;
1458
1459  error:
1460         alc_free(codec);
1461         return err;
1462 }
1463
1464
1465 /*
1466  * ALC260 support
1467  */
1468 static int alc260_parse_auto_config(struct hda_codec *codec)
1469 {
1470         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1471         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1472         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1473 }
1474
1475 /*
1476  * Pin config fixes
1477  */
1478 enum {
1479         ALC260_FIXUP_HP_DC5750,
1480         ALC260_FIXUP_HP_PIN_0F,
1481         ALC260_FIXUP_COEF,
1482         ALC260_FIXUP_GPIO1,
1483         ALC260_FIXUP_GPIO1_TOGGLE,
1484         ALC260_FIXUP_REPLACER,
1485         ALC260_FIXUP_HP_B1900,
1486         ALC260_FIXUP_KN1,
1487         ALC260_FIXUP_FSC_S7020,
1488         ALC260_FIXUP_FSC_S7020_JWSE,
1489         ALC260_FIXUP_VAIO_PINS,
1490 };
1491
1492 static void alc260_gpio1_automute(struct hda_codec *codec)
1493 {
1494         struct alc_spec *spec = codec->spec;
1495         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1496                             spec->gen.hp_jack_present);
1497 }
1498
1499 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1500                                       const struct hda_fixup *fix, int action)
1501 {
1502         struct alc_spec *spec = codec->spec;
1503         if (action == HDA_FIXUP_ACT_PROBE) {
1504                 /* although the machine has only one output pin, we need to
1505                  * toggle GPIO1 according to the jack state
1506                  */
1507                 spec->gen.automute_hook = alc260_gpio1_automute;
1508                 spec->gen.detect_hp = 1;
1509                 spec->gen.automute_speaker = 1;
1510                 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1511                 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1512                                                     snd_hda_gen_hp_automute);
1513                 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
1514         }
1515 }
1516
1517 static void alc260_fixup_kn1(struct hda_codec *codec,
1518                              const struct hda_fixup *fix, int action)
1519 {
1520         struct alc_spec *spec = codec->spec;
1521         static const struct hda_pintbl pincfgs[] = {
1522                 { 0x0f, 0x02214000 }, /* HP/speaker */
1523                 { 0x12, 0x90a60160 }, /* int mic */
1524                 { 0x13, 0x02a19000 }, /* ext mic */
1525                 { 0x18, 0x01446000 }, /* SPDIF out */
1526                 /* disable bogus I/O pins */
1527                 { 0x10, 0x411111f0 },
1528                 { 0x11, 0x411111f0 },
1529                 { 0x14, 0x411111f0 },
1530                 { 0x15, 0x411111f0 },
1531                 { 0x16, 0x411111f0 },
1532                 { 0x17, 0x411111f0 },
1533                 { 0x19, 0x411111f0 },
1534                 { }
1535         };
1536
1537         switch (action) {
1538         case HDA_FIXUP_ACT_PRE_PROBE:
1539                 snd_hda_apply_pincfgs(codec, pincfgs);
1540                 break;
1541         case HDA_FIXUP_ACT_PROBE:
1542                 spec->init_amp = ALC_INIT_NONE;
1543                 break;
1544         }
1545 }
1546
1547 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1548                                    const struct hda_fixup *fix, int action)
1549 {
1550         struct alc_spec *spec = codec->spec;
1551         if (action == HDA_FIXUP_ACT_PROBE)
1552                 spec->init_amp = ALC_INIT_NONE;
1553 }
1554
1555 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1556                                    const struct hda_fixup *fix, int action)
1557 {
1558         struct alc_spec *spec = codec->spec;
1559         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1560                 spec->gen.add_jack_modes = 1;
1561                 spec->gen.hp_mic = 1;
1562         }
1563 }
1564
1565 static const struct hda_fixup alc260_fixups[] = {
1566         [ALC260_FIXUP_HP_DC5750] = {
1567                 .type = HDA_FIXUP_PINS,
1568                 .v.pins = (const struct hda_pintbl[]) {
1569                         { 0x11, 0x90130110 }, /* speaker */
1570                         { }
1571                 }
1572         },
1573         [ALC260_FIXUP_HP_PIN_0F] = {
1574                 .type = HDA_FIXUP_PINS,
1575                 .v.pins = (const struct hda_pintbl[]) {
1576                         { 0x0f, 0x01214000 }, /* HP */
1577                         { }
1578                 }
1579         },
1580         [ALC260_FIXUP_COEF] = {
1581                 .type = HDA_FIXUP_VERBS,
1582                 .v.verbs = (const struct hda_verb[]) {
1583                         { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1584                         { 0x1a, AC_VERB_SET_PROC_COEF,  0x3040 },
1585                         { }
1586                 },
1587         },
1588         [ALC260_FIXUP_GPIO1] = {
1589                 .type = HDA_FIXUP_VERBS,
1590                 .v.verbs = alc_gpio1_init_verbs,
1591         },
1592         [ALC260_FIXUP_GPIO1_TOGGLE] = {
1593                 .type = HDA_FIXUP_FUNC,
1594                 .v.func = alc260_fixup_gpio1_toggle,
1595                 .chained = true,
1596                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1597         },
1598         [ALC260_FIXUP_REPLACER] = {
1599                 .type = HDA_FIXUP_VERBS,
1600                 .v.verbs = (const struct hda_verb[]) {
1601                         { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1602                         { 0x1a, AC_VERB_SET_PROC_COEF,  0x3050 },
1603                         { }
1604                 },
1605                 .chained = true,
1606                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1607         },
1608         [ALC260_FIXUP_HP_B1900] = {
1609                 .type = HDA_FIXUP_FUNC,
1610                 .v.func = alc260_fixup_gpio1_toggle,
1611                 .chained = true,
1612                 .chain_id = ALC260_FIXUP_COEF,
1613         },
1614         [ALC260_FIXUP_KN1] = {
1615                 .type = HDA_FIXUP_FUNC,
1616                 .v.func = alc260_fixup_kn1,
1617         },
1618         [ALC260_FIXUP_FSC_S7020] = {
1619                 .type = HDA_FIXUP_FUNC,
1620                 .v.func = alc260_fixup_fsc_s7020,
1621         },
1622         [ALC260_FIXUP_FSC_S7020_JWSE] = {
1623                 .type = HDA_FIXUP_FUNC,
1624                 .v.func = alc260_fixup_fsc_s7020_jwse,
1625                 .chained = true,
1626                 .chain_id = ALC260_FIXUP_FSC_S7020,
1627         },
1628         [ALC260_FIXUP_VAIO_PINS] = {
1629                 .type = HDA_FIXUP_PINS,
1630                 .v.pins = (const struct hda_pintbl[]) {
1631                         /* Pin configs are missing completely on some VAIOs */
1632                         { 0x0f, 0x01211020 },
1633                         { 0x10, 0x0001003f },
1634                         { 0x11, 0x411111f0 },
1635                         { 0x12, 0x01a15930 },
1636                         { 0x13, 0x411111f0 },
1637                         { 0x14, 0x411111f0 },
1638                         { 0x15, 0x411111f0 },
1639                         { 0x16, 0x411111f0 },
1640                         { 0x17, 0x411111f0 },
1641                         { 0x18, 0x411111f0 },
1642                         { 0x19, 0x411111f0 },
1643                         { }
1644                 }
1645         },
1646 };
1647
1648 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1649         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1650         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1651         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1652         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1653         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1654         SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1655         SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1656         SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1657         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1658         SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1659         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1660         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1661         {}
1662 };
1663
1664 static const struct hda_model_fixup alc260_fixup_models[] = {
1665         {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1666         {.id = ALC260_FIXUP_COEF, .name = "coef"},
1667         {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1668         {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1669         {}
1670 };
1671
1672 /*
1673  */
1674 static int patch_alc260(struct hda_codec *codec)
1675 {
1676         struct alc_spec *spec;
1677         int err;
1678
1679         err = alc_alloc_spec(codec, 0x07);
1680         if (err < 0)
1681                 return err;
1682
1683         spec = codec->spec;
1684         /* as quite a few machines require HP amp for speaker outputs,
1685          * it's easier to enable it unconditionally; even if it's unneeded,
1686          * it's almost harmless.
1687          */
1688         spec->gen.prefer_hp_amp = 1;
1689         spec->gen.beep_nid = 0x01;
1690
1691         spec->shutup = alc_eapd_shutup;
1692
1693         snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1694                            alc260_fixups);
1695         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1696
1697         /* automatic parse from the BIOS config */
1698         err = alc260_parse_auto_config(codec);
1699         if (err < 0)
1700                 goto error;
1701
1702         if (!spec->gen.no_analog)
1703                 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1704
1705         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1706
1707         return 0;
1708
1709  error:
1710         alc_free(codec);
1711         return err;
1712 }
1713
1714
1715 /*
1716  * ALC882/883/885/888/889 support
1717  *
1718  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1719  * configuration.  Each pin widget can choose any input DACs and a mixer.
1720  * Each ADC is connected from a mixer of all inputs.  This makes possible
1721  * 6-channel independent captures.
1722  *
1723  * In addition, an independent DAC for the multi-playback (not used in this
1724  * driver yet).
1725  */
1726
1727 /*
1728  * Pin config fixes
1729  */
1730 enum {
1731         ALC882_FIXUP_ABIT_AW9D_MAX,
1732         ALC882_FIXUP_LENOVO_Y530,
1733         ALC882_FIXUP_PB_M5210,
1734         ALC882_FIXUP_ACER_ASPIRE_7736,
1735         ALC882_FIXUP_ASUS_W90V,
1736         ALC889_FIXUP_CD,
1737         ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1738         ALC889_FIXUP_VAIO_TT,
1739         ALC888_FIXUP_EEE1601,
1740         ALC882_FIXUP_EAPD,
1741         ALC883_FIXUP_EAPD,
1742         ALC883_FIXUP_ACER_EAPD,
1743         ALC882_FIXUP_GPIO1,
1744         ALC882_FIXUP_GPIO2,
1745         ALC882_FIXUP_GPIO3,
1746         ALC889_FIXUP_COEF,
1747         ALC882_FIXUP_ASUS_W2JC,
1748         ALC882_FIXUP_ACER_ASPIRE_4930G,
1749         ALC882_FIXUP_ACER_ASPIRE_8930G,
1750         ALC882_FIXUP_ASPIRE_8930G_VERBS,
1751         ALC885_FIXUP_MACPRO_GPIO,
1752         ALC889_FIXUP_DAC_ROUTE,
1753         ALC889_FIXUP_MBP_VREF,
1754         ALC889_FIXUP_IMAC91_VREF,
1755         ALC889_FIXUP_MBA11_VREF,
1756         ALC889_FIXUP_MBA21_VREF,
1757         ALC889_FIXUP_MP11_VREF,
1758         ALC882_FIXUP_INV_DMIC,
1759         ALC882_FIXUP_NO_PRIMARY_HP,
1760         ALC887_FIXUP_ASUS_BASS,
1761         ALC887_FIXUP_BASS_CHMAP,
1762         ALC882_FIXUP_DISABLE_AAMIX,
1763 };
1764
1765 static void alc889_fixup_coef(struct hda_codec *codec,
1766                               const struct hda_fixup *fix, int action)
1767 {
1768         if (action != HDA_FIXUP_ACT_INIT)
1769                 return;
1770         alc_update_coef_idx(codec, 7, 0, 0x2030);
1771 }
1772
1773 /* toggle speaker-output according to the hp-jack state */
1774 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1775 {
1776         unsigned int gpiostate, gpiomask, gpiodir;
1777
1778         gpiostate = snd_hda_codec_read(codec, codec->core.afg, 0,
1779                                        AC_VERB_GET_GPIO_DATA, 0);
1780
1781         if (!muted)
1782                 gpiostate |= (1 << pin);
1783         else
1784                 gpiostate &= ~(1 << pin);
1785
1786         gpiomask = snd_hda_codec_read(codec, codec->core.afg, 0,
1787                                       AC_VERB_GET_GPIO_MASK, 0);
1788         gpiomask |= (1 << pin);
1789
1790         gpiodir = snd_hda_codec_read(codec, codec->core.afg, 0,
1791                                      AC_VERB_GET_GPIO_DIRECTION, 0);
1792         gpiodir |= (1 << pin);
1793
1794
1795         snd_hda_codec_write(codec, codec->core.afg, 0,
1796                             AC_VERB_SET_GPIO_MASK, gpiomask);
1797         snd_hda_codec_write(codec, codec->core.afg, 0,
1798                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1799
1800         msleep(1);
1801
1802         snd_hda_codec_write(codec, codec->core.afg, 0,
1803                             AC_VERB_SET_GPIO_DATA, gpiostate);
1804 }
1805
1806 /* set up GPIO at initialization */
1807 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1808                                      const struct hda_fixup *fix, int action)
1809 {
1810         if (action != HDA_FIXUP_ACT_INIT)
1811                 return;
1812         alc882_gpio_mute(codec, 0, 0);
1813         alc882_gpio_mute(codec, 1, 0);
1814 }
1815
1816 /* Fix the connection of some pins for ALC889:
1817  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1818  * work correctly (bko#42740)
1819  */
1820 static void alc889_fixup_dac_route(struct hda_codec *codec,
1821                                    const struct hda_fixup *fix, int action)
1822 {
1823         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1824                 /* fake the connections during parsing the tree */
1825                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1826                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1827                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1828                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1829                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1830                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1831         } else if (action == HDA_FIXUP_ACT_PROBE) {
1832                 /* restore the connections */
1833                 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1834                 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1835                 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1836                 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1837                 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1838         }
1839 }
1840
1841 /* Set VREF on HP pin */
1842 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1843                                   const struct hda_fixup *fix, int action)
1844 {
1845         struct alc_spec *spec = codec->spec;
1846         static hda_nid_t nids[2] = { 0x14, 0x15 };
1847         int i;
1848
1849         if (action != HDA_FIXUP_ACT_INIT)
1850                 return;
1851         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1852                 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1853                 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1854                         continue;
1855                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1856                 val |= AC_PINCTL_VREF_80;
1857                 snd_hda_set_pin_ctl(codec, nids[i], val);
1858                 spec->gen.keep_vref_in_automute = 1;
1859                 break;
1860         }
1861 }
1862
1863 static void alc889_fixup_mac_pins(struct hda_codec *codec,
1864                                   const hda_nid_t *nids, int num_nids)
1865 {
1866         struct alc_spec *spec = codec->spec;
1867         int i;
1868
1869         for (i = 0; i < num_nids; i++) {
1870                 unsigned int val;
1871                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1872                 val |= AC_PINCTL_VREF_50;
1873                 snd_hda_set_pin_ctl(codec, nids[i], val);
1874         }
1875         spec->gen.keep_vref_in_automute = 1;
1876 }
1877
1878 /* Set VREF on speaker pins on imac91 */
1879 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1880                                      const struct hda_fixup *fix, int action)
1881 {
1882         static hda_nid_t nids[2] = { 0x18, 0x1a };
1883
1884         if (action == HDA_FIXUP_ACT_INIT)
1885                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1886 }
1887
1888 /* Set VREF on speaker pins on mba11 */
1889 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
1890                                     const struct hda_fixup *fix, int action)
1891 {
1892         static hda_nid_t nids[1] = { 0x18 };
1893
1894         if (action == HDA_FIXUP_ACT_INIT)
1895                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1896 }
1897
1898 /* Set VREF on speaker pins on mba21 */
1899 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
1900                                     const struct hda_fixup *fix, int action)
1901 {
1902         static hda_nid_t nids[2] = { 0x18, 0x19 };
1903
1904         if (action == HDA_FIXUP_ACT_INIT)
1905                 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1906 }
1907
1908 /* Don't take HP output as primary
1909  * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1910  * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1911  */
1912 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1913                                        const struct hda_fixup *fix, int action)
1914 {
1915         struct alc_spec *spec = codec->spec;
1916         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1917                 spec->gen.no_primary_hp = 1;
1918                 spec->gen.no_multi_io = 1;
1919         }
1920 }
1921
1922 static void alc_fixup_bass_chmap(struct hda_codec *codec,
1923                                  const struct hda_fixup *fix, int action);
1924 static void alc_fixup_disable_aamix(struct hda_codec *codec,
1925                                     const struct hda_fixup *fix, int action);
1926
1927 static const struct hda_fixup alc882_fixups[] = {
1928         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1929                 .type = HDA_FIXUP_PINS,
1930                 .v.pins = (const struct hda_pintbl[]) {
1931                         { 0x15, 0x01080104 }, /* side */
1932                         { 0x16, 0x01011012 }, /* rear */
1933                         { 0x17, 0x01016011 }, /* clfe */
1934                         { }
1935                 }
1936         },
1937         [ALC882_FIXUP_LENOVO_Y530] = {
1938                 .type = HDA_FIXUP_PINS,
1939                 .v.pins = (const struct hda_pintbl[]) {
1940                         { 0x15, 0x99130112 }, /* rear int speakers */
1941                         { 0x16, 0x99130111 }, /* subwoofer */
1942                         { }
1943                 }
1944         },
1945         [ALC882_FIXUP_PB_M5210] = {
1946                 .type = HDA_FIXUP_PINCTLS,
1947                 .v.pins = (const struct hda_pintbl[]) {
1948                         { 0x19, PIN_VREF50 },
1949                         {}
1950                 }
1951         },
1952         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1953                 .type = HDA_FIXUP_FUNC,
1954                 .v.func = alc_fixup_sku_ignore,
1955         },
1956         [ALC882_FIXUP_ASUS_W90V] = {
1957                 .type = HDA_FIXUP_PINS,
1958                 .v.pins = (const struct hda_pintbl[]) {
1959                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1960                         { }
1961                 }
1962         },
1963         [ALC889_FIXUP_CD] = {
1964                 .type = HDA_FIXUP_PINS,
1965                 .v.pins = (const struct hda_pintbl[]) {
1966                         { 0x1c, 0x993301f0 }, /* CD */
1967                         { }
1968                 }
1969         },
1970         [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
1971                 .type = HDA_FIXUP_PINS,
1972                 .v.pins = (const struct hda_pintbl[]) {
1973                         { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
1974                         { }
1975                 },
1976                 .chained = true,
1977                 .chain_id = ALC889_FIXUP_CD,
1978         },
1979         [ALC889_FIXUP_VAIO_TT] = {
1980                 .type = HDA_FIXUP_PINS,
1981                 .v.pins = (const struct hda_pintbl[]) {
1982                         { 0x17, 0x90170111 }, /* hidden surround speaker */
1983                         { }
1984                 }
1985         },
1986         [ALC888_FIXUP_EEE1601] = {
1987                 .type = HDA_FIXUP_VERBS,
1988                 .v.verbs = (const struct hda_verb[]) {
1989                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1990                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
1991                         { }
1992                 }
1993         },
1994         [ALC882_FIXUP_EAPD] = {
1995                 .type = HDA_FIXUP_VERBS,
1996                 .v.verbs = (const struct hda_verb[]) {
1997                         /* change to EAPD mode */
1998                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1999                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2000                         { }
2001                 }
2002         },
2003         [ALC883_FIXUP_EAPD] = {
2004                 .type = HDA_FIXUP_VERBS,
2005                 .v.verbs = (const struct hda_verb[]) {
2006                         /* change to EAPD mode */
2007                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2008                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2009                         { }
2010                 }
2011         },
2012         [ALC883_FIXUP_ACER_EAPD] = {
2013                 .type = HDA_FIXUP_VERBS,
2014                 .v.verbs = (const struct hda_verb[]) {
2015                         /* eanable EAPD on Acer laptops */
2016                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2017                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2018                         { }
2019                 }
2020         },
2021         [ALC882_FIXUP_GPIO1] = {
2022                 .type = HDA_FIXUP_VERBS,
2023                 .v.verbs = alc_gpio1_init_verbs,
2024         },
2025         [ALC882_FIXUP_GPIO2] = {
2026                 .type = HDA_FIXUP_VERBS,
2027                 .v.verbs = alc_gpio2_init_verbs,
2028         },
2029         [ALC882_FIXUP_GPIO3] = {
2030                 .type = HDA_FIXUP_VERBS,
2031                 .v.verbs = alc_gpio3_init_verbs,
2032         },
2033         [ALC882_FIXUP_ASUS_W2JC] = {
2034                 .type = HDA_FIXUP_VERBS,
2035                 .v.verbs = alc_gpio1_init_verbs,
2036                 .chained = true,
2037                 .chain_id = ALC882_FIXUP_EAPD,
2038         },
2039         [ALC889_FIXUP_COEF] = {
2040                 .type = HDA_FIXUP_FUNC,
2041                 .v.func = alc889_fixup_coef,
2042         },
2043         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2044                 .type = HDA_FIXUP_PINS,
2045                 .v.pins = (const struct hda_pintbl[]) {
2046                         { 0x16, 0x99130111 }, /* CLFE speaker */
2047                         { 0x17, 0x99130112 }, /* surround speaker */
2048                         { }
2049                 },
2050                 .chained = true,
2051                 .chain_id = ALC882_FIXUP_GPIO1,
2052         },
2053         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2054                 .type = HDA_FIXUP_PINS,
2055                 .v.pins = (const struct hda_pintbl[]) {
2056                         { 0x16, 0x99130111 }, /* CLFE speaker */
2057                         { 0x1b, 0x99130112 }, /* surround speaker */
2058                         { }
2059                 },
2060                 .chained = true,
2061                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2062         },
2063         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2064                 /* additional init verbs for Acer Aspire 8930G */
2065                 .type = HDA_FIXUP_VERBS,
2066                 .v.verbs = (const struct hda_verb[]) {
2067                         /* Enable all DACs */
2068                         /* DAC DISABLE/MUTE 1? */
2069                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
2070                          *  apparently. Init=0x38 */
2071                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2072                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2073                         /* DAC DISABLE/MUTE 2? */
2074                         /*  some bit here disables the other DACs.
2075                          *  Init=0x4900 */
2076                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2077                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2078                         /* DMIC fix
2079                          * This laptop has a stereo digital microphone.
2080                          * The mics are only 1cm apart which makes the stereo
2081                          * useless. However, either the mic or the ALC889
2082                          * makes the signal become a difference/sum signal
2083                          * instead of standard stereo, which is annoying.
2084                          * So instead we flip this bit which makes the
2085                          * codec replicate the sum signal to both channels,
2086                          * turning it into a normal mono mic.
2087                          */
2088                         /* DMIC_CONTROL? Init value = 0x0001 */
2089                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2090                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2091                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2092                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2093                         { }
2094                 },
2095                 .chained = true,
2096                 .chain_id = ALC882_FIXUP_GPIO1,
2097         },
2098         [ALC885_FIXUP_MACPRO_GPIO] = {
2099                 .type = HDA_FIXUP_FUNC,
2100                 .v.func = alc885_fixup_macpro_gpio,
2101         },
2102         [ALC889_FIXUP_DAC_ROUTE] = {
2103                 .type = HDA_FIXUP_FUNC,
2104                 .v.func = alc889_fixup_dac_route,
2105         },
2106         [ALC889_FIXUP_MBP_VREF] = {
2107                 .type = HDA_FIXUP_FUNC,
2108                 .v.func = alc889_fixup_mbp_vref,
2109                 .chained = true,
2110                 .chain_id = ALC882_FIXUP_GPIO1,
2111         },
2112         [ALC889_FIXUP_IMAC91_VREF] = {
2113                 .type = HDA_FIXUP_FUNC,
2114                 .v.func = alc889_fixup_imac91_vref,
2115                 .chained = true,
2116                 .chain_id = ALC882_FIXUP_GPIO1,
2117         },
2118         [ALC889_FIXUP_MBA11_VREF] = {
2119                 .type = HDA_FIXUP_FUNC,
2120                 .v.func = alc889_fixup_mba11_vref,
2121                 .chained = true,
2122                 .chain_id = ALC889_FIXUP_MBP_VREF,
2123         },
2124         [ALC889_FIXUP_MBA21_VREF] = {
2125                 .type = HDA_FIXUP_FUNC,
2126                 .v.func = alc889_fixup_mba21_vref,
2127                 .chained = true,
2128                 .chain_id = ALC889_FIXUP_MBP_VREF,
2129         },
2130         [ALC889_FIXUP_MP11_VREF] = {
2131                 .type = HDA_FIXUP_FUNC,
2132                 .v.func = alc889_fixup_mba11_vref,
2133                 .chained = true,
2134                 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2135         },
2136         [ALC882_FIXUP_INV_DMIC] = {
2137                 .type = HDA_FIXUP_FUNC,
2138                 .v.func = alc_fixup_inv_dmic,
2139         },
2140         [ALC882_FIXUP_NO_PRIMARY_HP] = {
2141                 .type = HDA_FIXUP_FUNC,
2142                 .v.func = alc882_fixup_no_primary_hp,
2143         },
2144         [ALC887_FIXUP_ASUS_BASS] = {
2145                 .type = HDA_FIXUP_PINS,
2146                 .v.pins = (const struct hda_pintbl[]) {
2147                         {0x16, 0x99130130}, /* bass speaker */
2148                         {}
2149                 },
2150                 .chained = true,
2151                 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2152         },
2153         [ALC887_FIXUP_BASS_CHMAP] = {
2154                 .type = HDA_FIXUP_FUNC,
2155                 .v.func = alc_fixup_bass_chmap,
2156         },
2157         [ALC882_FIXUP_DISABLE_AAMIX] = {
2158                 .type = HDA_FIXUP_FUNC,
2159                 .v.func = alc_fixup_disable_aamix,
2160         },
2161 };
2162
2163 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2164         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2165         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2166         SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2167         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2168         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2169         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2170         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2171         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2172                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2173         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2174                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2175         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2176                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2177         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2178                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2179         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2180                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2181         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2182                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2183         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2184                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2185         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2186         SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2187                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2188         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2189         SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2190         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2191         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2192         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2193         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2194         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2195         SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2196         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2197         SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2198         SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2199
2200         /* All Apple entries are in codec SSIDs */
2201         SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2202         SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2203         SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2204         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2205         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2206         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2207         SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2208         SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2209         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2210         SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2211         SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2212         SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2213         SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2214         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2215         SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2216         SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2217         SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2218         SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
2219         SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2220         SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2221         SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2222         SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2223
2224         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2225         SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2226         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2227         SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2228         SND_PCI_QUIRK(0x1458, 0xa182, "Gigabyte Z170X-UD3", ALC882_FIXUP_DISABLE_AAMIX),
2229         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2230         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2231         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2232         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2233         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2234         {}
2235 };
2236
2237 static const struct hda_model_fixup alc882_fixup_models[] = {
2238         {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2239         {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2240         {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2241         {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2242         {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2243         {}
2244 };
2245
2246 /*
2247  * BIOS auto configuration
2248  */
2249 /* almost identical with ALC880 parser... */
2250 static int alc882_parse_auto_config(struct hda_codec *codec)
2251 {
2252         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2253         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2254         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2255 }
2256
2257 /*
2258  */
2259 static int patch_alc882(struct hda_codec *codec)
2260 {
2261         struct alc_spec *spec;
2262         int err;
2263
2264         err = alc_alloc_spec(codec, 0x0b);
2265         if (err < 0)
2266                 return err;
2267
2268         spec = codec->spec;
2269
2270         switch (codec->core.vendor_id) {
2271         case 0x10ec0882:
2272         case 0x10ec0885:
2273         case 0x10ec0900:
2274                 break;
2275         default:
2276                 /* ALC883 and variants */
2277                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2278                 break;
2279         }
2280
2281         snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2282                        alc882_fixups);
2283         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2284
2285         alc_auto_parse_customize_define(codec);
2286
2287         if (has_cdefine_beep(codec))
2288                 spec->gen.beep_nid = 0x01;
2289
2290         /* automatic parse from the BIOS config */
2291         err = alc882_parse_auto_config(codec);
2292         if (err < 0)
2293                 goto error;
2294
2295         if (!spec->gen.no_analog && spec->gen.beep_nid)
2296                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2297
2298         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2299
2300         return 0;
2301
2302  error:
2303         alc_free(codec);
2304         return err;
2305 }
2306
2307
2308 /*
2309  * ALC262 support
2310  */
2311 static int alc262_parse_auto_config(struct hda_codec *codec)
2312 {
2313         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2314         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2315         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2316 }
2317
2318 /*
2319  * Pin config fixes
2320  */
2321 enum {
2322         ALC262_FIXUP_FSC_H270,
2323         ALC262_FIXUP_FSC_S7110,
2324         ALC262_FIXUP_HP_Z200,
2325         ALC262_FIXUP_TYAN,
2326         ALC262_FIXUP_LENOVO_3000,
2327         ALC262_FIXUP_BENQ,
2328         ALC262_FIXUP_BENQ_T31,
2329         ALC262_FIXUP_INV_DMIC,
2330         ALC262_FIXUP_INTEL_BAYLEYBAY,
2331 };
2332
2333 static const struct hda_fixup alc262_fixups[] = {
2334         [ALC262_FIXUP_FSC_H270] = {
2335                 .type = HDA_FIXUP_PINS,
2336                 .v.pins = (const struct hda_pintbl[]) {
2337                         { 0x14, 0x99130110 }, /* speaker */
2338                         { 0x15, 0x0221142f }, /* front HP */
2339                         { 0x1b, 0x0121141f }, /* rear HP */
2340                         { }
2341                 }
2342         },
2343         [ALC262_FIXUP_FSC_S7110] = {
2344                 .type = HDA_FIXUP_PINS,
2345                 .v.pins = (const struct hda_pintbl[]) {
2346                         { 0x15, 0x90170110 }, /* speaker */
2347                         { }
2348                 },
2349                 .chained = true,
2350                 .chain_id = ALC262_FIXUP_BENQ,
2351         },
2352         [ALC262_FIXUP_HP_Z200] = {
2353                 .type = HDA_FIXUP_PINS,
2354                 .v.pins = (const struct hda_pintbl[]) {
2355                         { 0x16, 0x99130120 }, /* internal speaker */
2356                         { }
2357                 }
2358         },
2359         [ALC262_FIXUP_TYAN] = {
2360                 .type = HDA_FIXUP_PINS,
2361                 .v.pins = (const struct hda_pintbl[]) {
2362                         { 0x14, 0x1993e1f0 }, /* int AUX */
2363                         { }
2364                 }
2365         },
2366         [ALC262_FIXUP_LENOVO_3000] = {
2367                 .type = HDA_FIXUP_PINCTLS,
2368                 .v.pins = (const struct hda_pintbl[]) {
2369                         { 0x19, PIN_VREF50 },
2370                         {}
2371                 },
2372                 .chained = true,
2373                 .chain_id = ALC262_FIXUP_BENQ,
2374         },
2375         [ALC262_FIXUP_BENQ] = {
2376                 .type = HDA_FIXUP_VERBS,
2377                 .v.verbs = (const struct hda_verb[]) {
2378                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2379                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2380                         {}
2381                 }
2382         },
2383         [ALC262_FIXUP_BENQ_T31] = {
2384                 .type = HDA_FIXUP_VERBS,
2385                 .v.verbs = (const struct hda_verb[]) {
2386                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2387                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2388                         {}
2389                 }
2390         },
2391         [ALC262_FIXUP_INV_DMIC] = {
2392                 .type = HDA_FIXUP_FUNC,
2393                 .v.func = alc_fixup_inv_dmic,
2394         },
2395         [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2396                 .type = HDA_FIXUP_FUNC,
2397                 .v.func = alc_fixup_no_depop_delay,
2398         },
2399 };
2400
2401 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2402         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2403         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2404         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2405         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2406         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2407         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2408         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2409         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2410         SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2411         {}
2412 };
2413
2414 static const struct hda_model_fixup alc262_fixup_models[] = {
2415         {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2416         {}
2417 };
2418
2419 /*
2420  */
2421 static int patch_alc262(struct hda_codec *codec)
2422 {
2423         struct alc_spec *spec;
2424         int err;
2425
2426         err = alc_alloc_spec(codec, 0x0b);
2427         if (err < 0)
2428                 return err;
2429
2430         spec = codec->spec;
2431         spec->gen.shared_mic_vref_pin = 0x18;
2432
2433         spec->shutup = alc_eapd_shutup;
2434
2435 #if 0
2436         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
2437          * under-run
2438          */
2439         alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2440 #endif
2441         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2442
2443         snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2444                        alc262_fixups);
2445         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2446
2447         alc_auto_parse_customize_define(codec);
2448
2449         if (has_cdefine_beep(codec))
2450                 spec->gen.beep_nid = 0x01;
2451
2452         /* automatic parse from the BIOS config */
2453         err = alc262_parse_auto_config(codec);
2454         if (err < 0)
2455                 goto error;
2456
2457         if (!spec->gen.no_analog && spec->gen.beep_nid)
2458                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2459
2460         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2461
2462         return 0;
2463
2464  error:
2465         alc_free(codec);
2466         return err;
2467 }
2468
2469 /*
2470  *  ALC268
2471  */
2472 /* bind Beep switches of both NID 0x0f and 0x10 */
2473 static const struct hda_bind_ctls alc268_bind_beep_sw = {
2474         .ops = &snd_hda_bind_sw,
2475         .values = {
2476                 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2477                 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2478                 0
2479         },
2480 };
2481
2482 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2483         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2484         HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2485         { }
2486 };
2487
2488 /* set PCBEEP vol = 0, mute connections */
2489 static const struct hda_verb alc268_beep_init_verbs[] = {
2490         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2491         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2492         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2493         { }
2494 };
2495
2496 enum {
2497         ALC268_FIXUP_INV_DMIC,
2498         ALC268_FIXUP_HP_EAPD,
2499         ALC268_FIXUP_SPDIF,
2500 };
2501
2502 static const struct hda_fixup alc268_fixups[] = {
2503         [ALC268_FIXUP_INV_DMIC] = {
2504                 .type = HDA_FIXUP_FUNC,
2505                 .v.func = alc_fixup_inv_dmic,
2506         },
2507         [ALC268_FIXUP_HP_EAPD] = {
2508                 .type = HDA_FIXUP_VERBS,
2509                 .v.verbs = (const struct hda_verb[]) {
2510                         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2511                         {}
2512                 }
2513         },
2514         [ALC268_FIXUP_SPDIF] = {
2515                 .type = HDA_FIXUP_PINS,
2516                 .v.pins = (const struct hda_pintbl[]) {
2517                         { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2518                         {}
2519                 }
2520         },
2521 };
2522
2523 static const struct hda_model_fixup alc268_fixup_models[] = {
2524         {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2525         {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2526         {}
2527 };
2528
2529 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2530         SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2531         SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2532         /* below is codec SSID since multiple Toshiba laptops have the
2533          * same PCI SSID 1179:ff00
2534          */
2535         SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2536         {}
2537 };
2538
2539 /*
2540  * BIOS auto configuration
2541  */
2542 static int alc268_parse_auto_config(struct hda_codec *codec)
2543 {
2544         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2545         return alc_parse_auto_config(codec, NULL, alc268_ssids);
2546 }
2547
2548 /*
2549  */
2550 static int patch_alc268(struct hda_codec *codec)
2551 {
2552         struct alc_spec *spec;
2553         int err;
2554
2555         /* ALC268 has no aa-loopback mixer */
2556         err = alc_alloc_spec(codec, 0);
2557         if (err < 0)
2558                 return err;
2559
2560         spec = codec->spec;
2561         spec->gen.beep_nid = 0x01;
2562
2563         spec->shutup = alc_eapd_shutup;
2564
2565         snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2566         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2567
2568         /* automatic parse from the BIOS config */
2569         err = alc268_parse_auto_config(codec);
2570         if (err < 0)
2571                 goto error;
2572
2573         if (err > 0 && !spec->gen.no_analog &&
2574             spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2575                 add_mixer(spec, alc268_beep_mixer);
2576                 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2577                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2578                         /* override the amp caps for beep generator */
2579                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2580                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2581                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2582                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2583                                           (0 << AC_AMPCAP_MUTE_SHIFT));
2584         }
2585
2586         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2587
2588         return 0;
2589
2590  error:
2591         alc_free(codec);
2592         return err;
2593 }
2594
2595 /*
2596  * ALC269
2597  */
2598
2599 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2600         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2601 };
2602
2603 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2604         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2605 };
2606
2607 /* different alc269-variants */
2608 enum {
2609         ALC269_TYPE_ALC269VA,
2610         ALC269_TYPE_ALC269VB,
2611         ALC269_TYPE_ALC269VC,
2612         ALC269_TYPE_ALC269VD,
2613         ALC269_TYPE_ALC280,
2614         ALC269_TYPE_ALC282,
2615         ALC269_TYPE_ALC283,
2616         ALC269_TYPE_ALC284,
2617         ALC269_TYPE_ALC285,
2618         ALC269_TYPE_ALC286,
2619         ALC269_TYPE_ALC298,
2620         ALC269_TYPE_ALC255,
2621         ALC269_TYPE_ALC256,
2622 };
2623
2624 /*
2625  * BIOS auto configuration
2626  */
2627 static int alc269_parse_auto_config(struct hda_codec *codec)
2628 {
2629         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2630         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2631         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2632         struct alc_spec *spec = codec->spec;
2633         const hda_nid_t *ssids;
2634
2635         switch (spec->codec_variant) {
2636         case ALC269_TYPE_ALC269VA:
2637         case ALC269_TYPE_ALC269VC:
2638         case ALC269_TYPE_ALC280:
2639         case ALC269_TYPE_ALC284:
2640         case ALC269_TYPE_ALC285:
2641                 ssids = alc269va_ssids;
2642                 break;
2643         case ALC269_TYPE_ALC269VB:
2644         case ALC269_TYPE_ALC269VD:
2645         case ALC269_TYPE_ALC282:
2646         case ALC269_TYPE_ALC283:
2647         case ALC269_TYPE_ALC286:
2648         case ALC269_TYPE_ALC298:
2649         case ALC269_TYPE_ALC255:
2650         case ALC269_TYPE_ALC256:
2651                 ssids = alc269_ssids;
2652                 break;
2653         default:
2654                 ssids = alc269_ssids;
2655                 break;
2656         }
2657
2658         return alc_parse_auto_config(codec, alc269_ignore, ssids);
2659 }
2660
2661 static int find_ext_mic_pin(struct hda_codec *codec);
2662
2663 static void alc286_shutup(struct hda_codec *codec)
2664 {
2665         int i;
2666         int mic_pin = find_ext_mic_pin(codec);
2667         /* don't shut up pins when unloading the driver; otherwise it breaks
2668          * the default pin setup at the next load of the driver
2669          */
2670         if (codec->bus->shutdown)
2671                 return;
2672         for (i = 0; i < codec->init_pins.used; i++) {
2673                 struct hda_pincfg *pin = snd_array_elem(&codec->init_pins, i);
2674                 /* use read here for syncing after issuing each verb */
2675                 if (pin->nid != mic_pin)
2676                         snd_hda_codec_read(codec, pin->nid, 0,
2677                                         AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2678         }
2679         codec->pins_shutup = 1;
2680 }
2681
2682 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2683 {
2684         alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
2685 }
2686
2687 static void alc269_shutup(struct hda_codec *codec)
2688 {
2689         struct alc_spec *spec = codec->spec;
2690
2691         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2692                 alc269vb_toggle_power_output(codec, 0);
2693         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2694                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2695                 msleep(150);
2696         }
2697         snd_hda_shutup_pins(codec);
2698 }
2699
2700 static struct coef_fw alc282_coefs[] = {
2701         WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2702         UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2703         WRITE_COEF(0x07, 0x0200), /* DMIC control */
2704         UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2705         UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2706         WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2707         WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2708         WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
2709         UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2710         UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2711         WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
2712         UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
2713         WRITE_COEF(0x34, 0xa0c0), /* ANC */
2714         UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
2715         UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2716         UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2717         WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2718         WRITE_COEF(0x63, 0x2902), /* PLL */
2719         WRITE_COEF(0x68, 0xa080), /* capless control 2 */
2720         WRITE_COEF(0x69, 0x3400), /* capless control 3 */
2721         WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
2722         WRITE_COEF(0x6b, 0x0), /* capless control 5 */
2723         UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
2724         WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
2725         UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
2726         WRITE_COEF(0x71, 0x0014), /* class D test 6 */
2727         WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
2728         UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
2729         WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
2730         {}
2731 };
2732
2733 static void alc282_restore_default_value(struct hda_codec *codec)
2734 {
2735         alc_process_coef_fw(codec, alc282_coefs);
2736 }
2737
2738 static void alc282_init(struct hda_codec *codec)
2739 {
2740         struct alc_spec *spec = codec->spec;
2741         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2742         bool hp_pin_sense;
2743         int coef78;
2744
2745         alc282_restore_default_value(codec);
2746
2747         if (!hp_pin)
2748                 return;
2749         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2750         coef78 = alc_read_coef_idx(codec, 0x78);
2751
2752         /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
2753         /* Headphone capless set to high power mode */
2754         alc_write_coef_idx(codec, 0x78, 0x9004);
2755
2756         if (hp_pin_sense)
2757                 msleep(2);
2758
2759         snd_hda_codec_write(codec, hp_pin, 0,
2760                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2761
2762         if (hp_pin_sense)
2763                 msleep(85);
2764
2765         snd_hda_codec_write(codec, hp_pin, 0,
2766                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2767
2768         if (hp_pin_sense)
2769                 msleep(100);
2770
2771         /* Headphone capless set to normal mode */
2772         alc_write_coef_idx(codec, 0x78, coef78);
2773 }
2774
2775 static void alc282_shutup(struct hda_codec *codec)
2776 {
2777         struct alc_spec *spec = codec->spec;
2778         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2779         bool hp_pin_sense;
2780         int coef78;
2781
2782         if (!hp_pin) {
2783                 alc269_shutup(codec);
2784                 return;
2785         }
2786
2787         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2788         coef78 = alc_read_coef_idx(codec, 0x78);
2789         alc_write_coef_idx(codec, 0x78, 0x9004);
2790
2791         if (hp_pin_sense)
2792                 msleep(2);
2793
2794         snd_hda_codec_write(codec, hp_pin, 0,
2795                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2796
2797         if (hp_pin_sense)
2798                 msleep(85);
2799
2800         snd_hda_codec_write(codec, hp_pin, 0,
2801                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2802
2803         if (hp_pin_sense)
2804                 msleep(100);
2805
2806         alc_auto_setup_eapd(codec, false);
2807         snd_hda_shutup_pins(codec);
2808         alc_write_coef_idx(codec, 0x78, coef78);
2809 }
2810
2811 static struct coef_fw alc283_coefs[] = {
2812         WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2813         UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
2814         WRITE_COEF(0x07, 0x0200), /* DMIC control */
2815         UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2816         UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2817         WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2818         WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2819         WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
2820         UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2821         UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2822         WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
2823         UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
2824         WRITE_COEF(0x22, 0xa0c0), /* ANC */
2825         UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
2826         UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2827         UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2828         WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2829         WRITE_COEF(0x2e, 0x2902), /* PLL */
2830         WRITE_COEF(0x33, 0xa080), /* capless control 2 */
2831         WRITE_COEF(0x34, 0x3400), /* capless control 3 */
2832         WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
2833         WRITE_COEF(0x36, 0x0), /* capless control 5 */
2834         UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
2835         WRITE_COEF(0x39, 0x110a), /* class D test 3 */
2836         UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
2837         WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
2838         WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
2839         UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
2840         WRITE_COEF(0x49, 0x0), /* test mode */
2841         UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
2842         UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
2843         WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
2844         UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
2845         {}
2846 };
2847
2848 static void alc283_restore_default_value(struct hda_codec *codec)
2849 {
2850         alc_process_coef_fw(codec, alc283_coefs);
2851 }
2852
2853 static void alc283_init(struct hda_codec *codec)
2854 {
2855         struct alc_spec *spec = codec->spec;
2856         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2857         bool hp_pin_sense;
2858
2859         if (!spec->gen.autocfg.hp_outs) {
2860                 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
2861                         hp_pin = spec->gen.autocfg.line_out_pins[0];
2862         }
2863
2864         alc283_restore_default_value(codec);
2865
2866         if (!hp_pin)
2867                 return;
2868
2869         msleep(30);
2870         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2871
2872         /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2873         /* Headphone capless set to high power mode */
2874         alc_write_coef_idx(codec, 0x43, 0x9004);
2875
2876         snd_hda_codec_write(codec, hp_pin, 0,
2877                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2878
2879         if (hp_pin_sense)
2880                 msleep(85);
2881
2882         snd_hda_codec_write(codec, hp_pin, 0,
2883                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2884
2885         if (hp_pin_sense)
2886                 msleep(85);
2887         /* Index 0x46 Combo jack auto switch control 2 */
2888         /* 3k pull low control for Headset jack. */
2889         alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2890         /* Headphone capless set to normal mode */
2891         alc_write_coef_idx(codec, 0x43, 0x9614);
2892 }
2893
2894 static void alc283_shutup(struct hda_codec *codec)
2895 {
2896         struct alc_spec *spec = codec->spec;
2897         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2898         bool hp_pin_sense;
2899
2900         if (!spec->gen.autocfg.hp_outs) {
2901                 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
2902                         hp_pin = spec->gen.autocfg.line_out_pins[0];
2903         }
2904
2905         if (!hp_pin) {
2906                 alc269_shutup(codec);
2907                 return;
2908         }
2909
2910         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2911
2912         alc_write_coef_idx(codec, 0x43, 0x9004);
2913
2914         /*depop hp during suspend*/
2915         alc_write_coef_idx(codec, 0x06, 0x2100);
2916
2917         snd_hda_codec_write(codec, hp_pin, 0,
2918                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2919
2920         if (hp_pin_sense)
2921                 msleep(100);
2922
2923         snd_hda_codec_write(codec, hp_pin, 0,
2924                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2925
2926         alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2927
2928         if (hp_pin_sense)
2929                 msleep(100);
2930         alc_auto_setup_eapd(codec, false);
2931         snd_hda_shutup_pins(codec);
2932         alc_write_coef_idx(codec, 0x43, 0x9614);
2933 }
2934
2935 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
2936                              unsigned int val)
2937 {
2938         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2939         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
2940         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
2941 }
2942
2943 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
2944 {
2945         unsigned int val;
2946
2947         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2948         val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2949                 & 0xffff;
2950         val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2951                 << 16;
2952         return val;
2953 }
2954
2955 static void alc5505_dsp_halt(struct hda_codec *codec)
2956 {
2957         unsigned int val;
2958
2959         alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
2960         alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
2961         alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2962         alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
2963         alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2964         alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
2965         alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
2966         val = alc5505_coef_get(codec, 0x6220);
2967         alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
2968 }
2969
2970 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
2971 {
2972         alc5505_coef_set(codec, 0x61b8, 0x04133302);
2973         alc5505_coef_set(codec, 0x61b0, 0x00005b16);
2974         alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
2975         alc5505_coef_set(codec, 0x6230, 0xf80d4011);
2976         alc5505_coef_set(codec, 0x6220, 0x2002010f);
2977         alc5505_coef_set(codec, 0x880c, 0x00000004);
2978 }
2979
2980 static void alc5505_dsp_init(struct hda_codec *codec)
2981 {
2982         unsigned int val;
2983
2984         alc5505_dsp_halt(codec);
2985         alc5505_dsp_back_from_halt(codec);
2986         alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
2987         alc5505_coef_set(codec, 0x61b0, 0x5b16);
2988         alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
2989         alc5505_coef_set(codec, 0x61b4, 0x04132b02);
2990         alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
2991         alc5505_coef_set(codec, 0x61b8, 0x041f3302);
2992         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
2993         alc5505_coef_set(codec, 0x61b8, 0x041b3302);
2994         alc5505_coef_set(codec, 0x61b8, 0x04173302);
2995         alc5505_coef_set(codec, 0x61b8, 0x04163302);
2996         alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
2997         alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
2998         alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
2999
3000         val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3001         if (val <= 3)
3002                 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3003         else
3004                 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3005
3006         alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3007         alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3008         alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3009         alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3010         alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3011         alc5505_coef_set(codec, 0x880c, 0x00000003);
3012         alc5505_coef_set(codec, 0x880c, 0x00000010);
3013
3014 #ifdef HALT_REALTEK_ALC5505
3015         alc5505_dsp_halt(codec);
3016 #endif
3017 }
3018
3019 #ifdef HALT_REALTEK_ALC5505
3020 #define alc5505_dsp_suspend(codec)      /* NOP */
3021 #define alc5505_dsp_resume(codec)       /* NOP */
3022 #else
3023 #define alc5505_dsp_suspend(codec)      alc5505_dsp_halt(codec)
3024 #define alc5505_dsp_resume(codec)       alc5505_dsp_back_from_halt(codec)
3025 #endif
3026
3027 #ifdef CONFIG_PM
3028 static int alc269_suspend(struct hda_codec *codec)
3029 {
3030         struct alc_spec *spec = codec->spec;
3031
3032         if (spec->has_alc5505_dsp)
3033                 alc5505_dsp_suspend(codec);
3034         return alc_suspend(codec);
3035 }
3036
3037 static int alc269_resume(struct hda_codec *codec)
3038 {
3039         struct alc_spec *spec = codec->spec;
3040
3041         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3042                 alc269vb_toggle_power_output(codec, 0);
3043         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3044                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3045                 msleep(150);
3046         }
3047
3048         codec->patch_ops.init(codec);
3049
3050         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3051                 alc269vb_toggle_power_output(codec, 1);
3052         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3053                         (alc_get_coef0(codec) & 0x00ff) == 0x017) {
3054                 msleep(200);
3055         }
3056
3057         regcache_sync(codec->core.regmap);
3058         hda_call_check_power_status(codec, 0x01);
3059
3060         /* on some machine, the BIOS will clear the codec gpio data when enter
3061          * suspend, and won't restore the data after resume, so we restore it
3062          * in the driver.
3063          */
3064         if (spec->gpio_led)
3065                 snd_hda_codec_write(codec, codec->core.afg, 0, AC_VERB_SET_GPIO_DATA,
3066                             spec->gpio_led);
3067
3068         if (spec->has_alc5505_dsp)
3069                 alc5505_dsp_resume(codec);
3070
3071         return 0;
3072 }
3073 #endif /* CONFIG_PM */
3074
3075 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
3076                                                  const struct hda_fixup *fix, int action)
3077 {
3078         struct alc_spec *spec = codec->spec;
3079
3080         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3081                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3082 }
3083
3084 static void alc269_fixup_hweq(struct hda_codec *codec,
3085                                const struct hda_fixup *fix, int action)
3086 {
3087         if (action == HDA_FIXUP_ACT_INIT)
3088                 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
3089 }
3090
3091 static void alc269_fixup_headset_mic(struct hda_codec *codec,
3092                                        const struct hda_fixup *fix, int action)
3093 {
3094         struct alc_spec *spec = codec->spec;
3095
3096         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3097                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3098 }
3099
3100 static void alc271_fixup_dmic(struct hda_codec *codec,
3101                               const struct hda_fixup *fix, int action)
3102 {
3103         static const struct hda_verb verbs[] = {
3104                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3105                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3106                 {}
3107         };
3108         unsigned int cfg;
3109
3110         if (strcmp(codec->core.chip_name, "ALC271X") &&
3111             strcmp(codec->core.chip_name, "ALC269VB"))
3112                 return;
3113         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3114         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3115                 snd_hda_sequence_write(codec, verbs);
3116 }
3117
3118 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
3119                                  const struct hda_fixup *fix, int action)
3120 {
3121         struct alc_spec *spec = codec->spec;
3122
3123         if (action != HDA_FIXUP_ACT_PROBE)
3124                 return;
3125
3126         /* Due to a hardware problem on Lenovo Ideadpad, we need to
3127          * fix the sample rate of analog I/O to 44.1kHz
3128          */
3129         spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3130         spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
3131 }
3132
3133 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3134                                      const struct hda_fixup *fix, int action)
3135 {
3136         /* The digital-mic unit sends PDM (differential signal) instead of
3137          * the standard PCM, thus you can't record a valid mono stream as is.
3138          * Below is a workaround specific to ALC269 to control the dmic
3139          * signal source as mono.
3140          */
3141         if (action == HDA_FIXUP_ACT_INIT)
3142                 alc_update_coef_idx(codec, 0x07, 0, 0x80);
3143 }
3144
3145 static void alc269_quanta_automute(struct hda_codec *codec)
3146 {
3147         snd_hda_gen_update_outputs(codec);
3148
3149         alc_write_coef_idx(codec, 0x0c, 0x680);
3150         alc_write_coef_idx(codec, 0x0c, 0x480);
3151 }
3152
3153 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3154                                      const struct hda_fixup *fix, int action)
3155 {
3156         struct alc_spec *spec = codec->spec;
3157         if (action != HDA_FIXUP_ACT_PROBE)
3158                 return;
3159         spec->gen.automute_hook = alc269_quanta_automute;
3160 }
3161
3162 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3163                                          struct hda_jack_callback *jack)
3164 {
3165         struct alc_spec *spec = codec->spec;
3166         int vref;
3167         msleep(200);
3168         snd_hda_gen_hp_automute(codec, jack);
3169
3170         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3171         msleep(100);
3172         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3173                             vref);
3174         msleep(500);
3175         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3176                             vref);
3177 }
3178
3179 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3180                                      const struct hda_fixup *fix, int action)
3181 {
3182         struct alc_spec *spec = codec->spec;
3183         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3184                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3185                 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3186         }
3187 }
3188
3189
3190 /* update mute-LED according to the speaker mute state via mic VREF pin */
3191 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3192 {
3193         struct hda_codec *codec = private_data;
3194         struct alc_spec *spec = codec->spec;
3195         unsigned int pinval;
3196
3197         if (spec->mute_led_polarity)
3198                 enabled = !enabled;
3199         pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3200         pinval &= ~AC_PINCTL_VREFEN;
3201         pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3202         if (spec->mute_led_nid)
3203                 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3204 }
3205
3206 /* Make sure the led works even in runtime suspend */
3207 static unsigned int led_power_filter(struct hda_codec *codec,
3208                                                   hda_nid_t nid,
3209                                                   unsigned int power_state)
3210 {
3211         struct alc_spec *spec = codec->spec;
3212
3213         if (power_state != AC_PWRST_D3 || nid == 0 ||
3214             (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
3215                 return power_state;
3216
3217         /* Set pin ctl again, it might have just been set to 0 */
3218         snd_hda_set_pin_ctl(codec, nid,
3219                             snd_hda_codec_get_pin_target(codec, nid));
3220
3221         return snd_hda_gen_path_power_filter(codec, nid, power_state);
3222 }
3223
3224 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3225                                      const struct hda_fixup *fix, int action)
3226 {
3227         struct alc_spec *spec = codec->spec;
3228         const struct dmi_device *dev = NULL;
3229
3230         if (action != HDA_FIXUP_ACT_PRE_PROBE)
3231                 return;
3232
3233         while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3234                 int pol, pin;
3235                 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3236                         continue;
3237                 if (pin < 0x0a || pin >= 0x10)
3238                         break;
3239                 spec->mute_led_polarity = pol;
3240                 spec->mute_led_nid = pin - 0x0a + 0x18;
3241                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3242                 spec->gen.vmaster_mute_enum = 1;
3243                 codec->power_filter = led_power_filter;
3244                 codec_dbg(codec,
3245                           "Detected mute LED for %x:%d\n", spec->mute_led_nid,
3246                            spec->mute_led_polarity);
3247                 break;
3248         }
3249 }
3250
3251 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3252                                 const struct hda_fixup *fix, int action)
3253 {
3254         struct alc_spec *spec = codec->spec;
3255         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3256                 spec->mute_led_polarity = 0;
3257                 spec->mute_led_nid = 0x18;
3258                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3259                 spec->gen.vmaster_mute_enum = 1;
3260                 codec->power_filter = led_power_filter;
3261         }
3262 }
3263
3264 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3265                                 const struct hda_fixup *fix, int action)
3266 {
3267         struct alc_spec *spec = codec->spec;
3268         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3269                 spec->mute_led_polarity = 0;
3270                 spec->mute_led_nid = 0x19;
3271                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3272                 spec->gen.vmaster_mute_enum = 1;
3273                 codec->power_filter = led_power_filter;
3274         }
3275 }
3276
3277 /* update LED status via GPIO */
3278 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3279                                 bool enabled)
3280 {
3281         struct alc_spec *spec = codec->spec;
3282         unsigned int oldval = spec->gpio_led;
3283
3284         if (spec->mute_led_polarity)
3285                 enabled = !enabled;
3286
3287         if (enabled)
3288                 spec->gpio_led &= ~mask;
3289         else
3290                 spec->gpio_led |= mask;
3291         if (spec->gpio_led != oldval)
3292                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3293                                     spec->gpio_led);
3294 }
3295
3296 /* turn on/off mute LED via GPIO per vmaster hook */
3297 static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
3298 {
3299         struct hda_codec *codec = private_data;
3300         struct alc_spec *spec = codec->spec;
3301
3302         alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3303 }
3304
3305 /* turn on/off mic-mute LED via GPIO per capture hook */
3306 static void alc_fixup_gpio_mic_mute_hook(struct hda_codec *codec,
3307                                          struct snd_kcontrol *kcontrol,
3308                                          struct snd_ctl_elem_value *ucontrol)
3309 {
3310         struct alc_spec *spec = codec->spec;
3311
3312         if (ucontrol)
3313                 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3314                                     ucontrol->value.integer.value[0] ||
3315                                     ucontrol->value.integer.value[1]);
3316 }
3317
3318 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3319                                 const struct hda_fixup *fix, int action)
3320 {
3321         struct alc_spec *spec = codec->spec;
3322         static const struct hda_verb gpio_init[] = {
3323                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3324                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3325                 {}
3326         };
3327
3328         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3329                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3330                 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3331                 spec->gpio_led = 0;
3332                 spec->mute_led_polarity = 0;
3333                 spec->gpio_mute_led_mask = 0x08;
3334                 spec->gpio_mic_led_mask = 0x10;
3335                 snd_hda_add_verbs(codec, gpio_init);
3336         }
3337 }
3338
3339 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
3340                                 const struct hda_fixup *fix, int action)
3341 {
3342         struct alc_spec *spec = codec->spec;
3343         static const struct hda_verb gpio_init[] = {
3344                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x22 },
3345                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x22 },
3346                 {}
3347         };
3348
3349         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3350                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3351                 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3352                 spec->gpio_led = 0;
3353                 spec->mute_led_polarity = 0;
3354                 spec->gpio_mute_led_mask = 0x02;
3355                 spec->gpio_mic_led_mask = 0x20;
3356                 snd_hda_add_verbs(codec, gpio_init);
3357         }
3358 }
3359
3360 /* turn on/off mic-mute LED per capture hook */
3361 static void alc269_fixup_hp_cap_mic_mute_hook(struct hda_codec *codec,
3362                                                struct snd_kcontrol *kcontrol,
3363                                                struct snd_ctl_elem_value *ucontrol)
3364 {
3365         struct alc_spec *spec = codec->spec;
3366         unsigned int pinval, enable, disable;
3367
3368         pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
3369         pinval &= ~AC_PINCTL_VREFEN;
3370         enable  = pinval | AC_PINCTL_VREF_80;
3371         disable = pinval | AC_PINCTL_VREF_HIZ;
3372
3373         if (!ucontrol)
3374                 return;
3375
3376         if (ucontrol->value.integer.value[0] ||
3377             ucontrol->value.integer.value[1])
3378                 pinval = disable;
3379         else
3380                 pinval = enable;
3381
3382         if (spec->cap_mute_led_nid)
3383                 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
3384 }
3385
3386 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
3387                                 const struct hda_fixup *fix, int action)
3388 {
3389         struct alc_spec *spec = codec->spec;
3390         static const struct hda_verb gpio_init[] = {
3391                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x08 },
3392                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x08 },
3393                 {}
3394         };
3395
3396         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3397                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3398                 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3399                 spec->gpio_led = 0;
3400                 spec->mute_led_polarity = 0;
3401                 spec->gpio_mute_led_mask = 0x08;
3402                 spec->cap_mute_led_nid = 0x18;
3403                 snd_hda_add_verbs(codec, gpio_init);
3404                 codec->power_filter = led_power_filter;
3405         }
3406 }
3407
3408 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
3409                                    const struct hda_fixup *fix, int action)
3410 {
3411         /* Like hp_gpio_mic1_led, but also needs GPIO4 low to enable headphone amp */
3412         struct alc_spec *spec = codec->spec;
3413         static const struct hda_verb gpio_init[] = {
3414                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3415                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3416                 {}
3417         };
3418
3419         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3420                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3421                 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3422                 spec->gpio_led = 0;
3423                 spec->mute_led_polarity = 0;
3424                 spec->gpio_mute_led_mask = 0x08;
3425                 spec->cap_mute_led_nid = 0x18;
3426                 snd_hda_add_verbs(codec, gpio_init);
3427                 codec->power_filter = led_power_filter;
3428         }
3429 }
3430
3431 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
3432                                    struct hda_jack_callback *event)
3433 {
3434         struct alc_spec *spec = codec->spec;
3435
3436         /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3437            send both key on and key off event for every interrupt. */
3438         input_report_key(spec->kb_dev, KEY_MICMUTE, 1);
3439         input_sync(spec->kb_dev);
3440         input_report_key(spec->kb_dev, KEY_MICMUTE, 0);
3441         input_sync(spec->kb_dev);
3442 }
3443
3444 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
3445                                              const struct hda_fixup *fix, int action)
3446 {
3447         /* GPIO1 = set according to SKU external amp
3448            GPIO2 = mic mute hotkey
3449            GPIO3 = mute LED
3450            GPIO4 = mic mute LED */
3451         static const struct hda_verb gpio_init[] = {
3452                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x1e },
3453                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x1a },
3454                 { 0x01, AC_VERB_SET_GPIO_DATA, 0x02 },
3455                 {}
3456         };
3457
3458         struct alc_spec *spec = codec->spec;
3459
3460         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3461                 spec->kb_dev = input_allocate_device();
3462                 if (!spec->kb_dev) {
3463                         codec_err(codec, "Out of memory (input_allocate_device)\n");
3464                         return;
3465                 }
3466                 spec->kb_dev->name = "Microphone Mute Button";
3467                 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
3468                 spec->kb_dev->keybit[BIT_WORD(KEY_MICMUTE)] = BIT_MASK(KEY_MICMUTE);
3469                 if (input_register_device(spec->kb_dev)) {
3470                         codec_err(codec, "input_register_device failed\n");
3471                         input_free_device(spec->kb_dev);
3472                         spec->kb_dev = NULL;
3473                         return;
3474                 }
3475
3476                 snd_hda_add_verbs(codec, gpio_init);
3477                 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
3478                                           AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
3479                 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
3480                                                     gpio2_mic_hotkey_event);
3481
3482                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3483                 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3484                 spec->gpio_led = 0;
3485                 spec->mute_led_polarity = 0;
3486                 spec->gpio_mute_led_mask = 0x08;
3487                 spec->gpio_mic_led_mask = 0x10;
3488                 return;
3489         }
3490
3491         if (!spec->kb_dev)
3492                 return;
3493
3494         switch (action) {
3495         case HDA_FIXUP_ACT_PROBE:
3496                 spec->init_amp = ALC_INIT_DEFAULT;
3497                 break;
3498         case HDA_FIXUP_ACT_FREE:
3499                 input_unregister_device(spec->kb_dev);
3500                 spec->kb_dev = NULL;
3501         }
3502 }
3503
3504 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
3505                                 const struct hda_fixup *fix, int action)
3506 {
3507         struct alc_spec *spec = codec->spec;
3508
3509         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3510                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3511                 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3512                 spec->mute_led_polarity = 0;
3513                 spec->mute_led_nid = 0x1a;
3514                 spec->cap_mute_led_nid = 0x18;
3515                 spec->gen.vmaster_mute_enum = 1;
3516                 codec->power_filter = led_power_filter;
3517         }
3518 }
3519
3520 static void alc_headset_mode_unplugged(struct hda_codec *codec)
3521 {
3522         static struct coef_fw coef0255[] = {
3523                 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
3524                 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
3525                 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
3526                 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
3527                 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
3528                 {}
3529         };
3530         static struct coef_fw coef0233[] = {
3531                 WRITE_COEF(0x1b, 0x0c0b),
3532                 WRITE_COEF(0x45, 0xc429),
3533                 UPDATE_COEF(0x35, 0x4000, 0),
3534                 WRITE_COEF(0x06, 0x2104),
3535                 WRITE_COEF(0x1a, 0x0001),
3536                 WRITE_COEF(0x26, 0x0004),
3537                 WRITE_COEF(0x32, 0x42a3),
3538                 {}
3539         };
3540         static struct coef_fw coef0288[] = {
3541                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3542                 UPDATE_COEF(0x50, 0x2000, 0x2000),
3543                 UPDATE_COEF(0x56, 0x0006, 0x0006),
3544                 UPDATE_COEF(0x66, 0x0008, 0),
3545                 UPDATE_COEF(0x67, 0x2000, 0),
3546                 {}
3547         };
3548         static struct coef_fw coef0292[] = {
3549                 WRITE_COEF(0x76, 0x000e),
3550                 WRITE_COEF(0x6c, 0x2400),
3551                 WRITE_COEF(0x18, 0x7308),
3552                 WRITE_COEF(0x6b, 0xc429),
3553                 {}
3554         };
3555         static struct coef_fw coef0293[] = {
3556                 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
3557                 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
3558                 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
3559                 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
3560                 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
3561                 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3562                 {}
3563         };
3564         static struct coef_fw coef0668[] = {
3565                 WRITE_COEF(0x15, 0x0d40),
3566                 WRITE_COEF(0xb7, 0x802b),
3567                 {}
3568         };
3569
3570         switch (codec->core.vendor_id) {
3571         case 0x10ec0255:
3572         case 0x10ec0256:
3573                 alc_process_coef_fw(codec, coef0255);
3574                 break;
3575         case 0x10ec0233:
3576         case 0x10ec0283:
3577                 alc_process_coef_fw(codec, coef0233);
3578                 break;
3579         case 0x10ec0286:
3580         case 0x10ec0288:
3581         case 0x10ec0298:
3582                 alc_process_coef_fw(codec, coef0288);
3583                 break;
3584         case 0x10ec0292:
3585                 alc_process_coef_fw(codec, coef0292);
3586                 break;
3587         case 0x10ec0293:
3588                 alc_process_coef_fw(codec, coef0293);
3589                 break;
3590         case 0x10ec0668:
3591                 alc_process_coef_fw(codec, coef0668);
3592                 break;
3593         }
3594         codec_dbg(codec, "Headset jack set to unplugged mode.\n");
3595 }
3596
3597
3598 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3599                                     hda_nid_t mic_pin)
3600 {
3601         static struct coef_fw coef0255[] = {
3602                 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
3603                 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
3604                 {}
3605         };
3606         static struct coef_fw coef0233[] = {
3607                 UPDATE_COEF(0x35, 0, 1<<14),
3608                 WRITE_COEF(0x06, 0x2100),
3609                 WRITE_COEF(0x1a, 0x0021),
3610                 WRITE_COEF(0x26, 0x008c),
3611                 {}
3612         };
3613         static struct coef_fw coef0288[] = {
3614                 UPDATE_COEF(0x50, 0x2000, 0),
3615                 UPDATE_COEF(0x56, 0x0006, 0),
3616                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3617                 UPDATE_COEF(0x66, 0x0008, 0x0008),
3618                 UPDATE_COEF(0x67, 0x2000, 0x2000),
3619                 {}
3620         };
3621         static struct coef_fw coef0292[] = {
3622                 WRITE_COEF(0x19, 0xa208),
3623                 WRITE_COEF(0x2e, 0xacf0),
3624                 {}
3625         };
3626         static struct coef_fw coef0293[] = {
3627                 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
3628                 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
3629                 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3630                 {}
3631         };
3632         static struct coef_fw coef0688[] = {
3633                 WRITE_COEF(0xb7, 0x802b),
3634                 WRITE_COEF(0xb5, 0x1040),
3635                 UPDATE_COEF(0xc3, 0, 1<<12),
3636                 {}
3637         };
3638
3639         switch (codec->core.vendor_id) {
3640         case 0x10ec0255:
3641         case 0x10ec0256:
3642                 alc_write_coef_idx(codec, 0x45, 0xc489);
3643                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3644                 alc_process_coef_fw(codec, coef0255);
3645                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3646                 break;
3647         case 0x10ec0233:
3648         case 0x10ec0283:
3649                 alc_write_coef_idx(codec, 0x45, 0xc429);
3650                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3651                 alc_process_coef_fw(codec, coef0233);
3652                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3653                 break;
3654         case 0x10ec0286:
3655         case 0x10ec0288:
3656         case 0x10ec0298:
3657                 alc_update_coef_idx(codec, 0x4f, 0x000c, 0);
3658                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3659                 alc_process_coef_fw(codec, coef0288);
3660                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3661                 break;
3662         case 0x10ec0292:
3663                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3664                 alc_process_coef_fw(codec, coef0292);
3665                 break;
3666         case 0x10ec0293:
3667                 /* Set to TRS mode */
3668                 alc_write_coef_idx(codec, 0x45, 0xc429);
3669                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3670                 alc_process_coef_fw(codec, coef0293);
3671                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3672                 break;
3673         case 0x10ec0662:
3674                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3675                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3676                 break;
3677         case 0x10ec0668:
3678                 alc_write_coef_idx(codec, 0x11, 0x0001);
3679                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3680                 alc_process_coef_fw(codec, coef0688);
3681                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3682                 break;
3683         }
3684         codec_dbg(codec, "Headset jack set to mic-in mode.\n");
3685 }
3686
3687 static void alc_headset_mode_default(struct hda_codec *codec)
3688 {
3689         static struct coef_fw coef0255[] = {
3690                 WRITE_COEF(0x45, 0xc089),
3691                 WRITE_COEF(0x45, 0xc489),
3692                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3693                 WRITE_COEF(0x49, 0x0049),
3694                 {}
3695         };
3696         static struct coef_fw coef0233[] = {
3697                 WRITE_COEF(0x06, 0x2100),
3698                 WRITE_COEF(0x32, 0x4ea3),
3699                 {}
3700         };
3701         static struct coef_fw coef0288[] = {
3702                 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
3703                 UPDATE_COEF(0x50, 0x2000, 0x2000),
3704                 UPDATE_COEF(0x56, 0x0006, 0x0006),
3705                 UPDATE_COEF(0x66, 0x0008, 0),
3706                 UPDATE_COEF(0x67, 0x2000, 0),
3707                 {}
3708         };
3709         static struct coef_fw coef0292[] = {
3710                 WRITE_COEF(0x76, 0x000e),
3711                 WRITE_COEF(0x6c, 0x2400),
3712                 WRITE_COEF(0x6b, 0xc429),
3713                 WRITE_COEF(0x18, 0x7308),
3714                 {}
3715         };
3716         static struct coef_fw coef0293[] = {
3717                 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3718                 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
3719                 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
3720                 {}
3721         };
3722         static struct coef_fw coef0688[] = {
3723                 WRITE_COEF(0x11, 0x0041),
3724                 WRITE_COEF(0x15, 0x0d40),
3725                 WRITE_COEF(0xb7, 0x802b),
3726                 {}
3727         };
3728
3729         switch (codec->core.vendor_id) {
3730         case 0x10ec0255:
3731         case 0x10ec0256:
3732                 alc_process_coef_fw(codec, coef0255);
3733                 break;
3734         case 0x10ec0233:
3735         case 0x10ec0283:
3736                 alc_process_coef_fw(codec, coef0233);
3737                 break;
3738         case 0x10ec0286:
3739         case 0x10ec0288:
3740         case 0x10ec0298:
3741                 alc_process_coef_fw(codec, coef0288);
3742                 break;
3743         case 0x10ec0292:
3744                 alc_process_coef_fw(codec, coef0292);
3745                 break;
3746         case 0x10ec0293:
3747                 alc_process_coef_fw(codec, coef0293);
3748                 break;
3749         case 0x10ec0668:
3750                 alc_process_coef_fw(codec, coef0688);
3751                 break;
3752         }
3753         codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
3754 }
3755
3756 /* Iphone type */
3757 static void alc_headset_mode_ctia(struct hda_codec *codec)
3758 {
3759         static struct coef_fw coef0255[] = {
3760                 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
3761                 WRITE_COEF(0x1b, 0x0c2b),
3762                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3763                 {}
3764         };
3765         static struct coef_fw coef0233[] = {
3766                 WRITE_COEF(0x45, 0xd429),
3767                 WRITE_COEF(0x1b, 0x0c2b),
3768                 WRITE_COEF(0x32, 0x4ea3),
3769                 {}
3770         };
3771         static struct coef_fw coef0288[] = {
3772                 UPDATE_COEF(0x50, 0x2000, 0x2000),
3773                 UPDATE_COEF(0x56, 0x0006, 0x0006),
3774                 UPDATE_COEF(0x66, 0x0008, 0),
3775                 UPDATE_COEF(0x67, 0x2000, 0),
3776                 {}
3777         };
3778         static struct coef_fw coef0292[] = {
3779                 WRITE_COEF(0x6b, 0xd429),
3780                 WRITE_COEF(0x76, 0x0008),
3781                 WRITE_COEF(0x18, 0x7388),
3782                 {}
3783         };
3784         static struct coef_fw coef0293[] = {
3785                 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
3786                 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
3787                 {}
3788         };
3789         static struct coef_fw coef0688[] = {
3790                 WRITE_COEF(0x11, 0x0001),
3791                 WRITE_COEF(0x15, 0x0d60),
3792                 WRITE_COEF(0xc3, 0x0000),
3793                 {}
3794         };
3795
3796         switch (codec->core.vendor_id) {
3797         case 0x10ec0255:
3798         case 0x10ec0256:
3799                 alc_process_coef_fw(codec, coef0255);
3800                 break;
3801         case 0x10ec0233:
3802         case 0x10ec0283:
3803                 alc_process_coef_fw(codec, coef0233);
3804                 break;
3805         case 0x10ec0298:
3806                 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);/* Headset output enable */
3807                 /* ALC298 jack type setting is the same with ALC286/ALC288 */
3808         case 0x10ec0286:
3809         case 0x10ec0288:
3810                 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
3811                 msleep(300);
3812                 alc_process_coef_fw(codec, coef0288);
3813                 break;
3814         case 0x10ec0292:
3815                 alc_process_coef_fw(codec, coef0292);
3816                 break;
3817         case 0x10ec0293:
3818                 alc_process_coef_fw(codec, coef0293);
3819                 break;
3820         case 0x10ec0668:
3821                 alc_process_coef_fw(codec, coef0688);
3822                 break;
3823         }
3824         codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
3825 }
3826
3827 /* Nokia type */
3828 static void alc_headset_mode_omtp(struct hda_codec *codec)
3829 {
3830         static struct coef_fw coef0255[] = {
3831                 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
3832                 WRITE_COEF(0x1b, 0x0c2b),
3833                 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
3834                 {}
3835         };
3836         static struct coef_fw coef0233[] = {
3837                 WRITE_COEF(0x45, 0xe429),
3838                 WRITE_COEF(0x1b, 0x0c2b),
3839                 WRITE_COEF(0x32, 0x4ea3),
3840                 {}
3841         };
3842         static struct coef_fw coef0288[] = {
3843                 UPDATE_COEF(0x50, 0x2000, 0x2000),
3844                 UPDATE_COEF(0x56, 0x0006, 0x0006),
3845                 UPDATE_COEF(0x66, 0x0008, 0),
3846                 UPDATE_COEF(0x67, 0x2000, 0),
3847                 {}
3848         };
3849         static struct coef_fw coef0292[] = {
3850                 WRITE_COEF(0x6b, 0xe429),
3851                 WRITE_COEF(0x76, 0x0008),
3852                 WRITE_COEF(0x18, 0x7388),
3853                 {}
3854         };
3855         static struct coef_fw coef0293[] = {
3856                 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
3857                 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
3858                 {}
3859         };
3860         static struct coef_fw coef0688[] = {
3861                 WRITE_COEF(0x11, 0x0001),
3862                 WRITE_COEF(0x15, 0x0d50),
3863                 WRITE_COEF(0xc3, 0x0000),
3864                 {}
3865         };
3866
3867         switch (codec->core.vendor_id) {
3868         case 0x10ec0255:
3869         case 0x10ec0256:
3870                 alc_process_coef_fw(codec, coef0255);
3871                 break;
3872         case 0x10ec0233:
3873         case 0x10ec0283:
3874                 alc_process_coef_fw(codec, coef0233);
3875                 break;
3876         case 0x10ec0298:
3877                 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
3878                 /* ALC298 jack type setting is the same with ALC286/ALC288 */
3879         case 0x10ec0286:
3880         case 0x10ec0288:
3881                 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
3882                 msleep(300);
3883                 alc_process_coef_fw(codec, coef0288);
3884                 break;
3885         case 0x10ec0292:
3886                 alc_process_coef_fw(codec, coef0292);
3887                 break;
3888         case 0x10ec0293:
3889                 alc_process_coef_fw(codec, coef0293);
3890                 break;
3891         case 0x10ec0668:
3892                 alc_process_coef_fw(codec, coef0688);
3893                 break;
3894         }
3895         codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
3896 }
3897
3898 static void alc_determine_headset_type(struct hda_codec *codec)
3899 {
3900         int val;
3901         bool is_ctia = false;
3902         struct alc_spec *spec = codec->spec;
3903         static struct coef_fw coef0255[] = {
3904                 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
3905                 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
3906  conteol) */
3907                 {}
3908         };
3909         static struct coef_fw coef0288[] = {
3910                 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
3911                 {}
3912         };
3913         static struct coef_fw coef0293[] = {
3914                 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
3915                 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
3916                 {}
3917         };
3918         static struct coef_fw coef0688[] = {
3919                 WRITE_COEF(0x11, 0x0001),
3920                 WRITE_COEF(0xb7, 0x802b),
3921                 WRITE_COEF(0x15, 0x0d60),
3922                 WRITE_COEF(0xc3, 0x0c00),
3923                 {}
3924         };
3925
3926         switch (codec->core.vendor_id) {
3927         case 0x10ec0255:
3928         case 0x10ec0256:
3929                 alc_process_coef_fw(codec, coef0255);
3930                 msleep(300);
3931                 val = alc_read_coef_idx(codec, 0x46);
3932                 is_ctia = (val & 0x0070) == 0x0070;
3933                 break;
3934         case 0x10ec0233:
3935         case 0x10ec0283:
3936                 alc_write_coef_idx(codec, 0x45, 0xd029);
3937                 msleep(300);
3938                 val = alc_read_coef_idx(codec, 0x46);
3939                 is_ctia = (val & 0x0070) == 0x0070;
3940                 break;
3941         case 0x10ec0298:
3942                 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020); /* Headset output enable */
3943                 /* ALC298 check jack type is the same with ALC286/ALC288 */
3944         case 0x10ec0286:
3945         case 0x10ec0288:
3946                 alc_process_coef_fw(codec, coef0288);
3947                 msleep(350);
3948                 val = alc_read_coef_idx(codec, 0x50);
3949                 is_ctia = (val & 0x0070) == 0x0070;
3950                 break;
3951         case 0x10ec0292:
3952                 alc_write_coef_idx(codec, 0x6b, 0xd429);
3953                 msleep(300);
3954                 val = alc_read_coef_idx(codec, 0x6c);
3955                 is_ctia = (val & 0x001c) == 0x001c;
3956                 break;
3957         case 0x10ec0293:
3958                 alc_process_coef_fw(codec, coef0293);
3959                 msleep(300);
3960                 val = alc_read_coef_idx(codec, 0x46);
3961                 is_ctia = (val & 0x0070) == 0x0070;
3962                 break;
3963         case 0x10ec0668:
3964                 alc_process_coef_fw(codec, coef0688);
3965                 msleep(300);
3966                 val = alc_read_coef_idx(codec, 0xbe);
3967                 is_ctia = (val & 0x1c02) == 0x1c02;
3968                 break;
3969         }
3970
3971         codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
3972                     is_ctia ? "yes" : "no");
3973         spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
3974 }
3975
3976 static void alc_update_headset_mode(struct hda_codec *codec)
3977 {
3978         struct alc_spec *spec = codec->spec;
3979
3980         hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
3981         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3982
3983         int new_headset_mode;
3984
3985         if (!snd_hda_jack_detect(codec, hp_pin))
3986                 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
3987         else if (mux_pin == spec->headset_mic_pin)
3988                 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
3989         else if (mux_pin == spec->headphone_mic_pin)
3990                 new_headset_mode = ALC_HEADSET_MODE_MIC;
3991         else
3992                 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
3993
3994         if (new_headset_mode == spec->current_headset_mode) {
3995                 snd_hda_gen_update_outputs(codec);
3996                 return;
3997         }
3998
3999         switch (new_headset_mode) {
4000         case ALC_HEADSET_MODE_UNPLUGGED:
4001                 alc_headset_mode_unplugged(codec);
4002                 spec->gen.hp_jack_present = false;
4003                 break;
4004         case ALC_HEADSET_MODE_HEADSET:
4005                 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
4006                         alc_determine_headset_type(codec);
4007                 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
4008                         alc_headset_mode_ctia(codec);
4009                 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
4010                         alc_headset_mode_omtp(codec);
4011                 spec->gen.hp_jack_present = true;
4012                 break;
4013         case ALC_HEADSET_MODE_MIC:
4014                 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
4015                 spec->gen.hp_jack_present = false;
4016                 break;
4017         case ALC_HEADSET_MODE_HEADPHONE:
4018                 alc_headset_mode_default(codec);
4019                 spec->gen.hp_jack_present = true;
4020                 break;
4021         }
4022         if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
4023                 snd_hda_set_pin_ctl_cache(codec, hp_pin,
4024                                           AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
4025                 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
4026                         snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
4027                                                   PIN_VREFHIZ);
4028         }
4029         spec->current_headset_mode = new_headset_mode;
4030
4031         snd_hda_gen_update_outputs(codec);
4032 }
4033
4034 static void alc_update_headset_mode_hook(struct hda_codec *codec,
4035                                          struct snd_kcontrol *kcontrol,
4036                                          struct snd_ctl_elem_value *ucontrol)
4037 {
4038         alc_update_headset_mode(codec);
4039 }
4040
4041 static void alc_update_headset_jack_cb(struct hda_codec *codec,
4042                                        struct hda_jack_callback *jack)
4043 {
4044         struct alc_spec *spec = codec->spec;
4045         spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
4046         snd_hda_gen_hp_automute(codec, jack);
4047 }
4048
4049 static void alc_probe_headset_mode(struct hda_codec *codec)
4050 {
4051         int i;
4052         struct alc_spec *spec = codec->spec;
4053         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4054
4055         /* Find mic pins */
4056         for (i = 0; i < cfg->num_inputs; i++) {
4057                 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
4058                         spec->headset_mic_pin = cfg->inputs[i].pin;
4059                 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
4060                         spec->headphone_mic_pin = cfg->inputs[i].pin;
4061         }
4062
4063         spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
4064         spec->gen.automute_hook = alc_update_headset_mode;
4065         spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
4066 }
4067
4068 static void alc_fixup_headset_mode(struct hda_codec *codec,
4069                                 const struct hda_fixup *fix, int action)
4070 {
4071         struct alc_spec *spec = codec->spec;
4072
4073         switch (action) {
4074         case HDA_FIXUP_ACT_PRE_PROBE:
4075                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
4076                 break;
4077         case HDA_FIXUP_ACT_PROBE:
4078                 alc_probe_headset_mode(codec);
4079                 break;
4080         case HDA_FIXUP_ACT_INIT:
4081                 spec->current_headset_mode = 0;
4082                 alc_update_headset_mode(codec);
4083                 break;
4084         }
4085 }
4086
4087 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
4088                                 const struct hda_fixup *fix, int action)
4089 {
4090         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4091                 struct alc_spec *spec = codec->spec;
4092                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4093         }
4094         else
4095                 alc_fixup_headset_mode(codec, fix, action);
4096 }
4097
4098 static void alc255_set_default_jack_type(struct hda_codec *codec)
4099 {
4100         /* Set to iphone type */
4101         static struct coef_fw fw[] = {
4102                 WRITE_COEF(0x1b, 0x880b),
4103                 WRITE_COEF(0x45, 0xd089),
4104                 WRITE_COEF(0x1b, 0x080b),
4105                 WRITE_COEF(0x46, 0x0004),
4106                 WRITE_COEF(0x1b, 0x0c0b),
4107                 {}
4108         };
4109         alc_process_coef_fw(codec, fw);
4110         msleep(30);
4111 }
4112
4113 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
4114                                 const struct hda_fixup *fix, int action)
4115 {
4116         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4117                 alc255_set_default_jack_type(codec);
4118         }
4119         alc_fixup_headset_mode(codec, fix, action);
4120 }
4121
4122 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
4123                                 const struct hda_fixup *fix, int action)
4124 {
4125         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4126                 struct alc_spec *spec = codec->spec;
4127                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4128                 alc255_set_default_jack_type(codec);
4129         } 
4130         else
4131                 alc_fixup_headset_mode(codec, fix, action);
4132 }
4133
4134 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
4135                                        struct hda_jack_callback *jack)
4136 {
4137         struct alc_spec *spec = codec->spec;
4138         int present;
4139
4140         alc_update_headset_jack_cb(codec, jack);
4141         /* Headset Mic enable or disable, only for Dell Dino */
4142         present = spec->gen.hp_jack_present ? 0x40 : 0;
4143         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4144                                 present);
4145 }
4146
4147 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
4148                                 const struct hda_fixup *fix, int action)
4149 {
4150         alc_fixup_headset_mode(codec, fix, action);
4151         if (action == HDA_FIXUP_ACT_PROBE) {
4152                 struct alc_spec *spec = codec->spec;
4153                 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
4154         }
4155 }
4156
4157 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
4158                                         const struct hda_fixup *fix, int action)
4159 {
4160         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4161                 struct alc_spec *spec = codec->spec;
4162                 spec->gen.auto_mute_via_amp = 1;
4163         }
4164 }
4165
4166 static void alc_no_shutup(struct hda_codec *codec)
4167 {
4168 }
4169
4170 static void alc_fixup_no_shutup(struct hda_codec *codec,
4171                                 const struct hda_fixup *fix, int action)
4172 {
4173         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4174                 struct alc_spec *spec = codec->spec;
4175                 spec->shutup = alc_no_shutup;
4176         }
4177 }
4178
4179 static void alc_fixup_disable_aamix(struct hda_codec *codec,
4180                                     const struct hda_fixup *fix, int action)
4181 {
4182         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4183                 struct alc_spec *spec = codec->spec;
4184                 /* Disable AA-loopback as it causes white noise */
4185                 spec->gen.mixer_nid = 0;
4186         }
4187 }
4188
4189 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
4190 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
4191                                   const struct hda_fixup *fix, int action)
4192 {
4193         static const struct hda_pintbl pincfgs[] = {
4194                 { 0x16, 0x21211010 }, /* dock headphone */
4195                 { 0x19, 0x21a11010 }, /* dock mic */
4196                 { }
4197         };
4198         struct alc_spec *spec = codec->spec;
4199
4200         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4201                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4202                 codec->power_save_node = 0; /* avoid click noises */
4203                 snd_hda_apply_pincfgs(codec, pincfgs);
4204         }
4205 }
4206
4207 /* additional fixup for Thinkpad T440s noise problem */
4208 static void alc_fixup_tpt440(struct hda_codec *codec,
4209                                   const struct hda_fixup *fix, int action)
4210 {
4211         struct alc_spec *spec = codec->spec;
4212
4213         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4214                 spec->shutup = alc_no_shutup; /* reduce click noise */
4215                 spec->gen.mixer_nid = 0; /* reduce background noise */
4216         }
4217 }
4218
4219 static void alc_shutup_dell_xps13(struct hda_codec *codec)
4220 {
4221         struct alc_spec *spec = codec->spec;
4222         int hp_pin = spec->gen.autocfg.hp_pins[0];
4223
4224         /* Prevent pop noises when headphones are plugged in */
4225         snd_hda_codec_write(codec, hp_pin, 0,
4226                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4227         msleep(20);
4228 }
4229
4230 static void alc_fixup_dell_xps13(struct hda_codec *codec,
4231                                 const struct hda_fixup *fix, int action)
4232 {
4233         struct alc_spec *spec = codec->spec;
4234         struct hda_input_mux *imux = &spec->gen.input_mux;
4235         int i;
4236
4237         switch (action) {
4238         case HDA_FIXUP_ACT_PRE_PROBE:
4239                 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
4240                  * it causes a click noise at start up
4241                  */
4242                 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
4243                 break;
4244         case HDA_FIXUP_ACT_PROBE:
4245                 spec->shutup = alc_shutup_dell_xps13;
4246
4247                 /* Make the internal mic the default input source. */
4248                 for (i = 0; i < imux->num_items; i++) {
4249                         if (spec->gen.imux_pins[i] == 0x12) {
4250                                 spec->gen.cur_mux[0] = i;
4251                                 break;
4252                         }
4253                 }
4254                 break;
4255         }
4256 }
4257
4258 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
4259                                 const struct hda_fixup *fix, int action)
4260 {
4261         struct alc_spec *spec = codec->spec;
4262
4263         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4264                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4265                 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
4266
4267                 /* Disable boost for mic-in permanently. (This code is only called
4268                    from quirks that guarantee that the headphone is at NID 0x1b.) */
4269                 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
4270                 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
4271         } else
4272                 alc_fixup_headset_mode(codec, fix, action);
4273 }
4274
4275 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
4276                                 const struct hda_fixup *fix, int action)
4277 {
4278         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4279                 alc_write_coef_idx(codec, 0xc4, 0x8000);
4280                 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
4281                 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
4282         }
4283         alc_fixup_headset_mode(codec, fix, action);
4284 }
4285
4286 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
4287 static int find_ext_mic_pin(struct hda_codec *codec)
4288 {
4289         struct alc_spec *spec = codec->spec;
4290         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4291         hda_nid_t nid;
4292         unsigned int defcfg;
4293         int i;
4294
4295         for (i = 0; i < cfg->num_inputs; i++) {
4296                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
4297                         continue;
4298                 nid = cfg->inputs[i].pin;
4299                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
4300                 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
4301                         continue;
4302                 return nid;
4303         }
4304
4305         return 0;
4306 }
4307
4308 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
4309                                     const struct hda_fixup *fix,
4310                                     int action)
4311 {
4312         struct alc_spec *spec = codec->spec;
4313
4314         if (action == HDA_FIXUP_ACT_PROBE) {
4315                 int mic_pin = find_ext_mic_pin(codec);
4316                 int hp_pin = spec->gen.autocfg.hp_pins[0];
4317
4318                 if (snd_BUG_ON(!mic_pin || !hp_pin))
4319                         return;
4320                 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
4321         }
4322 }
4323
4324 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
4325                                              const struct hda_fixup *fix,
4326                                              int action)
4327 {
4328         struct alc_spec *spec = codec->spec;
4329         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4330         int i;
4331
4332         /* The mic boosts on level 2 and 3 are too noisy
4333            on the internal mic input.
4334            Therefore limit the boost to 0 or 1. */
4335
4336         if (action != HDA_FIXUP_ACT_PROBE)
4337                 return;
4338
4339         for (i = 0; i < cfg->num_inputs; i++) {
4340                 hda_nid_t nid = cfg->inputs[i].pin;
4341                 unsigned int defcfg;
4342                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
4343                         continue;
4344                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
4345                 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
4346                         continue;
4347
4348                 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
4349                                           (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
4350                                           (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4351                                           (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
4352                                           (0 << AC_AMPCAP_MUTE_SHIFT));
4353         }
4354 }
4355
4356 static void alc283_hp_automute_hook(struct hda_codec *codec,
4357                                     struct hda_jack_callback *jack)
4358 {
4359         struct alc_spec *spec = codec->spec;
4360         int vref;
4361
4362         msleep(200);
4363         snd_hda_gen_hp_automute(codec, jack);
4364
4365         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4366
4367         msleep(600);
4368         snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4369                             vref);
4370 }
4371
4372 static void alc283_fixup_chromebook(struct hda_codec *codec,
4373                                     const struct hda_fixup *fix, int action)
4374 {
4375         struct alc_spec *spec = codec->spec;
4376
4377         switch (action) {
4378         case HDA_FIXUP_ACT_PRE_PROBE:
4379                 snd_hda_override_wcaps(codec, 0x03, 0);
4380                 /* Disable AA-loopback as it causes white noise */
4381                 spec->gen.mixer_nid = 0;
4382                 break;
4383         case HDA_FIXUP_ACT_INIT:
4384                 /* MIC2-VREF control */
4385                 /* Set to manual mode */
4386                 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
4387                 /* Enable Line1 input control by verb */
4388                 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
4389                 break;
4390         }
4391 }
4392
4393 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
4394                                     const struct hda_fixup *fix, int action)
4395 {
4396         struct alc_spec *spec = codec->spec;
4397
4398         switch (action) {
4399         case HDA_FIXUP_ACT_PRE_PROBE:
4400                 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
4401                 break;
4402         case HDA_FIXUP_ACT_INIT:
4403                 /* MIC2-VREF control */
4404                 /* Set to manual mode */
4405                 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
4406                 break;
4407         }
4408 }
4409
4410 /* mute tablet speaker pin (0x14) via dock plugging in addition */
4411 static void asus_tx300_automute(struct hda_codec *codec)
4412 {
4413         struct alc_spec *spec = codec->spec;
4414         snd_hda_gen_update_outputs(codec);
4415         if (snd_hda_jack_detect(codec, 0x1b))
4416                 spec->gen.mute_bits |= (1ULL << 0x14);
4417 }
4418
4419 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
4420                                     const struct hda_fixup *fix, int action)
4421 {
4422         struct alc_spec *spec = codec->spec;
4423         /* TX300 needs to set up GPIO2 for the speaker amp */
4424         static const struct hda_verb gpio2_verbs[] = {
4425                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
4426                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
4427                 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
4428                 {}
4429         };
4430         static const struct hda_pintbl dock_pins[] = {
4431                 { 0x1b, 0x21114000 }, /* dock speaker pin */
4432                 {}
4433         };
4434         struct snd_kcontrol *kctl;
4435
4436         switch (action) {
4437         case HDA_FIXUP_ACT_PRE_PROBE:
4438                 snd_hda_add_verbs(codec, gpio2_verbs);
4439                 snd_hda_apply_pincfgs(codec, dock_pins);
4440                 spec->gen.auto_mute_via_amp = 1;
4441                 spec->gen.automute_hook = asus_tx300_automute;
4442                 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4443                                                     snd_hda_gen_hp_automute);
4444                 break;
4445         case HDA_FIXUP_ACT_BUILD:
4446                 /* this is a bit tricky; give more sane names for the main
4447                  * (tablet) speaker and the dock speaker, respectively
4448                  */
4449                 kctl = snd_hda_find_mixer_ctl(codec, "Speaker Playback Switch");
4450                 if (kctl)
4451                         strcpy(kctl->id.name, "Dock Speaker Playback Switch");
4452                 kctl = snd_hda_find_mixer_ctl(codec, "Bass Speaker Playback Switch");
4453                 if (kctl)
4454                         strcpy(kctl->id.name, "Speaker Playback Switch");
4455                 break;
4456         }
4457 }
4458
4459 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
4460                                        const struct hda_fixup *fix, int action)
4461 {
4462         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4463                 /* DAC node 0x03 is giving mono output. We therefore want to
4464                    make sure 0x14 (front speaker) and 0x15 (headphones) use the
4465                    stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
4466                 hda_nid_t conn1[2] = { 0x0c };
4467                 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
4468                 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
4469         }
4470 }
4471
4472 /* Hook to update amp GPIO4 for automute */
4473 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
4474                                           struct hda_jack_callback *jack)
4475 {
4476         struct alc_spec *spec = codec->spec;
4477
4478         snd_hda_gen_hp_automute(codec, jack);
4479         /* mute_led_polarity is set to 0, so we pass inverted value here */
4480         alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
4481 }
4482
4483 /* Manage GPIOs for HP EliteBook Folio 9480m.
4484  *
4485  * GPIO4 is the headphone amplifier power control
4486  * GPIO3 is the audio output mute indicator LED
4487  */
4488
4489 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
4490                                   const struct hda_fixup *fix,
4491                                   int action)
4492 {
4493         struct alc_spec *spec = codec->spec;
4494         static const struct hda_verb gpio_init[] = {
4495                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
4496                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
4497                 {}
4498         };
4499
4500         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4501                 /* Set the hooks to turn the headphone amp on/off
4502                  * as needed
4503                  */
4504                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
4505                 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
4506
4507                 /* The GPIOs are currently off */
4508                 spec->gpio_led = 0;
4509
4510                 /* GPIO3 is connected to the output mute LED,
4511                  * high is on, low is off
4512                  */
4513                 spec->mute_led_polarity = 0;
4514                 spec->gpio_mute_led_mask = 0x08;
4515
4516                 /* Initialize GPIO configuration */
4517                 snd_hda_add_verbs(codec, gpio_init);
4518         }
4519 }
4520
4521 /* for hda_fixup_thinkpad_acpi() */
4522 #include "thinkpad_helper.c"
4523
4524 /* for dell wmi mic mute led */
4525 #include "dell_wmi_helper.c"
4526
4527 enum {
4528         ALC269_FIXUP_SONY_VAIO,
4529         ALC275_FIXUP_SONY_VAIO_GPIO2,
4530         ALC269_FIXUP_DELL_M101Z,
4531         ALC269_FIXUP_SKU_IGNORE,
4532         ALC269_FIXUP_ASUS_G73JW,
4533         ALC269_FIXUP_LENOVO_EAPD,
4534         ALC275_FIXUP_SONY_HWEQ,
4535         ALC275_FIXUP_SONY_DISABLE_AAMIX,
4536         ALC271_FIXUP_DMIC,
4537         ALC269_FIXUP_PCM_44K,
4538         ALC269_FIXUP_STEREO_DMIC,
4539         ALC269_FIXUP_HEADSET_MIC,
4540         ALC269_FIXUP_QUANTA_MUTE,
4541         ALC269_FIXUP_LIFEBOOK,
4542         ALC269_FIXUP_LIFEBOOK_EXTMIC,
4543         ALC269_FIXUP_LIFEBOOK_HP_PIN,
4544         ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
4545         ALC269_FIXUP_AMIC,
4546         ALC269_FIXUP_DMIC,
4547         ALC269VB_FIXUP_AMIC,
4548         ALC269VB_FIXUP_DMIC,
4549         ALC269_FIXUP_HP_MUTE_LED,
4550         ALC269_FIXUP_HP_MUTE_LED_MIC1,
4551         ALC269_FIXUP_HP_MUTE_LED_MIC2,
4552         ALC269_FIXUP_HP_GPIO_LED,
4553         ALC269_FIXUP_HP_GPIO_MIC1_LED,
4554         ALC269_FIXUP_HP_LINE1_MIC1_LED,
4555         ALC269_FIXUP_INV_DMIC,
4556         ALC269_FIXUP_LENOVO_DOCK,
4557         ALC269_FIXUP_NO_SHUTUP,
4558         ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
4559         ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
4560         ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
4561         ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
4562         ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
4563         ALC269_FIXUP_HEADSET_MODE,
4564         ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
4565         ALC269_FIXUP_ASPIRE_HEADSET_MIC,
4566         ALC269_FIXUP_ASUS_X101_FUNC,
4567         ALC269_FIXUP_ASUS_X101_VERB,
4568         ALC269_FIXUP_ASUS_X101,
4569         ALC271_FIXUP_AMIC_MIC2,
4570         ALC271_FIXUP_HP_GATE_MIC_JACK,
4571         ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
4572         ALC269_FIXUP_ACER_AC700,
4573         ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
4574         ALC269VB_FIXUP_ASUS_ZENBOOK,
4575         ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
4576         ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
4577         ALC269VB_FIXUP_ORDISSIMO_EVE2,
4578         ALC283_FIXUP_CHROME_BOOK,
4579         ALC283_FIXUP_SENSE_COMBO_JACK,
4580         ALC282_FIXUP_ASUS_TX300,
4581         ALC283_FIXUP_INT_MIC,
4582         ALC290_FIXUP_MONO_SPEAKERS,
4583         ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
4584         ALC290_FIXUP_SUBWOOFER,
4585         ALC290_FIXUP_SUBWOOFER_HSJACK,
4586         ALC269_FIXUP_THINKPAD_ACPI,
4587         ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
4588         ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
4589         ALC255_FIXUP_HEADSET_MODE,
4590         ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
4591         ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
4592         ALC292_FIXUP_TPT440_DOCK,
4593         ALC292_FIXUP_TPT440,
4594         ALC283_FIXUP_BXBT2807_MIC,
4595         ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
4596         ALC282_FIXUP_ASPIRE_V5_PINS,
4597         ALC280_FIXUP_HP_GPIO4,
4598         ALC286_FIXUP_HP_GPIO_LED,
4599         ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
4600         ALC280_FIXUP_HP_DOCK_PINS,
4601         ALC280_FIXUP_HP_9480M,
4602         ALC288_FIXUP_DELL_HEADSET_MODE,
4603         ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
4604         ALC288_FIXUP_DELL_XPS_13_GPIO6,
4605         ALC288_FIXUP_DELL_XPS_13,
4606         ALC288_FIXUP_DISABLE_AAMIX,
4607         ALC292_FIXUP_DELL_E7X,
4608         ALC292_FIXUP_DISABLE_AAMIX,
4609         ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
4610         ALC275_FIXUP_DELL_XPS,
4611         ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
4612         ALC293_FIXUP_LENOVO_SPK_NOISE,
4613 };
4614
4615 static const struct hda_fixup alc269_fixups[] = {
4616         [ALC269_FIXUP_SONY_VAIO] = {
4617                 .type = HDA_FIXUP_PINCTLS,
4618                 .v.pins = (const struct hda_pintbl[]) {
4619                         {0x19, PIN_VREFGRD},
4620                         {}
4621                 }
4622         },
4623         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4624                 .type = HDA_FIXUP_VERBS,
4625                 .v.verbs = (const struct hda_verb[]) {
4626                         {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4627                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4628                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4629                         { }
4630                 },
4631                 .chained = true,
4632                 .chain_id = ALC269_FIXUP_SONY_VAIO
4633         },
4634         [ALC269_FIXUP_DELL_M101Z] = {
4635                 .type = HDA_FIXUP_VERBS,
4636                 .v.verbs = (const struct hda_verb[]) {
4637                         /* Enables internal speaker */
4638                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
4639                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4640                         {}
4641                 }
4642         },
4643         [ALC269_FIXUP_SKU_IGNORE] = {
4644                 .type = HDA_FIXUP_FUNC,
4645                 .v.func = alc_fixup_sku_ignore,
4646         },
4647         [ALC269_FIXUP_ASUS_G73JW] = {
4648                 .type = HDA_FIXUP_PINS,
4649                 .v.pins = (const struct hda_pintbl[]) {
4650                         { 0x17, 0x99130111 }, /* subwoofer */
4651                         { }
4652                 }
4653         },
4654         [ALC269_FIXUP_LENOVO_EAPD] = {
4655                 .type = HDA_FIXUP_VERBS,
4656                 .v.verbs = (const struct hda_verb[]) {
4657                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4658                         {}
4659                 }
4660         },
4661         [ALC275_FIXUP_SONY_HWEQ] = {
4662                 .type = HDA_FIXUP_FUNC,
4663                 .v.func = alc269_fixup_hweq,
4664                 .chained = true,
4665                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4666         },
4667         [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
4668                 .type = HDA_FIXUP_FUNC,
4669                 .v.func = alc_fixup_disable_aamix,
4670                 .chained = true,
4671                 .chain_id = ALC269_FIXUP_SONY_VAIO
4672         },
4673         [ALC271_FIXUP_DMIC] = {
4674                 .type = HDA_FIXUP_FUNC,
4675                 .v.func = alc271_fixup_dmic,
4676         },
4677         [ALC269_FIXUP_PCM_44K] = {
4678                 .type = HDA_FIXUP_FUNC,
4679                 .v.func = alc269_fixup_pcm_44k,
4680                 .chained = true,
4681                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4682         },
4683         [ALC269_FIXUP_STEREO_DMIC] = {
4684                 .type = HDA_FIXUP_FUNC,
4685                 .v.func = alc269_fixup_stereo_dmic,
4686         },
4687         [ALC269_FIXUP_HEADSET_MIC] = {
4688                 .type = HDA_FIXUP_FUNC,
4689                 .v.func = alc269_fixup_headset_mic,
4690         },
4691         [ALC269_FIXUP_QUANTA_MUTE] = {
4692                 .type = HDA_FIXUP_FUNC,
4693                 .v.func = alc269_fixup_quanta_mute,
4694         },
4695         [ALC269_FIXUP_LIFEBOOK] = {
4696                 .type = HDA_FIXUP_PINS,
4697                 .v.pins = (const struct hda_pintbl[]) {
4698                         { 0x1a, 0x2101103f }, /* dock line-out */
4699                         { 0x1b, 0x23a11040 }, /* dock mic-in */
4700                         { }
4701                 },
4702                 .chained = true,
4703                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4704         },
4705         [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
4706                 .type = HDA_FIXUP_PINS,
4707                 .v.pins = (const struct hda_pintbl[]) {
4708                         { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
4709                         { }
4710                 },
4711         },
4712         [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
4713                 .type = HDA_FIXUP_PINS,
4714                 .v.pins = (const struct hda_pintbl[]) {
4715                         { 0x21, 0x0221102f }, /* HP out */
4716                         { }
4717                 },
4718         },
4719         [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
4720                 .type = HDA_FIXUP_FUNC,
4721                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
4722         },
4723         [ALC269_FIXUP_AMIC] = {
4724                 .type = HDA_FIXUP_PINS,
4725                 .v.pins = (const struct hda_pintbl[]) {
4726                         { 0x14, 0x99130110 }, /* speaker */
4727                         { 0x15, 0x0121401f }, /* HP out */
4728                         { 0x18, 0x01a19c20 }, /* mic */
4729                         { 0x19, 0x99a3092f }, /* int-mic */
4730                         { }
4731                 },
4732         },
4733         [ALC269_FIXUP_DMIC] = {
4734                 .type = HDA_FIXUP_PINS,
4735                 .v.pins = (const struct hda_pintbl[]) {
4736                         { 0x12, 0x99a3092f }, /* int-mic */
4737                         { 0x14, 0x99130110 }, /* speaker */
4738                         { 0x15, 0x0121401f }, /* HP out */
4739                         { 0x18, 0x01a19c20 }, /* mic */
4740                         { }
4741                 },
4742         },
4743         [ALC269VB_FIXUP_AMIC] = {
4744                 .type = HDA_FIXUP_PINS,
4745                 .v.pins = (const struct hda_pintbl[]) {
4746                         { 0x14, 0x99130110 }, /* speaker */
4747                         { 0x18, 0x01a19c20 }, /* mic */
4748                         { 0x19, 0x99a3092f }, /* int-mic */
4749                         { 0x21, 0x0121401f }, /* HP out */
4750                         { }
4751                 },
4752         },
4753         [ALC269VB_FIXUP_DMIC] = {
4754                 .type = HDA_FIXUP_PINS,
4755                 .v.pins = (const struct hda_pintbl[]) {
4756                         { 0x12, 0x99a3092f }, /* int-mic */
4757                         { 0x14, 0x99130110 }, /* speaker */
4758                         { 0x18, 0x01a19c20 }, /* mic */
4759                         { 0x21, 0x0121401f }, /* HP out */
4760                         { }
4761                 },
4762         },
4763         [ALC269_FIXUP_HP_MUTE_LED] = {
4764                 .type = HDA_FIXUP_FUNC,
4765                 .v.func = alc269_fixup_hp_mute_led,
4766         },
4767         [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
4768                 .type = HDA_FIXUP_FUNC,
4769                 .v.func = alc269_fixup_hp_mute_led_mic1,
4770         },
4771         [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
4772                 .type = HDA_FIXUP_FUNC,
4773                 .v.func = alc269_fixup_hp_mute_led_mic2,
4774         },
4775         [ALC269_FIXUP_HP_GPIO_LED] = {
4776                 .type = HDA_FIXUP_FUNC,
4777                 .v.func = alc269_fixup_hp_gpio_led,
4778         },
4779         [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
4780                 .type = HDA_FIXUP_FUNC,
4781                 .v.func = alc269_fixup_hp_gpio_mic1_led,
4782         },
4783         [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
4784                 .type = HDA_FIXUP_FUNC,
4785                 .v.func = alc269_fixup_hp_line1_mic1_led,
4786         },
4787         [ALC269_FIXUP_INV_DMIC] = {
4788                 .type = HDA_FIXUP_FUNC,
4789                 .v.func = alc_fixup_inv_dmic,
4790         },
4791         [ALC269_FIXUP_NO_SHUTUP] = {
4792                 .type = HDA_FIXUP_FUNC,
4793                 .v.func = alc_fixup_no_shutup,
4794         },
4795         [ALC269_FIXUP_LENOVO_DOCK] = {
4796                 .type = HDA_FIXUP_PINS,
4797                 .v.pins = (const struct hda_pintbl[]) {
4798                         { 0x19, 0x23a11040 }, /* dock mic */
4799                         { 0x1b, 0x2121103f }, /* dock headphone */
4800                         { }
4801                 },
4802                 .chained = true,
4803                 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4804         },
4805         [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
4806                 .type = HDA_FIXUP_FUNC,
4807                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
4808                 .chained = true,
4809                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
4810         },
4811         [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4812                 .type = HDA_FIXUP_PINS,
4813                 .v.pins = (const struct hda_pintbl[]) {
4814                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4815                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4816                         { }
4817                 },
4818                 .chained = true,
4819                 .chain_id = ALC269_FIXUP_HEADSET_MODE
4820         },
4821         [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
4822                 .type = HDA_FIXUP_PINS,
4823                 .v.pins = (const struct hda_pintbl[]) {
4824                         { 0x16, 0x21014020 }, /* dock line out */
4825                         { 0x19, 0x21a19030 }, /* dock mic */
4826                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4827                         { }
4828                 },
4829                 .chained = true,
4830                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4831         },
4832         [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
4833                 .type = HDA_FIXUP_PINS,
4834                 .v.pins = (const struct hda_pintbl[]) {
4835                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4836                         { }
4837                 },
4838                 .chained = true,
4839                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4840         },
4841         [ALC269_FIXUP_HEADSET_MODE] = {
4842                 .type = HDA_FIXUP_FUNC,
4843                 .v.func = alc_fixup_headset_mode,
4844                 .chained = true,
4845                 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
4846         },
4847         [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
4848                 .type = HDA_FIXUP_FUNC,
4849                 .v.func = alc_fixup_headset_mode_no_hp_mic,
4850         },
4851         [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
4852                 .type = HDA_FIXUP_PINS,
4853                 .v.pins = (const struct hda_pintbl[]) {
4854                         { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
4855                         { }
4856                 },
4857                 .chained = true,
4858                 .chain_id = ALC269_FIXUP_HEADSET_MODE,
4859         },
4860         [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
4861                 .type = HDA_FIXUP_PINS,
4862                 .v.pins = (const struct hda_pintbl[]) {
4863                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4864                         { }
4865                 },
4866                 .chained = true,
4867                 .chain_id = ALC269_FIXUP_HEADSET_MIC
4868         },
4869         [ALC269_FIXUP_ASUS_X101_FUNC] = {
4870                 .type = HDA_FIXUP_FUNC,
4871                 .v.func = alc269_fixup_x101_headset_mic,
4872         },
4873         [ALC269_FIXUP_ASUS_X101_VERB] = {
4874                 .type = HDA_FIXUP_VERBS,
4875                 .v.verbs = (const struct hda_verb[]) {
4876                         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4877                         {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
4878                         {0x20, AC_VERB_SET_PROC_COEF,  0x0310},
4879                         { }
4880                 },
4881                 .chained = true,
4882                 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
4883         },
4884         [ALC269_FIXUP_ASUS_X101] = {
4885                 .type = HDA_FIXUP_PINS,
4886                 .v.pins = (const struct hda_pintbl[]) {
4887                         { 0x18, 0x04a1182c }, /* Headset mic */
4888                         { }
4889                 },
4890                 .chained = true,
4891                 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
4892         },
4893         [ALC271_FIXUP_AMIC_MIC2] = {
4894                 .type = HDA_FIXUP_PINS,
4895                 .v.pins = (const struct hda_pintbl[]) {
4896                         { 0x14, 0x99130110 }, /* speaker */
4897                         { 0x19, 0x01a19c20 }, /* mic */
4898                         { 0x1b, 0x99a7012f }, /* int-mic */
4899                         { 0x21, 0x0121401f }, /* HP out */
4900                         { }
4901                 },
4902         },
4903         [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
4904                 .type = HDA_FIXUP_FUNC,
4905                 .v.func = alc271_hp_gate_mic_jack,
4906                 .chained = true,
4907                 .chain_id = ALC271_FIXUP_AMIC_MIC2,
4908         },
4909         [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
4910                 .type = HDA_FIXUP_FUNC,
4911                 .v.func = alc269_fixup_limit_int_mic_boost,
4912                 .chained = true,
4913                 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
4914         },
4915         [ALC269_FIXUP_ACER_AC700] = {
4916                 .type = HDA_FIXUP_PINS,
4917                 .v.pins = (const struct hda_pintbl[]) {
4918                         { 0x12, 0x99a3092f }, /* int-mic */
4919                         { 0x14, 0x99130110 }, /* speaker */
4920                         { 0x18, 0x03a11c20 }, /* mic */
4921                         { 0x1e, 0x0346101e }, /* SPDIF1 */
4922                         { 0x21, 0x0321101f }, /* HP out */
4923                         { }
4924                 },
4925                 .chained = true,
4926                 .chain_id = ALC271_FIXUP_DMIC,
4927         },
4928         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
4929                 .type = HDA_FIXUP_FUNC,
4930                 .v.func = alc269_fixup_limit_int_mic_boost,
4931                 .chained = true,
4932                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
4933         },
4934         [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
4935                 .type = HDA_FIXUP_FUNC,
4936                 .v.func = alc269_fixup_limit_int_mic_boost,
4937                 .chained = true,
4938                 .chain_id = ALC269VB_FIXUP_DMIC,
4939         },
4940         [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
4941                 .type = HDA_FIXUP_VERBS,
4942                 .v.verbs = (const struct hda_verb[]) {
4943                         /* class-D output amp +5dB */
4944                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
4945                         { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
4946                         {}
4947                 },
4948                 .chained = true,
4949                 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
4950         },
4951         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
4952                 .type = HDA_FIXUP_FUNC,
4953                 .v.func = alc269_fixup_limit_int_mic_boost,
4954                 .chained = true,
4955                 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
4956         },
4957         [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
4958                 .type = HDA_FIXUP_PINS,
4959                 .v.pins = (const struct hda_pintbl[]) {
4960                         { 0x12, 0x99a3092f }, /* int-mic */
4961                         { 0x18, 0x03a11d20 }, /* mic */
4962                         { 0x19, 0x411111f0 }, /* Unused bogus pin */
4963                         { }
4964                 },
4965         },
4966         [ALC283_FIXUP_CHROME_BOOK] = {
4967                 .type = HDA_FIXUP_FUNC,
4968                 .v.func = alc283_fixup_chromebook,
4969         },
4970         [ALC283_FIXUP_SENSE_COMBO_JACK] = {
4971                 .type = HDA_FIXUP_FUNC,
4972                 .v.func = alc283_fixup_sense_combo_jack,
4973                 .chained = true,
4974                 .chain_id = ALC283_FIXUP_CHROME_BOOK,
4975         },
4976         [ALC282_FIXUP_ASUS_TX300] = {
4977                 .type = HDA_FIXUP_FUNC,
4978                 .v.func = alc282_fixup_asus_tx300,
4979         },
4980         [ALC283_FIXUP_INT_MIC] = {
4981                 .type = HDA_FIXUP_VERBS,
4982                 .v.verbs = (const struct hda_verb[]) {
4983                         {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
4984                         {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
4985                         { }
4986                 },
4987                 .chained = true,
4988                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4989         },
4990         [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
4991                 .type = HDA_FIXUP_PINS,
4992                 .v.pins = (const struct hda_pintbl[]) {
4993                         { 0x17, 0x90170112 }, /* subwoofer */
4994                         { }
4995                 },
4996                 .chained = true,
4997                 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
4998         },
4999         [ALC290_FIXUP_SUBWOOFER] = {
5000                 .type = HDA_FIXUP_PINS,
5001                 .v.pins = (const struct hda_pintbl[]) {
5002                         { 0x17, 0x90170112 }, /* subwoofer */
5003                         { }
5004                 },
5005                 .chained = true,
5006                 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
5007         },
5008         [ALC290_FIXUP_MONO_SPEAKERS] = {
5009                 .type = HDA_FIXUP_FUNC,
5010                 .v.func = alc290_fixup_mono_speakers,
5011         },
5012         [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
5013                 .type = HDA_FIXUP_FUNC,
5014                 .v.func = alc290_fixup_mono_speakers,
5015                 .chained = true,
5016                 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5017         },
5018         [ALC269_FIXUP_THINKPAD_ACPI] = {
5019                 .type = HDA_FIXUP_FUNC,
5020                 .v.func = hda_fixup_thinkpad_acpi,
5021         },
5022         [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5023                 .type = HDA_FIXUP_PINS,
5024                 .v.pins = (const struct hda_pintbl[]) {
5025                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5026                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5027                         { }
5028                 },
5029                 .chained = true,
5030                 .chain_id = ALC255_FIXUP_HEADSET_MODE
5031         },
5032         [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
5033                 .type = HDA_FIXUP_PINS,
5034                 .v.pins = (const struct hda_pintbl[]) {
5035                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5036                         { }
5037                 },
5038                 .chained = true,
5039                 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
5040         },
5041         [ALC255_FIXUP_HEADSET_MODE] = {
5042                 .type = HDA_FIXUP_FUNC,
5043                 .v.func = alc_fixup_headset_mode_alc255,
5044                 .chained = true,
5045                 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5046         },
5047         [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
5048                 .type = HDA_FIXUP_FUNC,
5049                 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
5050         },
5051         [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5052                 .type = HDA_FIXUP_PINS,
5053                 .v.pins = (const struct hda_pintbl[]) {
5054                         { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5055                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5056                         { }
5057                 },
5058                 .chained = true,
5059                 .chain_id = ALC269_FIXUP_HEADSET_MODE
5060         },
5061         [ALC292_FIXUP_TPT440_DOCK] = {
5062                 .type = HDA_FIXUP_FUNC,
5063                 .v.func = alc_fixup_tpt440_dock,
5064                 .chained = true,
5065                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5066         },
5067         [ALC292_FIXUP_TPT440] = {
5068                 .type = HDA_FIXUP_FUNC,
5069                 .v.func = alc_fixup_tpt440,
5070                 .chained = true,
5071                 .chain_id = ALC292_FIXUP_TPT440_DOCK,
5072         },
5073         [ALC283_FIXUP_BXBT2807_MIC] = {
5074                 .type = HDA_FIXUP_PINS,
5075                 .v.pins = (const struct hda_pintbl[]) {
5076                         { 0x19, 0x04a110f0 },
5077                         { },
5078                 },
5079         },
5080         [ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED] = {
5081                 .type = HDA_FIXUP_FUNC,
5082                 .v.func = alc_fixup_dell_wmi,
5083         },
5084         [ALC282_FIXUP_ASPIRE_V5_PINS] = {
5085                 .type = HDA_FIXUP_PINS,
5086                 .v.pins = (const struct hda_pintbl[]) {
5087                         { 0x12, 0x90a60130 },
5088                         { 0x14, 0x90170110 },
5089                         { 0x17, 0x40000008 },
5090                         { 0x18, 0x411111f0 },
5091                         { 0x19, 0x01a1913c },
5092                         { 0x1a, 0x411111f0 },
5093                         { 0x1b, 0x411111f0 },
5094                         { 0x1d, 0x40f89b2d },
5095                         { 0x1e, 0x411111f0 },
5096                         { 0x21, 0x0321101f },
5097                         { },
5098                 },
5099         },
5100         [ALC280_FIXUP_HP_GPIO4] = {
5101                 .type = HDA_FIXUP_FUNC,
5102                 .v.func = alc280_fixup_hp_gpio4,
5103         },
5104         [ALC286_FIXUP_HP_GPIO_LED] = {
5105                 .type = HDA_FIXUP_FUNC,
5106                 .v.func = alc286_fixup_hp_gpio_led,
5107         },
5108         [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
5109                 .type = HDA_FIXUP_FUNC,
5110                 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
5111         },
5112         [ALC280_FIXUP_HP_DOCK_PINS] = {
5113                 .type = HDA_FIXUP_PINS,
5114                 .v.pins = (const struct hda_pintbl[]) {
5115                         { 0x1b, 0x21011020 }, /* line-out */
5116                         { 0x1a, 0x01a1903c }, /* headset mic */
5117                         { 0x18, 0x2181103f }, /* line-in */
5118                         { },
5119                 },
5120                 .chained = true,
5121                 .chain_id = ALC280_FIXUP_HP_GPIO4
5122         },
5123         [ALC280_FIXUP_HP_9480M] = {
5124                 .type = HDA_FIXUP_FUNC,
5125                 .v.func = alc280_fixup_hp_9480m,
5126         },
5127         [ALC288_FIXUP_DELL_HEADSET_MODE] = {
5128                 .type = HDA_FIXUP_FUNC,
5129                 .v.func = alc_fixup_headset_mode_dell_alc288,
5130                 .chained = true,
5131                 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5132         },
5133         [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5134                 .type = HDA_FIXUP_PINS,
5135                 .v.pins = (const struct hda_pintbl[]) {
5136                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5137                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5138                         { }
5139                 },
5140                 .chained = true,
5141                 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
5142         },
5143         [ALC288_FIXUP_DELL_XPS_13_GPIO6] = {
5144                 .type = HDA_FIXUP_VERBS,
5145                 .v.verbs = (const struct hda_verb[]) {
5146                         {0x01, AC_VERB_SET_GPIO_MASK, 0x40},
5147                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x40},
5148                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5149                         { }
5150                 },
5151                 .chained = true,
5152                 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
5153         },
5154         [ALC288_FIXUP_DISABLE_AAMIX] = {
5155                 .type = HDA_FIXUP_FUNC,
5156                 .v.func = alc_fixup_disable_aamix,
5157                 .chained = true,
5158                 .chain_id = ALC288_FIXUP_DELL_XPS_13_GPIO6
5159         },
5160         [ALC288_FIXUP_DELL_XPS_13] = {
5161                 .type = HDA_FIXUP_FUNC,
5162                 .v.func = alc_fixup_dell_xps13,
5163                 .chained = true,
5164                 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
5165         },
5166         [ALC292_FIXUP_DISABLE_AAMIX] = {
5167                 .type = HDA_FIXUP_FUNC,
5168                 .v.func = alc_fixup_disable_aamix,
5169                 .chained = true,
5170                 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
5171         },
5172         [ALC292_FIXUP_DELL_E7X] = {
5173                 .type = HDA_FIXUP_FUNC,
5174                 .v.func = alc_fixup_dell_xps13,
5175                 .chained = true,
5176                 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
5177         },
5178         [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5179                 .type = HDA_FIXUP_PINS,
5180                 .v.pins = (const struct hda_pintbl[]) {
5181                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5182                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5183                         { }
5184                 },
5185                 .chained = true,
5186                 .chain_id = ALC269_FIXUP_HEADSET_MODE
5187         },
5188         [ALC275_FIXUP_DELL_XPS] = {
5189                 .type = HDA_FIXUP_VERBS,
5190                 .v.verbs = (const struct hda_verb[]) {
5191                         /* Enables internal speaker */
5192                         {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
5193                         {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
5194                         {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
5195                         {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
5196                         {}
5197                 }
5198         },
5199         [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
5200                 .type = HDA_FIXUP_VERBS,
5201                 .v.verbs = (const struct hda_verb[]) {
5202                         /* Disable pass-through path for FRONT 14h */
5203                         {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
5204                         {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
5205                         {}
5206                 },
5207                 .chained = true,
5208                 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5209         },
5210         [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
5211                 .type = HDA_FIXUP_FUNC,
5212                 .v.func = alc_fixup_disable_aamix,
5213                 .chained = true,
5214                 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
5215         },
5216 };
5217
5218 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
5219         SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
5220         SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
5221         SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
5222         SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
5223         SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
5224         SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
5225         SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
5226         SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
5227         SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
5228         SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
5229         SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
5230         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
5231         SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
5232         SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
5233         SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
5234         SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
5235         SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
5236         SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
5237         SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
5238         SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
5239         SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
5240         SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
5241         SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
5242         SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
5243         SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5244         SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5245         SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
5246         SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
5247         SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
5248         SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5249         SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5250         SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC292_FIXUP_DISABLE_AAMIX),
5251         SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC292_FIXUP_DISABLE_AAMIX),
5252         SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC292_FIXUP_DISABLE_AAMIX),
5253         SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC292_FIXUP_DISABLE_AAMIX),
5254         SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC292_FIXUP_DISABLE_AAMIX),
5255         SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
5256         SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5257         SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
5258         SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
5259         SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
5260         SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
5261         SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
5262         /* ALC282 */
5263         SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5264         SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5265         SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5266         SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
5267         SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
5268         SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
5269         SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
5270         SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
5271         SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5272         SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5273         SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5274         SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5275         SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
5276         SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
5277         SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
5278         SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5279         SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5280         SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5281         SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5282         SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5283         SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
5284         SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5285         SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5286         /* ALC290 */
5287         SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5288         SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5289         SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5290         SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5291         SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5292         SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5293         SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5294         SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5295         SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5296         SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5297         SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5298         SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5299         SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5300         SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5301         SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5302         SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5303         SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
5304         SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5305         SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5306         SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5307         SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5308         SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5309         SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5310         SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5311         SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5312         SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5313         SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5314         SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5315         SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
5316         SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
5317         SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5318         SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5319         SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
5320         SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
5321         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
5322         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
5323         SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
5324         SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5325         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
5326         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
5327         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5328         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5329         SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
5330         SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
5331         SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
5332         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
5333         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5334         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5335         SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
5336         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
5337         SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
5338         SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
5339         SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
5340         SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
5341         SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
5342         SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_BXBT2807_MIC),
5343         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
5344         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
5345         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
5346         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
5347         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
5348         SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
5349         SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
5350         SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
5351         SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
5352         SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
5353         SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
5354         SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
5355         SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
5356         SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
5357         SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
5358         SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
5359         SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
5360         SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5361         SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
5362         SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
5363         SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
5364         SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
5365         SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP),
5366         SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5367         SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
5368         SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
5369         SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5370         SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
5371         SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
5372         SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
5373         SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
5374         SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
5375         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
5376         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
5377         SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
5378
5379 #if 0
5380         /* Below is a quirk table taken from the old code.
5381          * Basically the device should work as is without the fixup table.
5382          * If BIOS doesn't give a proper info, enable the corresponding
5383          * fixup entry.
5384          */
5385         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5386                       ALC269_FIXUP_AMIC),
5387         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
5388         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
5389         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
5390         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
5391         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
5392         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
5393         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
5394         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
5395         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
5396         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
5397         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
5398         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
5399         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
5400         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
5401         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
5402         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
5403         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
5404         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
5405         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
5406         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
5407         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
5408         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
5409         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
5410         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
5411         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
5412         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
5413         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
5414         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
5415         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
5416         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
5417         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
5418         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
5419         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
5420         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
5421         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
5422         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
5423         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
5424         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
5425         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
5426 #endif
5427         {}
5428 };
5429
5430 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
5431         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
5432         SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
5433         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
5434         SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
5435         {}
5436 };
5437
5438 static const struct hda_model_fixup alc269_fixup_models[] = {
5439         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
5440         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
5441         {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
5442         {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
5443         {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
5444         {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
5445         {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
5446         {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
5447         {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
5448         {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
5449         {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
5450         {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
5451         {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
5452         {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
5453         {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
5454         {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
5455         {}
5456 };
5457
5458 #define ALC256_STANDARD_PINS \
5459         {0x12, 0x90a60140}, \
5460         {0x14, 0x90170110}, \
5461         {0x21, 0x02211020}
5462
5463 #define ALC282_STANDARD_PINS \
5464         {0x14, 0x90170110}
5465
5466 #define ALC290_STANDARD_PINS \
5467         {0x12, 0x99a30130}
5468
5469 #define ALC292_STANDARD_PINS \
5470         {0x14, 0x90170110}, \
5471         {0x15, 0x0221401f}
5472
5473 #define ALC298_STANDARD_PINS \
5474         {0x12, 0x90a60130}, \
5475         {0x21, 0x03211020}
5476
5477 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
5478         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
5479                 {0x14, 0x90170110},
5480                 {0x21, 0x02211020}),
5481         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5482                 {0x12, 0x90a60140},
5483                 {0x14, 0x90170110},
5484                 {0x21, 0x02211020}),
5485         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5486                 {0x12, 0x90a60160},
5487                 {0x14, 0x90170120},
5488                 {0x21, 0x02211030}),
5489         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5490                 {0x14, 0x90170130},
5491                 {0x1b, 0x01014020},
5492                 {0x21, 0x0221103f}),
5493         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5494                 {0x14, 0x90170150},
5495                 {0x1b, 0x02011020},
5496                 {0x21, 0x0221105f}),
5497         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5498                 {0x14, 0x90170110},
5499                 {0x1b, 0x01014020},
5500                 {0x21, 0x0221101f}),
5501         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5502                 {0x12, 0x90a60160},
5503                 {0x14, 0x90170120},
5504                 {0x17, 0x90170140},
5505                 {0x21, 0x0321102f}),
5506         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5507                 {0x12, 0x90a60160},
5508                 {0x14, 0x90170130},
5509                 {0x21, 0x02211040}),
5510         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5511                 {0x12, 0x90a60160},
5512                 {0x14, 0x90170140},
5513                 {0x21, 0x02211050}),
5514         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5515                 {0x12, 0x90a60170},
5516                 {0x14, 0x90170120},
5517                 {0x21, 0x02211030}),
5518         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5519                 {0x12, 0x90a60170},
5520                 {0x14, 0x90170130},
5521                 {0x21, 0x02211040}),
5522         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5523                 {0x12, 0x90a60170},
5524                 {0x14, 0x90170140},
5525                 {0x21, 0x02211050}),
5526         SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5527                 {0x12, 0x90a60180},
5528                 {0x14, 0x90170130},
5529                 {0x21, 0x02211040}),
5530         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5531                 {0x12, 0x90a60160},
5532                 {0x14, 0x90170120},
5533                 {0x21, 0x02211030}),
5534         SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5535                 ALC256_STANDARD_PINS),
5536         SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
5537                 {0x12, 0x90a60130},
5538                 {0x14, 0x90170110},
5539                 {0x15, 0x0421101f},
5540                 {0x1a, 0x04a11020}),
5541         SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
5542                 {0x12, 0x90a60140},
5543                 {0x14, 0x90170110},
5544                 {0x15, 0x0421101f},
5545                 {0x18, 0x02811030},
5546                 {0x1a, 0x04a1103f},
5547                 {0x1b, 0x02011020}),
5548         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5549                 ALC282_STANDARD_PINS,
5550                 {0x12, 0x99a30130},
5551                 {0x19, 0x03a11020},
5552                 {0x21, 0x0321101f}),
5553         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5554                 ALC282_STANDARD_PINS,
5555                 {0x12, 0x99a30130},
5556                 {0x19, 0x03a11020},
5557                 {0x21, 0x03211040}),
5558         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5559                 ALC282_STANDARD_PINS,
5560                 {0x12, 0x99a30130},
5561                 {0x19, 0x03a11030},
5562                 {0x21, 0x03211020}),
5563         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5564                 ALC282_STANDARD_PINS,
5565                 {0x12, 0x99a30130},
5566                 {0x19, 0x04a11020},
5567                 {0x21, 0x0421101f}),
5568         SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
5569                 ALC282_STANDARD_PINS,
5570                 {0x12, 0x90a60140},
5571                 {0x19, 0x04a11030},
5572                 {0x21, 0x04211020}),
5573         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5574                 ALC282_STANDARD_PINS,
5575                 {0x12, 0x90a60130},
5576                 {0x21, 0x0321101f}),
5577         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5578                 {0x12, 0x90a60160},
5579                 {0x14, 0x90170120},
5580                 {0x21, 0x02211030}),
5581         SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5582                 ALC282_STANDARD_PINS,
5583                 {0x12, 0x90a60130},
5584                 {0x19, 0x03a11020},
5585                 {0x21, 0x0321101f}),
5586         SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL_XPS_13_GPIO6,
5587                 {0x12, 0x90a60120},
5588                 {0x14, 0x90170110},
5589                 {0x21, 0x0321101f}),
5590         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5591                 ALC290_STANDARD_PINS,
5592                 {0x15, 0x04211040},
5593                 {0x18, 0x90170112},
5594                 {0x1a, 0x04a11020}),
5595         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5596                 ALC290_STANDARD_PINS,
5597                 {0x15, 0x04211040},
5598                 {0x18, 0x90170110},
5599                 {0x1a, 0x04a11020}),
5600         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5601                 ALC290_STANDARD_PINS,
5602                 {0x15, 0x0421101f},
5603                 {0x1a, 0x04a11020}),
5604         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5605                 ALC290_STANDARD_PINS,
5606                 {0x15, 0x04211020},
5607                 {0x1a, 0x04a11040}),
5608         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5609                 ALC290_STANDARD_PINS,
5610                 {0x14, 0x90170110},
5611                 {0x15, 0x04211020},
5612                 {0x1a, 0x04a11040}),
5613         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5614                 ALC290_STANDARD_PINS,
5615                 {0x14, 0x90170110},
5616                 {0x15, 0x04211020},
5617                 {0x1a, 0x04a11020}),
5618         SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
5619                 ALC290_STANDARD_PINS,
5620                 {0x14, 0x90170110},
5621                 {0x15, 0x0421101f},
5622                 {0x1a, 0x04a11020}),
5623         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
5624                 ALC292_STANDARD_PINS,
5625                 {0x12, 0x90a60140},
5626                 {0x16, 0x01014020},
5627                 {0x19, 0x01a19030}),
5628         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
5629                 ALC292_STANDARD_PINS,
5630                 {0x12, 0x90a60140},
5631                 {0x16, 0x01014020},
5632                 {0x18, 0x02a19031},
5633                 {0x19, 0x01a1903e}),
5634         SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5635                 ALC292_STANDARD_PINS,
5636                 {0x12, 0x90a60140}),
5637         SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
5638                 ALC292_STANDARD_PINS,
5639                 {0x13, 0x90a60140},
5640                 {0x16, 0x21014020},
5641                 {0x19, 0x21a19030}),
5642         SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
5643                 ALC292_STANDARD_PINS,
5644                 {0x13, 0x90a60140}),
5645         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5646                 ALC298_STANDARD_PINS,
5647                 {0x17, 0x90170110}),
5648         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5649                 ALC298_STANDARD_PINS,
5650                 {0x17, 0x90170140}),
5651         SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5652                 ALC298_STANDARD_PINS,
5653                 {0x17, 0x90170150}),
5654         {}
5655 };
5656
5657 static void alc269_fill_coef(struct hda_codec *codec)
5658 {
5659         struct alc_spec *spec = codec->spec;
5660         int val;
5661
5662         if (spec->codec_variant != ALC269_TYPE_ALC269VB)
5663                 return;
5664
5665         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
5666                 alc_write_coef_idx(codec, 0xf, 0x960b);
5667                 alc_write_coef_idx(codec, 0xe, 0x8817);
5668         }
5669
5670         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
5671                 alc_write_coef_idx(codec, 0xf, 0x960b);
5672                 alc_write_coef_idx(codec, 0xe, 0x8814);
5673         }
5674
5675         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
5676                 /* Power up output pin */
5677                 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
5678         }
5679
5680         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
5681                 val = alc_read_coef_idx(codec, 0xd);
5682                 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
5683                         /* Capless ramp up clock control */
5684                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
5685                 }
5686                 val = alc_read_coef_idx(codec, 0x17);
5687                 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
5688                         /* Class D power on reset */
5689                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
5690                 }
5691         }
5692
5693         /* HP */
5694         alc_update_coef_idx(codec, 0x4, 0, 1<<11);
5695 }
5696
5697 /*
5698  */
5699 static int patch_alc269(struct hda_codec *codec)
5700 {
5701         struct alc_spec *spec;
5702         int err;
5703
5704         err = alc_alloc_spec(codec, 0x0b);
5705         if (err < 0)
5706                 return err;
5707
5708         spec = codec->spec;
5709         spec->gen.shared_mic_vref_pin = 0x18;
5710         codec->power_save_node = 1;
5711
5712 #ifdef CONFIG_PM
5713         codec->patch_ops.suspend = alc269_suspend;
5714         codec->patch_ops.resume = alc269_resume;
5715 #endif
5716         spec->shutup = alc269_shutup;
5717
5718         snd_hda_pick_fixup(codec, alc269_fixup_models,
5719                        alc269_fixup_tbl, alc269_fixups);
5720         snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups);
5721         snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
5722                            alc269_fixups);
5723         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
5724
5725         alc_auto_parse_customize_define(codec);
5726
5727         if (has_cdefine_beep(codec))
5728                 spec->gen.beep_nid = 0x01;
5729
5730         switch (codec->core.vendor_id) {
5731         case 0x10ec0269:
5732                 spec->codec_variant = ALC269_TYPE_ALC269VA;
5733                 switch (alc_get_coef0(codec) & 0x00f0) {
5734                 case 0x0010:
5735                         if (codec->bus->pci &&
5736                             codec->bus->pci->subsystem_vendor == 0x1025 &&
5737                             spec->cdefine.platform_type == 1)
5738                                 err = alc_codec_rename(codec, "ALC271X");
5739                         spec->codec_variant = ALC269_TYPE_ALC269VB;
5740                         break;
5741                 case 0x0020:
5742                         if (codec->bus->pci &&
5743                             codec->bus->pci->subsystem_vendor == 0x17aa &&
5744                             codec->bus->pci->subsystem_device == 0x21f3)
5745                                 err = alc_codec_rename(codec, "ALC3202");
5746                         spec->codec_variant = ALC269_TYPE_ALC269VC;
5747                         break;
5748                 case 0x0030:
5749                         spec->codec_variant = ALC269_TYPE_ALC269VD;
5750                         break;
5751                 default:
5752                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
5753                 }
5754                 if (err < 0)
5755                         goto error;
5756                 spec->init_hook = alc269_fill_coef;
5757                 alc269_fill_coef(codec);
5758                 break;
5759
5760         case 0x10ec0280:
5761         case 0x10ec0290:
5762                 spec->codec_variant = ALC269_TYPE_ALC280;
5763                 break;
5764         case 0x10ec0282:
5765                 spec->codec_variant = ALC269_TYPE_ALC282;
5766                 spec->shutup = alc282_shutup;
5767                 spec->init_hook = alc282_init;
5768                 break;
5769         case 0x10ec0233:
5770         case 0x10ec0283:
5771                 spec->codec_variant = ALC269_TYPE_ALC283;
5772                 spec->shutup = alc283_shutup;
5773                 spec->init_hook = alc283_init;
5774                 break;
5775         case 0x10ec0284:
5776         case 0x10ec0292:
5777                 spec->codec_variant = ALC269_TYPE_ALC284;
5778                 break;
5779         case 0x10ec0285:
5780         case 0x10ec0293:
5781                 spec->codec_variant = ALC269_TYPE_ALC285;
5782                 break;
5783         case 0x10ec0286:
5784         case 0x10ec0288:
5785                 spec->codec_variant = ALC269_TYPE_ALC286;
5786                 spec->shutup = alc286_shutup;
5787                 break;
5788         case 0x10ec0298:
5789                 spec->codec_variant = ALC269_TYPE_ALC298;
5790                 break;
5791         case 0x10ec0255:
5792                 spec->codec_variant = ALC269_TYPE_ALC255;
5793                 break;
5794         case 0x10ec0256:
5795                 spec->codec_variant = ALC269_TYPE_ALC256;
5796                 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
5797                 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
5798                 break;
5799         }
5800
5801         if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
5802                 spec->has_alc5505_dsp = 1;
5803                 spec->init_hook = alc5505_dsp_init;
5804         }
5805
5806         /* automatic parse from the BIOS config */
5807         err = alc269_parse_auto_config(codec);
5808         if (err < 0)
5809                 goto error;
5810
5811         if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid)
5812                 set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
5813
5814         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
5815
5816         return 0;
5817
5818  error:
5819         alc_free(codec);
5820         return err;
5821 }
5822
5823 /*
5824  * ALC861
5825  */
5826
5827 static int alc861_parse_auto_config(struct hda_codec *codec)
5828 {
5829         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
5830         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5831         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
5832 }
5833
5834 /* Pin config fixes */
5835 enum {
5836         ALC861_FIXUP_FSC_AMILO_PI1505,
5837         ALC861_FIXUP_AMP_VREF_0F,
5838         ALC861_FIXUP_NO_JACK_DETECT,
5839         ALC861_FIXUP_ASUS_A6RP,
5840         ALC660_FIXUP_ASUS_W7J,
5841 };
5842
5843 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
5844 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
5845                         const struct hda_fixup *fix, int action)
5846 {
5847         struct alc_spec *spec = codec->spec;
5848         unsigned int val;
5849
5850         if (action != HDA_FIXUP_ACT_INIT)
5851                 return;
5852         val = snd_hda_codec_get_pin_target(codec, 0x0f);
5853         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
5854                 val |= AC_PINCTL_IN_EN;
5855         val |= AC_PINCTL_VREF_50;
5856         snd_hda_set_pin_ctl(codec, 0x0f, val);
5857         spec->gen.keep_vref_in_automute = 1;
5858 }
5859
5860 /* suppress the jack-detection */
5861 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
5862                                      const struct hda_fixup *fix, int action)
5863 {
5864         if (action == HDA_FIXUP_ACT_PRE_PROBE)
5865                 codec->no_jack_detect = 1;
5866 }
5867
5868 static const struct hda_fixup alc861_fixups[] = {
5869         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
5870                 .type = HDA_FIXUP_PINS,
5871                 .v.pins = (const struct hda_pintbl[]) {
5872                         { 0x0b, 0x0221101f }, /* HP */
5873                         { 0x0f, 0x90170310 }, /* speaker */
5874                         { }
5875                 }
5876         },
5877         [ALC861_FIXUP_AMP_VREF_0F] = {
5878                 .type = HDA_FIXUP_FUNC,
5879                 .v.func = alc861_fixup_asus_amp_vref_0f,
5880         },
5881         [ALC861_FIXUP_NO_JACK_DETECT] = {
5882                 .type = HDA_FIXUP_FUNC,
5883                 .v.func = alc_fixup_no_jack_detect,
5884         },
5885         [ALC861_FIXUP_ASUS_A6RP] = {
5886                 .type = HDA_FIXUP_FUNC,
5887                 .v.func = alc861_fixup_asus_amp_vref_0f,
5888                 .chained = true,
5889                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
5890         },
5891         [ALC660_FIXUP_ASUS_W7J] = {
5892                 .type = HDA_FIXUP_VERBS,
5893                 .v.verbs = (const struct hda_verb[]) {
5894                         /* ASUS W7J needs a magic pin setup on unused NID 0x10
5895                          * for enabling outputs
5896                          */
5897                         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
5898                         { }
5899                 },
5900         }
5901 };
5902
5903 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
5904         SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
5905         SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
5906         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
5907         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
5908         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
5909         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
5910         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
5911         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
5912         {}
5913 };
5914
5915 /*
5916  */
5917 static int patch_alc861(struct hda_codec *codec)
5918 {
5919         struct alc_spec *spec;
5920         int err;
5921
5922         err = alc_alloc_spec(codec, 0x15);
5923         if (err < 0)
5924                 return err;
5925
5926         spec = codec->spec;
5927         spec->gen.beep_nid = 0x23;
5928
5929 #ifdef CONFIG_PM
5930         spec->power_hook = alc_power_eapd;
5931 #endif
5932
5933         snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5934         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
5935
5936         /* automatic parse from the BIOS config */
5937         err = alc861_parse_auto_config(codec);
5938         if (err < 0)
5939                 goto error;
5940
5941         if (!spec->gen.no_analog)
5942                 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5943
5944         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
5945
5946         return 0;
5947
5948  error:
5949         alc_free(codec);
5950         return err;
5951 }
5952
5953 /*
5954  * ALC861-VD support
5955  *
5956  * Based on ALC882
5957  *
5958  * In addition, an independent DAC
5959  */
5960 static int alc861vd_parse_auto_config(struct hda_codec *codec)
5961 {
5962         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
5963         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5964         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
5965 }
5966
5967 enum {
5968         ALC660VD_FIX_ASUS_GPIO1,
5969         ALC861VD_FIX_DALLAS,
5970 };
5971
5972 /* exclude VREF80 */
5973 static void alc861vd_fixup_dallas(struct hda_codec *codec,
5974                                   const struct hda_fixup *fix, int action)
5975 {
5976         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5977                 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
5978                 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
5979         }
5980 }
5981
5982 static const struct hda_fixup alc861vd_fixups[] = {
5983         [ALC660VD_FIX_ASUS_GPIO1] = {
5984                 .type = HDA_FIXUP_VERBS,
5985                 .v.verbs = (const struct hda_verb[]) {
5986                         /* reset GPIO1 */
5987                         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5988                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5989                         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5990                         { }
5991                 }
5992         },
5993         [ALC861VD_FIX_DALLAS] = {
5994                 .type = HDA_FIXUP_FUNC,
5995                 .v.func = alc861vd_fixup_dallas,
5996         },
5997 };
5998
5999 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
6000         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
6001         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
6002         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
6003         {}
6004 };
6005
6006 /*
6007  */
6008 static int patch_alc861vd(struct hda_codec *codec)
6009 {
6010         struct alc_spec *spec;
6011         int err;
6012
6013         err = alc_alloc_spec(codec, 0x0b);
6014         if (err < 0)
6015                 return err;
6016
6017         spec = codec->spec;
6018         spec->gen.beep_nid = 0x23;
6019
6020         spec->shutup = alc_eapd_shutup;
6021
6022         snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6023         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6024
6025         /* automatic parse from the BIOS config */
6026         err = alc861vd_parse_auto_config(codec);
6027         if (err < 0)
6028                 goto error;
6029
6030         if (!spec->gen.no_analog)
6031                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6032
6033         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6034
6035         return 0;
6036
6037  error:
6038         alc_free(codec);
6039         return err;
6040 }
6041
6042 /*
6043  * ALC662 support
6044  *
6045  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6046  * configuration.  Each pin widget can choose any input DACs and a mixer.
6047  * Each ADC is connected from a mixer of all inputs.  This makes possible
6048  * 6-channel independent captures.
6049  *
6050  * In addition, an independent DAC for the multi-playback (not used in this
6051  * driver yet).
6052  */
6053
6054 /*
6055  * BIOS auto configuration
6056  */
6057
6058 static int alc662_parse_auto_config(struct hda_codec *codec)
6059 {
6060         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
6061         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6062         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6063         const hda_nid_t *ssids;
6064
6065         if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
6066             codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
6067             codec->core.vendor_id == 0x10ec0671)
6068                 ssids = alc663_ssids;
6069         else
6070                 ssids = alc662_ssids;
6071         return alc_parse_auto_config(codec, alc662_ignore, ssids);
6072 }
6073
6074 static void alc272_fixup_mario(struct hda_codec *codec,
6075                                const struct hda_fixup *fix, int action)
6076 {
6077         if (action != HDA_FIXUP_ACT_PRE_PROBE)
6078                 return;
6079         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6080                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6081                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6082                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6083                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
6084                 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6085 }
6086
6087 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
6088         { .channels = 2,
6089           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
6090         { .channels = 4,
6091           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
6092                    SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
6093         { }
6094 };
6095
6096 /* override the 2.1 chmap */
6097 static void alc_fixup_bass_chmap(struct hda_codec *codec,
6098                                     const struct hda_fixup *fix, int action)
6099 {
6100         if (action == HDA_FIXUP_ACT_BUILD) {
6101                 struct alc_spec *spec = codec->spec;
6102                 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
6103         }
6104 }
6105
6106 /* avoid D3 for keeping GPIO up */
6107 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
6108                                           hda_nid_t nid,
6109                                           unsigned int power_state)
6110 {
6111         struct alc_spec *spec = codec->spec;
6112         if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_led)
6113                 return AC_PWRST_D0;
6114         return power_state;
6115 }
6116
6117 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
6118                                    const struct hda_fixup *fix, int action)
6119 {
6120         struct alc_spec *spec = codec->spec;
6121         static const struct hda_verb gpio_init[] = {
6122                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x01 },
6123                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01 },
6124                 {}
6125         };
6126
6127         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6128                 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
6129                 spec->gpio_led = 0;
6130                 spec->mute_led_polarity = 1;
6131                 spec->gpio_mute_led_mask = 0x01;
6132                 snd_hda_add_verbs(codec, gpio_init);
6133                 codec->power_filter = gpio_led_power_filter;
6134         }
6135 }
6136
6137 static struct coef_fw alc668_coefs[] = {
6138         WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03,    0x0),
6139         WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06,    0x0), WRITE_COEF(0x07, 0x0f80),
6140         WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b,    0x0),
6141         WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
6142         WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
6143         WRITE_COEF(0x13,    0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
6144         WRITE_COEF(0x19,    0x0), WRITE_COEF(0x1a,    0x0), WRITE_COEF(0x1b,    0x0),
6145         WRITE_COEF(0x1c,    0x0), WRITE_COEF(0x1d,    0x0), WRITE_COEF(0x1e, 0x7418),
6146         WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
6147         WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
6148         WRITE_COEF(0x27,    0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
6149         WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
6150         WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac,    0x0),
6151         WRITE_COEF(0xad,    0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
6152         WRITE_COEF(0xb0,    0x0), WRITE_COEF(0xb1,    0x0), WRITE_COEF(0xb2,    0x0),
6153         WRITE_COEF(0xb3,    0x0), WRITE_COEF(0xb4,    0x0), WRITE_COEF(0xb5, 0x1040),
6154         WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
6155         WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
6156         WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
6157         WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
6158         {}
6159 };
6160
6161 static void alc668_restore_default_value(struct hda_codec *codec)
6162 {
6163         alc_process_coef_fw(codec, alc668_coefs);
6164 }
6165
6166 enum {
6167         ALC662_FIXUP_ASPIRE,
6168         ALC662_FIXUP_LED_GPIO1,
6169         ALC662_FIXUP_IDEAPAD,
6170         ALC272_FIXUP_MARIO,
6171         ALC662_FIXUP_CZC_P10T,
6172         ALC662_FIXUP_SKU_IGNORE,
6173         ALC662_FIXUP_HP_RP5800,
6174         ALC662_FIXUP_ASUS_MODE1,
6175         ALC662_FIXUP_ASUS_MODE2,
6176         ALC662_FIXUP_ASUS_MODE3,
6177         ALC662_FIXUP_ASUS_MODE4,
6178         ALC662_FIXUP_ASUS_MODE5,
6179         ALC662_FIXUP_ASUS_MODE6,
6180         ALC662_FIXUP_ASUS_MODE7,
6181         ALC662_FIXUP_ASUS_MODE8,
6182         ALC662_FIXUP_NO_JACK_DETECT,
6183         ALC662_FIXUP_ZOTAC_Z68,
6184         ALC662_FIXUP_INV_DMIC,
6185         ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
6186         ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
6187         ALC662_FIXUP_HEADSET_MODE,
6188         ALC668_FIXUP_HEADSET_MODE,
6189         ALC662_FIXUP_BASS_MODE4_CHMAP,
6190         ALC662_FIXUP_BASS_16,
6191         ALC662_FIXUP_BASS_1A,
6192         ALC662_FIXUP_BASS_CHMAP,
6193         ALC668_FIXUP_AUTO_MUTE,
6194         ALC668_FIXUP_DELL_DISABLE_AAMIX,
6195         ALC668_FIXUP_DELL_XPS13,
6196 };
6197
6198 static const struct hda_fixup alc662_fixups[] = {
6199         [ALC662_FIXUP_ASPIRE] = {
6200                 .type = HDA_FIXUP_PINS,
6201                 .v.pins = (const struct hda_pintbl[]) {
6202                         { 0x15, 0x99130112 }, /* subwoofer */
6203                         { }
6204                 }
6205         },
6206         [ALC662_FIXUP_LED_GPIO1] = {
6207                 .type = HDA_FIXUP_FUNC,
6208                 .v.func = alc662_fixup_led_gpio1,
6209         },
6210         [ALC662_FIXUP_IDEAPAD] = {
6211                 .type = HDA_FIXUP_PINS,
6212                 .v.pins = (const struct hda_pintbl[]) {
6213                         { 0x17, 0x99130112 }, /* subwoofer */
6214                         { }
6215                 },
6216                 .chained = true,
6217                 .chain_id = ALC662_FIXUP_LED_GPIO1,
6218         },
6219         [ALC272_FIXUP_MARIO] = {
6220                 .type = HDA_FIXUP_FUNC,
6221                 .v.func = alc272_fixup_mario,
6222         },
6223         [ALC662_FIXUP_CZC_P10T] = {
6224                 .type = HDA_FIXUP_VERBS,
6225                 .v.verbs = (const struct hda_verb[]) {
6226                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6227                         {}
6228                 }
6229         },
6230         [ALC662_FIXUP_SKU_IGNORE] = {
6231                 .type = HDA_FIXUP_FUNC,
6232                 .v.func = alc_fixup_sku_ignore,
6233         },
6234         [ALC662_FIXUP_HP_RP5800] = {
6235                 .type = HDA_FIXUP_PINS,
6236                 .v.pins = (const struct hda_pintbl[]) {
6237                         { 0x14, 0x0221201f }, /* HP out */
6238                         { }
6239                 },
6240                 .chained = true,
6241                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6242         },
6243         [ALC662_FIXUP_ASUS_MODE1] = {
6244                 .type = HDA_FIXUP_PINS,
6245                 .v.pins = (const struct hda_pintbl[]) {
6246                         { 0x14, 0x99130110 }, /* speaker */
6247                         { 0x18, 0x01a19c20 }, /* mic */
6248                         { 0x19, 0x99a3092f }, /* int-mic */
6249                         { 0x21, 0x0121401f }, /* HP out */
6250                         { }
6251                 },
6252                 .chained = true,
6253                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6254         },
6255         [ALC662_FIXUP_ASUS_MODE2] = {
6256                 .type = HDA_FIXUP_PINS,
6257                 .v.pins = (const struct hda_pintbl[]) {
6258                         { 0x14, 0x99130110 }, /* speaker */
6259                         { 0x18, 0x01a19820 }, /* mic */
6260                         { 0x19, 0x99a3092f }, /* int-mic */
6261                         { 0x1b, 0x0121401f }, /* HP out */
6262                         { }
6263                 },
6264                 .chained = true,
6265                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6266         },
6267         [ALC662_FIXUP_ASUS_MODE3] = {
6268                 .type = HDA_FIXUP_PINS,
6269                 .v.pins = (const struct hda_pintbl[]) {
6270                         { 0x14, 0x99130110 }, /* speaker */
6271                         { 0x15, 0x0121441f }, /* HP */
6272                         { 0x18, 0x01a19840 }, /* mic */
6273                         { 0x19, 0x99a3094f }, /* int-mic */
6274                         { 0x21, 0x01211420 }, /* HP2 */
6275                         { }
6276                 },
6277                 .chained = true,
6278                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6279         },
6280         [ALC662_FIXUP_ASUS_MODE4] = {
6281                 .type = HDA_FIXUP_PINS,
6282                 .v.pins = (const struct hda_pintbl[]) {
6283                         { 0x14, 0x99130110 }, /* speaker */
6284                         { 0x16, 0x99130111 }, /* speaker */
6285                         { 0x18, 0x01a19840 }, /* mic */
6286                         { 0x19, 0x99a3094f }, /* int-mic */
6287                         { 0x21, 0x0121441f }, /* HP */
6288                         { }
6289                 },
6290                 .chained = true,
6291                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6292         },
6293         [ALC662_FIXUP_ASUS_MODE5] = {
6294                 .type = HDA_FIXUP_PINS,
6295                 .v.pins = (const struct hda_pintbl[]) {
6296                         { 0x14, 0x99130110 }, /* speaker */
6297                         { 0x15, 0x0121441f }, /* HP */
6298                         { 0x16, 0x99130111 }, /* speaker */
6299                         { 0x18, 0x01a19840 }, /* mic */
6300                         { 0x19, 0x99a3094f }, /* int-mic */
6301                         { }
6302                 },
6303                 .chained = true,
6304                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6305         },
6306         [ALC662_FIXUP_ASUS_MODE6] = {
6307                 .type = HDA_FIXUP_PINS,
6308                 .v.pins = (const struct hda_pintbl[]) {
6309                         { 0x14, 0x99130110 }, /* speaker */
6310                         { 0x15, 0x01211420 }, /* HP2 */
6311                         { 0x18, 0x01a19840 }, /* mic */
6312                         { 0x19, 0x99a3094f }, /* int-mic */
6313                         { 0x1b, 0x0121441f }, /* HP */
6314                         { }
6315                 },
6316                 .chained = true,
6317                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6318         },
6319         [ALC662_FIXUP_ASUS_MODE7] = {
6320                 .type = HDA_FIXUP_PINS,
6321                 .v.pins = (const struct hda_pintbl[]) {
6322                         { 0x14, 0x99130110 }, /* speaker */
6323                         { 0x17, 0x99130111 }, /* speaker */
6324                         { 0x18, 0x01a19840 }, /* mic */
6325                         { 0x19, 0x99a3094f }, /* int-mic */
6326                         { 0x1b, 0x01214020 }, /* HP */
6327                         { 0x21, 0x0121401f }, /* HP */
6328                         { }
6329                 },
6330                 .chained = true,
6331                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6332         },
6333         [ALC662_FIXUP_ASUS_MODE8] = {
6334                 .type = HDA_FIXUP_PINS,
6335                 .v.pins = (const struct hda_pintbl[]) {
6336                         { 0x14, 0x99130110 }, /* speaker */
6337                         { 0x12, 0x99a30970 }, /* int-mic */
6338                         { 0x15, 0x01214020 }, /* HP */
6339                         { 0x17, 0x99130111 }, /* speaker */
6340                         { 0x18, 0x01a19840 }, /* mic */
6341                         { 0x21, 0x0121401f }, /* HP */
6342                         { }
6343                 },
6344                 .chained = true,
6345                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6346         },
6347         [ALC662_FIXUP_NO_JACK_DETECT] = {
6348                 .type = HDA_FIXUP_FUNC,
6349                 .v.func = alc_fixup_no_jack_detect,
6350         },
6351         [ALC662_FIXUP_ZOTAC_Z68] = {
6352                 .type = HDA_FIXUP_PINS,
6353                 .v.pins = (const struct hda_pintbl[]) {
6354                         { 0x1b, 0x02214020 }, /* Front HP */
6355                         { }
6356                 }
6357         },
6358         [ALC662_FIXUP_INV_DMIC] = {
6359                 .type = HDA_FIXUP_FUNC,
6360                 .v.func = alc_fixup_inv_dmic,
6361         },
6362         [ALC668_FIXUP_DELL_XPS13] = {
6363                 .type = HDA_FIXUP_FUNC,
6364                 .v.func = alc_fixup_dell_xps13,
6365                 .chained = true,
6366                 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
6367         },
6368         [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
6369                 .type = HDA_FIXUP_FUNC,
6370                 .v.func = alc_fixup_disable_aamix,
6371                 .chained = true,
6372                 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6373         },
6374         [ALC668_FIXUP_AUTO_MUTE] = {
6375                 .type = HDA_FIXUP_FUNC,
6376                 .v.func = alc_fixup_auto_mute_via_amp,
6377                 .chained = true,
6378                 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
6379         },
6380         [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
6381                 .type = HDA_FIXUP_PINS,
6382                 .v.pins = (const struct hda_pintbl[]) {
6383                         { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6384                         /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
6385                         { }
6386                 },
6387                 .chained = true,
6388                 .chain_id = ALC662_FIXUP_HEADSET_MODE
6389         },
6390         [ALC662_FIXUP_HEADSET_MODE] = {
6391                 .type = HDA_FIXUP_FUNC,
6392                 .v.func = alc_fixup_headset_mode_alc662,
6393         },
6394         [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
6395                 .type = HDA_FIXUP_PINS,
6396                 .v.pins = (const struct hda_pintbl[]) {
6397                         { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
6398                         { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
6399                         { }
6400                 },
6401                 .chained = true,
6402                 .chain_id = ALC668_FIXUP_HEADSET_MODE
6403         },
6404         [ALC668_FIXUP_HEADSET_MODE] = {
6405                 .type = HDA_FIXUP_FUNC,
6406                 .v.func = alc_fixup_headset_mode_alc668,
6407         },
6408         [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
6409                 .type = HDA_FIXUP_FUNC,
6410                 .v.func = alc_fixup_bass_chmap,
6411                 .chained = true,
6412                 .chain_id = ALC662_FIXUP_ASUS_MODE4
6413         },
6414         [ALC662_FIXUP_BASS_16] = {
6415                 .type = HDA_FIXUP_PINS,
6416                 .v.pins = (const struct hda_pintbl[]) {
6417                         {0x16, 0x80106111}, /* bass speaker */
6418                         {}
6419                 },
6420                 .chained = true,
6421                 .chain_id = ALC662_FIXUP_BASS_CHMAP,
6422         },
6423         [ALC662_FIXUP_BASS_1A] = {
6424                 .type = HDA_FIXUP_PINS,
6425                 .v.pins = (const struct hda_pintbl[]) {
6426                         {0x1a, 0x80106111}, /* bass speaker */
6427                         {}
6428                 },
6429                 .chained = true,
6430                 .chain_id = ALC662_FIXUP_BASS_CHMAP,
6431         },
6432         [ALC662_FIXUP_BASS_CHMAP] = {
6433                 .type = HDA_FIXUP_FUNC,
6434                 .v.func = alc_fixup_bass_chmap,
6435         },
6436 };
6437
6438 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
6439         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
6440         SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
6441         SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
6442         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
6443         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
6444         SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
6445         SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
6446         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
6447         SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6448         SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6449         SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
6450         SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
6451         SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
6452         SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6453         SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6454         SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6455         SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6456         SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6457         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
6458         SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A),
6459         SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
6460         SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
6461         SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
6462         SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
6463         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
6464         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
6465         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
6466         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6467         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
6468         SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
6469         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
6470
6471 #if 0
6472         /* Below is a quirk table taken from the old code.
6473          * Basically the device should work as is without the fixup table.
6474          * If BIOS doesn't give a proper info, enable the corresponding
6475          * fixup entry.
6476          */
6477         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6478         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6479         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6480         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6481         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6482         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6483         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6484         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6485         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6486         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6487         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6488         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6489         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6490         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6491         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6492         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6493         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6494         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6495         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6496         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6497         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6498         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6499         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6500         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6501         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6502         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6503         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6504         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6505         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6506         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6507         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6508         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6509         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6510         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6511         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6512         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6513         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6514         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6515         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6516         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6517         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6518         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6519         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6520         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6521         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6522         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6523         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6524         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6525         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6526         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6527 #endif
6528         {}
6529 };
6530
6531 static const struct hda_model_fixup alc662_fixup_models[] = {
6532         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
6533         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6534         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6535         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6536         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6537         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6538         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6539         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6540         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
6541         {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
6542         {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
6543         {}
6544 };
6545
6546 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
6547         SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
6548                 {0x14, 0x01014010},
6549                 {0x18, 0x01a19020},
6550                 {0x1a, 0x0181302f},
6551                 {0x1b, 0x0221401f}),
6552         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
6553                 {0x12, 0x99a30130},
6554                 {0x14, 0x90170110},
6555                 {0x15, 0x0321101f},
6556                 {0x16, 0x03011020}),
6557         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
6558                 {0x12, 0x99a30140},
6559                 {0x14, 0x90170110},
6560                 {0x15, 0x0321101f},
6561                 {0x16, 0x03011020}),
6562         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
6563                 {0x12, 0x99a30150},
6564                 {0x14, 0x90170110},
6565                 {0x15, 0x0321101f},
6566                 {0x16, 0x03011020}),
6567         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
6568                 {0x14, 0x90170110},
6569                 {0x15, 0x0321101f},
6570                 {0x16, 0x03011020}),
6571         SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
6572                 {0x12, 0x90a60130},
6573                 {0x14, 0x90170110},
6574                 {0x15, 0x0321101f}),
6575         {}
6576 };
6577
6578 /*
6579  */
6580 static int patch_alc662(struct hda_codec *codec)
6581 {
6582         struct alc_spec *spec;
6583         int err;
6584
6585         err = alc_alloc_spec(codec, 0x0b);
6586         if (err < 0)
6587                 return err;
6588
6589         spec = codec->spec;
6590
6591         spec->shutup = alc_eapd_shutup;
6592
6593         /* handle multiple HPs as is */
6594         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6595
6596         alc_fix_pll_init(codec, 0x20, 0x04, 15);
6597
6598         switch (codec->core.vendor_id) {
6599         case 0x10ec0668:
6600                 spec->init_hook = alc668_restore_default_value;
6601                 break;
6602         }
6603
6604         snd_hda_pick_fixup(codec, alc662_fixup_models,
6605                        alc662_fixup_tbl, alc662_fixups);
6606         snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups);
6607         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6608
6609         alc_auto_parse_customize_define(codec);
6610
6611         if (has_cdefine_beep(codec))
6612                 spec->gen.beep_nid = 0x01;
6613
6614         if ((alc_get_coef0(codec) & (1 << 14)) &&
6615             codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
6616             spec->cdefine.platform_type == 1) {
6617                 err = alc_codec_rename(codec, "ALC272X");
6618                 if (err < 0)
6619                         goto error;
6620         }
6621
6622         /* automatic parse from the BIOS config */
6623         err = alc662_parse_auto_config(codec);
6624         if (err < 0)
6625                 goto error;
6626
6627         if (!spec->gen.no_analog && spec->gen.beep_nid) {
6628                 switch (codec->core.vendor_id) {
6629                 case 0x10ec0662:
6630                         set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6631                         break;
6632                 case 0x10ec0272:
6633                 case 0x10ec0663:
6634                 case 0x10ec0665:
6635                 case 0x10ec0668:
6636                         set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6637                         break;
6638                 case 0x10ec0273:
6639                         set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
6640                         break;
6641                 }
6642         }
6643
6644         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6645
6646         return 0;
6647
6648  error:
6649         alc_free(codec);
6650         return err;
6651 }
6652
6653 /*
6654  * ALC680 support
6655  */
6656
6657 static int alc680_parse_auto_config(struct hda_codec *codec)
6658 {
6659         return alc_parse_auto_config(codec, NULL, NULL);
6660 }
6661
6662 /*
6663  */
6664 static int patch_alc680(struct hda_codec *codec)
6665 {
6666         int err;
6667
6668         /* ALC680 has no aa-loopback mixer */
6669         err = alc_alloc_spec(codec, 0);
6670         if (err < 0)
6671                 return err;
6672
6673         /* automatic parse from the BIOS config */
6674         err = alc680_parse_auto_config(codec);
6675         if (err < 0) {
6676                 alc_free(codec);
6677                 return err;
6678         }
6679
6680         return 0;
6681 }
6682
6683 /*
6684  * patch entries
6685  */
6686 static const struct hda_device_id snd_hda_id_realtek[] = {
6687         HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
6688         HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
6689         HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
6690         HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
6691         HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
6692         HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
6693         HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
6694         HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
6695         HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
6696         HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
6697         HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
6698         HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
6699         HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
6700         HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
6701         HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
6702         HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
6703         HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
6704         HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
6705         HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
6706         HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
6707         HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
6708         HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
6709         HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
6710         HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
6711         HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
6712         HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
6713         HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
6714         HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
6715         HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
6716         HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
6717         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
6718         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
6719         HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
6720         HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
6721         HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
6722         HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
6723         HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
6724         HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
6725         HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
6726         HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6727         HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc882),
6728         HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
6729         HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
6730         HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
6731         HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
6732         HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
6733         HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
6734         HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
6735         HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
6736         HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
6737         HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
6738         HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
6739         HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
6740         HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
6741         {} /* terminator */
6742 };
6743 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
6744
6745 MODULE_LICENSE("GPL");
6746 MODULE_DESCRIPTION("Realtek HD-audio codec");
6747
6748 static struct hda_codec_driver realtek_driver = {
6749         .id = snd_hda_id_realtek,
6750 };
6751
6752 module_hda_codec_driver(realtek_driver);