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