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