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