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