ALSA: hda - Add support for CX20952
[pandora-kernel.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 <sound/core.h>
33 #include <sound/jack.h>
34 #include "hda_codec.h"
35 #include "hda_local.h"
36 #include "hda_auto_parser.h"
37 #include "hda_jack.h"
38 #include "hda_generic.h"
39
40 /* keep halting ALC5505 DSP, for power saving */
41 #define HALT_REALTEK_ALC5505
42
43 /* unsol event tags */
44 #define ALC_DCVOL_EVENT         0x08
45
46 /* for GPIO Poll */
47 #define GPIO_MASK       0x03
48
49 /* extra amp-initialization sequence types */
50 enum {
51         ALC_INIT_NONE,
52         ALC_INIT_DEFAULT,
53         ALC_INIT_GPIO1,
54         ALC_INIT_GPIO2,
55         ALC_INIT_GPIO3,
56 };
57
58 enum {
59         ALC_HEADSET_MODE_UNKNOWN,
60         ALC_HEADSET_MODE_UNPLUGGED,
61         ALC_HEADSET_MODE_HEADSET,
62         ALC_HEADSET_MODE_MIC,
63         ALC_HEADSET_MODE_HEADPHONE,
64 };
65
66 enum {
67         ALC_HEADSET_TYPE_UNKNOWN,
68         ALC_HEADSET_TYPE_CTIA,
69         ALC_HEADSET_TYPE_OMTP,
70 };
71
72 struct alc_customize_define {
73         unsigned int  sku_cfg;
74         unsigned char port_connectivity;
75         unsigned char check_sum;
76         unsigned char customization;
77         unsigned char external_amp;
78         unsigned int  enable_pcbeep:1;
79         unsigned int  platform_type:1;
80         unsigned int  swap:1;
81         unsigned int  override:1;
82         unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */
83 };
84
85 struct alc_spec {
86         struct hda_gen_spec gen; /* must be at head */
87
88         /* codec parameterization */
89         const struct snd_kcontrol_new *mixers[5];       /* mixer arrays */
90         unsigned int num_mixers;
91         unsigned int beep_amp;  /* beep amp value, set via set_beep_amp() */
92
93         struct alc_customize_define cdefine;
94         unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
95
96         /* inverted dmic fix */
97         unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
98         unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
99         hda_nid_t inv_dmic_pin;
100
101         /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
102         int mute_led_polarity;
103         hda_nid_t mute_led_nid;
104
105         unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
106
107         hda_nid_t headset_mic_pin;
108         hda_nid_t headphone_mic_pin;
109         int current_headset_mode;
110         int current_headset_type;
111
112         /* hooks */
113         void (*init_hook)(struct hda_codec *codec);
114 #ifdef CONFIG_PM
115         void (*power_hook)(struct hda_codec *codec);
116 #endif
117         void (*shutup)(struct hda_codec *codec);
118
119         int init_amp;
120         int codec_variant;      /* flag for other variants */
121         bool has_alc5505_dsp;
122
123         /* for PLL fix */
124         hda_nid_t pll_nid;
125         unsigned int pll_coef_idx, pll_coef_bit;
126         unsigned int coef0;
127 };
128
129 /*
130  * Append the given mixer and verb elements for the later use
131  * The mixer array is referred in build_controls(), and init_verbs are
132  * called in init().
133  */
134 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
135 {
136         if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
137                 return;
138         spec->mixers[spec->num_mixers++] = mix;
139 }
140
141 /*
142  * GPIO setup tables, used in initialization
143  */
144 /* Enable GPIO mask and set output */
145 static const struct hda_verb alc_gpio1_init_verbs[] = {
146         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
147         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
148         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
149         { }
150 };
151
152 static const struct hda_verb alc_gpio2_init_verbs[] = {
153         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
154         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
155         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
156         { }
157 };
158
159 static const struct hda_verb alc_gpio3_init_verbs[] = {
160         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
161         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
162         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
163         { }
164 };
165
166 /*
167  * Fix hardware PLL issue
168  * On some codecs, the analog PLL gating control must be off while
169  * the default value is 1.
170  */
171 static void alc_fix_pll(struct hda_codec *codec)
172 {
173         struct alc_spec *spec = codec->spec;
174         unsigned int val;
175
176         if (!spec->pll_nid)
177                 return;
178         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
179                             spec->pll_coef_idx);
180         val = snd_hda_codec_read(codec, spec->pll_nid, 0,
181                                  AC_VERB_GET_PROC_COEF, 0);
182         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
183                             spec->pll_coef_idx);
184         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
185                             val & ~(1 << spec->pll_coef_bit));
186 }
187
188 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
189                              unsigned int coef_idx, unsigned int coef_bit)
190 {
191         struct alc_spec *spec = codec->spec;
192         spec->pll_nid = nid;
193         spec->pll_coef_idx = coef_idx;
194         spec->pll_coef_bit = coef_bit;
195         alc_fix_pll(codec);
196 }
197
198 /* update the master volume per volume-knob's unsol event */
199 static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
200 {
201         unsigned int val;
202         struct snd_kcontrol *kctl;
203         struct snd_ctl_elem_value *uctl;
204
205         kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
206         if (!kctl)
207                 return;
208         uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
209         if (!uctl)
210                 return;
211         val = snd_hda_codec_read(codec, jack->nid, 0,
212                                  AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
213         val &= HDA_AMP_VOLMASK;
214         uctl->value.integer.value[0] = val;
215         uctl->value.integer.value[1] = val;
216         kctl->put(kctl, uctl);
217         kfree(uctl);
218 }
219
220 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
221 {
222         /* For some reason, the res given from ALC880 is broken.
223            Here we adjust it properly. */
224         snd_hda_jack_unsol_event(codec, res >> 2);
225 }
226
227 /* additional initialization for ALC888 variants */
228 static void alc888_coef_init(struct hda_codec *codec)
229 {
230         unsigned int tmp;
231
232         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
233         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
234         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
235         if ((tmp & 0xf0) == 0x20)
236                 /* alc888S-VC */
237                 snd_hda_codec_read(codec, 0x20, 0,
238                                    AC_VERB_SET_PROC_COEF, 0x830);
239          else
240                  /* alc888-VB */
241                  snd_hda_codec_read(codec, 0x20, 0,
242                                     AC_VERB_SET_PROC_COEF, 0x3030);
243 }
244
245 /* additional initialization for ALC889 variants */
246 static void alc889_coef_init(struct hda_codec *codec)
247 {
248         unsigned int tmp;
249
250         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
251         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
252         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
253         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
254 }
255
256 /* turn on/off EAPD control (only if available) */
257 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
258 {
259         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
260                 return;
261         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
262                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
263                                     on ? 2 : 0);
264 }
265
266 /* turn on/off EAPD controls of the codec */
267 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
268 {
269         /* We currently only handle front, HP */
270         static hda_nid_t pins[] = {
271                 0x0f, 0x10, 0x14, 0x15, 0
272         };
273         hda_nid_t *p;
274         for (p = pins; *p; p++)
275                 set_eapd(codec, *p, on);
276 }
277
278 /* generic shutup callback;
279  * just turning off EPAD and a little pause for avoiding pop-noise
280  */
281 static void alc_eapd_shutup(struct hda_codec *codec)
282 {
283         alc_auto_setup_eapd(codec, false);
284         msleep(200);
285         snd_hda_shutup_pins(codec);
286 }
287
288 /* generic EAPD initialization */
289 static void alc_auto_init_amp(struct hda_codec *codec, int type)
290 {
291         unsigned int tmp;
292
293         alc_auto_setup_eapd(codec, true);
294         switch (type) {
295         case ALC_INIT_GPIO1:
296                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
297                 break;
298         case ALC_INIT_GPIO2:
299                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
300                 break;
301         case ALC_INIT_GPIO3:
302                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
303                 break;
304         case ALC_INIT_DEFAULT:
305                 switch (codec->vendor_id) {
306                 case 0x10ec0260:
307                         snd_hda_codec_write(codec, 0x1a, 0,
308                                             AC_VERB_SET_COEF_INDEX, 7);
309                         tmp = snd_hda_codec_read(codec, 0x1a, 0,
310                                                  AC_VERB_GET_PROC_COEF, 0);
311                         snd_hda_codec_write(codec, 0x1a, 0,
312                                             AC_VERB_SET_COEF_INDEX, 7);
313                         snd_hda_codec_write(codec, 0x1a, 0,
314                                             AC_VERB_SET_PROC_COEF,
315                                             tmp | 0x2010);
316                         break;
317                 case 0x10ec0262:
318                 case 0x10ec0880:
319                 case 0x10ec0882:
320                 case 0x10ec0883:
321                 case 0x10ec0885:
322                 case 0x10ec0887:
323                 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
324                         alc889_coef_init(codec);
325                         break;
326                 case 0x10ec0888:
327                         alc888_coef_init(codec);
328                         break;
329 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
330                 case 0x10ec0267:
331                 case 0x10ec0268:
332                         snd_hda_codec_write(codec, 0x20, 0,
333                                             AC_VERB_SET_COEF_INDEX, 7);
334                         tmp = snd_hda_codec_read(codec, 0x20, 0,
335                                                  AC_VERB_GET_PROC_COEF, 0);
336                         snd_hda_codec_write(codec, 0x20, 0,
337                                             AC_VERB_SET_COEF_INDEX, 7);
338                         snd_hda_codec_write(codec, 0x20, 0,
339                                             AC_VERB_SET_PROC_COEF,
340                                             tmp | 0x3000);
341                         break;
342 #endif /* XXX */
343                 }
344                 break;
345         }
346 }
347
348
349 /*
350  * Realtek SSID verification
351  */
352
353 /* Could be any non-zero and even value. When used as fixup, tells
354  * the driver to ignore any present sku defines.
355  */
356 #define ALC_FIXUP_SKU_IGNORE (2)
357
358 static void alc_fixup_sku_ignore(struct hda_codec *codec,
359                                  const struct hda_fixup *fix, int action)
360 {
361         struct alc_spec *spec = codec->spec;
362         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
363                 spec->cdefine.fixup = 1;
364                 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
365         }
366 }
367
368 static int alc_auto_parse_customize_define(struct hda_codec *codec)
369 {
370         unsigned int ass, tmp, i;
371         unsigned nid = 0;
372         struct alc_spec *spec = codec->spec;
373
374         spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
375
376         if (spec->cdefine.fixup) {
377                 ass = spec->cdefine.sku_cfg;
378                 if (ass == ALC_FIXUP_SKU_IGNORE)
379                         return -1;
380                 goto do_sku;
381         }
382
383         ass = codec->subsystem_id & 0xffff;
384         if (ass != codec->bus->pci->subsystem_device && (ass & 1))
385                 goto do_sku;
386
387         nid = 0x1d;
388         if (codec->vendor_id == 0x10ec0260)
389                 nid = 0x17;
390         ass = snd_hda_codec_get_pincfg(codec, nid);
391
392         if (!(ass & 1)) {
393                 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
394                        codec->chip_name, ass);
395                 return -1;
396         }
397
398         /* check sum */
399         tmp = 0;
400         for (i = 1; i < 16; i++) {
401                 if ((ass >> i) & 1)
402                         tmp++;
403         }
404         if (((ass >> 16) & 0xf) != tmp)
405                 return -1;
406
407         spec->cdefine.port_connectivity = ass >> 30;
408         spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
409         spec->cdefine.check_sum = (ass >> 16) & 0xf;
410         spec->cdefine.customization = ass >> 8;
411 do_sku:
412         spec->cdefine.sku_cfg = ass;
413         spec->cdefine.external_amp = (ass & 0x38) >> 3;
414         spec->cdefine.platform_type = (ass & 0x4) >> 2;
415         spec->cdefine.swap = (ass & 0x2) >> 1;
416         spec->cdefine.override = ass & 0x1;
417
418         snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
419                    nid, spec->cdefine.sku_cfg);
420         snd_printd("SKU: port_connectivity=0x%x\n",
421                    spec->cdefine.port_connectivity);
422         snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
423         snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
424         snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
425         snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
426         snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
427         snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
428         snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
429
430         return 0;
431 }
432
433 /* return the position of NID in the list, or -1 if not found */
434 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
435 {
436         int i;
437         for (i = 0; i < nums; i++)
438                 if (list[i] == nid)
439                         return i;
440         return -1;
441 }
442 /* return true if the given NID is found in the list */
443 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
444 {
445         return find_idx_in_nid_list(nid, list, nums) >= 0;
446 }
447
448 /* check subsystem ID and set up device-specific initialization;
449  * return 1 if initialized, 0 if invalid SSID
450  */
451 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
452  *      31 ~ 16 :       Manufacture ID
453  *      15 ~ 8  :       SKU ID
454  *      7  ~ 0  :       Assembly ID
455  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
456  */
457 static int alc_subsystem_id(struct hda_codec *codec,
458                             hda_nid_t porta, hda_nid_t porte,
459                             hda_nid_t portd, hda_nid_t porti)
460 {
461         unsigned int ass, tmp, i;
462         unsigned nid;
463         struct alc_spec *spec = codec->spec;
464
465         if (spec->cdefine.fixup) {
466                 ass = spec->cdefine.sku_cfg;
467                 if (ass == ALC_FIXUP_SKU_IGNORE)
468                         return 0;
469                 goto do_sku;
470         }
471
472         ass = codec->subsystem_id & 0xffff;
473         if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
474                 goto do_sku;
475
476         /* invalid SSID, check the special NID pin defcfg instead */
477         /*
478          * 31~30        : port connectivity
479          * 29~21        : reserve
480          * 20           : PCBEEP input
481          * 19~16        : Check sum (15:1)
482          * 15~1         : Custom
483          * 0            : override
484         */
485         nid = 0x1d;
486         if (codec->vendor_id == 0x10ec0260)
487                 nid = 0x17;
488         ass = snd_hda_codec_get_pincfg(codec, nid);
489         snd_printd("realtek: No valid SSID, "
490                    "checking pincfg 0x%08x for NID 0x%x\n",
491                    ass, nid);
492         if (!(ass & 1))
493                 return 0;
494         if ((ass >> 30) != 1)   /* no physical connection */
495                 return 0;
496
497         /* check sum */
498         tmp = 0;
499         for (i = 1; i < 16; i++) {
500                 if ((ass >> i) & 1)
501                         tmp++;
502         }
503         if (((ass >> 16) & 0xf) != tmp)
504                 return 0;
505 do_sku:
506         snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
507                    ass & 0xffff, codec->vendor_id);
508         /*
509          * 0 : override
510          * 1 :  Swap Jack
511          * 2 : 0 --> Desktop, 1 --> Laptop
512          * 3~5 : External Amplifier control
513          * 7~6 : Reserved
514         */
515         tmp = (ass & 0x38) >> 3;        /* external Amp control */
516         switch (tmp) {
517         case 1:
518                 spec->init_amp = ALC_INIT_GPIO1;
519                 break;
520         case 3:
521                 spec->init_amp = ALC_INIT_GPIO2;
522                 break;
523         case 7:
524                 spec->init_amp = ALC_INIT_GPIO3;
525                 break;
526         case 5:
527         default:
528                 spec->init_amp = ALC_INIT_DEFAULT;
529                 break;
530         }
531
532         /* is laptop or Desktop and enable the function "Mute internal speaker
533          * when the external headphone out jack is plugged"
534          */
535         if (!(ass & 0x8000))
536                 return 1;
537         /*
538          * 10~8 : Jack location
539          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
540          * 14~13: Resvered
541          * 15   : 1 --> enable the function "Mute internal speaker
542          *              when the external headphone out jack is plugged"
543          */
544         if (!spec->gen.autocfg.hp_pins[0] &&
545             !(spec->gen.autocfg.line_out_pins[0] &&
546               spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
547                 hda_nid_t nid;
548                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
549                 if (tmp == 0)
550                         nid = porta;
551                 else if (tmp == 1)
552                         nid = porte;
553                 else if (tmp == 2)
554                         nid = portd;
555                 else if (tmp == 3)
556                         nid = porti;
557                 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
558                                       spec->gen.autocfg.line_outs))
559                         return 1;
560                 spec->gen.autocfg.hp_pins[0] = nid;
561         }
562         return 1;
563 }
564
565 /* Check the validity of ALC subsystem-id
566  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
567 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
568 {
569         if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
570                 struct alc_spec *spec = codec->spec;
571                 snd_printd("realtek: "
572                            "Enable default setup for auto mode as fallback\n");
573                 spec->init_amp = ALC_INIT_DEFAULT;
574         }
575 }
576
577 /*
578  * COEF access helper functions
579  */
580 static int alc_read_coef_idx(struct hda_codec *codec,
581                         unsigned int coef_idx)
582 {
583         unsigned int val;
584         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
585                                 coef_idx);
586         val = snd_hda_codec_read(codec, 0x20, 0,
587                                 AC_VERB_GET_PROC_COEF, 0);
588         return val;
589 }
590
591 static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
592                                                         unsigned int coef_val)
593 {
594         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
595                             coef_idx);
596         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
597                             coef_val);
598 }
599
600 /* a special bypass for COEF 0; read the cached value at the second time */
601 static unsigned int alc_get_coef0(struct hda_codec *codec)
602 {
603         struct alc_spec *spec = codec->spec;
604         if (!spec->coef0)
605                 spec->coef0 = alc_read_coef_idx(codec, 0);
606         return spec->coef0;
607 }
608
609 /*
610  */
611
612 static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
613 {
614         struct hda_gen_spec *spec = codec->spec;
615         if (spec->dyn_adc_switch)
616                 adc_idx = spec->dyn_adc_idx[imux_idx];
617         return spec->adc_nids[adc_idx];
618 }
619
620 static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
621 {
622         struct alc_spec *spec = codec->spec;
623         struct hda_input_mux *imux = &spec->gen.input_mux;
624         struct nid_path *path;
625         hda_nid_t nid;
626         int i, dir, parm;
627         unsigned int val;
628
629         for (i = 0; i < imux->num_items; i++) {
630                 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
631                         break;
632         }
633         if (i >= imux->num_items)
634                 return;
635
636         path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
637                                     get_adc_nid(codec, adc_idx, i));
638         val = path->ctls[NID_PATH_MUTE_CTL];
639         if (!val)
640                 return;
641         nid = get_amp_nid_(val);
642         dir = get_amp_direction_(val);
643         parm = AC_AMP_SET_RIGHT |
644                 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
645
646         /* flush all cached amps at first */
647         snd_hda_codec_flush_cache(codec);
648
649         /* we care only right channel */
650         val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
651         if (val & 0x80) /* if already muted, we don't need to touch */
652                 return;
653         val |= 0x80;
654         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
655                             parm | val);
656 }
657
658 /*
659  * Inverted digital-mic handling
660  *
661  * First off, it's a bit tricky.  The "Inverted Internal Mic Capture Switch"
662  * gives the additional mute only to the right channel of the digital mic
663  * capture stream.  This is a workaround for avoiding the almost silence
664  * by summing the stereo stream from some (known to be ForteMedia)
665  * digital mic unit.
666  *
667  * The logic is to call alc_inv_dmic_sync() after each action (possibly)
668  * modifying ADC amp.  When the mute flag is set, it mutes the R-channel
669  * without caching so that the cache can still keep the original value.
670  * The cached value is then restored when the flag is set off or any other
671  * than d-mic is used as the current input source.
672  */
673 static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
674 {
675         struct alc_spec *spec = codec->spec;
676         int src, nums;
677
678         if (!spec->inv_dmic_fixup)
679                 return;
680         if (!spec->inv_dmic_muted && !force)
681                 return;
682         nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
683         for (src = 0; src < nums; src++) {
684                 bool dmic_fixup = false;
685
686                 if (spec->inv_dmic_muted &&
687                     spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
688                         dmic_fixup = true;
689                 if (!dmic_fixup && !force)
690                         continue;
691                 alc_inv_dmic_sync_adc(codec, src);
692         }
693 }
694
695 static void alc_inv_dmic_hook(struct hda_codec *codec,
696                              struct snd_ctl_elem_value *ucontrol)
697 {
698         alc_inv_dmic_sync(codec, false);
699 }
700
701 static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
702                                struct snd_ctl_elem_value *ucontrol)
703 {
704         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
705         struct alc_spec *spec = codec->spec;
706
707         ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
708         return 0;
709 }
710
711 static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
712                                struct snd_ctl_elem_value *ucontrol)
713 {
714         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
715         struct alc_spec *spec = codec->spec;
716         unsigned int val = !ucontrol->value.integer.value[0];
717
718         if (val == spec->inv_dmic_muted)
719                 return 0;
720         spec->inv_dmic_muted = val;
721         alc_inv_dmic_sync(codec, true);
722         return 0;
723 }
724
725 static const struct snd_kcontrol_new alc_inv_dmic_sw = {
726         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
727         .name = "Inverted Internal Mic Capture Switch",
728         .info = snd_ctl_boolean_mono_info,
729         .get = alc_inv_dmic_sw_get,
730         .put = alc_inv_dmic_sw_put,
731 };
732
733 static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
734 {
735         struct alc_spec *spec = codec->spec;
736
737         if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
738                 return -ENOMEM;
739         spec->inv_dmic_fixup = 1;
740         spec->inv_dmic_muted = 0;
741         spec->inv_dmic_pin = nid;
742         spec->gen.cap_sync_hook = alc_inv_dmic_hook;
743         return 0;
744 }
745
746 /* typically the digital mic is put at node 0x12 */
747 static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
748                                     const struct hda_fixup *fix, int action)
749 {
750         if (action == HDA_FIXUP_ACT_PROBE)
751                 alc_add_inv_dmic_mixer(codec, 0x12);
752 }
753
754
755 #ifdef CONFIG_SND_HDA_INPUT_BEEP
756 /* additional beep mixers; the actual parameters are overwritten at build */
757 static const struct snd_kcontrol_new alc_beep_mixer[] = {
758         HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
759         HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
760         { } /* end */
761 };
762 #endif
763
764 static int alc_build_controls(struct hda_codec *codec)
765 {
766         struct alc_spec *spec = codec->spec;
767         int i, err;
768
769         err = snd_hda_gen_build_controls(codec);
770         if (err < 0)
771                 return err;
772
773         for (i = 0; i < spec->num_mixers; i++) {
774                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
775                 if (err < 0)
776                         return err;
777         }
778
779 #ifdef CONFIG_SND_HDA_INPUT_BEEP
780         /* create beep controls if needed */
781         if (spec->beep_amp) {
782                 const struct snd_kcontrol_new *knew;
783                 for (knew = alc_beep_mixer; knew->name; knew++) {
784                         struct snd_kcontrol *kctl;
785                         kctl = snd_ctl_new1(knew, codec);
786                         if (!kctl)
787                                 return -ENOMEM;
788                         kctl->private_value = spec->beep_amp;
789                         err = snd_hda_ctl_add(codec, 0, kctl);
790                         if (err < 0)
791                                 return err;
792                 }
793         }
794 #endif
795
796         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
797         return 0;
798 }
799
800
801 /*
802  * Common callbacks
803  */
804
805 static int alc_init(struct hda_codec *codec)
806 {
807         struct alc_spec *spec = codec->spec;
808
809         if (spec->init_hook)
810                 spec->init_hook(codec);
811
812         alc_fix_pll(codec);
813         alc_auto_init_amp(codec, spec->init_amp);
814
815         snd_hda_gen_init(codec);
816
817         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
818
819         return 0;
820 }
821
822 static inline void alc_shutup(struct hda_codec *codec)
823 {
824         struct alc_spec *spec = codec->spec;
825
826         if (spec && spec->shutup)
827                 spec->shutup(codec);
828         else
829                 snd_hda_shutup_pins(codec);
830 }
831
832 static void alc_free(struct hda_codec *codec)
833 {
834         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_FREE);
835         snd_hda_gen_free(codec);
836 }
837
838 #ifdef CONFIG_PM
839 static void alc_power_eapd(struct hda_codec *codec)
840 {
841         alc_auto_setup_eapd(codec, false);
842 }
843
844 static int alc_suspend(struct hda_codec *codec)
845 {
846         struct alc_spec *spec = codec->spec;
847         alc_shutup(codec);
848         if (spec && spec->power_hook)
849                 spec->power_hook(codec);
850         return 0;
851 }
852 #endif
853
854 #ifdef CONFIG_PM
855 static int alc_resume(struct hda_codec *codec)
856 {
857         msleep(150); /* to avoid pop noise */
858         codec->patch_ops.init(codec);
859         snd_hda_codec_resume_amp(codec);
860         snd_hda_codec_resume_cache(codec);
861         alc_inv_dmic_sync(codec, true);
862         hda_call_check_power_status(codec, 0x01);
863         return 0;
864 }
865 #endif
866
867 /*
868  */
869 static const struct hda_codec_ops alc_patch_ops = {
870         .build_controls = alc_build_controls,
871         .build_pcms = snd_hda_gen_build_pcms,
872         .init = alc_init,
873         .free = alc_free,
874         .unsol_event = snd_hda_jack_unsol_event,
875 #ifdef CONFIG_PM
876         .resume = alc_resume,
877         .suspend = alc_suspend,
878         .check_power_status = snd_hda_gen_check_power_status,
879 #endif
880         .reboot_notify = alc_shutup,
881 };
882
883
884 /* replace the codec chip_name with the given string */
885 static int alc_codec_rename(struct hda_codec *codec, const char *name)
886 {
887         kfree(codec->chip_name);
888         codec->chip_name = kstrdup(name, GFP_KERNEL);
889         if (!codec->chip_name) {
890                 alc_free(codec);
891                 return -ENOMEM;
892         }
893         return 0;
894 }
895
896 /*
897  * Rename codecs appropriately from COEF value
898  */
899 struct alc_codec_rename_table {
900         unsigned int vendor_id;
901         unsigned short coef_mask;
902         unsigned short coef_bits;
903         const char *name;
904 };
905
906 static struct alc_codec_rename_table rename_tbl[] = {
907         { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
908         { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
909         { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
910         { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
911         { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
912         { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
913         { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
914         { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
915         { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
916         { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
917         { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
918         { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
919         { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
920         { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
921         { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
922         { } /* terminator */
923 };
924
925 static int alc_codec_rename_from_preset(struct hda_codec *codec)
926 {
927         const struct alc_codec_rename_table *p;
928
929         for (p = rename_tbl; p->vendor_id; p++) {
930                 if (p->vendor_id != codec->vendor_id)
931                         continue;
932                 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
933                         return alc_codec_rename(codec, p->name);
934         }
935         return 0;
936 }
937
938
939 /*
940  * Digital-beep handlers
941  */
942 #ifdef CONFIG_SND_HDA_INPUT_BEEP
943 #define set_beep_amp(spec, nid, idx, dir) \
944         ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
945
946 static const struct snd_pci_quirk beep_white_list[] = {
947         SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
948         SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
949         SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
950         SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
951         SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
952         SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
953         SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
954         SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
955         {}
956 };
957
958 static inline int has_cdefine_beep(struct hda_codec *codec)
959 {
960         struct alc_spec *spec = codec->spec;
961         const struct snd_pci_quirk *q;
962         q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
963         if (q)
964                 return q->value;
965         return spec->cdefine.enable_pcbeep;
966 }
967 #else
968 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
969 #define has_cdefine_beep(codec)         0
970 #endif
971
972 /* parse the BIOS configuration and set up the alc_spec */
973 /* return 1 if successful, 0 if the proper config is not found,
974  * or a negative error code
975  */
976 static int alc_parse_auto_config(struct hda_codec *codec,
977                                  const hda_nid_t *ignore_nids,
978                                  const hda_nid_t *ssid_nids)
979 {
980         struct alc_spec *spec = codec->spec;
981         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
982         int err;
983
984         err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
985                                        spec->parse_flags);
986         if (err < 0)
987                 return err;
988
989         if (ssid_nids)
990                 alc_ssid_check(codec, ssid_nids);
991
992         err = snd_hda_gen_parse_auto_config(codec, cfg);
993         if (err < 0)
994                 return err;
995
996         return 1;
997 }
998
999 /* common preparation job for alc_spec */
1000 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1001 {
1002         struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1003         int err;
1004
1005         if (!spec)
1006                 return -ENOMEM;
1007         codec->spec = spec;
1008         snd_hda_gen_spec_init(&spec->gen);
1009         spec->gen.mixer_nid = mixer_nid;
1010         spec->gen.own_eapd_ctl = 1;
1011         codec->single_adc_amp = 1;
1012         /* FIXME: do we need this for all Realtek codec models? */
1013         codec->spdif_status_reset = 1;
1014
1015         err = alc_codec_rename_from_preset(codec);
1016         if (err < 0) {
1017                 kfree(spec);
1018                 return err;
1019         }
1020         return 0;
1021 }
1022
1023 static int alc880_parse_auto_config(struct hda_codec *codec)
1024 {
1025         static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1026         static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1027         return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1028 }
1029
1030 /*
1031  * ALC880 fix-ups
1032  */
1033 enum {
1034         ALC880_FIXUP_GPIO1,
1035         ALC880_FIXUP_GPIO2,
1036         ALC880_FIXUP_MEDION_RIM,
1037         ALC880_FIXUP_LG,
1038         ALC880_FIXUP_LG_LW25,
1039         ALC880_FIXUP_W810,
1040         ALC880_FIXUP_EAPD_COEF,
1041         ALC880_FIXUP_TCL_S700,
1042         ALC880_FIXUP_VOL_KNOB,
1043         ALC880_FIXUP_FUJITSU,
1044         ALC880_FIXUP_F1734,
1045         ALC880_FIXUP_UNIWILL,
1046         ALC880_FIXUP_UNIWILL_DIG,
1047         ALC880_FIXUP_Z71V,
1048         ALC880_FIXUP_3ST_BASE,
1049         ALC880_FIXUP_3ST,
1050         ALC880_FIXUP_3ST_DIG,
1051         ALC880_FIXUP_5ST_BASE,
1052         ALC880_FIXUP_5ST,
1053         ALC880_FIXUP_5ST_DIG,
1054         ALC880_FIXUP_6ST_BASE,
1055         ALC880_FIXUP_6ST,
1056         ALC880_FIXUP_6ST_DIG,
1057         ALC880_FIXUP_6ST_AUTOMUTE,
1058 };
1059
1060 /* enable the volume-knob widget support on NID 0x21 */
1061 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1062                                   const struct hda_fixup *fix, int action)
1063 {
1064         if (action == HDA_FIXUP_ACT_PROBE)
1065                 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
1066 }
1067
1068 static const struct hda_fixup alc880_fixups[] = {
1069         [ALC880_FIXUP_GPIO1] = {
1070                 .type = HDA_FIXUP_VERBS,
1071                 .v.verbs = alc_gpio1_init_verbs,
1072         },
1073         [ALC880_FIXUP_GPIO2] = {
1074                 .type = HDA_FIXUP_VERBS,
1075                 .v.verbs = alc_gpio2_init_verbs,
1076         },
1077         [ALC880_FIXUP_MEDION_RIM] = {
1078                 .type = HDA_FIXUP_VERBS,
1079                 .v.verbs = (const struct hda_verb[]) {
1080                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1081                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1082                         { }
1083                 },
1084                 .chained = true,
1085                 .chain_id = ALC880_FIXUP_GPIO2,
1086         },
1087         [ALC880_FIXUP_LG] = {
1088                 .type = HDA_FIXUP_PINS,
1089                 .v.pins = (const struct hda_pintbl[]) {
1090                         /* disable bogus unused pins */
1091                         { 0x16, 0x411111f0 },
1092                         { 0x18, 0x411111f0 },
1093                         { 0x1a, 0x411111f0 },
1094                         { }
1095                 }
1096         },
1097         [ALC880_FIXUP_LG_LW25] = {
1098                 .type = HDA_FIXUP_PINS,
1099                 .v.pins = (const struct hda_pintbl[]) {
1100                         { 0x1a, 0x0181344f }, /* line-in */
1101                         { 0x1b, 0x0321403f }, /* headphone */
1102                         { }
1103                 }
1104         },
1105         [ALC880_FIXUP_W810] = {
1106                 .type = HDA_FIXUP_PINS,
1107                 .v.pins = (const struct hda_pintbl[]) {
1108                         /* disable bogus unused pins */
1109                         { 0x17, 0x411111f0 },
1110                         { }
1111                 },
1112                 .chained = true,
1113                 .chain_id = ALC880_FIXUP_GPIO2,
1114         },
1115         [ALC880_FIXUP_EAPD_COEF] = {
1116                 .type = HDA_FIXUP_VERBS,
1117                 .v.verbs = (const struct hda_verb[]) {
1118                         /* change to EAPD mode */
1119                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1120                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1121                         {}
1122                 },
1123         },
1124         [ALC880_FIXUP_TCL_S700] = {
1125                 .type = HDA_FIXUP_VERBS,
1126                 .v.verbs = (const struct hda_verb[]) {
1127                         /* change to EAPD mode */
1128                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1129                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
1130                         {}
1131                 },
1132                 .chained = true,
1133                 .chain_id = ALC880_FIXUP_GPIO2,
1134         },
1135         [ALC880_FIXUP_VOL_KNOB] = {
1136                 .type = HDA_FIXUP_FUNC,
1137                 .v.func = alc880_fixup_vol_knob,
1138         },
1139         [ALC880_FIXUP_FUJITSU] = {
1140                 /* override all pins as BIOS on old Amilo is broken */
1141                 .type = HDA_FIXUP_PINS,
1142                 .v.pins = (const struct hda_pintbl[]) {
1143                         { 0x14, 0x0121411f }, /* HP */
1144                         { 0x15, 0x99030120 }, /* speaker */
1145                         { 0x16, 0x99030130 }, /* bass speaker */
1146                         { 0x17, 0x411111f0 }, /* N/A */
1147                         { 0x18, 0x411111f0 }, /* N/A */
1148                         { 0x19, 0x01a19950 }, /* mic-in */
1149                         { 0x1a, 0x411111f0 }, /* N/A */
1150                         { 0x1b, 0x411111f0 }, /* N/A */
1151                         { 0x1c, 0x411111f0 }, /* N/A */
1152                         { 0x1d, 0x411111f0 }, /* N/A */
1153                         { 0x1e, 0x01454140 }, /* SPDIF out */
1154                         { }
1155                 },
1156                 .chained = true,
1157                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1158         },
1159         [ALC880_FIXUP_F1734] = {
1160                 /* almost compatible with FUJITSU, but no bass and SPDIF */
1161                 .type = HDA_FIXUP_PINS,
1162                 .v.pins = (const struct hda_pintbl[]) {
1163                         { 0x14, 0x0121411f }, /* HP */
1164                         { 0x15, 0x99030120 }, /* speaker */
1165                         { 0x16, 0x411111f0 }, /* N/A */
1166                         { 0x17, 0x411111f0 }, /* N/A */
1167                         { 0x18, 0x411111f0 }, /* N/A */
1168                         { 0x19, 0x01a19950 }, /* mic-in */
1169                         { 0x1a, 0x411111f0 }, /* N/A */
1170                         { 0x1b, 0x411111f0 }, /* N/A */
1171                         { 0x1c, 0x411111f0 }, /* N/A */
1172                         { 0x1d, 0x411111f0 }, /* N/A */
1173                         { 0x1e, 0x411111f0 }, /* N/A */
1174                         { }
1175                 },
1176                 .chained = true,
1177                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1178         },
1179         [ALC880_FIXUP_UNIWILL] = {
1180                 /* need to fix HP and speaker pins to be parsed correctly */
1181                 .type = HDA_FIXUP_PINS,
1182                 .v.pins = (const struct hda_pintbl[]) {
1183                         { 0x14, 0x0121411f }, /* HP */
1184                         { 0x15, 0x99030120 }, /* speaker */
1185                         { 0x16, 0x99030130 }, /* bass speaker */
1186                         { }
1187                 },
1188         },
1189         [ALC880_FIXUP_UNIWILL_DIG] = {
1190                 .type = HDA_FIXUP_PINS,
1191                 .v.pins = (const struct hda_pintbl[]) {
1192                         /* disable bogus unused pins */
1193                         { 0x17, 0x411111f0 },
1194                         { 0x19, 0x411111f0 },
1195                         { 0x1b, 0x411111f0 },
1196                         { 0x1f, 0x411111f0 },
1197                         { }
1198                 }
1199         },
1200         [ALC880_FIXUP_Z71V] = {
1201                 .type = HDA_FIXUP_PINS,
1202                 .v.pins = (const struct hda_pintbl[]) {
1203                         /* set up the whole pins as BIOS is utterly broken */
1204                         { 0x14, 0x99030120 }, /* speaker */
1205                         { 0x15, 0x0121411f }, /* HP */
1206                         { 0x16, 0x411111f0 }, /* N/A */
1207                         { 0x17, 0x411111f0 }, /* N/A */
1208                         { 0x18, 0x01a19950 }, /* mic-in */
1209                         { 0x19, 0x411111f0 }, /* N/A */
1210                         { 0x1a, 0x01813031 }, /* line-in */
1211                         { 0x1b, 0x411111f0 }, /* N/A */
1212                         { 0x1c, 0x411111f0 }, /* N/A */
1213                         { 0x1d, 0x411111f0 }, /* N/A */
1214                         { 0x1e, 0x0144111e }, /* SPDIF */
1215                         { }
1216                 }
1217         },
1218         [ALC880_FIXUP_3ST_BASE] = {
1219                 .type = HDA_FIXUP_PINS,
1220                 .v.pins = (const struct hda_pintbl[]) {
1221                         { 0x14, 0x01014010 }, /* line-out */
1222                         { 0x15, 0x411111f0 }, /* N/A */
1223                         { 0x16, 0x411111f0 }, /* N/A */
1224                         { 0x17, 0x411111f0 }, /* N/A */
1225                         { 0x18, 0x01a19c30 }, /* mic-in */
1226                         { 0x19, 0x0121411f }, /* HP */
1227                         { 0x1a, 0x01813031 }, /* line-in */
1228                         { 0x1b, 0x02a19c40 }, /* front-mic */
1229                         { 0x1c, 0x411111f0 }, /* N/A */
1230                         { 0x1d, 0x411111f0 }, /* N/A */
1231                         /* 0x1e is filled in below */
1232                         { 0x1f, 0x411111f0 }, /* N/A */
1233                         { }
1234                 }
1235         },
1236         [ALC880_FIXUP_3ST] = {
1237                 .type = HDA_FIXUP_PINS,
1238                 .v.pins = (const struct hda_pintbl[]) {
1239                         { 0x1e, 0x411111f0 }, /* N/A */
1240                         { }
1241                 },
1242                 .chained = true,
1243                 .chain_id = ALC880_FIXUP_3ST_BASE,
1244         },
1245         [ALC880_FIXUP_3ST_DIG] = {
1246                 .type = HDA_FIXUP_PINS,
1247                 .v.pins = (const struct hda_pintbl[]) {
1248                         { 0x1e, 0x0144111e }, /* SPDIF */
1249                         { }
1250                 },
1251                 .chained = true,
1252                 .chain_id = ALC880_FIXUP_3ST_BASE,
1253         },
1254         [ALC880_FIXUP_5ST_BASE] = {
1255                 .type = HDA_FIXUP_PINS,
1256                 .v.pins = (const struct hda_pintbl[]) {
1257                         { 0x14, 0x01014010 }, /* front */
1258                         { 0x15, 0x411111f0 }, /* N/A */
1259                         { 0x16, 0x01011411 }, /* CLFE */
1260                         { 0x17, 0x01016412 }, /* surr */
1261                         { 0x18, 0x01a19c30 }, /* mic-in */
1262                         { 0x19, 0x0121411f }, /* HP */
1263                         { 0x1a, 0x01813031 }, /* line-in */
1264                         { 0x1b, 0x02a19c40 }, /* front-mic */
1265                         { 0x1c, 0x411111f0 }, /* N/A */
1266                         { 0x1d, 0x411111f0 }, /* N/A */
1267                         /* 0x1e is filled in below */
1268                         { 0x1f, 0x411111f0 }, /* N/A */
1269                         { }
1270                 }
1271         },
1272         [ALC880_FIXUP_5ST] = {
1273                 .type = HDA_FIXUP_PINS,
1274                 .v.pins = (const struct hda_pintbl[]) {
1275                         { 0x1e, 0x411111f0 }, /* N/A */
1276                         { }
1277                 },
1278                 .chained = true,
1279                 .chain_id = ALC880_FIXUP_5ST_BASE,
1280         },
1281         [ALC880_FIXUP_5ST_DIG] = {
1282                 .type = HDA_FIXUP_PINS,
1283                 .v.pins = (const struct hda_pintbl[]) {
1284                         { 0x1e, 0x0144111e }, /* SPDIF */
1285                         { }
1286                 },
1287                 .chained = true,
1288                 .chain_id = ALC880_FIXUP_5ST_BASE,
1289         },
1290         [ALC880_FIXUP_6ST_BASE] = {
1291                 .type = HDA_FIXUP_PINS,
1292                 .v.pins = (const struct hda_pintbl[]) {
1293                         { 0x14, 0x01014010 }, /* front */
1294                         { 0x15, 0x01016412 }, /* surr */
1295                         { 0x16, 0x01011411 }, /* CLFE */
1296                         { 0x17, 0x01012414 }, /* side */
1297                         { 0x18, 0x01a19c30 }, /* mic-in */
1298                         { 0x19, 0x02a19c40 }, /* front-mic */
1299                         { 0x1a, 0x01813031 }, /* line-in */
1300                         { 0x1b, 0x0121411f }, /* HP */
1301                         { 0x1c, 0x411111f0 }, /* N/A */
1302                         { 0x1d, 0x411111f0 }, /* N/A */
1303                         /* 0x1e is filled in below */
1304                         { 0x1f, 0x411111f0 }, /* N/A */
1305                         { }
1306                 }
1307         },
1308         [ALC880_FIXUP_6ST] = {
1309                 .type = HDA_FIXUP_PINS,
1310                 .v.pins = (const struct hda_pintbl[]) {
1311                         { 0x1e, 0x411111f0 }, /* N/A */
1312                         { }
1313                 },
1314                 .chained = true,
1315                 .chain_id = ALC880_FIXUP_6ST_BASE,
1316         },
1317         [ALC880_FIXUP_6ST_DIG] = {
1318                 .type = HDA_FIXUP_PINS,
1319                 .v.pins = (const struct hda_pintbl[]) {
1320                         { 0x1e, 0x0144111e }, /* SPDIF */
1321                         { }
1322                 },
1323                 .chained = true,
1324                 .chain_id = ALC880_FIXUP_6ST_BASE,
1325         },
1326         [ALC880_FIXUP_6ST_AUTOMUTE] = {
1327                 .type = HDA_FIXUP_PINS,
1328                 .v.pins = (const struct hda_pintbl[]) {
1329                         { 0x1b, 0x0121401f }, /* HP with jack detect */
1330                         { }
1331                 },
1332                 .chained_before = true,
1333                 .chain_id = ALC880_FIXUP_6ST_BASE,
1334         },
1335 };
1336
1337 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1338         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1339         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1340         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1341         SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1342         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1343         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1344         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1345         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1346         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1347         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1348         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1349         SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1350         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
1351         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1352         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1353         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1354         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1355         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1356         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1357         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1358         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1359
1360         /* Below is the copied entries from alc880_quirks.c.
1361          * It's not quite sure whether BIOS sets the correct pin-config table
1362          * on these machines, thus they are kept to be compatible with
1363          * the old static quirks.  Once when it's confirmed to work without
1364          * these overrides, it'd be better to remove.
1365          */
1366         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1367         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1368         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1369         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1370         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1371         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1372         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1373         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1374         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1375         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1376         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1377         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1378         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1379         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1380         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1381         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1382         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1383         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1384         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1385         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1386         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1387         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1388         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1389         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1390         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1391         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1392         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1393         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1394         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1395         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1396         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1397         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1398         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1399         /* default Intel */
1400         SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1401         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1402         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1403         {}
1404 };
1405
1406 static const struct hda_model_fixup alc880_fixup_models[] = {
1407         {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1408         {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1409         {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1410         {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1411         {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1412         {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1413         {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1414         {}
1415 };
1416
1417
1418 /*
1419  * OK, here we have finally the patch for ALC880
1420  */
1421 static int patch_alc880(struct hda_codec *codec)
1422 {
1423         struct alc_spec *spec;
1424         int err;
1425
1426         err = alc_alloc_spec(codec, 0x0b);
1427         if (err < 0)
1428                 return err;
1429
1430         spec = codec->spec;
1431         spec->gen.need_dac_fix = 1;
1432         spec->gen.beep_nid = 0x01;
1433
1434         snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1435                        alc880_fixups);
1436         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1437
1438         /* automatic parse from the BIOS config */
1439         err = alc880_parse_auto_config(codec);
1440         if (err < 0)
1441                 goto error;
1442
1443         if (!spec->gen.no_analog)
1444                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1445
1446         codec->patch_ops = alc_patch_ops;
1447         codec->patch_ops.unsol_event = alc880_unsol_event;
1448
1449
1450         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1451
1452         return 0;
1453
1454  error:
1455         alc_free(codec);
1456         return err;
1457 }
1458
1459
1460 /*
1461  * ALC260 support
1462  */
1463 static int alc260_parse_auto_config(struct hda_codec *codec)
1464 {
1465         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1466         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1467         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1468 }
1469
1470 /*
1471  * Pin config fixes
1472  */
1473 enum {
1474         ALC260_FIXUP_HP_DC5750,
1475         ALC260_FIXUP_HP_PIN_0F,
1476         ALC260_FIXUP_COEF,
1477         ALC260_FIXUP_GPIO1,
1478         ALC260_FIXUP_GPIO1_TOGGLE,
1479         ALC260_FIXUP_REPLACER,
1480         ALC260_FIXUP_HP_B1900,
1481         ALC260_FIXUP_KN1,
1482         ALC260_FIXUP_FSC_S7020,
1483         ALC260_FIXUP_FSC_S7020_JWSE,
1484 };
1485
1486 static void alc260_gpio1_automute(struct hda_codec *codec)
1487 {
1488         struct alc_spec *spec = codec->spec;
1489         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1490                             spec->gen.hp_jack_present);
1491 }
1492
1493 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1494                                       const struct hda_fixup *fix, int action)
1495 {
1496         struct alc_spec *spec = codec->spec;
1497         if (action == HDA_FIXUP_ACT_PROBE) {
1498                 /* although the machine has only one output pin, we need to
1499                  * toggle GPIO1 according to the jack state
1500                  */
1501                 spec->gen.automute_hook = alc260_gpio1_automute;
1502                 spec->gen.detect_hp = 1;
1503                 spec->gen.automute_speaker = 1;
1504                 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1505                 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1506                                                     snd_hda_gen_hp_automute);
1507                 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
1508         }
1509 }
1510
1511 static void alc260_fixup_kn1(struct hda_codec *codec,
1512                              const struct hda_fixup *fix, int action)
1513 {
1514         struct alc_spec *spec = codec->spec;
1515         static const struct hda_pintbl pincfgs[] = {
1516                 { 0x0f, 0x02214000 }, /* HP/speaker */
1517                 { 0x12, 0x90a60160 }, /* int mic */
1518                 { 0x13, 0x02a19000 }, /* ext mic */
1519                 { 0x18, 0x01446000 }, /* SPDIF out */
1520                 /* disable bogus I/O pins */
1521                 { 0x10, 0x411111f0 },
1522                 { 0x11, 0x411111f0 },
1523                 { 0x14, 0x411111f0 },
1524                 { 0x15, 0x411111f0 },
1525                 { 0x16, 0x411111f0 },
1526                 { 0x17, 0x411111f0 },
1527                 { 0x19, 0x411111f0 },
1528                 { }
1529         };
1530
1531         switch (action) {
1532         case HDA_FIXUP_ACT_PRE_PROBE:
1533                 snd_hda_apply_pincfgs(codec, pincfgs);
1534                 break;
1535         case HDA_FIXUP_ACT_PROBE:
1536                 spec->init_amp = ALC_INIT_NONE;
1537                 break;
1538         }
1539 }
1540
1541 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1542                                    const struct hda_fixup *fix, int action)
1543 {
1544         struct alc_spec *spec = codec->spec;
1545         if (action == HDA_FIXUP_ACT_PROBE)
1546                 spec->init_amp = ALC_INIT_NONE;
1547 }
1548
1549 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1550                                    const struct hda_fixup *fix, int action)
1551 {
1552         struct alc_spec *spec = codec->spec;
1553         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1554                 spec->gen.add_jack_modes = 1;
1555                 spec->gen.hp_mic = 1;
1556         }
1557 }
1558
1559 static const struct hda_fixup alc260_fixups[] = {
1560         [ALC260_FIXUP_HP_DC5750] = {
1561                 .type = HDA_FIXUP_PINS,
1562                 .v.pins = (const struct hda_pintbl[]) {
1563                         { 0x11, 0x90130110 }, /* speaker */
1564                         { }
1565                 }
1566         },
1567         [ALC260_FIXUP_HP_PIN_0F] = {
1568                 .type = HDA_FIXUP_PINS,
1569                 .v.pins = (const struct hda_pintbl[]) {
1570                         { 0x0f, 0x01214000 }, /* HP */
1571                         { }
1572                 }
1573         },
1574         [ALC260_FIXUP_COEF] = {
1575                 .type = HDA_FIXUP_VERBS,
1576                 .v.verbs = (const struct hda_verb[]) {
1577                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1578                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3040 },
1579                         { }
1580                 },
1581                 .chained = true,
1582                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1583         },
1584         [ALC260_FIXUP_GPIO1] = {
1585                 .type = HDA_FIXUP_VERBS,
1586                 .v.verbs = alc_gpio1_init_verbs,
1587         },
1588         [ALC260_FIXUP_GPIO1_TOGGLE] = {
1589                 .type = HDA_FIXUP_FUNC,
1590                 .v.func = alc260_fixup_gpio1_toggle,
1591                 .chained = true,
1592                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1593         },
1594         [ALC260_FIXUP_REPLACER] = {
1595                 .type = HDA_FIXUP_VERBS,
1596                 .v.verbs = (const struct hda_verb[]) {
1597                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1598                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3050 },
1599                         { }
1600                 },
1601                 .chained = true,
1602                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1603         },
1604         [ALC260_FIXUP_HP_B1900] = {
1605                 .type = HDA_FIXUP_FUNC,
1606                 .v.func = alc260_fixup_gpio1_toggle,
1607                 .chained = true,
1608                 .chain_id = ALC260_FIXUP_COEF,
1609         },
1610         [ALC260_FIXUP_KN1] = {
1611                 .type = HDA_FIXUP_FUNC,
1612                 .v.func = alc260_fixup_kn1,
1613         },
1614         [ALC260_FIXUP_FSC_S7020] = {
1615                 .type = HDA_FIXUP_FUNC,
1616                 .v.func = alc260_fixup_fsc_s7020,
1617         },
1618         [ALC260_FIXUP_FSC_S7020_JWSE] = {
1619                 .type = HDA_FIXUP_FUNC,
1620                 .v.func = alc260_fixup_fsc_s7020_jwse,
1621                 .chained = true,
1622                 .chain_id = ALC260_FIXUP_FSC_S7020,
1623         },
1624 };
1625
1626 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1627         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1628         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1629         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1630         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1631         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1632         SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1633         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1634         SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1635         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1636         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1637         {}
1638 };
1639
1640 static const struct hda_model_fixup alc260_fixup_models[] = {
1641         {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1642         {.id = ALC260_FIXUP_COEF, .name = "coef"},
1643         {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1644         {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1645         {}
1646 };
1647
1648 /*
1649  */
1650 static int patch_alc260(struct hda_codec *codec)
1651 {
1652         struct alc_spec *spec;
1653         int err;
1654
1655         err = alc_alloc_spec(codec, 0x07);
1656         if (err < 0)
1657                 return err;
1658
1659         spec = codec->spec;
1660         /* as quite a few machines require HP amp for speaker outputs,
1661          * it's easier to enable it unconditionally; even if it's unneeded,
1662          * it's almost harmless.
1663          */
1664         spec->gen.prefer_hp_amp = 1;
1665         spec->gen.beep_nid = 0x01;
1666
1667         snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1668                            alc260_fixups);
1669         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1670
1671         /* automatic parse from the BIOS config */
1672         err = alc260_parse_auto_config(codec);
1673         if (err < 0)
1674                 goto error;
1675
1676         if (!spec->gen.no_analog)
1677                 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1678
1679         codec->patch_ops = alc_patch_ops;
1680         spec->shutup = alc_eapd_shutup;
1681
1682         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1683
1684         return 0;
1685
1686  error:
1687         alc_free(codec);
1688         return err;
1689 }
1690
1691
1692 /*
1693  * ALC882/883/885/888/889 support
1694  *
1695  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1696  * configuration.  Each pin widget can choose any input DACs and a mixer.
1697  * Each ADC is connected from a mixer of all inputs.  This makes possible
1698  * 6-channel independent captures.
1699  *
1700  * In addition, an independent DAC for the multi-playback (not used in this
1701  * driver yet).
1702  */
1703
1704 /*
1705  * Pin config fixes
1706  */
1707 enum {
1708         ALC882_FIXUP_ABIT_AW9D_MAX,
1709         ALC882_FIXUP_LENOVO_Y530,
1710         ALC882_FIXUP_PB_M5210,
1711         ALC882_FIXUP_ACER_ASPIRE_7736,
1712         ALC882_FIXUP_ASUS_W90V,
1713         ALC889_FIXUP_CD,
1714         ALC889_FIXUP_VAIO_TT,
1715         ALC888_FIXUP_EEE1601,
1716         ALC882_FIXUP_EAPD,
1717         ALC883_FIXUP_EAPD,
1718         ALC883_FIXUP_ACER_EAPD,
1719         ALC882_FIXUP_GPIO1,
1720         ALC882_FIXUP_GPIO2,
1721         ALC882_FIXUP_GPIO3,
1722         ALC889_FIXUP_COEF,
1723         ALC882_FIXUP_ASUS_W2JC,
1724         ALC882_FIXUP_ACER_ASPIRE_4930G,
1725         ALC882_FIXUP_ACER_ASPIRE_8930G,
1726         ALC882_FIXUP_ASPIRE_8930G_VERBS,
1727         ALC885_FIXUP_MACPRO_GPIO,
1728         ALC889_FIXUP_DAC_ROUTE,
1729         ALC889_FIXUP_MBP_VREF,
1730         ALC889_FIXUP_IMAC91_VREF,
1731         ALC882_FIXUP_INV_DMIC,
1732         ALC882_FIXUP_NO_PRIMARY_HP,
1733 };
1734
1735 static void alc889_fixup_coef(struct hda_codec *codec,
1736                               const struct hda_fixup *fix, int action)
1737 {
1738         if (action != HDA_FIXUP_ACT_INIT)
1739                 return;
1740         alc889_coef_init(codec);
1741 }
1742
1743 /* toggle speaker-output according to the hp-jack state */
1744 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1745 {
1746         unsigned int gpiostate, gpiomask, gpiodir;
1747
1748         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1749                                        AC_VERB_GET_GPIO_DATA, 0);
1750
1751         if (!muted)
1752                 gpiostate |= (1 << pin);
1753         else
1754                 gpiostate &= ~(1 << pin);
1755
1756         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1757                                       AC_VERB_GET_GPIO_MASK, 0);
1758         gpiomask |= (1 << pin);
1759
1760         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1761                                      AC_VERB_GET_GPIO_DIRECTION, 0);
1762         gpiodir |= (1 << pin);
1763
1764
1765         snd_hda_codec_write(codec, codec->afg, 0,
1766                             AC_VERB_SET_GPIO_MASK, gpiomask);
1767         snd_hda_codec_write(codec, codec->afg, 0,
1768                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1769
1770         msleep(1);
1771
1772         snd_hda_codec_write(codec, codec->afg, 0,
1773                             AC_VERB_SET_GPIO_DATA, gpiostate);
1774 }
1775
1776 /* set up GPIO at initialization */
1777 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1778                                      const struct hda_fixup *fix, int action)
1779 {
1780         if (action != HDA_FIXUP_ACT_INIT)
1781                 return;
1782         alc882_gpio_mute(codec, 0, 0);
1783         alc882_gpio_mute(codec, 1, 0);
1784 }
1785
1786 /* Fix the connection of some pins for ALC889:
1787  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1788  * work correctly (bko#42740)
1789  */
1790 static void alc889_fixup_dac_route(struct hda_codec *codec,
1791                                    const struct hda_fixup *fix, int action)
1792 {
1793         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1794                 /* fake the connections during parsing the tree */
1795                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1796                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1797                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1798                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1799                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1800                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1801         } else if (action == HDA_FIXUP_ACT_PROBE) {
1802                 /* restore the connections */
1803                 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1804                 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1805                 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1806                 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1807                 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1808         }
1809 }
1810
1811 /* Set VREF on HP pin */
1812 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1813                                   const struct hda_fixup *fix, int action)
1814 {
1815         struct alc_spec *spec = codec->spec;
1816         static hda_nid_t nids[2] = { 0x14, 0x15 };
1817         int i;
1818
1819         if (action != HDA_FIXUP_ACT_INIT)
1820                 return;
1821         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1822                 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1823                 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1824                         continue;
1825                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1826                 val |= AC_PINCTL_VREF_80;
1827                 snd_hda_set_pin_ctl(codec, nids[i], val);
1828                 spec->gen.keep_vref_in_automute = 1;
1829                 break;
1830         }
1831 }
1832
1833 /* Set VREF on speaker pins on imac91 */
1834 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1835                                      const struct hda_fixup *fix, int action)
1836 {
1837         struct alc_spec *spec = codec->spec;
1838         static hda_nid_t nids[2] = { 0x18, 0x1a };
1839         int i;
1840
1841         if (action != HDA_FIXUP_ACT_INIT)
1842                 return;
1843         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1844                 unsigned int val;
1845                 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1846                 val |= AC_PINCTL_VREF_50;
1847                 snd_hda_set_pin_ctl(codec, nids[i], val);
1848         }
1849         spec->gen.keep_vref_in_automute = 1;
1850 }
1851
1852 /* Don't take HP output as primary
1853  * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1854  * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1855  */
1856 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1857                                        const struct hda_fixup *fix, int action)
1858 {
1859         struct alc_spec *spec = codec->spec;
1860         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1861                 spec->gen.no_primary_hp = 1;
1862                 spec->gen.no_multi_io = 1;
1863         }
1864 }
1865
1866 static const struct hda_fixup alc882_fixups[] = {
1867         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1868                 .type = HDA_FIXUP_PINS,
1869                 .v.pins = (const struct hda_pintbl[]) {
1870                         { 0x15, 0x01080104 }, /* side */
1871                         { 0x16, 0x01011012 }, /* rear */
1872                         { 0x17, 0x01016011 }, /* clfe */
1873                         { }
1874                 }
1875         },
1876         [ALC882_FIXUP_LENOVO_Y530] = {
1877                 .type = HDA_FIXUP_PINS,
1878                 .v.pins = (const struct hda_pintbl[]) {
1879                         { 0x15, 0x99130112 }, /* rear int speakers */
1880                         { 0x16, 0x99130111 }, /* subwoofer */
1881                         { }
1882                 }
1883         },
1884         [ALC882_FIXUP_PB_M5210] = {
1885                 .type = HDA_FIXUP_PINCTLS,
1886                 .v.pins = (const struct hda_pintbl[]) {
1887                         { 0x19, PIN_VREF50 },
1888                         {}
1889                 }
1890         },
1891         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1892                 .type = HDA_FIXUP_FUNC,
1893                 .v.func = alc_fixup_sku_ignore,
1894         },
1895         [ALC882_FIXUP_ASUS_W90V] = {
1896                 .type = HDA_FIXUP_PINS,
1897                 .v.pins = (const struct hda_pintbl[]) {
1898                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1899                         { }
1900                 }
1901         },
1902         [ALC889_FIXUP_CD] = {
1903                 .type = HDA_FIXUP_PINS,
1904                 .v.pins = (const struct hda_pintbl[]) {
1905                         { 0x1c, 0x993301f0 }, /* CD */
1906                         { }
1907                 }
1908         },
1909         [ALC889_FIXUP_VAIO_TT] = {
1910                 .type = HDA_FIXUP_PINS,
1911                 .v.pins = (const struct hda_pintbl[]) {
1912                         { 0x17, 0x90170111 }, /* hidden surround speaker */
1913                         { }
1914                 }
1915         },
1916         [ALC888_FIXUP_EEE1601] = {
1917                 .type = HDA_FIXUP_VERBS,
1918                 .v.verbs = (const struct hda_verb[]) {
1919                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1920                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
1921                         { }
1922                 }
1923         },
1924         [ALC882_FIXUP_EAPD] = {
1925                 .type = HDA_FIXUP_VERBS,
1926                 .v.verbs = (const struct hda_verb[]) {
1927                         /* change to EAPD mode */
1928                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1929                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1930                         { }
1931                 }
1932         },
1933         [ALC883_FIXUP_EAPD] = {
1934                 .type = HDA_FIXUP_VERBS,
1935                 .v.verbs = (const struct hda_verb[]) {
1936                         /* change to EAPD mode */
1937                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1938                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1939                         { }
1940                 }
1941         },
1942         [ALC883_FIXUP_ACER_EAPD] = {
1943                 .type = HDA_FIXUP_VERBS,
1944                 .v.verbs = (const struct hda_verb[]) {
1945                         /* eanable EAPD on Acer laptops */
1946                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1947                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1948                         { }
1949                 }
1950         },
1951         [ALC882_FIXUP_GPIO1] = {
1952                 .type = HDA_FIXUP_VERBS,
1953                 .v.verbs = alc_gpio1_init_verbs,
1954         },
1955         [ALC882_FIXUP_GPIO2] = {
1956                 .type = HDA_FIXUP_VERBS,
1957                 .v.verbs = alc_gpio2_init_verbs,
1958         },
1959         [ALC882_FIXUP_GPIO3] = {
1960                 .type = HDA_FIXUP_VERBS,
1961                 .v.verbs = alc_gpio3_init_verbs,
1962         },
1963         [ALC882_FIXUP_ASUS_W2JC] = {
1964                 .type = HDA_FIXUP_VERBS,
1965                 .v.verbs = alc_gpio1_init_verbs,
1966                 .chained = true,
1967                 .chain_id = ALC882_FIXUP_EAPD,
1968         },
1969         [ALC889_FIXUP_COEF] = {
1970                 .type = HDA_FIXUP_FUNC,
1971                 .v.func = alc889_fixup_coef,
1972         },
1973         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1974                 .type = HDA_FIXUP_PINS,
1975                 .v.pins = (const struct hda_pintbl[]) {
1976                         { 0x16, 0x99130111 }, /* CLFE speaker */
1977                         { 0x17, 0x99130112 }, /* surround speaker */
1978                         { }
1979                 },
1980                 .chained = true,
1981                 .chain_id = ALC882_FIXUP_GPIO1,
1982         },
1983         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1984                 .type = HDA_FIXUP_PINS,
1985                 .v.pins = (const struct hda_pintbl[]) {
1986                         { 0x16, 0x99130111 }, /* CLFE speaker */
1987                         { 0x1b, 0x99130112 }, /* surround speaker */
1988                         { }
1989                 },
1990                 .chained = true,
1991                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
1992         },
1993         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
1994                 /* additional init verbs for Acer Aspire 8930G */
1995                 .type = HDA_FIXUP_VERBS,
1996                 .v.verbs = (const struct hda_verb[]) {
1997                         /* Enable all DACs */
1998                         /* DAC DISABLE/MUTE 1? */
1999                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
2000                          *  apparently. Init=0x38 */
2001                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2002                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2003                         /* DAC DISABLE/MUTE 2? */
2004                         /*  some bit here disables the other DACs.
2005                          *  Init=0x4900 */
2006                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2007                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2008                         /* DMIC fix
2009                          * This laptop has a stereo digital microphone.
2010                          * The mics are only 1cm apart which makes the stereo
2011                          * useless. However, either the mic or the ALC889
2012                          * makes the signal become a difference/sum signal
2013                          * instead of standard stereo, which is annoying.
2014                          * So instead we flip this bit which makes the
2015                          * codec replicate the sum signal to both channels,
2016                          * turning it into a normal mono mic.
2017                          */
2018                         /* DMIC_CONTROL? Init value = 0x0001 */
2019                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2020                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2021                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2022                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2023                         { }
2024                 },
2025                 .chained = true,
2026                 .chain_id = ALC882_FIXUP_GPIO1,
2027         },
2028         [ALC885_FIXUP_MACPRO_GPIO] = {
2029                 .type = HDA_FIXUP_FUNC,
2030                 .v.func = alc885_fixup_macpro_gpio,
2031         },
2032         [ALC889_FIXUP_DAC_ROUTE] = {
2033                 .type = HDA_FIXUP_FUNC,
2034                 .v.func = alc889_fixup_dac_route,
2035         },
2036         [ALC889_FIXUP_MBP_VREF] = {
2037                 .type = HDA_FIXUP_FUNC,
2038                 .v.func = alc889_fixup_mbp_vref,
2039                 .chained = true,
2040                 .chain_id = ALC882_FIXUP_GPIO1,
2041         },
2042         [ALC889_FIXUP_IMAC91_VREF] = {
2043                 .type = HDA_FIXUP_FUNC,
2044                 .v.func = alc889_fixup_imac91_vref,
2045                 .chained = true,
2046                 .chain_id = ALC882_FIXUP_GPIO1,
2047         },
2048         [ALC882_FIXUP_INV_DMIC] = {
2049                 .type = HDA_FIXUP_FUNC,
2050                 .v.func = alc_fixup_inv_dmic_0x12,
2051         },
2052         [ALC882_FIXUP_NO_PRIMARY_HP] = {
2053                 .type = HDA_FIXUP_FUNC,
2054                 .v.func = alc882_fixup_no_primary_hp,
2055         },
2056 };
2057
2058 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2059         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2060         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2061         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2062         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2063         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2064         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2065         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2066                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2067         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2068                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2069         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2070                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2071         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2072                       ALC882_FIXUP_ACER_ASPIRE_8930G),
2073         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2074                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2075         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2076                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2077         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2078                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2079         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2080         SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2081                       ALC882_FIXUP_ACER_ASPIRE_4930G),
2082         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2083         SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2084         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2085         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2086         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2087         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2088         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2089         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2090         SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2091         SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2092
2093         /* All Apple entries are in codec SSIDs */
2094         SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2095         SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2096         SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2097         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2098         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2099         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2100         SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2101         SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2102         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2103         SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2104         SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2105         SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2106         SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2107         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2108         SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2109         SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2110         SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2111         SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
2112         SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2113         SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2114         SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2115         SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
2116
2117         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2118         SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2119         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2120         SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
2121         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2122         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2123         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2124         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2125         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2126         {}
2127 };
2128
2129 static const struct hda_model_fixup alc882_fixup_models[] = {
2130         {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2131         {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2132         {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2133         {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2134         {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2135         {}
2136 };
2137
2138 /*
2139  * BIOS auto configuration
2140  */
2141 /* almost identical with ALC880 parser... */
2142 static int alc882_parse_auto_config(struct hda_codec *codec)
2143 {
2144         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2145         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2146         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2147 }
2148
2149 /*
2150  */
2151 static int patch_alc882(struct hda_codec *codec)
2152 {
2153         struct alc_spec *spec;
2154         int err;
2155
2156         err = alc_alloc_spec(codec, 0x0b);
2157         if (err < 0)
2158                 return err;
2159
2160         spec = codec->spec;
2161
2162         switch (codec->vendor_id) {
2163         case 0x10ec0882:
2164         case 0x10ec0885:
2165                 break;
2166         default:
2167                 /* ALC883 and variants */
2168                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2169                 break;
2170         }
2171
2172         snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2173                        alc882_fixups);
2174         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2175
2176         alc_auto_parse_customize_define(codec);
2177
2178         if (has_cdefine_beep(codec))
2179                 spec->gen.beep_nid = 0x01;
2180
2181         /* automatic parse from the BIOS config */
2182         err = alc882_parse_auto_config(codec);
2183         if (err < 0)
2184                 goto error;
2185
2186         if (!spec->gen.no_analog && spec->gen.beep_nid)
2187                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2188
2189         codec->patch_ops = alc_patch_ops;
2190
2191         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2192
2193         return 0;
2194
2195  error:
2196         alc_free(codec);
2197         return err;
2198 }
2199
2200
2201 /*
2202  * ALC262 support
2203  */
2204 static int alc262_parse_auto_config(struct hda_codec *codec)
2205 {
2206         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2207         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2208         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2209 }
2210
2211 /*
2212  * Pin config fixes
2213  */
2214 enum {
2215         ALC262_FIXUP_FSC_H270,
2216         ALC262_FIXUP_FSC_S7110,
2217         ALC262_FIXUP_HP_Z200,
2218         ALC262_FIXUP_TYAN,
2219         ALC262_FIXUP_LENOVO_3000,
2220         ALC262_FIXUP_BENQ,
2221         ALC262_FIXUP_BENQ_T31,
2222         ALC262_FIXUP_INV_DMIC,
2223 };
2224
2225 static const struct hda_fixup alc262_fixups[] = {
2226         [ALC262_FIXUP_FSC_H270] = {
2227                 .type = HDA_FIXUP_PINS,
2228                 .v.pins = (const struct hda_pintbl[]) {
2229                         { 0x14, 0x99130110 }, /* speaker */
2230                         { 0x15, 0x0221142f }, /* front HP */
2231                         { 0x1b, 0x0121141f }, /* rear HP */
2232                         { }
2233                 }
2234         },
2235         [ALC262_FIXUP_FSC_S7110] = {
2236                 .type = HDA_FIXUP_PINS,
2237                 .v.pins = (const struct hda_pintbl[]) {
2238                         { 0x15, 0x90170110 }, /* speaker */
2239                         { }
2240                 },
2241                 .chained = true,
2242                 .chain_id = ALC262_FIXUP_BENQ,
2243         },
2244         [ALC262_FIXUP_HP_Z200] = {
2245                 .type = HDA_FIXUP_PINS,
2246                 .v.pins = (const struct hda_pintbl[]) {
2247                         { 0x16, 0x99130120 }, /* internal speaker */
2248                         { }
2249                 }
2250         },
2251         [ALC262_FIXUP_TYAN] = {
2252                 .type = HDA_FIXUP_PINS,
2253                 .v.pins = (const struct hda_pintbl[]) {
2254                         { 0x14, 0x1993e1f0 }, /* int AUX */
2255                         { }
2256                 }
2257         },
2258         [ALC262_FIXUP_LENOVO_3000] = {
2259                 .type = HDA_FIXUP_PINCTLS,
2260                 .v.pins = (const struct hda_pintbl[]) {
2261                         { 0x19, PIN_VREF50 },
2262                         {}
2263                 },
2264                 .chained = true,
2265                 .chain_id = ALC262_FIXUP_BENQ,
2266         },
2267         [ALC262_FIXUP_BENQ] = {
2268                 .type = HDA_FIXUP_VERBS,
2269                 .v.verbs = (const struct hda_verb[]) {
2270                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2271                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2272                         {}
2273                 }
2274         },
2275         [ALC262_FIXUP_BENQ_T31] = {
2276                 .type = HDA_FIXUP_VERBS,
2277                 .v.verbs = (const struct hda_verb[]) {
2278                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2279                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2280                         {}
2281                 }
2282         },
2283         [ALC262_FIXUP_INV_DMIC] = {
2284                 .type = HDA_FIXUP_FUNC,
2285                 .v.func = alc_fixup_inv_dmic_0x12,
2286         },
2287 };
2288
2289 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2290         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2291         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2292         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2293         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2294         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2295         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2296         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2297         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2298         {}
2299 };
2300
2301 static const struct hda_model_fixup alc262_fixup_models[] = {
2302         {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2303         {}
2304 };
2305
2306 /*
2307  */
2308 static int patch_alc262(struct hda_codec *codec)
2309 {
2310         struct alc_spec *spec;
2311         int err;
2312
2313         err = alc_alloc_spec(codec, 0x0b);
2314         if (err < 0)
2315                 return err;
2316
2317         spec = codec->spec;
2318         spec->gen.shared_mic_vref_pin = 0x18;
2319
2320 #if 0
2321         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
2322          * under-run
2323          */
2324         {
2325         int tmp;
2326         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2327         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2328         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2329         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2330         }
2331 #endif
2332         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2333
2334         snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2335                        alc262_fixups);
2336         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2337
2338         alc_auto_parse_customize_define(codec);
2339
2340         if (has_cdefine_beep(codec))
2341                 spec->gen.beep_nid = 0x01;
2342
2343         /* automatic parse from the BIOS config */
2344         err = alc262_parse_auto_config(codec);
2345         if (err < 0)
2346                 goto error;
2347
2348         if (!spec->gen.no_analog && spec->gen.beep_nid)
2349                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2350
2351         codec->patch_ops = alc_patch_ops;
2352         spec->shutup = alc_eapd_shutup;
2353
2354         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2355
2356         return 0;
2357
2358  error:
2359         alc_free(codec);
2360         return err;
2361 }
2362
2363 /*
2364  *  ALC268
2365  */
2366 /* bind Beep switches of both NID 0x0f and 0x10 */
2367 static const struct hda_bind_ctls alc268_bind_beep_sw = {
2368         .ops = &snd_hda_bind_sw,
2369         .values = {
2370                 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2371                 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2372                 0
2373         },
2374 };
2375
2376 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2377         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2378         HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2379         { }
2380 };
2381
2382 /* set PCBEEP vol = 0, mute connections */
2383 static const struct hda_verb alc268_beep_init_verbs[] = {
2384         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2385         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2386         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2387         { }
2388 };
2389
2390 enum {
2391         ALC268_FIXUP_INV_DMIC,
2392         ALC268_FIXUP_HP_EAPD,
2393         ALC268_FIXUP_SPDIF,
2394 };
2395
2396 static const struct hda_fixup alc268_fixups[] = {
2397         [ALC268_FIXUP_INV_DMIC] = {
2398                 .type = HDA_FIXUP_FUNC,
2399                 .v.func = alc_fixup_inv_dmic_0x12,
2400         },
2401         [ALC268_FIXUP_HP_EAPD] = {
2402                 .type = HDA_FIXUP_VERBS,
2403                 .v.verbs = (const struct hda_verb[]) {
2404                         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2405                         {}
2406                 }
2407         },
2408         [ALC268_FIXUP_SPDIF] = {
2409                 .type = HDA_FIXUP_PINS,
2410                 .v.pins = (const struct hda_pintbl[]) {
2411                         { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2412                         {}
2413                 }
2414         },
2415 };
2416
2417 static const struct hda_model_fixup alc268_fixup_models[] = {
2418         {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2419         {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2420         {}
2421 };
2422
2423 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2424         SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2425         SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2426         /* below is codec SSID since multiple Toshiba laptops have the
2427          * same PCI SSID 1179:ff00
2428          */
2429         SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2430         {}
2431 };
2432
2433 /*
2434  * BIOS auto configuration
2435  */
2436 static int alc268_parse_auto_config(struct hda_codec *codec)
2437 {
2438         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2439         return alc_parse_auto_config(codec, NULL, alc268_ssids);
2440 }
2441
2442 /*
2443  */
2444 static int patch_alc268(struct hda_codec *codec)
2445 {
2446         struct alc_spec *spec;
2447         int err;
2448
2449         /* ALC268 has no aa-loopback mixer */
2450         err = alc_alloc_spec(codec, 0);
2451         if (err < 0)
2452                 return err;
2453
2454         spec = codec->spec;
2455         spec->gen.beep_nid = 0x01;
2456
2457         snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2458         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2459
2460         /* automatic parse from the BIOS config */
2461         err = alc268_parse_auto_config(codec);
2462         if (err < 0)
2463                 goto error;
2464
2465         if (err > 0 && !spec->gen.no_analog &&
2466             spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2467                 add_mixer(spec, alc268_beep_mixer);
2468                 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2469                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2470                         /* override the amp caps for beep generator */
2471                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2472                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2473                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2474                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2475                                           (0 << AC_AMPCAP_MUTE_SHIFT));
2476         }
2477
2478         codec->patch_ops = alc_patch_ops;
2479         spec->shutup = alc_eapd_shutup;
2480
2481         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2482
2483         return 0;
2484
2485  error:
2486         alc_free(codec);
2487         return err;
2488 }
2489
2490 /*
2491  * ALC269
2492  */
2493
2494 static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2495                              struct hda_codec *codec,
2496                              struct snd_pcm_substream *substream)
2497 {
2498         struct hda_gen_spec *spec = codec->spec;
2499         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2500                                              hinfo);
2501 }
2502
2503 static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2504                                 struct hda_codec *codec,
2505                                 unsigned int stream_tag,
2506                                 unsigned int format,
2507                                 struct snd_pcm_substream *substream)
2508 {
2509         struct hda_gen_spec *spec = codec->spec;
2510         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2511                                                 stream_tag, format, substream);
2512 }
2513
2514 static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2515                                 struct hda_codec *codec,
2516                                 struct snd_pcm_substream *substream)
2517 {
2518         struct hda_gen_spec *spec = codec->spec;
2519         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2520 }
2521
2522 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2523         .substreams = 1,
2524         .channels_min = 2,
2525         .channels_max = 8,
2526         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2527         /* NID is set in alc_build_pcms */
2528         .ops = {
2529                 .open = playback_pcm_open,
2530                 .prepare = playback_pcm_prepare,
2531                 .cleanup = playback_pcm_cleanup
2532         },
2533 };
2534
2535 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2536         .substreams = 1,
2537         .channels_min = 2,
2538         .channels_max = 2,
2539         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2540         /* NID is set in alc_build_pcms */
2541 };
2542
2543 /* different alc269-variants */
2544 enum {
2545         ALC269_TYPE_ALC269VA,
2546         ALC269_TYPE_ALC269VB,
2547         ALC269_TYPE_ALC269VC,
2548         ALC269_TYPE_ALC269VD,
2549         ALC269_TYPE_ALC280,
2550         ALC269_TYPE_ALC282,
2551         ALC269_TYPE_ALC283,
2552         ALC269_TYPE_ALC284,
2553         ALC269_TYPE_ALC285,
2554         ALC269_TYPE_ALC286,
2555         ALC269_TYPE_ALC255,
2556 };
2557
2558 /*
2559  * BIOS auto configuration
2560  */
2561 static int alc269_parse_auto_config(struct hda_codec *codec)
2562 {
2563         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2564         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2565         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2566         struct alc_spec *spec = codec->spec;
2567         const hda_nid_t *ssids;
2568
2569         switch (spec->codec_variant) {
2570         case ALC269_TYPE_ALC269VA:
2571         case ALC269_TYPE_ALC269VC:
2572         case ALC269_TYPE_ALC280:
2573         case ALC269_TYPE_ALC284:
2574         case ALC269_TYPE_ALC285:
2575                 ssids = alc269va_ssids;
2576                 break;
2577         case ALC269_TYPE_ALC269VB:
2578         case ALC269_TYPE_ALC269VD:
2579         case ALC269_TYPE_ALC282:
2580         case ALC269_TYPE_ALC283:
2581         case ALC269_TYPE_ALC286:
2582         case ALC269_TYPE_ALC255:
2583                 ssids = alc269_ssids;
2584                 break;
2585         default:
2586                 ssids = alc269_ssids;
2587                 break;
2588         }
2589
2590         return alc_parse_auto_config(codec, alc269_ignore, ssids);
2591 }
2592
2593 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2594 {
2595         int val = alc_read_coef_idx(codec, 0x04);
2596         if (power_up)
2597                 val |= 1 << 11;
2598         else
2599                 val &= ~(1 << 11);
2600         alc_write_coef_idx(codec, 0x04, val);
2601 }
2602
2603 static void alc269_shutup(struct hda_codec *codec)
2604 {
2605         struct alc_spec *spec = codec->spec;
2606
2607         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2608                 alc269vb_toggle_power_output(codec, 0);
2609         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2610                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2611                 msleep(150);
2612         }
2613         snd_hda_shutup_pins(codec);
2614 }
2615
2616 static void alc283_init(struct hda_codec *codec)
2617 {
2618         struct alc_spec *spec = codec->spec;
2619         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2620         bool hp_pin_sense;
2621         int val;
2622
2623         if (!hp_pin)
2624                 return;
2625         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2626
2627         /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2628         /* Headphone capless set to high power mode */
2629         alc_write_coef_idx(codec, 0x43, 0x9004);
2630
2631         snd_hda_codec_write(codec, hp_pin, 0,
2632                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2633
2634         if (hp_pin_sense)
2635                 msleep(85);
2636
2637         snd_hda_codec_write(codec, hp_pin, 0,
2638                             AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2639
2640         if (hp_pin_sense)
2641                 msleep(85);
2642         /* Index 0x46 Combo jack auto switch control 2 */
2643         /* 3k pull low control for Headset jack. */
2644         val = alc_read_coef_idx(codec, 0x46);
2645         alc_write_coef_idx(codec, 0x46, val & ~(3 << 12));
2646         /* Headphone capless set to normal mode */
2647         alc_write_coef_idx(codec, 0x43, 0x9614);
2648 }
2649
2650 static void alc283_shutup(struct hda_codec *codec)
2651 {
2652         struct alc_spec *spec = codec->spec;
2653         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2654         bool hp_pin_sense;
2655         int val;
2656
2657         if (!hp_pin) {
2658                 alc269_shutup(codec);
2659                 return;
2660         }
2661
2662         hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2663
2664         alc_write_coef_idx(codec, 0x43, 0x9004);
2665
2666         snd_hda_codec_write(codec, hp_pin, 0,
2667                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2668
2669         if (hp_pin_sense)
2670                 msleep(100);
2671
2672         snd_hda_codec_write(codec, hp_pin, 0,
2673                             AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2674
2675         val = alc_read_coef_idx(codec, 0x46);
2676         alc_write_coef_idx(codec, 0x46, val | (3 << 12));
2677
2678         if (hp_pin_sense)
2679                 msleep(100);
2680         snd_hda_shutup_pins(codec);
2681         alc_write_coef_idx(codec, 0x43, 0x9614);
2682 }
2683
2684 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
2685                              unsigned int val)
2686 {
2687         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2688         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
2689         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
2690 }
2691
2692 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
2693 {
2694         unsigned int val;
2695
2696         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2697         val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2698                 & 0xffff;
2699         val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2700                 << 16;
2701         return val;
2702 }
2703
2704 static void alc5505_dsp_halt(struct hda_codec *codec)
2705 {
2706         unsigned int val;
2707
2708         alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
2709         alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
2710         alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2711         alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
2712         alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2713         alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
2714         alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
2715         val = alc5505_coef_get(codec, 0x6220);
2716         alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
2717 }
2718
2719 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
2720 {
2721         alc5505_coef_set(codec, 0x61b8, 0x04133302);
2722         alc5505_coef_set(codec, 0x61b0, 0x00005b16);
2723         alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
2724         alc5505_coef_set(codec, 0x6230, 0xf80d4011);
2725         alc5505_coef_set(codec, 0x6220, 0x2002010f);
2726         alc5505_coef_set(codec, 0x880c, 0x00000004);
2727 }
2728
2729 static void alc5505_dsp_init(struct hda_codec *codec)
2730 {
2731         unsigned int val;
2732
2733         alc5505_dsp_halt(codec);
2734         alc5505_dsp_back_from_halt(codec);
2735         alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
2736         alc5505_coef_set(codec, 0x61b0, 0x5b16);
2737         alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
2738         alc5505_coef_set(codec, 0x61b4, 0x04132b02);
2739         alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
2740         alc5505_coef_set(codec, 0x61b8, 0x041f3302);
2741         snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
2742         alc5505_coef_set(codec, 0x61b8, 0x041b3302);
2743         alc5505_coef_set(codec, 0x61b8, 0x04173302);
2744         alc5505_coef_set(codec, 0x61b8, 0x04163302);
2745         alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
2746         alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
2747         alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
2748
2749         val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
2750         if (val <= 3)
2751                 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
2752         else
2753                 alc5505_coef_set(codec, 0x6220, 0x6002018f);
2754
2755         alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
2756         alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
2757         alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
2758         alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
2759         alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
2760         alc5505_coef_set(codec, 0x880c, 0x00000003);
2761         alc5505_coef_set(codec, 0x880c, 0x00000010);
2762
2763 #ifdef HALT_REALTEK_ALC5505
2764         alc5505_dsp_halt(codec);
2765 #endif
2766 }
2767
2768 #ifdef HALT_REALTEK_ALC5505
2769 #define alc5505_dsp_suspend(codec)      /* NOP */
2770 #define alc5505_dsp_resume(codec)       /* NOP */
2771 #else
2772 #define alc5505_dsp_suspend(codec)      alc5505_dsp_halt(codec)
2773 #define alc5505_dsp_resume(codec)       alc5505_dsp_back_from_halt(codec)
2774 #endif
2775
2776 #ifdef CONFIG_PM
2777 static int alc269_suspend(struct hda_codec *codec)
2778 {
2779         struct alc_spec *spec = codec->spec;
2780
2781         if (spec->has_alc5505_dsp)
2782                 alc5505_dsp_suspend(codec);
2783         return alc_suspend(codec);
2784 }
2785
2786 static int alc269_resume(struct hda_codec *codec)
2787 {
2788         struct alc_spec *spec = codec->spec;
2789
2790         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2791                 alc269vb_toggle_power_output(codec, 0);
2792         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2793                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2794                 msleep(150);
2795         }
2796
2797         codec->patch_ops.init(codec);
2798
2799         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2800                 alc269vb_toggle_power_output(codec, 1);
2801         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2802                         (alc_get_coef0(codec) & 0x00ff) == 0x017) {
2803                 msleep(200);
2804         }
2805
2806         snd_hda_codec_resume_amp(codec);
2807         snd_hda_codec_resume_cache(codec);
2808         alc_inv_dmic_sync(codec, true);
2809         hda_call_check_power_status(codec, 0x01);
2810         if (spec->has_alc5505_dsp)
2811                 alc5505_dsp_resume(codec);
2812
2813         return 0;
2814 }
2815 #endif /* CONFIG_PM */
2816
2817 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
2818                                                  const struct hda_fixup *fix, int action)
2819 {
2820         struct alc_spec *spec = codec->spec;
2821
2822         if (action == HDA_FIXUP_ACT_PRE_PROBE)
2823                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2824 }
2825
2826 static void alc269_fixup_hweq(struct hda_codec *codec,
2827                                const struct hda_fixup *fix, int action)
2828 {
2829         int coef;
2830
2831         if (action != HDA_FIXUP_ACT_INIT)
2832                 return;
2833         coef = alc_read_coef_idx(codec, 0x1e);
2834         alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2835 }
2836
2837 static void alc269_fixup_headset_mic(struct hda_codec *codec,
2838                                        const struct hda_fixup *fix, int action)
2839 {
2840         struct alc_spec *spec = codec->spec;
2841
2842         if (action == HDA_FIXUP_ACT_PRE_PROBE)
2843                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
2844 }
2845
2846 static void alc271_fixup_dmic(struct hda_codec *codec,
2847                               const struct hda_fixup *fix, int action)
2848 {
2849         static const struct hda_verb verbs[] = {
2850                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2851                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2852                 {}
2853         };
2854         unsigned int cfg;
2855
2856         if (strcmp(codec->chip_name, "ALC271X") &&
2857             strcmp(codec->chip_name, "ALC269VB"))
2858                 return;
2859         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2860         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2861                 snd_hda_sequence_write(codec, verbs);
2862 }
2863
2864 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
2865                                  const struct hda_fixup *fix, int action)
2866 {
2867         struct alc_spec *spec = codec->spec;
2868
2869         if (action != HDA_FIXUP_ACT_PROBE)
2870                 return;
2871
2872         /* Due to a hardware problem on Lenovo Ideadpad, we need to
2873          * fix the sample rate of analog I/O to 44.1kHz
2874          */
2875         spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2876         spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
2877 }
2878
2879 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
2880                                      const struct hda_fixup *fix, int action)
2881 {
2882         int coef;
2883
2884         if (action != HDA_FIXUP_ACT_INIT)
2885                 return;
2886         /* The digital-mic unit sends PDM (differential signal) instead of
2887          * the standard PCM, thus you can't record a valid mono stream as is.
2888          * Below is a workaround specific to ALC269 to control the dmic
2889          * signal source as mono.
2890          */
2891         coef = alc_read_coef_idx(codec, 0x07);
2892         alc_write_coef_idx(codec, 0x07, coef | 0x80);
2893 }
2894
2895 static void alc269_quanta_automute(struct hda_codec *codec)
2896 {
2897         snd_hda_gen_update_outputs(codec);
2898
2899         snd_hda_codec_write(codec, 0x20, 0,
2900                         AC_VERB_SET_COEF_INDEX, 0x0c);
2901         snd_hda_codec_write(codec, 0x20, 0,
2902                         AC_VERB_SET_PROC_COEF, 0x680);
2903
2904         snd_hda_codec_write(codec, 0x20, 0,
2905                         AC_VERB_SET_COEF_INDEX, 0x0c);
2906         snd_hda_codec_write(codec, 0x20, 0,
2907                         AC_VERB_SET_PROC_COEF, 0x480);
2908 }
2909
2910 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
2911                                      const struct hda_fixup *fix, int action)
2912 {
2913         struct alc_spec *spec = codec->spec;
2914         if (action != HDA_FIXUP_ACT_PROBE)
2915                 return;
2916         spec->gen.automute_hook = alc269_quanta_automute;
2917 }
2918
2919 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
2920                                          struct hda_jack_tbl *jack)
2921 {
2922         struct alc_spec *spec = codec->spec;
2923         int vref;
2924         msleep(200);
2925         snd_hda_gen_hp_automute(codec, jack);
2926
2927         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
2928         msleep(100);
2929         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2930                             vref);
2931         msleep(500);
2932         snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2933                             vref);
2934 }
2935
2936 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
2937                                      const struct hda_fixup *fix, int action)
2938 {
2939         struct alc_spec *spec = codec->spec;
2940         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2941                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
2942                 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
2943         }
2944 }
2945
2946
2947 /* update mute-LED according to the speaker mute state via mic VREF pin */
2948 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
2949 {
2950         struct hda_codec *codec = private_data;
2951         struct alc_spec *spec = codec->spec;
2952         unsigned int pinval;
2953
2954         if (spec->mute_led_polarity)
2955                 enabled = !enabled;
2956         pinval = AC_PINCTL_IN_EN |
2957                 (enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
2958         if (spec->mute_led_nid)
2959                 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
2960 }
2961
2962 /* Make sure the led works even in runtime suspend */
2963 static unsigned int led_power_filter(struct hda_codec *codec,
2964                                                   hda_nid_t nid,
2965                                                   unsigned int power_state)
2966 {
2967         struct alc_spec *spec = codec->spec;
2968
2969         if (power_state != AC_PWRST_D3 || nid != spec->mute_led_nid)
2970                 return power_state;
2971
2972         /* Set pin ctl again, it might have just been set to 0 */
2973         snd_hda_set_pin_ctl(codec, nid,
2974                             snd_hda_codec_get_pin_target(codec, nid));
2975
2976         return AC_PWRST_D0;
2977 }
2978
2979 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
2980                                      const struct hda_fixup *fix, int action)
2981 {
2982         struct alc_spec *spec = codec->spec;
2983         const struct dmi_device *dev = NULL;
2984
2985         if (action != HDA_FIXUP_ACT_PRE_PROBE)
2986                 return;
2987
2988         while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
2989                 int pol, pin;
2990                 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
2991                         continue;
2992                 if (pin < 0x0a || pin >= 0x10)
2993                         break;
2994                 spec->mute_led_polarity = pol;
2995                 spec->mute_led_nid = pin - 0x0a + 0x18;
2996                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
2997                 spec->gen.vmaster_mute_enum = 1;
2998                 codec->power_filter = led_power_filter;
2999                 snd_printd("Detected mute LED for %x:%d\n", spec->mute_led_nid,
3000                            spec->mute_led_polarity);
3001                 break;
3002         }
3003 }
3004
3005 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3006                                 const struct hda_fixup *fix, int action)
3007 {
3008         struct alc_spec *spec = codec->spec;
3009         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3010                 spec->mute_led_polarity = 0;
3011                 spec->mute_led_nid = 0x18;
3012                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3013                 spec->gen.vmaster_mute_enum = 1;
3014                 codec->power_filter = led_power_filter;
3015         }
3016 }
3017
3018 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3019                                 const struct hda_fixup *fix, int action)
3020 {
3021         struct alc_spec *spec = codec->spec;
3022         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3023                 spec->mute_led_polarity = 0;
3024                 spec->mute_led_nid = 0x19;
3025                 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3026                 spec->gen.vmaster_mute_enum = 1;
3027                 codec->power_filter = led_power_filter;
3028         }
3029 }
3030
3031 /* turn on/off mute LED per vmaster hook */
3032 static void alc269_fixup_hp_gpio_mute_hook(void *private_data, int enabled)
3033 {
3034         struct hda_codec *codec = private_data;
3035         struct alc_spec *spec = codec->spec;
3036         unsigned int oldval = spec->gpio_led;
3037
3038         if (enabled)
3039                 spec->gpio_led &= ~0x08;
3040         else
3041                 spec->gpio_led |= 0x08;
3042         if (spec->gpio_led != oldval)
3043                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3044                                     spec->gpio_led);
3045 }
3046
3047 /* turn on/off mic-mute LED per capture hook */
3048 static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec *codec,
3049                                struct snd_ctl_elem_value *ucontrol)
3050 {
3051         struct alc_spec *spec = codec->spec;
3052         unsigned int oldval = spec->gpio_led;
3053
3054         if (!ucontrol)
3055                 return;
3056
3057         if (ucontrol->value.integer.value[0] ||
3058             ucontrol->value.integer.value[1])
3059                 spec->gpio_led &= ~0x10;
3060         else
3061                 spec->gpio_led |= 0x10;
3062         if (spec->gpio_led != oldval)
3063                 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3064                                     spec->gpio_led);
3065 }
3066
3067 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3068                                 const struct hda_fixup *fix, int action)
3069 {
3070         struct alc_spec *spec = codec->spec;
3071         static const struct hda_verb gpio_init[] = {
3072                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3073                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3074                 {}
3075         };
3076
3077         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3078                 spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
3079                 spec->gen.cap_sync_hook = alc269_fixup_hp_gpio_mic_mute_hook;
3080                 spec->gpio_led = 0;
3081                 snd_hda_add_verbs(codec, gpio_init);
3082         }
3083 }
3084
3085 static void alc_headset_mode_unplugged(struct hda_codec *codec)
3086 {
3087         int val;
3088
3089         switch (codec->vendor_id) {
3090         case 0x10ec0283:
3091                 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3092                 alc_write_coef_idx(codec, 0x45, 0xc429);
3093                 val = alc_read_coef_idx(codec, 0x35);
3094                 alc_write_coef_idx(codec, 0x35, val & 0xbfff);
3095                 alc_write_coef_idx(codec, 0x06, 0x2104);
3096                 alc_write_coef_idx(codec, 0x1a, 0x0001);
3097                 alc_write_coef_idx(codec, 0x26, 0x0004);
3098                 alc_write_coef_idx(codec, 0x32, 0x42a3);
3099                 break;
3100         case 0x10ec0292:
3101                 alc_write_coef_idx(codec, 0x76, 0x000e);
3102                 alc_write_coef_idx(codec, 0x6c, 0x2400);
3103                 alc_write_coef_idx(codec, 0x18, 0x7308);
3104                 alc_write_coef_idx(codec, 0x6b, 0xc429);
3105                 break;
3106         case 0x10ec0668:
3107                 alc_write_coef_idx(codec, 0x15, 0x0d40);
3108                 alc_write_coef_idx(codec, 0xb7, 0x802b);
3109                 break;
3110         }
3111         snd_printdd("Headset jack set to unplugged mode.\n");
3112 }
3113
3114
3115 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3116                                     hda_nid_t mic_pin)
3117 {
3118         int val;
3119
3120         switch (codec->vendor_id) {
3121         case 0x10ec0283:
3122                 alc_write_coef_idx(codec, 0x45, 0xc429);
3123                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3124                 val = alc_read_coef_idx(codec, 0x35);
3125                 alc_write_coef_idx(codec, 0x35, val | 1<<14);
3126                 alc_write_coef_idx(codec, 0x06, 0x2100);
3127                 alc_write_coef_idx(codec, 0x1a, 0x0021);
3128                 alc_write_coef_idx(codec, 0x26, 0x008c);
3129                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3130                 break;
3131         case 0x10ec0292:
3132                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3133                 alc_write_coef_idx(codec, 0x19, 0xa208);
3134                 alc_write_coef_idx(codec, 0x2e, 0xacf0);
3135                 break;
3136         case 0x10ec0668:
3137                 alc_write_coef_idx(codec, 0x11, 0x0001);
3138                 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3139                 alc_write_coef_idx(codec, 0xb7, 0x802b);
3140                 alc_write_coef_idx(codec, 0xb5, 0x1040);
3141                 val = alc_read_coef_idx(codec, 0xc3);
3142                 alc_write_coef_idx(codec, 0xc3, val | 1<<12);
3143                 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3144                 break;
3145         }
3146         snd_printdd("Headset jack set to mic-in mode.\n");
3147 }
3148
3149 static void alc_headset_mode_default(struct hda_codec *codec)
3150 {
3151         switch (codec->vendor_id) {
3152         case 0x10ec0283:
3153                 alc_write_coef_idx(codec, 0x06, 0x2100);
3154                 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3155                 break;
3156         case 0x10ec0292:
3157                 alc_write_coef_idx(codec, 0x76, 0x000e);
3158                 alc_write_coef_idx(codec, 0x6c, 0x2400);
3159                 alc_write_coef_idx(codec, 0x6b, 0xc429);
3160                 alc_write_coef_idx(codec, 0x18, 0x7308);
3161                 break;
3162         case 0x10ec0668:
3163                 alc_write_coef_idx(codec, 0x11, 0x0041);
3164                 alc_write_coef_idx(codec, 0x15, 0x0d40);
3165                 alc_write_coef_idx(codec, 0xb7, 0x802b);
3166                 break;
3167         }
3168         snd_printdd("Headset jack set to headphone (default) mode.\n");
3169 }
3170
3171 /* Iphone type */
3172 static void alc_headset_mode_ctia(struct hda_codec *codec)
3173 {
3174         switch (codec->vendor_id) {
3175         case 0x10ec0283:
3176                 alc_write_coef_idx(codec, 0x45, 0xd429);
3177                 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3178                 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3179                 break;
3180         case 0x10ec0292:
3181                 alc_write_coef_idx(codec, 0x6b, 0xd429);
3182                 alc_write_coef_idx(codec, 0x76, 0x0008);
3183                 alc_write_coef_idx(codec, 0x18, 0x7388);
3184                 break;
3185         case 0x10ec0668:
3186                 alc_write_coef_idx(codec, 0x15, 0x0d60);
3187                 alc_write_coef_idx(codec, 0xc3, 0x0000);
3188                 break;
3189         }
3190         snd_printdd("Headset jack set to iPhone-style headset mode.\n");
3191 }
3192
3193 /* Nokia type */
3194 static void alc_headset_mode_omtp(struct hda_codec *codec)
3195 {
3196         switch (codec->vendor_id) {
3197         case 0x10ec0283:
3198                 alc_write_coef_idx(codec, 0x45, 0xe429);
3199                 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3200                 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3201                 break;
3202         case 0x10ec0292:
3203                 alc_write_coef_idx(codec, 0x6b, 0xe429);
3204                 alc_write_coef_idx(codec, 0x76, 0x0008);
3205                 alc_write_coef_idx(codec, 0x18, 0x7388);
3206                 break;
3207         case 0x10ec0668:
3208                 alc_write_coef_idx(codec, 0x15, 0x0d50);
3209                 alc_write_coef_idx(codec, 0xc3, 0x0000);
3210                 break;
3211         }
3212         snd_printdd("Headset jack set to Nokia-style headset mode.\n");
3213 }
3214
3215 static void alc_determine_headset_type(struct hda_codec *codec)
3216 {
3217         int val;
3218         bool is_ctia = false;
3219         struct alc_spec *spec = codec->spec;
3220
3221         switch (codec->vendor_id) {
3222         case 0x10ec0283:
3223                 alc_write_coef_idx(codec, 0x45, 0xd029);
3224                 msleep(300);
3225                 val = alc_read_coef_idx(codec, 0x46);
3226                 is_ctia = (val & 0x0070) == 0x0070;
3227                 break;
3228         case 0x10ec0292:
3229                 alc_write_coef_idx(codec, 0x6b, 0xd429);
3230                 msleep(300);
3231                 val = alc_read_coef_idx(codec, 0x6c);
3232                 is_ctia = (val & 0x001c) == 0x001c;
3233                 break;
3234         case 0x10ec0668:
3235                 alc_write_coef_idx(codec, 0x11, 0x0001);
3236                 alc_write_coef_idx(codec, 0xb7, 0x802b);
3237                 alc_write_coef_idx(codec, 0x15, 0x0d60);
3238                 alc_write_coef_idx(codec, 0xc3, 0x0c00);
3239                 msleep(300);
3240                 val = alc_read_coef_idx(codec, 0xbe);
3241                 is_ctia = (val & 0x1c02) == 0x1c02;
3242                 break;
3243         }
3244
3245         snd_printdd("Headset jack detected iPhone-style headset: %s\n",
3246                     is_ctia ? "yes" : "no");
3247         spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
3248 }
3249
3250 static void alc_update_headset_mode(struct hda_codec *codec)
3251 {
3252         struct alc_spec *spec = codec->spec;
3253
3254         hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
3255         hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3256
3257         int new_headset_mode;
3258
3259         if (!snd_hda_jack_detect(codec, hp_pin))
3260                 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
3261         else if (mux_pin == spec->headset_mic_pin)
3262                 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
3263         else if (mux_pin == spec->headphone_mic_pin)
3264                 new_headset_mode = ALC_HEADSET_MODE_MIC;
3265         else
3266                 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
3267
3268         if (new_headset_mode == spec->current_headset_mode)
3269                 return;
3270
3271         switch (new_headset_mode) {
3272         case ALC_HEADSET_MODE_UNPLUGGED:
3273                 alc_headset_mode_unplugged(codec);
3274                 spec->gen.hp_jack_present = false;
3275                 break;
3276         case ALC_HEADSET_MODE_HEADSET:
3277                 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
3278                         alc_determine_headset_type(codec);
3279                 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
3280                         alc_headset_mode_ctia(codec);
3281                 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
3282                         alc_headset_mode_omtp(codec);
3283                 spec->gen.hp_jack_present = true;
3284                 break;
3285         case ALC_HEADSET_MODE_MIC:
3286                 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
3287                 spec->gen.hp_jack_present = false;
3288                 break;
3289         case ALC_HEADSET_MODE_HEADPHONE:
3290                 alc_headset_mode_default(codec);
3291                 spec->gen.hp_jack_present = true;
3292                 break;
3293         }
3294         if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
3295                 snd_hda_set_pin_ctl_cache(codec, hp_pin,
3296                                           AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3297                 if (spec->headphone_mic_pin)
3298                         snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
3299                                                   PIN_VREFHIZ);
3300         }
3301         spec->current_headset_mode = new_headset_mode;
3302
3303         snd_hda_gen_update_outputs(codec);
3304 }
3305
3306 static void alc_update_headset_mode_hook(struct hda_codec *codec,
3307                              struct snd_ctl_elem_value *ucontrol)
3308 {
3309         alc_update_headset_mode(codec);
3310 }
3311
3312 static void alc_update_headset_jack_cb(struct hda_codec *codec, struct hda_jack_tbl *jack)
3313 {
3314         struct alc_spec *spec = codec->spec;
3315         spec->current_headset_type = ALC_HEADSET_MODE_UNKNOWN;
3316         snd_hda_gen_hp_automute(codec, jack);
3317 }
3318
3319 static void alc_probe_headset_mode(struct hda_codec *codec)
3320 {
3321         int i;
3322         struct alc_spec *spec = codec->spec;
3323         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3324
3325         /* Find mic pins */
3326         for (i = 0; i < cfg->num_inputs; i++) {
3327                 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
3328                         spec->headset_mic_pin = cfg->inputs[i].pin;
3329                 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
3330                         spec->headphone_mic_pin = cfg->inputs[i].pin;
3331         }
3332
3333         spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
3334         spec->gen.automute_hook = alc_update_headset_mode;
3335         spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
3336 }
3337
3338 static void alc_fixup_headset_mode(struct hda_codec *codec,
3339                                 const struct hda_fixup *fix, int action)
3340 {
3341         struct alc_spec *spec = codec->spec;
3342
3343         switch (action) {
3344         case HDA_FIXUP_ACT_PRE_PROBE:
3345                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
3346                 break;
3347         case HDA_FIXUP_ACT_PROBE:
3348                 alc_probe_headset_mode(codec);
3349                 break;
3350         case HDA_FIXUP_ACT_INIT:
3351                 spec->current_headset_mode = 0;
3352                 alc_update_headset_mode(codec);
3353                 break;
3354         }
3355 }
3356
3357 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
3358                                 const struct hda_fixup *fix, int action)
3359 {
3360         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3361                 struct alc_spec *spec = codec->spec;
3362                 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3363         }
3364         else
3365                 alc_fixup_headset_mode(codec, fix, action);
3366 }
3367
3368 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
3369                                 const struct hda_fixup *fix, int action)
3370 {
3371         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3372                 int val;
3373                 alc_write_coef_idx(codec, 0xc4, 0x8000);
3374                 val = alc_read_coef_idx(codec, 0xc2);
3375                 alc_write_coef_idx(codec, 0xc2, val & 0xfe);
3376                 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
3377         }
3378         alc_fixup_headset_mode(codec, fix, action);
3379 }
3380
3381 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
3382 static int find_ext_mic_pin(struct hda_codec *codec)
3383 {
3384         struct alc_spec *spec = codec->spec;
3385         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3386         hda_nid_t nid;
3387         unsigned int defcfg;
3388         int i;
3389
3390         for (i = 0; i < cfg->num_inputs; i++) {
3391                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3392                         continue;
3393                 nid = cfg->inputs[i].pin;
3394                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3395                 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
3396                         continue;
3397                 return nid;
3398         }
3399
3400         return 0;
3401 }
3402
3403 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
3404                                     const struct hda_fixup *fix,
3405                                     int action)
3406 {
3407         struct alc_spec *spec = codec->spec;
3408
3409         if (action == HDA_FIXUP_ACT_PROBE) {
3410                 int mic_pin = find_ext_mic_pin(codec);
3411                 int hp_pin = spec->gen.autocfg.hp_pins[0];
3412
3413                 if (snd_BUG_ON(!mic_pin || !hp_pin))
3414                         return;
3415                 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
3416         }
3417 }
3418
3419 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
3420                                              const struct hda_fixup *fix,
3421                                              int action)
3422 {
3423         struct alc_spec *spec = codec->spec;
3424         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3425         int i;
3426
3427         /* The mic boosts on level 2 and 3 are too noisy
3428            on the internal mic input.
3429            Therefore limit the boost to 0 or 1. */
3430
3431         if (action != HDA_FIXUP_ACT_PROBE)
3432                 return;
3433
3434         for (i = 0; i < cfg->num_inputs; i++) {
3435                 hda_nid_t nid = cfg->inputs[i].pin;
3436                 unsigned int defcfg;
3437                 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3438                         continue;
3439                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3440                 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
3441                         continue;
3442
3443                 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
3444                                           (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
3445                                           (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3446                                           (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
3447                                           (0 << AC_AMPCAP_MUTE_SHIFT));
3448         }
3449 }
3450
3451 static void alc283_hp_automute_hook(struct hda_codec *codec,
3452                                     struct hda_jack_tbl *jack)
3453 {
3454         struct alc_spec *spec = codec->spec;
3455         int vref;
3456
3457         msleep(200);
3458         snd_hda_gen_hp_automute(codec, jack);
3459
3460         vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3461
3462         msleep(600);
3463         snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3464                             vref);
3465 }
3466
3467 static void alc283_chromebook_caps(struct hda_codec *codec)
3468 {
3469         snd_hda_override_wcaps(codec, 0x03, 0);
3470 }
3471
3472 static void alc283_fixup_chromebook(struct hda_codec *codec,
3473                                     const struct hda_fixup *fix, int action)
3474 {
3475         struct alc_spec *spec = codec->spec;
3476         int val;
3477
3478         switch (action) {
3479         case HDA_FIXUP_ACT_PRE_PROBE:
3480                 alc283_chromebook_caps(codec);
3481                 /* Disable AA-loopback as it causes white noise */
3482                 spec->gen.mixer_nid = 0;
3483                 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
3484                 /* MIC2-VREF control */
3485                 /* Set to manual mode */
3486                 val = alc_read_coef_idx(codec, 0x06);
3487                 alc_write_coef_idx(codec, 0x06, val & ~0x000c);
3488                 /* Enable Line1 input control by verb */
3489                 val = alc_read_coef_idx(codec, 0x1a);
3490                 alc_write_coef_idx(codec, 0x1a, val | (1 << 4));
3491                 break;
3492         }
3493 }
3494
3495 /* mute tablet speaker pin (0x14) via dock plugging in addition */
3496 static void asus_tx300_automute(struct hda_codec *codec)
3497 {
3498         struct alc_spec *spec = codec->spec;
3499         snd_hda_gen_update_outputs(codec);
3500         if (snd_hda_jack_detect(codec, 0x1b))
3501                 spec->gen.mute_bits |= (1ULL << 0x14);
3502 }
3503
3504 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
3505                                     const struct hda_fixup *fix, int action)
3506 {
3507         struct alc_spec *spec = codec->spec;
3508         /* TX300 needs to set up GPIO2 for the speaker amp */
3509         static const struct hda_verb gpio2_verbs[] = {
3510                 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
3511                 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
3512                 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
3513                 {}
3514         };
3515         static const struct hda_pintbl dock_pins[] = {
3516                 { 0x1b, 0x21114000 }, /* dock speaker pin */
3517                 {}
3518         };
3519         struct snd_kcontrol *kctl;
3520
3521         switch (action) {
3522         case HDA_FIXUP_ACT_PRE_PROBE:
3523                 snd_hda_add_verbs(codec, gpio2_verbs);
3524                 snd_hda_apply_pincfgs(codec, dock_pins);
3525                 spec->gen.auto_mute_via_amp = 1;
3526                 spec->gen.automute_hook = asus_tx300_automute;
3527                 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3528                                                     HDA_GEN_HP_EVENT,
3529                                                     snd_hda_gen_hp_automute);
3530                 break;
3531         case HDA_FIXUP_ACT_BUILD:
3532                 /* this is a bit tricky; give more sane names for the main
3533                  * (tablet) speaker and the dock speaker, respectively
3534                  */
3535                 kctl = snd_hda_find_mixer_ctl(codec, "Speaker Playback Switch");
3536                 if (kctl)
3537                         strcpy(kctl->id.name, "Dock Speaker Playback Switch");
3538                 kctl = snd_hda_find_mixer_ctl(codec, "Bass Speaker Playback Switch");
3539                 if (kctl)
3540                         strcpy(kctl->id.name, "Speaker Playback Switch");
3541                 break;
3542         }
3543 }
3544
3545 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
3546                                        const struct hda_fixup *fix, int action)
3547 {
3548         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3549                 /* Remove DAC node 0x03, as it seems to be
3550                    giving mono output */
3551                 snd_hda_override_wcaps(codec, 0x03, 0);
3552 }
3553
3554 #if IS_ENABLED(CONFIG_THINKPAD_ACPI)
3555
3556 #include <linux/thinkpad_acpi.h>
3557
3558 static int (*led_set_func)(int, bool);
3559
3560 static void update_tpacpi_mute_led(void *private_data, int enabled)
3561 {
3562         if (led_set_func)
3563                 led_set_func(TPACPI_LED_MUTE, !enabled);
3564 }
3565
3566 static void update_tpacpi_micmute_led(struct hda_codec *codec,
3567                                       struct snd_ctl_elem_value *ucontrol)
3568 {
3569         if (!ucontrol || !led_set_func)
3570                 return;
3571         if (strcmp("Capture Switch", ucontrol->id.name) == 0 && ucontrol->id.index == 0) {
3572                 /* TODO: How do I verify if it's a mono or stereo here? */
3573                 bool val = ucontrol->value.integer.value[0] || ucontrol->value.integer.value[1];
3574                 led_set_func(TPACPI_LED_MICMUTE, !val);
3575         }
3576 }
3577
3578 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3579                                   const struct hda_fixup *fix, int action)
3580 {
3581         struct alc_spec *spec = codec->spec;
3582         bool removefunc = false;
3583
3584         if (action == HDA_FIXUP_ACT_PROBE) {
3585                 if (!led_set_func)
3586                         led_set_func = symbol_request(tpacpi_led_set);
3587                 if (!led_set_func) {
3588                         snd_printk(KERN_WARNING "Failed to find thinkpad-acpi symbol tpacpi_led_set\n");
3589                         return;
3590                 }
3591
3592                 removefunc = true;
3593                 if (led_set_func(TPACPI_LED_MUTE, false) >= 0) {
3594                         spec->gen.vmaster_mute.hook = update_tpacpi_mute_led;
3595                         removefunc = false;
3596                 }
3597                 if (led_set_func(TPACPI_LED_MICMUTE, false) >= 0) {
3598                         if (spec->gen.num_adc_nids > 1)
3599                                 snd_printdd("Skipping micmute LED control due to several ADCs");
3600                         else {
3601                                 spec->gen.cap_sync_hook = update_tpacpi_micmute_led;
3602                                 removefunc = false;
3603                         }
3604                 }
3605         }
3606
3607         if (led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) {
3608                 symbol_put(tpacpi_led_set);
3609                 led_set_func = NULL;
3610         }
3611 }
3612
3613 #else
3614
3615 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3616                                   const struct hda_fixup *fix, int action)
3617 {
3618 }
3619
3620 #endif
3621
3622 enum {
3623         ALC269_FIXUP_SONY_VAIO,
3624         ALC275_FIXUP_SONY_VAIO_GPIO2,
3625         ALC269_FIXUP_DELL_M101Z,
3626         ALC269_FIXUP_SKU_IGNORE,
3627         ALC269_FIXUP_ASUS_G73JW,
3628         ALC269_FIXUP_LENOVO_EAPD,
3629         ALC275_FIXUP_SONY_HWEQ,
3630         ALC271_FIXUP_DMIC,
3631         ALC269_FIXUP_PCM_44K,
3632         ALC269_FIXUP_STEREO_DMIC,
3633         ALC269_FIXUP_HEADSET_MIC,
3634         ALC269_FIXUP_QUANTA_MUTE,
3635         ALC269_FIXUP_LIFEBOOK,
3636         ALC269_FIXUP_AMIC,
3637         ALC269_FIXUP_DMIC,
3638         ALC269VB_FIXUP_AMIC,
3639         ALC269VB_FIXUP_DMIC,
3640         ALC269_FIXUP_HP_MUTE_LED,
3641         ALC269_FIXUP_HP_MUTE_LED_MIC1,
3642         ALC269_FIXUP_HP_MUTE_LED_MIC2,
3643         ALC269_FIXUP_HP_GPIO_LED,
3644         ALC269_FIXUP_INV_DMIC,
3645         ALC269_FIXUP_LENOVO_DOCK,
3646         ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
3647         ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
3648         ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
3649         ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
3650         ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
3651         ALC269_FIXUP_HEADSET_MODE,
3652         ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
3653         ALC269_FIXUP_ASUS_X101_FUNC,
3654         ALC269_FIXUP_ASUS_X101_VERB,
3655         ALC269_FIXUP_ASUS_X101,
3656         ALC271_FIXUP_AMIC_MIC2,
3657         ALC271_FIXUP_HP_GATE_MIC_JACK,
3658         ALC269_FIXUP_ACER_AC700,
3659         ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
3660         ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
3661         ALC269VB_FIXUP_ORDISSIMO_EVE2,
3662         ALC283_FIXUP_CHROME_BOOK,
3663         ALC282_FIXUP_ASUS_TX300,
3664         ALC283_FIXUP_INT_MIC,
3665         ALC290_FIXUP_MONO_SPEAKERS,
3666         ALC269_FIXUP_THINKPAD_ACPI,
3667 };
3668
3669 static const struct hda_fixup alc269_fixups[] = {
3670         [ALC269_FIXUP_SONY_VAIO] = {
3671                 .type = HDA_FIXUP_PINCTLS,
3672                 .v.pins = (const struct hda_pintbl[]) {
3673                         {0x19, PIN_VREFGRD},
3674                         {}
3675                 }
3676         },
3677         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
3678                 .type = HDA_FIXUP_VERBS,
3679                 .v.verbs = (const struct hda_verb[]) {
3680                         {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
3681                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
3682                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3683                         { }
3684                 },
3685                 .chained = true,
3686                 .chain_id = ALC269_FIXUP_SONY_VAIO
3687         },
3688         [ALC269_FIXUP_DELL_M101Z] = {
3689                 .type = HDA_FIXUP_VERBS,
3690                 .v.verbs = (const struct hda_verb[]) {
3691                         /* Enables internal speaker */
3692                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
3693                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
3694                         {}
3695                 }
3696         },
3697         [ALC269_FIXUP_SKU_IGNORE] = {
3698                 .type = HDA_FIXUP_FUNC,
3699                 .v.func = alc_fixup_sku_ignore,
3700         },
3701         [ALC269_FIXUP_ASUS_G73JW] = {
3702                 .type = HDA_FIXUP_PINS,
3703                 .v.pins = (const struct hda_pintbl[]) {
3704                         { 0x17, 0x99130111 }, /* subwoofer */
3705                         { }
3706                 }
3707         },
3708         [ALC269_FIXUP_LENOVO_EAPD] = {
3709                 .type = HDA_FIXUP_VERBS,
3710                 .v.verbs = (const struct hda_verb[]) {
3711                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3712                         {}
3713                 }
3714         },
3715         [ALC275_FIXUP_SONY_HWEQ] = {
3716                 .type = HDA_FIXUP_FUNC,
3717                 .v.func = alc269_fixup_hweq,
3718                 .chained = true,
3719                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
3720         },
3721         [ALC271_FIXUP_DMIC] = {
3722                 .type = HDA_FIXUP_FUNC,
3723                 .v.func = alc271_fixup_dmic,
3724         },
3725         [ALC269_FIXUP_PCM_44K] = {
3726                 .type = HDA_FIXUP_FUNC,
3727                 .v.func = alc269_fixup_pcm_44k,
3728                 .chained = true,
3729                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
3730         },
3731         [ALC269_FIXUP_STEREO_DMIC] = {
3732                 .type = HDA_FIXUP_FUNC,
3733                 .v.func = alc269_fixup_stereo_dmic,
3734         },
3735         [ALC269_FIXUP_HEADSET_MIC] = {
3736                 .type = HDA_FIXUP_FUNC,
3737                 .v.func = alc269_fixup_headset_mic,
3738         },
3739         [ALC269_FIXUP_QUANTA_MUTE] = {
3740                 .type = HDA_FIXUP_FUNC,
3741                 .v.func = alc269_fixup_quanta_mute,
3742         },
3743         [ALC269_FIXUP_LIFEBOOK] = {
3744                 .type = HDA_FIXUP_PINS,
3745                 .v.pins = (const struct hda_pintbl[]) {
3746                         { 0x1a, 0x2101103f }, /* dock line-out */
3747                         { 0x1b, 0x23a11040 }, /* dock mic-in */
3748                         { }
3749                 },
3750                 .chained = true,
3751                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
3752         },
3753         [ALC269_FIXUP_AMIC] = {
3754                 .type = HDA_FIXUP_PINS,
3755                 .v.pins = (const struct hda_pintbl[]) {
3756                         { 0x14, 0x99130110 }, /* speaker */
3757                         { 0x15, 0x0121401f }, /* HP out */
3758                         { 0x18, 0x01a19c20 }, /* mic */
3759                         { 0x19, 0x99a3092f }, /* int-mic */
3760                         { }
3761                 },
3762         },
3763         [ALC269_FIXUP_DMIC] = {
3764                 .type = HDA_FIXUP_PINS,
3765                 .v.pins = (const struct hda_pintbl[]) {
3766                         { 0x12, 0x99a3092f }, /* int-mic */
3767                         { 0x14, 0x99130110 }, /* speaker */
3768                         { 0x15, 0x0121401f }, /* HP out */
3769                         { 0x18, 0x01a19c20 }, /* mic */
3770                         { }
3771                 },
3772         },
3773         [ALC269VB_FIXUP_AMIC] = {
3774                 .type = HDA_FIXUP_PINS,
3775                 .v.pins = (const struct hda_pintbl[]) {
3776                         { 0x14, 0x99130110 }, /* speaker */
3777                         { 0x18, 0x01a19c20 }, /* mic */
3778                         { 0x19, 0x99a3092f }, /* int-mic */
3779                         { 0x21, 0x0121401f }, /* HP out */
3780                         { }
3781                 },
3782         },
3783         [ALC269VB_FIXUP_DMIC] = {
3784                 .type = HDA_FIXUP_PINS,
3785                 .v.pins = (const struct hda_pintbl[]) {
3786                         { 0x12, 0x99a3092f }, /* int-mic */
3787                         { 0x14, 0x99130110 }, /* speaker */
3788                         { 0x18, 0x01a19c20 }, /* mic */
3789                         { 0x21, 0x0121401f }, /* HP out */
3790                         { }
3791                 },
3792         },
3793         [ALC269_FIXUP_HP_MUTE_LED] = {
3794                 .type = HDA_FIXUP_FUNC,
3795                 .v.func = alc269_fixup_hp_mute_led,
3796         },
3797         [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
3798                 .type = HDA_FIXUP_FUNC,
3799                 .v.func = alc269_fixup_hp_mute_led_mic1,
3800         },
3801         [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
3802                 .type = HDA_FIXUP_FUNC,
3803                 .v.func = alc269_fixup_hp_mute_led_mic2,
3804         },
3805         [ALC269_FIXUP_HP_GPIO_LED] = {
3806                 .type = HDA_FIXUP_FUNC,
3807                 .v.func = alc269_fixup_hp_gpio_led,
3808         },
3809         [ALC269_FIXUP_INV_DMIC] = {
3810                 .type = HDA_FIXUP_FUNC,
3811                 .v.func = alc_fixup_inv_dmic_0x12,
3812         },
3813         [ALC269_FIXUP_LENOVO_DOCK] = {
3814                 .type = HDA_FIXUP_PINS,
3815                 .v.pins = (const struct hda_pintbl[]) {
3816                         { 0x19, 0x23a11040 }, /* dock mic */
3817                         { 0x1b, 0x2121103f }, /* dock headphone */
3818                         { }
3819                 },
3820                 .chained = true,
3821                 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
3822         },
3823         [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
3824                 .type = HDA_FIXUP_FUNC,
3825                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
3826         },
3827         [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
3828                 .type = HDA_FIXUP_PINS,
3829                 .v.pins = (const struct hda_pintbl[]) {
3830                         { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
3831                         { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
3832                         { }
3833                 },
3834                 .chained = true,
3835                 .chain_id = ALC269_FIXUP_HEADSET_MODE
3836         },
3837         [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
3838                 .type = HDA_FIXUP_PINS,
3839                 .v.pins = (const struct hda_pintbl[]) {
3840                         { 0x16, 0x21014020 }, /* dock line out */
3841                         { 0x19, 0x21a19030 }, /* dock mic */
3842                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
3843                         { }
3844                 },
3845                 .chained = true,
3846                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
3847         },
3848         [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
3849                 .type = HDA_FIXUP_PINS,
3850                 .v.pins = (const struct hda_pintbl[]) {
3851                         { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
3852                         { }
3853                 },
3854                 .chained = true,
3855                 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
3856         },
3857         [ALC269_FIXUP_HEADSET_MODE] = {
3858                 .type = HDA_FIXUP_FUNC,
3859                 .v.func = alc_fixup_headset_mode,
3860         },
3861         [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
3862                 .type = HDA_FIXUP_FUNC,
3863                 .v.func = alc_fixup_headset_mode_no_hp_mic,
3864         },
3865         [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
3866                 .type = HDA_FIXUP_PINS,
3867                 .v.pins = (const struct hda_pintbl[]) {
3868                         { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
3869                         { }
3870                 },
3871                 .chained = true,
3872                 .chain_id = ALC269_FIXUP_HEADSET_MIC
3873         },
3874         [ALC269_FIXUP_ASUS_X101_FUNC] = {
3875                 .type = HDA_FIXUP_FUNC,
3876                 .v.func = alc269_fixup_x101_headset_mic,
3877         },
3878         [ALC269_FIXUP_ASUS_X101_VERB] = {
3879                 .type = HDA_FIXUP_VERBS,
3880                 .v.verbs = (const struct hda_verb[]) {
3881                         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3882                         {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
3883                         {0x20, AC_VERB_SET_PROC_COEF,  0x0310},
3884                         { }
3885                 },
3886                 .chained = true,
3887                 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
3888         },
3889         [ALC269_FIXUP_ASUS_X101] = {
3890                 .type = HDA_FIXUP_PINS,
3891                 .v.pins = (const struct hda_pintbl[]) {
3892                         { 0x18, 0x04a1182c }, /* Headset mic */
3893                         { }
3894                 },
3895                 .chained = true,
3896                 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
3897         },
3898         [ALC271_FIXUP_AMIC_MIC2] = {
3899                 .type = HDA_FIXUP_PINS,
3900                 .v.pins = (const struct hda_pintbl[]) {
3901                         { 0x14, 0x99130110 }, /* speaker */
3902                         { 0x19, 0x01a19c20 }, /* mic */
3903                         { 0x1b, 0x99a7012f }, /* int-mic */
3904                         { 0x21, 0x0121401f }, /* HP out */
3905                         { }
3906                 },
3907         },
3908         [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
3909                 .type = HDA_FIXUP_FUNC,
3910                 .v.func = alc271_hp_gate_mic_jack,
3911                 .chained = true,
3912                 .chain_id = ALC271_FIXUP_AMIC_MIC2,
3913         },
3914         [ALC269_FIXUP_ACER_AC700] = {
3915                 .type = HDA_FIXUP_PINS,
3916                 .v.pins = (const struct hda_pintbl[]) {
3917                         { 0x12, 0x99a3092f }, /* int-mic */
3918                         { 0x14, 0x99130110 }, /* speaker */
3919                         { 0x18, 0x03a11c20 }, /* mic */
3920                         { 0x1e, 0x0346101e }, /* SPDIF1 */
3921                         { 0x21, 0x0321101f }, /* HP out */
3922                         { }
3923                 },
3924                 .chained = true,
3925                 .chain_id = ALC271_FIXUP_DMIC,
3926         },
3927         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
3928                 .type = HDA_FIXUP_FUNC,
3929                 .v.func = alc269_fixup_limit_int_mic_boost,
3930         },
3931         [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
3932                 .type = HDA_FIXUP_FUNC,
3933                 .v.func = alc269_fixup_limit_int_mic_boost,
3934                 .chained = true,
3935                 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
3936         },
3937         [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
3938                 .type = HDA_FIXUP_PINS,
3939                 .v.pins = (const struct hda_pintbl[]) {
3940                         { 0x12, 0x99a3092f }, /* int-mic */
3941                         { 0x18, 0x03a11d20 }, /* mic */
3942                         { 0x19, 0x411111f0 }, /* Unused bogus pin */
3943                         { }
3944                 },
3945         },
3946         [ALC283_FIXUP_CHROME_BOOK] = {
3947                 .type = HDA_FIXUP_FUNC,
3948                 .v.func = alc283_fixup_chromebook,
3949         },
3950         [ALC282_FIXUP_ASUS_TX300] = {
3951                 .type = HDA_FIXUP_FUNC,
3952                 .v.func = alc282_fixup_asus_tx300,
3953         },
3954         [ALC283_FIXUP_INT_MIC] = {
3955                 .type = HDA_FIXUP_VERBS,
3956                 .v.verbs = (const struct hda_verb[]) {
3957                         {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
3958                         {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
3959                         { }
3960                 },
3961                 .chained = true,
3962                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
3963         },
3964         [ALC290_FIXUP_MONO_SPEAKERS] = {
3965                 .type = HDA_FIXUP_FUNC,
3966                 .v.func = alc290_fixup_mono_speakers,
3967                 .chained = true,
3968                 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
3969         },
3970         [ALC269_FIXUP_THINKPAD_ACPI] = {
3971                 .type = HDA_FIXUP_FUNC,
3972                 .v.func = alc_fixup_thinkpad_acpi,
3973                 .chained = true,
3974                 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
3975         },
3976 };
3977
3978 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
3979         SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
3980         SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
3981         SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
3982         SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
3983         SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
3984         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
3985         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
3986         SND_PCI_QUIRK(0x1028, 0x05bd, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3987         SND_PCI_QUIRK(0x1028, 0x05be, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3988         SND_PCI_QUIRK(0x1028, 0x05c4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3989         SND_PCI_QUIRK(0x1028, 0x05c5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3990         SND_PCI_QUIRK(0x1028, 0x05c6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3991         SND_PCI_QUIRK(0x1028, 0x05c7, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3992         SND_PCI_QUIRK(0x1028, 0x05c8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3993         SND_PCI_QUIRK(0x1028, 0x05c9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3994         SND_PCI_QUIRK(0x1028, 0x05ca, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3995         SND_PCI_QUIRK(0x1028, 0x05cb, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3996         SND_PCI_QUIRK(0x1028, 0x05cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3997         SND_PCI_QUIRK(0x1028, 0x05cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3998         SND_PCI_QUIRK(0x1028, 0x05de, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
3999         SND_PCI_QUIRK(0x1028, 0x05e0, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4000         SND_PCI_QUIRK(0x1028, 0x05e9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4001         SND_PCI_QUIRK(0x1028, 0x05ea, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4002         SND_PCI_QUIRK(0x1028, 0x05eb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4003         SND_PCI_QUIRK(0x1028, 0x05ec, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4004         SND_PCI_QUIRK(0x1028, 0x05ed, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4005         SND_PCI_QUIRK(0x1028, 0x05ee, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4006         SND_PCI_QUIRK(0x1028, 0x05f3, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4007         SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4008         SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4009         SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4010         SND_PCI_QUIRK(0x1028, 0x05f8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4011         SND_PCI_QUIRK(0x1028, 0x05f9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4012         SND_PCI_QUIRK(0x1028, 0x05fb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4013         SND_PCI_QUIRK(0x1028, 0x0606, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4014         SND_PCI_QUIRK(0x1028, 0x0608, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4015         SND_PCI_QUIRK(0x1028, 0x0609, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4016         SND_PCI_QUIRK(0x1028, 0x0613, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4017         SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_MONO_SPEAKERS),
4018         SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4019         SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4020         SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
4021         SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
4022         SND_PCI_QUIRK(0x103c, 0x1973, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4023         SND_PCI_QUIRK(0x103c, 0x1983, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4024         SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
4025         SND_PCI_QUIRK(0x103c, 0x21ed, "HP Falco Chromebook", ALC283_FIXUP_CHROME_BOOK),
4026         SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
4027         SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
4028         SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4029         SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4030         SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
4031         SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
4032         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4033         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
4034         SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
4035         SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4036         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4037         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4038         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4039         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4040         SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
4041         SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
4042         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4043         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4044         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4045         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4046         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4047         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4048         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4049         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4050         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4051         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
4052         SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
4053         SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
4054         SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4055         SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
4056         SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
4057         SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
4058         SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4059         SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4060         SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
4061         SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4062         SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4063         SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
4064         SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4065         SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4066         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
4067         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
4068         SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
4069
4070 #if 0
4071         /* Below is a quirk table taken from the old code.
4072          * Basically the device should work as is without the fixup table.
4073          * If BIOS doesn't give a proper info, enable the corresponding
4074          * fixup entry.
4075          */
4076         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4077                       ALC269_FIXUP_AMIC),
4078         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
4079         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4080         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4081         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4082         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4083         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4084         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4085         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4086         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4087         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4088         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4089         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4090         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4091         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4092         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4093         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4094         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4095         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4096         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4097         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4098         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4099         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4100         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4101         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4102         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4103         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4104         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4105         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4106         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4107         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4108         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4109         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4110         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4111         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4112         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4113         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4114         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4115         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4116         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4117 #endif
4118         {}
4119 };
4120
4121 static const struct hda_model_fixup alc269_fixup_models[] = {
4122         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4123         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
4124         {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
4125         {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
4126         {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
4127         {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
4128         {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
4129         {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
4130         {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
4131         {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
4132         {}
4133 };
4134
4135
4136 static void alc269_fill_coef(struct hda_codec *codec)
4137 {
4138         struct alc_spec *spec = codec->spec;
4139         int val;
4140
4141         if (spec->codec_variant != ALC269_TYPE_ALC269VB)
4142                 return;
4143
4144         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
4145                 alc_write_coef_idx(codec, 0xf, 0x960b);
4146                 alc_write_coef_idx(codec, 0xe, 0x8817);
4147         }
4148
4149         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
4150                 alc_write_coef_idx(codec, 0xf, 0x960b);
4151                 alc_write_coef_idx(codec, 0xe, 0x8814);
4152         }
4153
4154         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
4155                 val = alc_read_coef_idx(codec, 0x04);
4156                 /* Power up output pin */
4157                 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4158         }
4159
4160         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
4161                 val = alc_read_coef_idx(codec, 0xd);
4162                 if ((val & 0x0c00) >> 10 != 0x1) {
4163                         /* Capless ramp up clock control */
4164                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
4165                 }
4166                 val = alc_read_coef_idx(codec, 0x17);
4167                 if ((val & 0x01c0) >> 6 != 0x4) {
4168                         /* Class D power on reset */
4169                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
4170                 }
4171         }
4172
4173         val = alc_read_coef_idx(codec, 0xd); /* Class D */
4174         alc_write_coef_idx(codec, 0xd, val | (1<<14));
4175
4176         val = alc_read_coef_idx(codec, 0x4); /* HP */
4177         alc_write_coef_idx(codec, 0x4, val | (1<<11));
4178 }
4179
4180 /*
4181  */
4182 static int patch_alc269(struct hda_codec *codec)
4183 {
4184         struct alc_spec *spec;
4185         int err;
4186
4187         err = alc_alloc_spec(codec, 0x0b);
4188         if (err < 0)
4189                 return err;
4190
4191         spec = codec->spec;
4192         spec->gen.shared_mic_vref_pin = 0x18;
4193
4194         snd_hda_pick_fixup(codec, alc269_fixup_models,
4195                        alc269_fixup_tbl, alc269_fixups);
4196         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4197
4198         alc_auto_parse_customize_define(codec);
4199
4200         if (has_cdefine_beep(codec))
4201                 spec->gen.beep_nid = 0x01;
4202
4203         switch (codec->vendor_id) {
4204         case 0x10ec0269:
4205                 spec->codec_variant = ALC269_TYPE_ALC269VA;
4206                 switch (alc_get_coef0(codec) & 0x00f0) {
4207                 case 0x0010:
4208                         if (codec->bus->pci->subsystem_vendor == 0x1025 &&
4209                             spec->cdefine.platform_type == 1)
4210                                 err = alc_codec_rename(codec, "ALC271X");
4211                         spec->codec_variant = ALC269_TYPE_ALC269VB;
4212                         break;
4213                 case 0x0020:
4214                         if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4215                             codec->bus->pci->subsystem_device == 0x21f3)
4216                                 err = alc_codec_rename(codec, "ALC3202");
4217                         spec->codec_variant = ALC269_TYPE_ALC269VC;
4218                         break;
4219                 case 0x0030:
4220                         spec->codec_variant = ALC269_TYPE_ALC269VD;
4221                         break;
4222                 default:
4223                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
4224                 }
4225                 if (err < 0)
4226                         goto error;
4227                 spec->init_hook = alc269_fill_coef;
4228                 alc269_fill_coef(codec);
4229                 break;
4230
4231         case 0x10ec0280:
4232         case 0x10ec0290:
4233                 spec->codec_variant = ALC269_TYPE_ALC280;
4234                 break;
4235         case 0x10ec0282:
4236                 spec->codec_variant = ALC269_TYPE_ALC282;
4237                 break;
4238         case 0x10ec0233:
4239         case 0x10ec0283:
4240                 spec->codec_variant = ALC269_TYPE_ALC283;
4241                 spec->shutup = alc283_shutup;
4242                 spec->init_hook = alc283_init;
4243                 break;
4244         case 0x10ec0284:
4245         case 0x10ec0292:
4246                 spec->codec_variant = ALC269_TYPE_ALC284;
4247                 break;
4248         case 0x10ec0285:
4249         case 0x10ec0293:
4250                 spec->codec_variant = ALC269_TYPE_ALC285;
4251                 break;
4252         case 0x10ec0286:
4253                 spec->codec_variant = ALC269_TYPE_ALC286;
4254                 break;
4255         case 0x10ec0255:
4256                 spec->codec_variant = ALC269_TYPE_ALC255;
4257                 break;
4258         }
4259
4260         if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
4261                 spec->has_alc5505_dsp = true;
4262                 spec->init_hook = alc5505_dsp_init;
4263         }
4264
4265         /* automatic parse from the BIOS config */
4266         err = alc269_parse_auto_config(codec);
4267         if (err < 0)
4268                 goto error;
4269
4270         if (!spec->gen.no_analog && spec->gen.beep_nid)
4271                 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
4272
4273         codec->patch_ops = alc_patch_ops;
4274 #ifdef CONFIG_PM
4275         codec->patch_ops.suspend = alc269_suspend;
4276         codec->patch_ops.resume = alc269_resume;
4277 #endif
4278         if (!spec->shutup)
4279                 spec->shutup = alc269_shutup;
4280
4281         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4282
4283         return 0;
4284
4285  error:
4286         alc_free(codec);
4287         return err;
4288 }
4289
4290 /*
4291  * ALC861
4292  */
4293
4294 static int alc861_parse_auto_config(struct hda_codec *codec)
4295 {
4296         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
4297         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4298         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
4299 }
4300
4301 /* Pin config fixes */
4302 enum {
4303         ALC861_FIXUP_FSC_AMILO_PI1505,
4304         ALC861_FIXUP_AMP_VREF_0F,
4305         ALC861_FIXUP_NO_JACK_DETECT,
4306         ALC861_FIXUP_ASUS_A6RP,
4307 };
4308
4309 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
4310 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
4311                         const struct hda_fixup *fix, int action)
4312 {
4313         struct alc_spec *spec = codec->spec;
4314         unsigned int val;
4315
4316         if (action != HDA_FIXUP_ACT_INIT)
4317                 return;
4318         val = snd_hda_codec_get_pin_target(codec, 0x0f);
4319         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
4320                 val |= AC_PINCTL_IN_EN;
4321         val |= AC_PINCTL_VREF_50;
4322         snd_hda_set_pin_ctl(codec, 0x0f, val);
4323         spec->gen.keep_vref_in_automute = 1;
4324 }
4325
4326 /* suppress the jack-detection */
4327 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
4328                                      const struct hda_fixup *fix, int action)
4329 {
4330         if (action == HDA_FIXUP_ACT_PRE_PROBE)
4331                 codec->no_jack_detect = 1;
4332 }
4333
4334 static const struct hda_fixup alc861_fixups[] = {
4335         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
4336                 .type = HDA_FIXUP_PINS,
4337                 .v.pins = (const struct hda_pintbl[]) {
4338                         { 0x0b, 0x0221101f }, /* HP */
4339                         { 0x0f, 0x90170310 }, /* speaker */
4340                         { }
4341                 }
4342         },
4343         [ALC861_FIXUP_AMP_VREF_0F] = {
4344                 .type = HDA_FIXUP_FUNC,
4345                 .v.func = alc861_fixup_asus_amp_vref_0f,
4346         },
4347         [ALC861_FIXUP_NO_JACK_DETECT] = {
4348                 .type = HDA_FIXUP_FUNC,
4349                 .v.func = alc_fixup_no_jack_detect,
4350         },
4351         [ALC861_FIXUP_ASUS_A6RP] = {
4352                 .type = HDA_FIXUP_FUNC,
4353                 .v.func = alc861_fixup_asus_amp_vref_0f,
4354                 .chained = true,
4355                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
4356         }
4357 };
4358
4359 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
4360         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
4361         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
4362         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
4363         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
4364         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
4365         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
4366         {}
4367 };
4368
4369 /*
4370  */
4371 static int patch_alc861(struct hda_codec *codec)
4372 {
4373         struct alc_spec *spec;
4374         int err;
4375
4376         err = alc_alloc_spec(codec, 0x15);
4377         if (err < 0)
4378                 return err;
4379
4380         spec = codec->spec;
4381         spec->gen.beep_nid = 0x23;
4382
4383         snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4384         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4385
4386         /* automatic parse from the BIOS config */
4387         err = alc861_parse_auto_config(codec);
4388         if (err < 0)
4389                 goto error;
4390
4391         if (!spec->gen.no_analog)
4392                 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
4393
4394         codec->patch_ops = alc_patch_ops;
4395 #ifdef CONFIG_PM
4396         spec->power_hook = alc_power_eapd;
4397 #endif
4398
4399         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4400
4401         return 0;
4402
4403  error:
4404         alc_free(codec);
4405         return err;
4406 }
4407
4408 /*
4409  * ALC861-VD support
4410  *
4411  * Based on ALC882
4412  *
4413  * In addition, an independent DAC
4414  */
4415 static int alc861vd_parse_auto_config(struct hda_codec *codec)
4416 {
4417         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
4418         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4419         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
4420 }
4421
4422 enum {
4423         ALC660VD_FIX_ASUS_GPIO1,
4424         ALC861VD_FIX_DALLAS,
4425 };
4426
4427 /* exclude VREF80 */
4428 static void alc861vd_fixup_dallas(struct hda_codec *codec,
4429                                   const struct hda_fixup *fix, int action)
4430 {
4431         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4432                 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
4433                 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
4434         }
4435 }
4436
4437 static const struct hda_fixup alc861vd_fixups[] = {
4438         [ALC660VD_FIX_ASUS_GPIO1] = {
4439                 .type = HDA_FIXUP_VERBS,
4440                 .v.verbs = (const struct hda_verb[]) {
4441                         /* reset GPIO1 */
4442                         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4443                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4444                         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4445                         { }
4446                 }
4447         },
4448         [ALC861VD_FIX_DALLAS] = {
4449                 .type = HDA_FIXUP_FUNC,
4450                 .v.func = alc861vd_fixup_dallas,
4451         },
4452 };
4453
4454 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
4455         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
4456         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
4457         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
4458         {}
4459 };
4460
4461 /*
4462  */
4463 static int patch_alc861vd(struct hda_codec *codec)
4464 {
4465         struct alc_spec *spec;
4466         int err;
4467
4468         err = alc_alloc_spec(codec, 0x0b);
4469         if (err < 0)
4470                 return err;
4471
4472         spec = codec->spec;
4473         spec->gen.beep_nid = 0x23;
4474
4475         snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
4476         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4477
4478         /* automatic parse from the BIOS config */
4479         err = alc861vd_parse_auto_config(codec);
4480         if (err < 0)
4481                 goto error;
4482
4483         if (!spec->gen.no_analog)
4484                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4485
4486         codec->patch_ops = alc_patch_ops;
4487
4488         spec->shutup = alc_eapd_shutup;
4489
4490         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4491
4492         return 0;
4493
4494  error:
4495         alc_free(codec);
4496         return err;
4497 }
4498
4499 /*
4500  * ALC662 support
4501  *
4502  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
4503  * configuration.  Each pin widget can choose any input DACs and a mixer.
4504  * Each ADC is connected from a mixer of all inputs.  This makes possible
4505  * 6-channel independent captures.
4506  *
4507  * In addition, an independent DAC for the multi-playback (not used in this
4508  * driver yet).
4509  */
4510
4511 /*
4512  * BIOS auto configuration
4513  */
4514
4515 static int alc662_parse_auto_config(struct hda_codec *codec)
4516 {
4517         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
4518         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
4519         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4520         const hda_nid_t *ssids;
4521
4522         if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
4523             codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670 ||
4524             codec->vendor_id == 0x10ec0671)
4525                 ssids = alc663_ssids;
4526         else
4527                 ssids = alc662_ssids;
4528         return alc_parse_auto_config(codec, alc662_ignore, ssids);
4529 }
4530
4531 static void alc272_fixup_mario(struct hda_codec *codec,
4532                                const struct hda_fixup *fix, int action)
4533 {
4534         if (action != HDA_FIXUP_ACT_PRE_PROBE)
4535                 return;
4536         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
4537                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
4538                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
4539                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4540                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
4541                 printk(KERN_WARNING
4542                        "hda_codec: failed to override amp caps for NID 0x2\n");
4543 }
4544
4545 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
4546         { .channels = 2,
4547           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4548         { .channels = 4,
4549           .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4550                    SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
4551         { }
4552 };
4553
4554 /* override the 2.1 chmap */
4555 static void alc662_fixup_bass_chmap(struct hda_codec *codec,
4556                                     const struct hda_fixup *fix, int action)
4557 {
4558         if (action == HDA_FIXUP_ACT_BUILD) {
4559                 struct alc_spec *spec = codec->spec;
4560                 spec->gen.pcm_rec[0].stream[0].chmap = asus_pcm_2_1_chmaps;
4561         }
4562 }
4563
4564 enum {
4565         ALC662_FIXUP_ASPIRE,
4566         ALC662_FIXUP_IDEAPAD,
4567         ALC272_FIXUP_MARIO,
4568         ALC662_FIXUP_CZC_P10T,
4569         ALC662_FIXUP_SKU_IGNORE,
4570         ALC662_FIXUP_HP_RP5800,
4571         ALC662_FIXUP_ASUS_MODE1,
4572         ALC662_FIXUP_ASUS_MODE2,
4573         ALC662_FIXUP_ASUS_MODE3,
4574         ALC662_FIXUP_ASUS_MODE4,
4575         ALC662_FIXUP_ASUS_MODE5,
4576         ALC662_FIXUP_ASUS_MODE6,
4577         ALC662_FIXUP_ASUS_MODE7,
4578         ALC662_FIXUP_ASUS_MODE8,
4579         ALC662_FIXUP_NO_JACK_DETECT,
4580         ALC662_FIXUP_ZOTAC_Z68,
4581         ALC662_FIXUP_INV_DMIC,
4582         ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
4583         ALC668_FIXUP_HEADSET_MODE,
4584         ALC662_FIXUP_BASS_CHMAP,
4585 };
4586
4587 static const struct hda_fixup alc662_fixups[] = {
4588         [ALC662_FIXUP_ASPIRE] = {
4589                 .type = HDA_FIXUP_PINS,
4590                 .v.pins = (const struct hda_pintbl[]) {
4591                         { 0x15, 0x99130112 }, /* subwoofer */
4592                         { }
4593                 }
4594         },
4595         [ALC662_FIXUP_IDEAPAD] = {
4596                 .type = HDA_FIXUP_PINS,
4597                 .v.pins = (const struct hda_pintbl[]) {
4598                         { 0x17, 0x99130112 }, /* subwoofer */
4599                         { }
4600                 }
4601         },
4602         [ALC272_FIXUP_MARIO] = {
4603                 .type = HDA_FIXUP_FUNC,
4604                 .v.func = alc272_fixup_mario,
4605         },
4606         [ALC662_FIXUP_CZC_P10T] = {
4607                 .type = HDA_FIXUP_VERBS,
4608                 .v.verbs = (const struct hda_verb[]) {
4609                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4610                         {}
4611                 }
4612         },
4613         [ALC662_FIXUP_SKU_IGNORE] = {
4614                 .type = HDA_FIXUP_FUNC,
4615                 .v.func = alc_fixup_sku_ignore,
4616         },
4617         [ALC662_FIXUP_HP_RP5800] = {
4618                 .type = HDA_FIXUP_PINS,
4619                 .v.pins = (const struct hda_pintbl[]) {
4620                         { 0x14, 0x0221201f }, /* HP out */
4621                         { }
4622                 },
4623                 .chained = true,
4624                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4625         },
4626         [ALC662_FIXUP_ASUS_MODE1] = {
4627                 .type = HDA_FIXUP_PINS,
4628                 .v.pins = (const struct hda_pintbl[]) {
4629                         { 0x14, 0x99130110 }, /* speaker */
4630                         { 0x18, 0x01a19c20 }, /* mic */
4631                         { 0x19, 0x99a3092f }, /* int-mic */
4632                         { 0x21, 0x0121401f }, /* HP out */
4633                         { }
4634                 },
4635                 .chained = true,
4636                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4637         },
4638         [ALC662_FIXUP_ASUS_MODE2] = {
4639                 .type = HDA_FIXUP_PINS,
4640                 .v.pins = (const struct hda_pintbl[]) {
4641                         { 0x14, 0x99130110 }, /* speaker */
4642                         { 0x18, 0x01a19820 }, /* mic */
4643                         { 0x19, 0x99a3092f }, /* int-mic */
4644                         { 0x1b, 0x0121401f }, /* HP out */
4645                         { }
4646                 },
4647                 .chained = true,
4648                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4649         },
4650         [ALC662_FIXUP_ASUS_MODE3] = {
4651                 .type = HDA_FIXUP_PINS,
4652                 .v.pins = (const struct hda_pintbl[]) {
4653                         { 0x14, 0x99130110 }, /* speaker */
4654                         { 0x15, 0x0121441f }, /* HP */
4655                         { 0x18, 0x01a19840 }, /* mic */
4656                         { 0x19, 0x99a3094f }, /* int-mic */
4657                         { 0x21, 0x01211420 }, /* HP2 */
4658                         { }
4659                 },
4660                 .chained = true,
4661                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4662         },
4663         [ALC662_FIXUP_ASUS_MODE4] = {
4664                 .type = HDA_FIXUP_PINS,
4665                 .v.pins = (const struct hda_pintbl[]) {
4666                         { 0x14, 0x99130110 }, /* speaker */
4667                         { 0x16, 0x99130111 }, /* speaker */
4668                         { 0x18, 0x01a19840 }, /* mic */
4669                         { 0x19, 0x99a3094f }, /* int-mic */
4670                         { 0x21, 0x0121441f }, /* HP */
4671                         { }
4672                 },
4673                 .chained = true,
4674                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4675         },
4676         [ALC662_FIXUP_ASUS_MODE5] = {
4677                 .type = HDA_FIXUP_PINS,
4678                 .v.pins = (const struct hda_pintbl[]) {
4679                         { 0x14, 0x99130110 }, /* speaker */
4680                         { 0x15, 0x0121441f }, /* HP */
4681                         { 0x16, 0x99130111 }, /* speaker */
4682                         { 0x18, 0x01a19840 }, /* mic */
4683                         { 0x19, 0x99a3094f }, /* int-mic */
4684                         { }
4685                 },
4686                 .chained = true,
4687                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4688         },
4689         [ALC662_FIXUP_ASUS_MODE6] = {
4690                 .type = HDA_FIXUP_PINS,
4691                 .v.pins = (const struct hda_pintbl[]) {
4692                         { 0x14, 0x99130110 }, /* speaker */
4693                         { 0x15, 0x01211420 }, /* HP2 */
4694                         { 0x18, 0x01a19840 }, /* mic */
4695                         { 0x19, 0x99a3094f }, /* int-mic */
4696                         { 0x1b, 0x0121441f }, /* HP */
4697                         { }
4698                 },
4699                 .chained = true,
4700                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4701         },
4702         [ALC662_FIXUP_ASUS_MODE7] = {
4703                 .type = HDA_FIXUP_PINS,
4704                 .v.pins = (const struct hda_pintbl[]) {
4705                         { 0x14, 0x99130110 }, /* speaker */
4706                         { 0x17, 0x99130111 }, /* speaker */
4707                         { 0x18, 0x01a19840 }, /* mic */
4708                         { 0x19, 0x99a3094f }, /* int-mic */
4709                         { 0x1b, 0x01214020 }, /* HP */
4710                         { 0x21, 0x0121401f }, /* HP */
4711                         { }
4712                 },
4713                 .chained = true,
4714                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4715         },
4716         [ALC662_FIXUP_ASUS_MODE8] = {
4717                 .type = HDA_FIXUP_PINS,
4718                 .v.pins = (const struct hda_pintbl[]) {
4719                         { 0x14, 0x99130110 }, /* speaker */
4720                         { 0x12, 0x99a30970 }, /* int-mic */
4721                         { 0x15, 0x01214020 }, /* HP */
4722                         { 0x17, 0x99130111 }, /* speaker */
4723                         { 0x18, 0x01a19840 }, /* mic */
4724                         { 0x21, 0x0121401f }, /* HP */
4725                         { }
4726                 },
4727                 .chained = true,
4728                 .chain_id = ALC662_FIXUP_SKU_IGNORE
4729         },
4730         [ALC662_FIXUP_NO_JACK_DETECT] = {
4731                 .type = HDA_FIXUP_FUNC,
4732                 .v.func = alc_fixup_no_jack_detect,
4733         },
4734         [ALC662_FIXUP_ZOTAC_Z68] = {
4735                 .type = HDA_FIXUP_PINS,
4736                 .v.pins = (const struct hda_pintbl[]) {
4737                         { 0x1b, 0x02214020 }, /* Front HP */
4738                         { }
4739                 }
4740         },
4741         [ALC662_FIXUP_INV_DMIC] = {
4742                 .type = HDA_FIXUP_FUNC,
4743                 .v.func = alc_fixup_inv_dmic_0x12,
4744         },
4745         [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
4746                 .type = HDA_FIXUP_PINS,
4747                 .v.pins = (const struct hda_pintbl[]) {
4748                         { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
4749                         { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
4750                         { }
4751                 },
4752                 .chained = true,
4753                 .chain_id = ALC668_FIXUP_HEADSET_MODE
4754         },
4755         [ALC668_FIXUP_HEADSET_MODE] = {
4756                 .type = HDA_FIXUP_FUNC,
4757                 .v.func = alc_fixup_headset_mode_alc668,
4758         },
4759         [ALC662_FIXUP_BASS_CHMAP] = {
4760                 .type = HDA_FIXUP_FUNC,
4761                 .v.func = alc662_fixup_bass_chmap,
4762                 .chained = true,
4763                 .chain_id = ALC662_FIXUP_ASUS_MODE4
4764         },
4765 };
4766
4767 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
4768         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
4769         SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
4770         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
4771         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
4772         SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
4773         SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
4774         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
4775         SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
4776         SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
4777         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
4778         SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_CHMAP),
4779         SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_CHMAP),
4780         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
4781         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
4782         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
4783         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
4784         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
4785         SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
4786         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
4787
4788 #if 0
4789         /* Below is a quirk table taken from the old code.
4790          * Basically the device should work as is without the fixup table.
4791          * If BIOS doesn't give a proper info, enable the corresponding
4792          * fixup entry.
4793          */
4794         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
4795         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
4796         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
4797         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
4798         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
4799         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4800         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
4801         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
4802         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
4803         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4804         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
4805         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
4806         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
4807         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
4808         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
4809         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4810         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
4811         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
4812         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4813         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
4814         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
4815         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4816         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
4817         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
4818         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
4819         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4820         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
4821         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
4822         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4823         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
4824         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4825         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4826         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
4827         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
4828         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
4829         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
4830         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
4831         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
4832         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
4833         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
4834         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
4835         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
4836         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
4837         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
4838         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
4839         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
4840         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
4841         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
4842         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
4843         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
4844 #endif
4845         {}
4846 };
4847
4848 static const struct hda_model_fixup alc662_fixup_models[] = {
4849         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
4850         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
4851         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
4852         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
4853         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
4854         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
4855         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
4856         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
4857         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
4858         {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
4859         {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
4860         {}
4861 };
4862
4863 static void alc662_fill_coef(struct hda_codec *codec)
4864 {
4865         int val, coef;
4866
4867         coef = alc_get_coef0(codec);
4868
4869         switch (codec->vendor_id) {
4870         case 0x10ec0662:
4871                 if ((coef & 0x00f0) == 0x0030) {
4872                         val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
4873                         alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
4874                 }
4875                 break;
4876         case 0x10ec0272:
4877         case 0x10ec0273:
4878         case 0x10ec0663:
4879         case 0x10ec0665:
4880         case 0x10ec0670:
4881         case 0x10ec0671:
4882         case 0x10ec0672:
4883                 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
4884                 alc_write_coef_idx(codec, 0xd, val | (1<<14));
4885                 break;
4886         }
4887 }
4888
4889 /*
4890  */
4891 static int patch_alc662(struct hda_codec *codec)
4892 {
4893         struct alc_spec *spec;
4894         int err;
4895
4896         err = alc_alloc_spec(codec, 0x0b);
4897         if (err < 0)
4898                 return err;
4899
4900         spec = codec->spec;
4901
4902         /* handle multiple HPs as is */
4903         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4904
4905         alc_fix_pll_init(codec, 0x20, 0x04, 15);
4906
4907         spec->init_hook = alc662_fill_coef;
4908         alc662_fill_coef(codec);
4909
4910         snd_hda_pick_fixup(codec, alc662_fixup_models,
4911                        alc662_fixup_tbl, alc662_fixups);
4912         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4913
4914         alc_auto_parse_customize_define(codec);
4915
4916         if (has_cdefine_beep(codec))
4917                 spec->gen.beep_nid = 0x01;
4918
4919         if ((alc_get_coef0(codec) & (1 << 14)) &&
4920             codec->bus->pci->subsystem_vendor == 0x1025 &&
4921             spec->cdefine.platform_type == 1) {
4922                 err = alc_codec_rename(codec, "ALC272X");
4923                 if (err < 0)
4924                         goto error;
4925         }
4926
4927         /* automatic parse from the BIOS config */
4928         err = alc662_parse_auto_config(codec);
4929         if (err < 0)
4930                 goto error;
4931
4932         if (!spec->gen.no_analog && spec->gen.beep_nid) {
4933                 switch (codec->vendor_id) {
4934                 case 0x10ec0662:
4935                         set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4936                         break;
4937                 case 0x10ec0272:
4938                 case 0x10ec0663:
4939                 case 0x10ec0665:
4940                         set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
4941                         break;
4942                 case 0x10ec0273:
4943                         set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
4944                         break;
4945                 }
4946         }
4947
4948         codec->patch_ops = alc_patch_ops;
4949         spec->shutup = alc_eapd_shutup;
4950
4951         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4952
4953         return 0;
4954
4955  error:
4956         alc_free(codec);
4957         return err;
4958 }
4959
4960 /*
4961  * ALC680 support
4962  */
4963
4964 static int alc680_parse_auto_config(struct hda_codec *codec)
4965 {
4966         return alc_parse_auto_config(codec, NULL, NULL);
4967 }
4968
4969 /*
4970  */
4971 static int patch_alc680(struct hda_codec *codec)
4972 {
4973         int err;
4974
4975         /* ALC680 has no aa-loopback mixer */
4976         err = alc_alloc_spec(codec, 0);
4977         if (err < 0)
4978                 return err;
4979
4980         /* automatic parse from the BIOS config */
4981         err = alc680_parse_auto_config(codec);
4982         if (err < 0) {
4983                 alc_free(codec);
4984                 return err;
4985         }
4986
4987         codec->patch_ops = alc_patch_ops;
4988
4989         return 0;
4990 }
4991
4992 /*
4993  * patch entries
4994  */
4995 static const struct hda_codec_preset snd_hda_preset_realtek[] = {
4996         { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
4997         { .id = 0x10ec0233, .name = "ALC233", .patch = patch_alc269 },
4998         { .id = 0x10ec0255, .name = "ALC255", .patch = patch_alc269 },
4999         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5000         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5001         { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
5002         { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
5003         { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
5004         { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
5005         { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
5006         { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
5007         { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
5008         { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
5009         { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
5010         { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
5011         { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
5012         { .id = 0x10ec0285, .name = "ALC285", .patch = patch_alc269 },
5013         { .id = 0x10ec0286, .name = "ALC286", .patch = patch_alc269 },
5014         { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
5015         { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
5016         { .id = 0x10ec0293, .name = "ALC293", .patch = patch_alc269 },
5017         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
5018           .patch = patch_alc861 },
5019         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5020         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5021         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
5022         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
5023           .patch = patch_alc882 },
5024         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5025           .patch = patch_alc662 },
5026         { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5027           .patch = patch_alc662 },
5028         { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
5029         { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
5030         { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
5031         { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
5032         { .id = 0x10ec0671, .name = "ALC671", .patch = patch_alc662 },
5033         { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
5034         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5035         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5036         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5037         { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
5038           .patch = patch_alc882 },
5039         { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
5040           .patch = patch_alc882 },
5041         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5042         { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
5043         { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
5044           .patch = patch_alc882 },
5045         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
5046         { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
5047         { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
5048         { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
5049         { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
5050         {} /* terminator */
5051 };
5052
5053 MODULE_ALIAS("snd-hda-codec-id:10ec*");
5054
5055 MODULE_LICENSE("GPL");
5056 MODULE_DESCRIPTION("Realtek HD-audio codec");
5057
5058 static struct hda_codec_preset_list realtek_list = {
5059         .preset = snd_hda_preset_realtek,
5060         .owner = THIS_MODULE,
5061 };
5062
5063 static int __init patch_realtek_init(void)
5064 {
5065         return snd_hda_add_codec_preset(&realtek_list);
5066 }
5067
5068 static void __exit patch_realtek_exit(void)
5069 {
5070         snd_hda_delete_codec_preset(&realtek_list);
5071 }
5072
5073 module_init(patch_realtek_init)
5074 module_exit(patch_realtek_exit)