ALSA: hda/realtek - Drop aliases for old fixups
[linux-2.6-block.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/module.h>
31 #include <linux/sort.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_beep.h"
38 #include "hda_jack.h"
39 #include "hda_generic.h"
40
41 /* unsol event tags */
42 #define ALC_DCVOL_EVENT         0x08
43
44 /* for GPIO Poll */
45 #define GPIO_MASK       0x03
46
47 /* extra amp-initialization sequence types */
48 enum {
49         ALC_INIT_NONE,
50         ALC_INIT_DEFAULT,
51         ALC_INIT_GPIO1,
52         ALC_INIT_GPIO2,
53         ALC_INIT_GPIO3,
54 };
55
56 struct alc_customize_define {
57         unsigned int  sku_cfg;
58         unsigned char port_connectivity;
59         unsigned char check_sum;
60         unsigned char customization;
61         unsigned char external_amp;
62         unsigned int  enable_pcbeep:1;
63         unsigned int  platform_type:1;
64         unsigned int  swap:1;
65         unsigned int  override:1;
66         unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */
67 };
68
69 struct alc_spec {
70         struct hda_gen_spec gen; /* must be at head */
71
72         /* codec parameterization */
73         const struct snd_kcontrol_new *mixers[5];       /* mixer arrays */
74         unsigned int num_mixers;
75         unsigned int beep_amp;  /* beep amp value, set via set_beep_amp() */
76
77         struct alc_customize_define cdefine;
78         unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
79
80         /* inverted dmic fix */
81         unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
82         unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
83         hda_nid_t inv_dmic_pin;
84
85         /* hooks */
86         void (*init_hook)(struct hda_codec *codec);
87 #ifdef CONFIG_PM
88         void (*power_hook)(struct hda_codec *codec);
89 #endif
90         void (*shutup)(struct hda_codec *codec);
91
92         int init_amp;
93         int codec_variant;      /* flag for other variants */
94
95         /* for PLL fix */
96         hda_nid_t pll_nid;
97         unsigned int pll_coef_idx, pll_coef_bit;
98         unsigned int coef0;
99 };
100
101 /*
102  * Append the given mixer and verb elements for the later use
103  * The mixer array is referred in build_controls(), and init_verbs are
104  * called in init().
105  */
106 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
107 {
108         if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
109                 return;
110         spec->mixers[spec->num_mixers++] = mix;
111 }
112
113 /*
114  * GPIO setup tables, used in initialization
115  */
116 /* Enable GPIO mask and set output */
117 static const struct hda_verb alc_gpio1_init_verbs[] = {
118         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
119         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
120         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
121         { }
122 };
123
124 static const struct hda_verb alc_gpio2_init_verbs[] = {
125         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
126         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
127         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
128         { }
129 };
130
131 static const struct hda_verb alc_gpio3_init_verbs[] = {
132         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
133         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
134         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
135         { }
136 };
137
138 /*
139  * Fix hardware PLL issue
140  * On some codecs, the analog PLL gating control must be off while
141  * the default value is 1.
142  */
143 static void alc_fix_pll(struct hda_codec *codec)
144 {
145         struct alc_spec *spec = codec->spec;
146         unsigned int val;
147
148         if (!spec->pll_nid)
149                 return;
150         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
151                             spec->pll_coef_idx);
152         val = snd_hda_codec_read(codec, spec->pll_nid, 0,
153                                  AC_VERB_GET_PROC_COEF, 0);
154         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
155                             spec->pll_coef_idx);
156         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
157                             val & ~(1 << spec->pll_coef_bit));
158 }
159
160 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
161                              unsigned int coef_idx, unsigned int coef_bit)
162 {
163         struct alc_spec *spec = codec->spec;
164         spec->pll_nid = nid;
165         spec->pll_coef_idx = coef_idx;
166         spec->pll_coef_bit = coef_bit;
167         alc_fix_pll(codec);
168 }
169
170 /* update the master volume per volume-knob's unsol event */
171 static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
172 {
173         unsigned int val;
174         struct snd_kcontrol *kctl;
175         struct snd_ctl_elem_value *uctl;
176
177         kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
178         if (!kctl)
179                 return;
180         uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
181         if (!uctl)
182                 return;
183         val = snd_hda_codec_read(codec, jack->nid, 0,
184                                  AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
185         val &= HDA_AMP_VOLMASK;
186         uctl->value.integer.value[0] = val;
187         uctl->value.integer.value[1] = val;
188         kctl->put(kctl, uctl);
189         kfree(uctl);
190 }
191
192 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
193 {
194         /* For some reason, the res given from ALC880 is broken.
195            Here we adjust it properly. */
196         snd_hda_jack_unsol_event(codec, res >> 2);
197 }
198
199 /* additional initialization for ALC888 variants */
200 static void alc888_coef_init(struct hda_codec *codec)
201 {
202         unsigned int tmp;
203
204         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
205         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
206         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
207         if ((tmp & 0xf0) == 0x20)
208                 /* alc888S-VC */
209                 snd_hda_codec_read(codec, 0x20, 0,
210                                    AC_VERB_SET_PROC_COEF, 0x830);
211          else
212                  /* alc888-VB */
213                  snd_hda_codec_read(codec, 0x20, 0,
214                                     AC_VERB_SET_PROC_COEF, 0x3030);
215 }
216
217 /* additional initialization for ALC889 variants */
218 static void alc889_coef_init(struct hda_codec *codec)
219 {
220         unsigned int tmp;
221
222         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
223         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
224         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
225         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
226 }
227
228 /* turn on/off EAPD control (only if available) */
229 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
230 {
231         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
232                 return;
233         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
234                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
235                                     on ? 2 : 0);
236 }
237
238 /* turn on/off EAPD controls of the codec */
239 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
240 {
241         /* We currently only handle front, HP */
242         static hda_nid_t pins[] = {
243                 0x0f, 0x10, 0x14, 0x15, 0
244         };
245         hda_nid_t *p;
246         for (p = pins; *p; p++)
247                 set_eapd(codec, *p, on);
248 }
249
250 /* generic shutup callback;
251  * just turning off EPAD and a little pause for avoiding pop-noise
252  */
253 static void alc_eapd_shutup(struct hda_codec *codec)
254 {
255         alc_auto_setup_eapd(codec, false);
256         msleep(200);
257 }
258
259 /* generic EAPD initialization */
260 static void alc_auto_init_amp(struct hda_codec *codec, int type)
261 {
262         unsigned int tmp;
263
264         alc_auto_setup_eapd(codec, true);
265         switch (type) {
266         case ALC_INIT_GPIO1:
267                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
268                 break;
269         case ALC_INIT_GPIO2:
270                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
271                 break;
272         case ALC_INIT_GPIO3:
273                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
274                 break;
275         case ALC_INIT_DEFAULT:
276                 switch (codec->vendor_id) {
277                 case 0x10ec0260:
278                         snd_hda_codec_write(codec, 0x1a, 0,
279                                             AC_VERB_SET_COEF_INDEX, 7);
280                         tmp = snd_hda_codec_read(codec, 0x1a, 0,
281                                                  AC_VERB_GET_PROC_COEF, 0);
282                         snd_hda_codec_write(codec, 0x1a, 0,
283                                             AC_VERB_SET_COEF_INDEX, 7);
284                         snd_hda_codec_write(codec, 0x1a, 0,
285                                             AC_VERB_SET_PROC_COEF,
286                                             tmp | 0x2010);
287                         break;
288                 case 0x10ec0262:
289                 case 0x10ec0880:
290                 case 0x10ec0882:
291                 case 0x10ec0883:
292                 case 0x10ec0885:
293                 case 0x10ec0887:
294                 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
295                         alc889_coef_init(codec);
296                         break;
297                 case 0x10ec0888:
298                         alc888_coef_init(codec);
299                         break;
300 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
301                 case 0x10ec0267:
302                 case 0x10ec0268:
303                         snd_hda_codec_write(codec, 0x20, 0,
304                                             AC_VERB_SET_COEF_INDEX, 7);
305                         tmp = snd_hda_codec_read(codec, 0x20, 0,
306                                                  AC_VERB_GET_PROC_COEF, 0);
307                         snd_hda_codec_write(codec, 0x20, 0,
308                                             AC_VERB_SET_COEF_INDEX, 7);
309                         snd_hda_codec_write(codec, 0x20, 0,
310                                             AC_VERB_SET_PROC_COEF,
311                                             tmp | 0x3000);
312                         break;
313 #endif /* XXX */
314                 }
315                 break;
316         }
317 }
318
319
320 /*
321  * Realtek SSID verification
322  */
323
324 /* Could be any non-zero and even value. When used as fixup, tells
325  * the driver to ignore any present sku defines.
326  */
327 #define ALC_FIXUP_SKU_IGNORE (2)
328
329 static void alc_fixup_sku_ignore(struct hda_codec *codec,
330                                  const struct hda_fixup *fix, int action)
331 {
332         struct alc_spec *spec = codec->spec;
333         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
334                 spec->cdefine.fixup = 1;
335                 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
336         }
337 }
338
339 static int alc_auto_parse_customize_define(struct hda_codec *codec)
340 {
341         unsigned int ass, tmp, i;
342         unsigned nid = 0;
343         struct alc_spec *spec = codec->spec;
344
345         spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
346
347         if (spec->cdefine.fixup) {
348                 ass = spec->cdefine.sku_cfg;
349                 if (ass == ALC_FIXUP_SKU_IGNORE)
350                         return -1;
351                 goto do_sku;
352         }
353
354         ass = codec->subsystem_id & 0xffff;
355         if (ass != codec->bus->pci->subsystem_device && (ass & 1))
356                 goto do_sku;
357
358         nid = 0x1d;
359         if (codec->vendor_id == 0x10ec0260)
360                 nid = 0x17;
361         ass = snd_hda_codec_get_pincfg(codec, nid);
362
363         if (!(ass & 1)) {
364                 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
365                        codec->chip_name, ass);
366                 return -1;
367         }
368
369         /* check sum */
370         tmp = 0;
371         for (i = 1; i < 16; i++) {
372                 if ((ass >> i) & 1)
373                         tmp++;
374         }
375         if (((ass >> 16) & 0xf) != tmp)
376                 return -1;
377
378         spec->cdefine.port_connectivity = ass >> 30;
379         spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
380         spec->cdefine.check_sum = (ass >> 16) & 0xf;
381         spec->cdefine.customization = ass >> 8;
382 do_sku:
383         spec->cdefine.sku_cfg = ass;
384         spec->cdefine.external_amp = (ass & 0x38) >> 3;
385         spec->cdefine.platform_type = (ass & 0x4) >> 2;
386         spec->cdefine.swap = (ass & 0x2) >> 1;
387         spec->cdefine.override = ass & 0x1;
388
389         snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
390                    nid, spec->cdefine.sku_cfg);
391         snd_printd("SKU: port_connectivity=0x%x\n",
392                    spec->cdefine.port_connectivity);
393         snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
394         snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
395         snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
396         snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
397         snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
398         snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
399         snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
400
401         return 0;
402 }
403
404 /* return the position of NID in the list, or -1 if not found */
405 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
406 {
407         int i;
408         for (i = 0; i < nums; i++)
409                 if (list[i] == nid)
410                         return i;
411         return -1;
412 }
413 /* return true if the given NID is found in the list */
414 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
415 {
416         return find_idx_in_nid_list(nid, list, nums) >= 0;
417 }
418
419 /* check subsystem ID and set up device-specific initialization;
420  * return 1 if initialized, 0 if invalid SSID
421  */
422 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
423  *      31 ~ 16 :       Manufacture ID
424  *      15 ~ 8  :       SKU ID
425  *      7  ~ 0  :       Assembly ID
426  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
427  */
428 static int alc_subsystem_id(struct hda_codec *codec,
429                             hda_nid_t porta, hda_nid_t porte,
430                             hda_nid_t portd, hda_nid_t porti)
431 {
432         unsigned int ass, tmp, i;
433         unsigned nid;
434         struct alc_spec *spec = codec->spec;
435
436         if (spec->cdefine.fixup) {
437                 ass = spec->cdefine.sku_cfg;
438                 if (ass == ALC_FIXUP_SKU_IGNORE)
439                         return 0;
440                 goto do_sku;
441         }
442
443         ass = codec->subsystem_id & 0xffff;
444         if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
445                 goto do_sku;
446
447         /* invalid SSID, check the special NID pin defcfg instead */
448         /*
449          * 31~30        : port connectivity
450          * 29~21        : reserve
451          * 20           : PCBEEP input
452          * 19~16        : Check sum (15:1)
453          * 15~1         : Custom
454          * 0            : override
455         */
456         nid = 0x1d;
457         if (codec->vendor_id == 0x10ec0260)
458                 nid = 0x17;
459         ass = snd_hda_codec_get_pincfg(codec, nid);
460         snd_printd("realtek: No valid SSID, "
461                    "checking pincfg 0x%08x for NID 0x%x\n",
462                    ass, nid);
463         if (!(ass & 1))
464                 return 0;
465         if ((ass >> 30) != 1)   /* no physical connection */
466                 return 0;
467
468         /* check sum */
469         tmp = 0;
470         for (i = 1; i < 16; i++) {
471                 if ((ass >> i) & 1)
472                         tmp++;
473         }
474         if (((ass >> 16) & 0xf) != tmp)
475                 return 0;
476 do_sku:
477         snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
478                    ass & 0xffff, codec->vendor_id);
479         /*
480          * 0 : override
481          * 1 :  Swap Jack
482          * 2 : 0 --> Desktop, 1 --> Laptop
483          * 3~5 : External Amplifier control
484          * 7~6 : Reserved
485         */
486         tmp = (ass & 0x38) >> 3;        /* external Amp control */
487         switch (tmp) {
488         case 1:
489                 spec->init_amp = ALC_INIT_GPIO1;
490                 break;
491         case 3:
492                 spec->init_amp = ALC_INIT_GPIO2;
493                 break;
494         case 7:
495                 spec->init_amp = ALC_INIT_GPIO3;
496                 break;
497         case 5:
498         default:
499                 spec->init_amp = ALC_INIT_DEFAULT;
500                 break;
501         }
502
503         /* is laptop or Desktop and enable the function "Mute internal speaker
504          * when the external headphone out jack is plugged"
505          */
506         if (!(ass & 0x8000))
507                 return 1;
508         /*
509          * 10~8 : Jack location
510          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
511          * 14~13: Resvered
512          * 15   : 1 --> enable the function "Mute internal speaker
513          *              when the external headphone out jack is plugged"
514          */
515         if (!spec->gen.autocfg.hp_pins[0] &&
516             !(spec->gen.autocfg.line_out_pins[0] &&
517               spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
518                 hda_nid_t nid;
519                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
520                 if (tmp == 0)
521                         nid = porta;
522                 else if (tmp == 1)
523                         nid = porte;
524                 else if (tmp == 2)
525                         nid = portd;
526                 else if (tmp == 3)
527                         nid = porti;
528                 else
529                         return 1;
530                 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
531                                       spec->gen.autocfg.line_outs))
532                         return 1;
533                 spec->gen.autocfg.hp_pins[0] = nid;
534         }
535         return 1;
536 }
537
538 /* Check the validity of ALC subsystem-id
539  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
540 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
541 {
542         if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
543                 struct alc_spec *spec = codec->spec;
544                 snd_printd("realtek: "
545                            "Enable default setup for auto mode as fallback\n");
546                 spec->init_amp = ALC_INIT_DEFAULT;
547         }
548 }
549
550 /*
551  * COEF access helper functions
552  */
553 static int alc_read_coef_idx(struct hda_codec *codec,
554                         unsigned int coef_idx)
555 {
556         unsigned int val;
557         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
558                                 coef_idx);
559         val = snd_hda_codec_read(codec, 0x20, 0,
560                                 AC_VERB_GET_PROC_COEF, 0);
561         return val;
562 }
563
564 static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
565                                                         unsigned int coef_val)
566 {
567         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
568                             coef_idx);
569         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
570                             coef_val);
571 }
572
573 /* a special bypass for COEF 0; read the cached value at the second time */
574 static unsigned int alc_get_coef0(struct hda_codec *codec)
575 {
576         struct alc_spec *spec = codec->spec;
577         if (!spec->coef0)
578                 spec->coef0 = alc_read_coef_idx(codec, 0);
579         return spec->coef0;
580 }
581
582 /*
583  */
584
585 static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
586 {
587         struct hda_gen_spec *spec = codec->spec;
588         if (spec->dyn_adc_switch)
589                 adc_idx = spec->dyn_adc_idx[imux_idx];
590         return spec->adc_nids[adc_idx];
591 }
592
593 static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
594 {
595         struct alc_spec *spec = codec->spec;
596         struct hda_input_mux *imux = &spec->gen.input_mux;
597         struct nid_path *path;
598         hda_nid_t nid;
599         int i, dir, parm;
600         unsigned int val;
601
602         for (i = 0; i < imux->num_items; i++) {
603                 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
604                         break;
605         }
606         if (i >= imux->num_items)
607                 return;
608
609         path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
610                                     get_adc_nid(codec, adc_idx, i));
611         val = path->ctls[NID_PATH_MUTE_CTL];
612         if (!val)
613                 return;
614         nid = get_amp_nid_(val);
615         dir = get_amp_direction_(val);
616         parm = AC_AMP_SET_RIGHT |
617                 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
618
619         /* flush all cached amps at first */
620         snd_hda_codec_flush_amp_cache(codec);
621
622         /* we care only right channel */
623         val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
624         if (val & 0x80) /* if already muted, we don't need to touch */
625                 return;
626         val |= 0x80;
627         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
628                             parm | val);
629 }
630
631 /*
632  * Inverted digital-mic handling
633  *
634  * First off, it's a bit tricky.  The "Inverted Internal Mic Capture Switch"
635  * gives the additional mute only to the right channel of the digital mic
636  * capture stream.  This is a workaround for avoiding the almost silence
637  * by summing the stereo stream from some (known to be ForteMedia)
638  * digital mic unit.
639  *
640  * The logic is to call alc_inv_dmic_sync() after each action (possibly)
641  * modifying ADC amp.  When the mute flag is set, it mutes the R-channel
642  * without caching so that the cache can still keep the original value.
643  * The cached value is then restored when the flag is set off or any other
644  * than d-mic is used as the current input source.
645  */
646 static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
647 {
648         struct alc_spec *spec = codec->spec;
649         int src, nums;
650
651         if (!spec->inv_dmic_fixup)
652                 return;
653         if (!spec->inv_dmic_muted && !force)
654                 return;
655         nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
656         for (src = 0; src < nums; src++) {
657                 bool dmic_fixup = false;
658
659                 if (spec->inv_dmic_muted &&
660                     spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
661                         dmic_fixup = true;
662                 if (!dmic_fixup && !force)
663                         continue;
664                 alc_inv_dmic_sync_adc(codec, src);
665         }
666 }
667
668 static void alc_inv_dmic_hook(struct hda_codec *codec)
669 {
670         alc_inv_dmic_sync(codec, false);
671 }
672
673 static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
674                                struct snd_ctl_elem_value *ucontrol)
675 {
676         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
677         struct alc_spec *spec = codec->spec;
678
679         ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
680         return 0;
681 }
682
683 static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
684                                struct snd_ctl_elem_value *ucontrol)
685 {
686         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
687         struct alc_spec *spec = codec->spec;
688         unsigned int val = !ucontrol->value.integer.value[0];
689
690         if (val == spec->inv_dmic_muted)
691                 return 0;
692         spec->inv_dmic_muted = val;
693         alc_inv_dmic_sync(codec, true);
694         return 0;
695 }
696
697 static const struct snd_kcontrol_new alc_inv_dmic_sw = {
698         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
699         .name = "Inverted Internal Mic Capture Switch",
700         .info = snd_ctl_boolean_mono_info,
701         .get = alc_inv_dmic_sw_get,
702         .put = alc_inv_dmic_sw_put,
703 };
704
705 static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
706 {
707         struct alc_spec *spec = codec->spec;
708
709         if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
710                 return -ENOMEM;
711         spec->inv_dmic_fixup = 1;
712         spec->inv_dmic_muted = 0;
713         spec->inv_dmic_pin = nid;
714         spec->gen.cap_sync_hook = alc_inv_dmic_hook;
715         return 0;
716 }
717
718 /* typically the digital mic is put at node 0x12 */
719 static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
720                                     const struct hda_fixup *fix, int action)
721 {
722         if (action == HDA_FIXUP_ACT_PROBE)
723                 alc_add_inv_dmic_mixer(codec, 0x12);
724 }
725
726
727 #ifdef CONFIG_SND_HDA_INPUT_BEEP
728 /* additional beep mixers; the actual parameters are overwritten at build */
729 static const struct snd_kcontrol_new alc_beep_mixer[] = {
730         HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
731         HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
732         { } /* end */
733 };
734 #endif
735
736 static int alc_build_controls(struct hda_codec *codec)
737 {
738         struct alc_spec *spec = codec->spec;
739         int i, err;
740
741         err = snd_hda_gen_build_controls(codec);
742         if (err < 0)
743                 return err;
744
745         for (i = 0; i < spec->num_mixers; i++) {
746                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
747                 if (err < 0)
748                         return err;
749         }
750
751 #ifdef CONFIG_SND_HDA_INPUT_BEEP
752         /* create beep controls if needed */
753         if (spec->beep_amp) {
754                 const struct snd_kcontrol_new *knew;
755                 for (knew = alc_beep_mixer; knew->name; knew++) {
756                         struct snd_kcontrol *kctl;
757                         kctl = snd_ctl_new1(knew, codec);
758                         if (!kctl)
759                                 return -ENOMEM;
760                         kctl->private_value = spec->beep_amp;
761                         err = snd_hda_ctl_add(codec, 0, kctl);
762                         if (err < 0)
763                                 return err;
764                 }
765         }
766 #endif
767
768         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
769         return 0;
770 }
771
772
773 /*
774  * Common callbacks
775  */
776
777 static int alc_init(struct hda_codec *codec)
778 {
779         struct alc_spec *spec = codec->spec;
780
781         if (spec->init_hook)
782                 spec->init_hook(codec);
783
784         alc_fix_pll(codec);
785         alc_auto_init_amp(codec, spec->init_amp);
786
787         snd_hda_gen_init(codec);
788
789         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
790
791         return 0;
792 }
793
794 static inline void alc_shutup(struct hda_codec *codec)
795 {
796         struct alc_spec *spec = codec->spec;
797
798         if (spec && spec->shutup)
799                 spec->shutup(codec);
800         snd_hda_shutup_pins(codec);
801 }
802
803 static void alc_free(struct hda_codec *codec)
804 {
805         struct alc_spec *spec = codec->spec;
806
807         if (!spec)
808                 return;
809
810         snd_hda_gen_spec_free(&spec->gen);
811         snd_hda_detach_beep_device(codec);
812         kfree(spec);
813 }
814
815 #ifdef CONFIG_PM
816 static void alc_power_eapd(struct hda_codec *codec)
817 {
818         alc_auto_setup_eapd(codec, false);
819 }
820
821 static int alc_suspend(struct hda_codec *codec)
822 {
823         struct alc_spec *spec = codec->spec;
824         alc_shutup(codec);
825         if (spec && spec->power_hook)
826                 spec->power_hook(codec);
827         return 0;
828 }
829 #endif
830
831 #ifdef CONFIG_PM
832 static int alc_resume(struct hda_codec *codec)
833 {
834         msleep(150); /* to avoid pop noise */
835         codec->patch_ops.init(codec);
836         snd_hda_codec_resume_amp(codec);
837         snd_hda_codec_resume_cache(codec);
838         alc_inv_dmic_sync(codec, true);
839         hda_call_check_power_status(codec, 0x01);
840         return 0;
841 }
842 #endif
843
844 /*
845  */
846 static const struct hda_codec_ops alc_patch_ops = {
847         .build_controls = alc_build_controls,
848         .build_pcms = snd_hda_gen_build_pcms,
849         .init = alc_init,
850         .free = alc_free,
851         .unsol_event = snd_hda_jack_unsol_event,
852 #ifdef CONFIG_PM
853         .resume = alc_resume,
854         .suspend = alc_suspend,
855         .check_power_status = snd_hda_gen_check_power_status,
856 #endif
857         .reboot_notify = alc_shutup,
858 };
859
860
861 /* replace the codec chip_name with the given string */
862 static int alc_codec_rename(struct hda_codec *codec, const char *name)
863 {
864         kfree(codec->chip_name);
865         codec->chip_name = kstrdup(name, GFP_KERNEL);
866         if (!codec->chip_name) {
867                 alc_free(codec);
868                 return -ENOMEM;
869         }
870         return 0;
871 }
872
873 /*
874  * Rename codecs appropriately from COEF value
875  */
876 struct alc_codec_rename_table {
877         unsigned int vendor_id;
878         unsigned short coef_mask;
879         unsigned short coef_bits;
880         const char *name;
881 };
882
883 static struct alc_codec_rename_table rename_tbl[] = {
884         { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
885         { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
886         { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
887         { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
888         { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
889         { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
890         { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
891         { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
892         { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
893         { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
894         { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
895         { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
896         { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
897         { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
898         { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
899         { } /* terminator */
900 };
901
902 static int alc_codec_rename_from_preset(struct hda_codec *codec)
903 {
904         const struct alc_codec_rename_table *p;
905
906         for (p = rename_tbl; p->vendor_id; p++) {
907                 if (p->vendor_id != codec->vendor_id)
908                         continue;
909                 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
910                         return alc_codec_rename(codec, p->name);
911         }
912         return 0;
913 }
914
915
916 /*
917  * Digital-beep handlers
918  */
919 #ifdef CONFIG_SND_HDA_INPUT_BEEP
920 #define set_beep_amp(spec, nid, idx, dir) \
921         ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
922
923 static const struct snd_pci_quirk beep_white_list[] = {
924         SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
925         SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
926         SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
927         SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
928         SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
929         SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
930         SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
931         {}
932 };
933
934 static inline int has_cdefine_beep(struct hda_codec *codec)
935 {
936         struct alc_spec *spec = codec->spec;
937         const struct snd_pci_quirk *q;
938         q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
939         if (q)
940                 return q->value;
941         return spec->cdefine.enable_pcbeep;
942 }
943 #else
944 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
945 #define has_cdefine_beep(codec)         0
946 #endif
947
948 /* parse the BIOS configuration and set up the alc_spec */
949 /* return 1 if successful, 0 if the proper config is not found,
950  * or a negative error code
951  */
952 static int alc_parse_auto_config(struct hda_codec *codec,
953                                  const hda_nid_t *ignore_nids,
954                                  const hda_nid_t *ssid_nids)
955 {
956         struct alc_spec *spec = codec->spec;
957         struct auto_pin_cfg *cfg = &spec->gen.autocfg;
958         int err;
959
960         err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
961                                        spec->parse_flags);
962         if (err < 0)
963                 return err;
964
965         if (ssid_nids)
966                 alc_ssid_check(codec, ssid_nids);
967
968         err = snd_hda_gen_parse_auto_config(codec, cfg);
969         if (err < 0)
970                 return err;
971
972         return 1;
973 }
974
975 /* common preparation job for alc_spec */
976 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
977 {
978         struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
979         int err;
980
981         if (!spec)
982                 return -ENOMEM;
983         codec->spec = spec;
984         snd_hda_gen_spec_init(&spec->gen);
985         spec->gen.mixer_nid = mixer_nid;
986         spec->gen.own_eapd_ctl = 1;
987         codec->single_adc_amp = 1;
988         /* FIXME: do we need this for all Realtek codec models? */
989         codec->spdif_status_reset = 1;
990
991         err = alc_codec_rename_from_preset(codec);
992         if (err < 0) {
993                 kfree(spec);
994                 return err;
995         }
996         return 0;
997 }
998
999 static int alc880_parse_auto_config(struct hda_codec *codec)
1000 {
1001         static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1002         static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1003         return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1004 }
1005
1006 /*
1007  * ALC880 fix-ups
1008  */
1009 enum {
1010         ALC880_FIXUP_GPIO1,
1011         ALC880_FIXUP_GPIO2,
1012         ALC880_FIXUP_MEDION_RIM,
1013         ALC880_FIXUP_LG,
1014         ALC880_FIXUP_W810,
1015         ALC880_FIXUP_EAPD_COEF,
1016         ALC880_FIXUP_TCL_S700,
1017         ALC880_FIXUP_VOL_KNOB,
1018         ALC880_FIXUP_FUJITSU,
1019         ALC880_FIXUP_F1734,
1020         ALC880_FIXUP_UNIWILL,
1021         ALC880_FIXUP_UNIWILL_DIG,
1022         ALC880_FIXUP_Z71V,
1023         ALC880_FIXUP_3ST_BASE,
1024         ALC880_FIXUP_3ST,
1025         ALC880_FIXUP_3ST_DIG,
1026         ALC880_FIXUP_5ST_BASE,
1027         ALC880_FIXUP_5ST,
1028         ALC880_FIXUP_5ST_DIG,
1029         ALC880_FIXUP_6ST_BASE,
1030         ALC880_FIXUP_6ST,
1031         ALC880_FIXUP_6ST_DIG,
1032 };
1033
1034 /* enable the volume-knob widget support on NID 0x21 */
1035 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1036                                   const struct hda_fixup *fix, int action)
1037 {
1038         if (action == HDA_FIXUP_ACT_PROBE)
1039                 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
1040 }
1041
1042 static const struct hda_fixup alc880_fixups[] = {
1043         [ALC880_FIXUP_GPIO1] = {
1044                 .type = HDA_FIXUP_VERBS,
1045                 .v.verbs = alc_gpio1_init_verbs,
1046         },
1047         [ALC880_FIXUP_GPIO2] = {
1048                 .type = HDA_FIXUP_VERBS,
1049                 .v.verbs = alc_gpio2_init_verbs,
1050         },
1051         [ALC880_FIXUP_MEDION_RIM] = {
1052                 .type = HDA_FIXUP_VERBS,
1053                 .v.verbs = (const struct hda_verb[]) {
1054                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1055                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1056                         { }
1057                 },
1058                 .chained = true,
1059                 .chain_id = ALC880_FIXUP_GPIO2,
1060         },
1061         [ALC880_FIXUP_LG] = {
1062                 .type = HDA_FIXUP_PINS,
1063                 .v.pins = (const struct hda_pintbl[]) {
1064                         /* disable bogus unused pins */
1065                         { 0x16, 0x411111f0 },
1066                         { 0x18, 0x411111f0 },
1067                         { 0x1a, 0x411111f0 },
1068                         { }
1069                 }
1070         },
1071         [ALC880_FIXUP_W810] = {
1072                 .type = HDA_FIXUP_PINS,
1073                 .v.pins = (const struct hda_pintbl[]) {
1074                         /* disable bogus unused pins */
1075                         { 0x17, 0x411111f0 },
1076                         { }
1077                 },
1078                 .chained = true,
1079                 .chain_id = ALC880_FIXUP_GPIO2,
1080         },
1081         [ALC880_FIXUP_EAPD_COEF] = {
1082                 .type = HDA_FIXUP_VERBS,
1083                 .v.verbs = (const struct hda_verb[]) {
1084                         /* change to EAPD mode */
1085                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1086                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1087                         {}
1088                 },
1089         },
1090         [ALC880_FIXUP_TCL_S700] = {
1091                 .type = HDA_FIXUP_VERBS,
1092                 .v.verbs = (const struct hda_verb[]) {
1093                         /* change to EAPD mode */
1094                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1095                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
1096                         {}
1097                 },
1098                 .chained = true,
1099                 .chain_id = ALC880_FIXUP_GPIO2,
1100         },
1101         [ALC880_FIXUP_VOL_KNOB] = {
1102                 .type = HDA_FIXUP_FUNC,
1103                 .v.func = alc880_fixup_vol_knob,
1104         },
1105         [ALC880_FIXUP_FUJITSU] = {
1106                 /* override all pins as BIOS on old Amilo is broken */
1107                 .type = HDA_FIXUP_PINS,
1108                 .v.pins = (const struct hda_pintbl[]) {
1109                         { 0x14, 0x0121411f }, /* HP */
1110                         { 0x15, 0x99030120 }, /* speaker */
1111                         { 0x16, 0x99030130 }, /* bass speaker */
1112                         { 0x17, 0x411111f0 }, /* N/A */
1113                         { 0x18, 0x411111f0 }, /* N/A */
1114                         { 0x19, 0x01a19950 }, /* mic-in */
1115                         { 0x1a, 0x411111f0 }, /* N/A */
1116                         { 0x1b, 0x411111f0 }, /* N/A */
1117                         { 0x1c, 0x411111f0 }, /* N/A */
1118                         { 0x1d, 0x411111f0 }, /* N/A */
1119                         { 0x1e, 0x01454140 }, /* SPDIF out */
1120                         { }
1121                 },
1122                 .chained = true,
1123                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1124         },
1125         [ALC880_FIXUP_F1734] = {
1126                 /* almost compatible with FUJITSU, but no bass and SPDIF */
1127                 .type = HDA_FIXUP_PINS,
1128                 .v.pins = (const struct hda_pintbl[]) {
1129                         { 0x14, 0x0121411f }, /* HP */
1130                         { 0x15, 0x99030120 }, /* speaker */
1131                         { 0x16, 0x411111f0 }, /* N/A */
1132                         { 0x17, 0x411111f0 }, /* N/A */
1133                         { 0x18, 0x411111f0 }, /* N/A */
1134                         { 0x19, 0x01a19950 }, /* mic-in */
1135                         { 0x1a, 0x411111f0 }, /* N/A */
1136                         { 0x1b, 0x411111f0 }, /* N/A */
1137                         { 0x1c, 0x411111f0 }, /* N/A */
1138                         { 0x1d, 0x411111f0 }, /* N/A */
1139                         { 0x1e, 0x411111f0 }, /* N/A */
1140                         { }
1141                 },
1142                 .chained = true,
1143                 .chain_id = ALC880_FIXUP_VOL_KNOB,
1144         },
1145         [ALC880_FIXUP_UNIWILL] = {
1146                 /* need to fix HP and speaker pins to be parsed correctly */
1147                 .type = HDA_FIXUP_PINS,
1148                 .v.pins = (const struct hda_pintbl[]) {
1149                         { 0x14, 0x0121411f }, /* HP */
1150                         { 0x15, 0x99030120 }, /* speaker */
1151                         { 0x16, 0x99030130 }, /* bass speaker */
1152                         { }
1153                 },
1154         },
1155         [ALC880_FIXUP_UNIWILL_DIG] = {
1156                 .type = HDA_FIXUP_PINS,
1157                 .v.pins = (const struct hda_pintbl[]) {
1158                         /* disable bogus unused pins */
1159                         { 0x17, 0x411111f0 },
1160                         { 0x19, 0x411111f0 },
1161                         { 0x1b, 0x411111f0 },
1162                         { 0x1f, 0x411111f0 },
1163                         { }
1164                 }
1165         },
1166         [ALC880_FIXUP_Z71V] = {
1167                 .type = HDA_FIXUP_PINS,
1168                 .v.pins = (const struct hda_pintbl[]) {
1169                         /* set up the whole pins as BIOS is utterly broken */
1170                         { 0x14, 0x99030120 }, /* speaker */
1171                         { 0x15, 0x0121411f }, /* HP */
1172                         { 0x16, 0x411111f0 }, /* N/A */
1173                         { 0x17, 0x411111f0 }, /* N/A */
1174                         { 0x18, 0x01a19950 }, /* mic-in */
1175                         { 0x19, 0x411111f0 }, /* N/A */
1176                         { 0x1a, 0x01813031 }, /* line-in */
1177                         { 0x1b, 0x411111f0 }, /* N/A */
1178                         { 0x1c, 0x411111f0 }, /* N/A */
1179                         { 0x1d, 0x411111f0 }, /* N/A */
1180                         { 0x1e, 0x0144111e }, /* SPDIF */
1181                         { }
1182                 }
1183         },
1184         [ALC880_FIXUP_3ST_BASE] = {
1185                 .type = HDA_FIXUP_PINS,
1186                 .v.pins = (const struct hda_pintbl[]) {
1187                         { 0x14, 0x01014010 }, /* line-out */
1188                         { 0x15, 0x411111f0 }, /* N/A */
1189                         { 0x16, 0x411111f0 }, /* N/A */
1190                         { 0x17, 0x411111f0 }, /* N/A */
1191                         { 0x18, 0x01a19c30 }, /* mic-in */
1192                         { 0x19, 0x0121411f }, /* HP */
1193                         { 0x1a, 0x01813031 }, /* line-in */
1194                         { 0x1b, 0x02a19c40 }, /* front-mic */
1195                         { 0x1c, 0x411111f0 }, /* N/A */
1196                         { 0x1d, 0x411111f0 }, /* N/A */
1197                         /* 0x1e is filled in below */
1198                         { 0x1f, 0x411111f0 }, /* N/A */
1199                         { }
1200                 }
1201         },
1202         [ALC880_FIXUP_3ST] = {
1203                 .type = HDA_FIXUP_PINS,
1204                 .v.pins = (const struct hda_pintbl[]) {
1205                         { 0x1e, 0x411111f0 }, /* N/A */
1206                         { }
1207                 },
1208                 .chained = true,
1209                 .chain_id = ALC880_FIXUP_3ST_BASE,
1210         },
1211         [ALC880_FIXUP_3ST_DIG] = {
1212                 .type = HDA_FIXUP_PINS,
1213                 .v.pins = (const struct hda_pintbl[]) {
1214                         { 0x1e, 0x0144111e }, /* SPDIF */
1215                         { }
1216                 },
1217                 .chained = true,
1218                 .chain_id = ALC880_FIXUP_3ST_BASE,
1219         },
1220         [ALC880_FIXUP_5ST_BASE] = {
1221                 .type = HDA_FIXUP_PINS,
1222                 .v.pins = (const struct hda_pintbl[]) {
1223                         { 0x14, 0x01014010 }, /* front */
1224                         { 0x15, 0x411111f0 }, /* N/A */
1225                         { 0x16, 0x01011411 }, /* CLFE */
1226                         { 0x17, 0x01016412 }, /* surr */
1227                         { 0x18, 0x01a19c30 }, /* mic-in */
1228                         { 0x19, 0x0121411f }, /* HP */
1229                         { 0x1a, 0x01813031 }, /* line-in */
1230                         { 0x1b, 0x02a19c40 }, /* front-mic */
1231                         { 0x1c, 0x411111f0 }, /* N/A */
1232                         { 0x1d, 0x411111f0 }, /* N/A */
1233                         /* 0x1e is filled in below */
1234                         { 0x1f, 0x411111f0 }, /* N/A */
1235                         { }
1236                 }
1237         },
1238         [ALC880_FIXUP_5ST] = {
1239                 .type = HDA_FIXUP_PINS,
1240                 .v.pins = (const struct hda_pintbl[]) {
1241                         { 0x1e, 0x411111f0 }, /* N/A */
1242                         { }
1243                 },
1244                 .chained = true,
1245                 .chain_id = ALC880_FIXUP_5ST_BASE,
1246         },
1247         [ALC880_FIXUP_5ST_DIG] = {
1248                 .type = HDA_FIXUP_PINS,
1249                 .v.pins = (const struct hda_pintbl[]) {
1250                         { 0x1e, 0x0144111e }, /* SPDIF */
1251                         { }
1252                 },
1253                 .chained = true,
1254                 .chain_id = ALC880_FIXUP_5ST_BASE,
1255         },
1256         [ALC880_FIXUP_6ST_BASE] = {
1257                 .type = HDA_FIXUP_PINS,
1258                 .v.pins = (const struct hda_pintbl[]) {
1259                         { 0x14, 0x01014010 }, /* front */
1260                         { 0x15, 0x01016412 }, /* surr */
1261                         { 0x16, 0x01011411 }, /* CLFE */
1262                         { 0x17, 0x01012414 }, /* side */
1263                         { 0x18, 0x01a19c30 }, /* mic-in */
1264                         { 0x19, 0x02a19c40 }, /* front-mic */
1265                         { 0x1a, 0x01813031 }, /* line-in */
1266                         { 0x1b, 0x0121411f }, /* HP */
1267                         { 0x1c, 0x411111f0 }, /* N/A */
1268                         { 0x1d, 0x411111f0 }, /* N/A */
1269                         /* 0x1e is filled in below */
1270                         { 0x1f, 0x411111f0 }, /* N/A */
1271                         { }
1272                 }
1273         },
1274         [ALC880_FIXUP_6ST] = {
1275                 .type = HDA_FIXUP_PINS,
1276                 .v.pins = (const struct hda_pintbl[]) {
1277                         { 0x1e, 0x411111f0 }, /* N/A */
1278                         { }
1279                 },
1280                 .chained = true,
1281                 .chain_id = ALC880_FIXUP_6ST_BASE,
1282         },
1283         [ALC880_FIXUP_6ST_DIG] = {
1284                 .type = HDA_FIXUP_PINS,
1285                 .v.pins = (const struct hda_pintbl[]) {
1286                         { 0x1e, 0x0144111e }, /* SPDIF */
1287                         { }
1288                 },
1289                 .chained = true,
1290                 .chain_id = ALC880_FIXUP_6ST_BASE,
1291         },
1292 };
1293
1294 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1295         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1296         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1297         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1298         SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1299         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1300         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1301         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1302         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1303         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1304         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1305         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1306         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
1307         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1308         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1309         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1310         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1311         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1312         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1313         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1314
1315         /* Below is the copied entries from alc880_quirks.c.
1316          * It's not quite sure whether BIOS sets the correct pin-config table
1317          * on these machines, thus they are kept to be compatible with
1318          * the old static quirks.  Once when it's confirmed to work without
1319          * these overrides, it'd be better to remove.
1320          */
1321         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1322         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1323         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1324         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1325         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1326         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1327         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1328         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1329         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1330         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1331         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1332         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1333         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1334         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1335         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1336         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1337         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1338         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1339         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1340         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1341         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1342         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1343         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1344         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1345         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1346         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1347         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1348         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1349         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1350         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1351         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1352         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1353         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1354         /* default Intel */
1355         SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1356         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1357         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1358         {}
1359 };
1360
1361 static const struct hda_model_fixup alc880_fixup_models[] = {
1362         {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1363         {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1364         {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1365         {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1366         {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1367         {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1368         {}
1369 };
1370
1371
1372 /*
1373  * OK, here we have finally the patch for ALC880
1374  */
1375 static int patch_alc880(struct hda_codec *codec)
1376 {
1377         struct alc_spec *spec;
1378         int err;
1379
1380         err = alc_alloc_spec(codec, 0x0b);
1381         if (err < 0)
1382                 return err;
1383
1384         spec = codec->spec;
1385         spec->gen.need_dac_fix = 1;
1386
1387         snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1388                        alc880_fixups);
1389         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1390
1391         /* automatic parse from the BIOS config */
1392         err = alc880_parse_auto_config(codec);
1393         if (err < 0)
1394                 goto error;
1395
1396         if (!spec->gen.no_analog) {
1397                 err = snd_hda_attach_beep_device(codec, 0x1);
1398                 if (err < 0)
1399                         goto error;
1400                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1401         }
1402
1403         codec->patch_ops = alc_patch_ops;
1404         codec->patch_ops.unsol_event = alc880_unsol_event;
1405
1406
1407         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1408
1409         return 0;
1410
1411  error:
1412         alc_free(codec);
1413         return err;
1414 }
1415
1416
1417 /*
1418  * ALC260 support
1419  */
1420 static int alc260_parse_auto_config(struct hda_codec *codec)
1421 {
1422         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1423         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1424         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1425 }
1426
1427 /*
1428  * Pin config fixes
1429  */
1430 enum {
1431         ALC260_FIXUP_HP_DC5750,
1432         ALC260_FIXUP_HP_PIN_0F,
1433         ALC260_FIXUP_COEF,
1434         ALC260_FIXUP_GPIO1,
1435         ALC260_FIXUP_GPIO1_TOGGLE,
1436         ALC260_FIXUP_REPLACER,
1437         ALC260_FIXUP_HP_B1900,
1438         ALC260_FIXUP_KN1,
1439 };
1440
1441 static void alc260_gpio1_automute(struct hda_codec *codec)
1442 {
1443         struct alc_spec *spec = codec->spec;
1444         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
1445                             spec->gen.hp_jack_present);
1446 }
1447
1448 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1449                                       const struct hda_fixup *fix, int action)
1450 {
1451         struct alc_spec *spec = codec->spec;
1452         if (action == HDA_FIXUP_ACT_PROBE) {
1453                 /* although the machine has only one output pin, we need to
1454                  * toggle GPIO1 according to the jack state
1455                  */
1456                 spec->gen.automute_hook = alc260_gpio1_automute;
1457                 spec->gen.detect_hp = 1;
1458                 spec->gen.automute_speaker = 1;
1459                 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1460                 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1461                                                     snd_hda_gen_hp_automute);
1462                 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
1463         }
1464 }
1465
1466 static void alc260_fixup_kn1(struct hda_codec *codec,
1467                              const struct hda_fixup *fix, int action)
1468 {
1469         struct alc_spec *spec = codec->spec;
1470         static const struct hda_pintbl pincfgs[] = {
1471                 { 0x0f, 0x02214000 }, /* HP/speaker */
1472                 { 0x12, 0x90a60160 }, /* int mic */
1473                 { 0x13, 0x02a19000 }, /* ext mic */
1474                 { 0x18, 0x01446000 }, /* SPDIF out */
1475                 /* disable bogus I/O pins */
1476                 { 0x10, 0x411111f0 },
1477                 { 0x11, 0x411111f0 },
1478                 { 0x14, 0x411111f0 },
1479                 { 0x15, 0x411111f0 },
1480                 { 0x16, 0x411111f0 },
1481                 { 0x17, 0x411111f0 },
1482                 { 0x19, 0x411111f0 },
1483                 { }
1484         };
1485
1486         switch (action) {
1487         case HDA_FIXUP_ACT_PRE_PROBE:
1488                 snd_hda_apply_pincfgs(codec, pincfgs);
1489                 break;
1490         case HDA_FIXUP_ACT_PROBE:
1491                 spec->init_amp = ALC_INIT_NONE;
1492                 break;
1493         }
1494 }
1495
1496 static const struct hda_fixup alc260_fixups[] = {
1497         [ALC260_FIXUP_HP_DC5750] = {
1498                 .type = HDA_FIXUP_PINS,
1499                 .v.pins = (const struct hda_pintbl[]) {
1500                         { 0x11, 0x90130110 }, /* speaker */
1501                         { }
1502                 }
1503         },
1504         [ALC260_FIXUP_HP_PIN_0F] = {
1505                 .type = HDA_FIXUP_PINS,
1506                 .v.pins = (const struct hda_pintbl[]) {
1507                         { 0x0f, 0x01214000 }, /* HP */
1508                         { }
1509                 }
1510         },
1511         [ALC260_FIXUP_COEF] = {
1512                 .type = HDA_FIXUP_VERBS,
1513                 .v.verbs = (const struct hda_verb[]) {
1514                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1515                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3040 },
1516                         { }
1517                 },
1518                 .chained = true,
1519                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1520         },
1521         [ALC260_FIXUP_GPIO1] = {
1522                 .type = HDA_FIXUP_VERBS,
1523                 .v.verbs = alc_gpio1_init_verbs,
1524         },
1525         [ALC260_FIXUP_GPIO1_TOGGLE] = {
1526                 .type = HDA_FIXUP_FUNC,
1527                 .v.func = alc260_fixup_gpio1_toggle,
1528                 .chained = true,
1529                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1530         },
1531         [ALC260_FIXUP_REPLACER] = {
1532                 .type = HDA_FIXUP_VERBS,
1533                 .v.verbs = (const struct hda_verb[]) {
1534                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1535                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3050 },
1536                         { }
1537                 },
1538                 .chained = true,
1539                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1540         },
1541         [ALC260_FIXUP_HP_B1900] = {
1542                 .type = HDA_FIXUP_FUNC,
1543                 .v.func = alc260_fixup_gpio1_toggle,
1544                 .chained = true,
1545                 .chain_id = ALC260_FIXUP_COEF,
1546         },
1547         [ALC260_FIXUP_KN1] = {
1548                 .type = HDA_FIXUP_FUNC,
1549                 .v.func = alc260_fixup_kn1,
1550         },
1551 };
1552
1553 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1554         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1555         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1556         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1557         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1558         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1559         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1560         SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1561         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1562         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1563         {}
1564 };
1565
1566 /*
1567  */
1568 static int patch_alc260(struct hda_codec *codec)
1569 {
1570         struct alc_spec *spec;
1571         int err;
1572
1573         err = alc_alloc_spec(codec, 0x07);
1574         if (err < 0)
1575                 return err;
1576
1577         spec = codec->spec;
1578
1579         snd_hda_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
1580         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1581
1582         /* automatic parse from the BIOS config */
1583         err = alc260_parse_auto_config(codec);
1584         if (err < 0)
1585                 goto error;
1586
1587         if (!spec->gen.no_analog) {
1588                 err = snd_hda_attach_beep_device(codec, 0x1);
1589                 if (err < 0)
1590                         goto error;
1591                 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1592         }
1593
1594         codec->patch_ops = alc_patch_ops;
1595         spec->shutup = alc_eapd_shutup;
1596
1597         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1598
1599         return 0;
1600
1601  error:
1602         alc_free(codec);
1603         return err;
1604 }
1605
1606
1607 /*
1608  * ALC882/883/885/888/889 support
1609  *
1610  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1611  * configuration.  Each pin widget can choose any input DACs and a mixer.
1612  * Each ADC is connected from a mixer of all inputs.  This makes possible
1613  * 6-channel independent captures.
1614  *
1615  * In addition, an independent DAC for the multi-playback (not used in this
1616  * driver yet).
1617  */
1618
1619 /*
1620  * Pin config fixes
1621  */
1622 enum {
1623         ALC882_FIXUP_ABIT_AW9D_MAX,
1624         ALC882_FIXUP_LENOVO_Y530,
1625         ALC882_FIXUP_PB_M5210,
1626         ALC882_FIXUP_ACER_ASPIRE_7736,
1627         ALC882_FIXUP_ASUS_W90V,
1628         ALC889_FIXUP_CD,
1629         ALC889_FIXUP_VAIO_TT,
1630         ALC888_FIXUP_EEE1601,
1631         ALC882_FIXUP_EAPD,
1632         ALC883_FIXUP_EAPD,
1633         ALC883_FIXUP_ACER_EAPD,
1634         ALC882_FIXUP_GPIO1,
1635         ALC882_FIXUP_GPIO2,
1636         ALC882_FIXUP_GPIO3,
1637         ALC889_FIXUP_COEF,
1638         ALC882_FIXUP_ASUS_W2JC,
1639         ALC882_FIXUP_ACER_ASPIRE_4930G,
1640         ALC882_FIXUP_ACER_ASPIRE_8930G,
1641         ALC882_FIXUP_ASPIRE_8930G_VERBS,
1642         ALC885_FIXUP_MACPRO_GPIO,
1643         ALC889_FIXUP_DAC_ROUTE,
1644         ALC889_FIXUP_MBP_VREF,
1645         ALC889_FIXUP_IMAC91_VREF,
1646         ALC882_FIXUP_INV_DMIC,
1647         ALC882_FIXUP_NO_PRIMARY_HP,
1648 };
1649
1650 static void alc889_fixup_coef(struct hda_codec *codec,
1651                               const struct hda_fixup *fix, int action)
1652 {
1653         if (action != HDA_FIXUP_ACT_INIT)
1654                 return;
1655         alc889_coef_init(codec);
1656 }
1657
1658 /* toggle speaker-output according to the hp-jack state */
1659 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1660 {
1661         unsigned int gpiostate, gpiomask, gpiodir;
1662
1663         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1664                                        AC_VERB_GET_GPIO_DATA, 0);
1665
1666         if (!muted)
1667                 gpiostate |= (1 << pin);
1668         else
1669                 gpiostate &= ~(1 << pin);
1670
1671         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1672                                       AC_VERB_GET_GPIO_MASK, 0);
1673         gpiomask |= (1 << pin);
1674
1675         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1676                                      AC_VERB_GET_GPIO_DIRECTION, 0);
1677         gpiodir |= (1 << pin);
1678
1679
1680         snd_hda_codec_write(codec, codec->afg, 0,
1681                             AC_VERB_SET_GPIO_MASK, gpiomask);
1682         snd_hda_codec_write(codec, codec->afg, 0,
1683                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1684
1685         msleep(1);
1686
1687         snd_hda_codec_write(codec, codec->afg, 0,
1688                             AC_VERB_SET_GPIO_DATA, gpiostate);
1689 }
1690
1691 /* set up GPIO at initialization */
1692 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1693                                      const struct hda_fixup *fix, int action)
1694 {
1695         if (action != HDA_FIXUP_ACT_INIT)
1696                 return;
1697         alc882_gpio_mute(codec, 0, 0);
1698         alc882_gpio_mute(codec, 1, 0);
1699 }
1700
1701 /* Fix the connection of some pins for ALC889:
1702  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1703  * work correctly (bko#42740)
1704  */
1705 static void alc889_fixup_dac_route(struct hda_codec *codec,
1706                                    const struct hda_fixup *fix, int action)
1707 {
1708         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1709                 /* fake the connections during parsing the tree */
1710                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1711                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1712                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1713                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1714                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1715                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1716         } else if (action == HDA_FIXUP_ACT_PROBE) {
1717                 /* restore the connections */
1718                 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1719                 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1720                 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1721                 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1722                 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1723         }
1724 }
1725
1726 /* Set VREF on HP pin */
1727 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1728                                   const struct hda_fixup *fix, int action)
1729 {
1730         struct alc_spec *spec = codec->spec;
1731         static hda_nid_t nids[2] = { 0x14, 0x15 };
1732         int i;
1733
1734         if (action != HDA_FIXUP_ACT_INIT)
1735                 return;
1736         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1737                 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1738                 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1739                         continue;
1740                 val = snd_hda_codec_read(codec, nids[i], 0,
1741                                          AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1742                 val |= AC_PINCTL_VREF_80;
1743                 snd_hda_set_pin_ctl(codec, nids[i], val);
1744                 spec->gen.keep_vref_in_automute = 1;
1745                 break;
1746         }
1747 }
1748
1749 /* Set VREF on speaker pins on imac91 */
1750 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1751                                      const struct hda_fixup *fix, int action)
1752 {
1753         struct alc_spec *spec = codec->spec;
1754         static hda_nid_t nids[2] = { 0x18, 0x1a };
1755         int i;
1756
1757         if (action != HDA_FIXUP_ACT_INIT)
1758                 return;
1759         for (i = 0; i < ARRAY_SIZE(nids); i++) {
1760                 unsigned int val;
1761                 val = snd_hda_codec_read(codec, nids[i], 0,
1762                                          AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1763                 val |= AC_PINCTL_VREF_50;
1764                 snd_hda_set_pin_ctl(codec, nids[i], val);
1765         }
1766         spec->gen.keep_vref_in_automute = 1;
1767 }
1768
1769 /* Don't take HP output as primary
1770  * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
1771  */
1772 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1773                                        const struct hda_fixup *fix, int action)
1774 {
1775         struct alc_spec *spec = codec->spec;
1776         if (action == HDA_FIXUP_ACT_PRE_PROBE)
1777                 spec->gen.no_primary_hp = 1;
1778 }
1779
1780 static const struct hda_fixup alc882_fixups[] = {
1781         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1782                 .type = HDA_FIXUP_PINS,
1783                 .v.pins = (const struct hda_pintbl[]) {
1784                         { 0x15, 0x01080104 }, /* side */
1785                         { 0x16, 0x01011012 }, /* rear */
1786                         { 0x17, 0x01016011 }, /* clfe */
1787                         { }
1788                 }
1789         },
1790         [ALC882_FIXUP_LENOVO_Y530] = {
1791                 .type = HDA_FIXUP_PINS,
1792                 .v.pins = (const struct hda_pintbl[]) {
1793                         { 0x15, 0x99130112 }, /* rear int speakers */
1794                         { 0x16, 0x99130111 }, /* subwoofer */
1795                         { }
1796                 }
1797         },
1798         [ALC882_FIXUP_PB_M5210] = {
1799                 .type = HDA_FIXUP_VERBS,
1800                 .v.verbs = (const struct hda_verb[]) {
1801                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
1802                         {}
1803                 }
1804         },
1805         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1806                 .type = HDA_FIXUP_FUNC,
1807                 .v.func = alc_fixup_sku_ignore,
1808         },
1809         [ALC882_FIXUP_ASUS_W90V] = {
1810                 .type = HDA_FIXUP_PINS,
1811                 .v.pins = (const struct hda_pintbl[]) {
1812                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1813                         { }
1814                 }
1815         },
1816         [ALC889_FIXUP_CD] = {
1817                 .type = HDA_FIXUP_PINS,
1818                 .v.pins = (const struct hda_pintbl[]) {
1819                         { 0x1c, 0x993301f0 }, /* CD */
1820                         { }
1821                 }
1822         },
1823         [ALC889_FIXUP_VAIO_TT] = {
1824                 .type = HDA_FIXUP_PINS,
1825                 .v.pins = (const struct hda_pintbl[]) {
1826                         { 0x17, 0x90170111 }, /* hidden surround speaker */
1827                         { }
1828                 }
1829         },
1830         [ALC888_FIXUP_EEE1601] = {
1831                 .type = HDA_FIXUP_VERBS,
1832                 .v.verbs = (const struct hda_verb[]) {
1833                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1834                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
1835                         { }
1836                 }
1837         },
1838         [ALC882_FIXUP_EAPD] = {
1839                 .type = HDA_FIXUP_VERBS,
1840                 .v.verbs = (const struct hda_verb[]) {
1841                         /* change to EAPD mode */
1842                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1843                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1844                         { }
1845                 }
1846         },
1847         [ALC883_FIXUP_EAPD] = {
1848                 .type = HDA_FIXUP_VERBS,
1849                 .v.verbs = (const struct hda_verb[]) {
1850                         /* change to EAPD mode */
1851                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1852                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1853                         { }
1854                 }
1855         },
1856         [ALC883_FIXUP_ACER_EAPD] = {
1857                 .type = HDA_FIXUP_VERBS,
1858                 .v.verbs = (const struct hda_verb[]) {
1859                         /* eanable EAPD on Acer laptops */
1860                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1861                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1862                         { }
1863                 }
1864         },
1865         [ALC882_FIXUP_GPIO1] = {
1866                 .type = HDA_FIXUP_VERBS,
1867                 .v.verbs = alc_gpio1_init_verbs,
1868         },
1869         [ALC882_FIXUP_GPIO2] = {
1870                 .type = HDA_FIXUP_VERBS,
1871                 .v.verbs = alc_gpio2_init_verbs,
1872         },
1873         [ALC882_FIXUP_GPIO3] = {
1874                 .type = HDA_FIXUP_VERBS,
1875                 .v.verbs = alc_gpio3_init_verbs,
1876         },
1877         [ALC882_FIXUP_ASUS_W2JC] = {
1878                 .type = HDA_FIXUP_VERBS,
1879                 .v.verbs = alc_gpio1_init_verbs,
1880                 .chained = true,
1881                 .chain_id = ALC882_FIXUP_EAPD,
1882         },
1883         [ALC889_FIXUP_COEF] = {
1884                 .type = HDA_FIXUP_FUNC,
1885                 .v.func = alc889_fixup_coef,
1886         },
1887         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1888                 .type = HDA_FIXUP_PINS,
1889                 .v.pins = (const struct hda_pintbl[]) {
1890                         { 0x16, 0x99130111 }, /* CLFE speaker */
1891                         { 0x17, 0x99130112 }, /* surround speaker */
1892                         { }
1893                 },
1894                 .chained = true,
1895                 .chain_id = ALC882_FIXUP_GPIO1,
1896         },
1897         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1898                 .type = HDA_FIXUP_PINS,
1899                 .v.pins = (const struct hda_pintbl[]) {
1900                         { 0x16, 0x99130111 }, /* CLFE speaker */
1901                         { 0x1b, 0x99130112 }, /* surround speaker */
1902                         { }
1903                 },
1904                 .chained = true,
1905                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
1906         },
1907         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
1908                 /* additional init verbs for Acer Aspire 8930G */
1909                 .type = HDA_FIXUP_VERBS,
1910                 .v.verbs = (const struct hda_verb[]) {
1911                         /* Enable all DACs */
1912                         /* DAC DISABLE/MUTE 1? */
1913                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
1914                          *  apparently. Init=0x38 */
1915                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
1916                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1917                         /* DAC DISABLE/MUTE 2? */
1918                         /*  some bit here disables the other DACs.
1919                          *  Init=0x4900 */
1920                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
1921                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1922                         /* DMIC fix
1923                          * This laptop has a stereo digital microphone.
1924                          * The mics are only 1cm apart which makes the stereo
1925                          * useless. However, either the mic or the ALC889
1926                          * makes the signal become a difference/sum signal
1927                          * instead of standard stereo, which is annoying.
1928                          * So instead we flip this bit which makes the
1929                          * codec replicate the sum signal to both channels,
1930                          * turning it into a normal mono mic.
1931                          */
1932                         /* DMIC_CONTROL? Init value = 0x0001 */
1933                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1934                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
1935                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1936                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1937                         { }
1938                 },
1939                 .chained = true,
1940                 .chain_id = ALC882_FIXUP_GPIO1,
1941         },
1942         [ALC885_FIXUP_MACPRO_GPIO] = {
1943                 .type = HDA_FIXUP_FUNC,
1944                 .v.func = alc885_fixup_macpro_gpio,
1945         },
1946         [ALC889_FIXUP_DAC_ROUTE] = {
1947                 .type = HDA_FIXUP_FUNC,
1948                 .v.func = alc889_fixup_dac_route,
1949         },
1950         [ALC889_FIXUP_MBP_VREF] = {
1951                 .type = HDA_FIXUP_FUNC,
1952                 .v.func = alc889_fixup_mbp_vref,
1953                 .chained = true,
1954                 .chain_id = ALC882_FIXUP_GPIO1,
1955         },
1956         [ALC889_FIXUP_IMAC91_VREF] = {
1957                 .type = HDA_FIXUP_FUNC,
1958                 .v.func = alc889_fixup_imac91_vref,
1959                 .chained = true,
1960                 .chain_id = ALC882_FIXUP_GPIO1,
1961         },
1962         [ALC882_FIXUP_INV_DMIC] = {
1963                 .type = HDA_FIXUP_FUNC,
1964                 .v.func = alc_fixup_inv_dmic_0x12,
1965         },
1966         [ALC882_FIXUP_NO_PRIMARY_HP] = {
1967                 .type = HDA_FIXUP_FUNC,
1968                 .v.func = alc882_fixup_no_primary_hp,
1969         },
1970 };
1971
1972 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
1973         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
1974         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1975         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
1976         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1977         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
1978         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
1979         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
1980                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1981         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
1982                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1983         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
1984                       ALC882_FIXUP_ACER_ASPIRE_8930G),
1985         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
1986                       ALC882_FIXUP_ACER_ASPIRE_8930G),
1987         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
1988                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1989         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
1990                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1991         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
1992                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1993         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
1994         SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
1995                       ALC882_FIXUP_ACER_ASPIRE_4930G),
1996         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
1997         SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
1998         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
1999         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2000         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2001         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2002         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2003         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2004         SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2005
2006         /* All Apple entries are in codec SSIDs */
2007         SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2008         SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2009         SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2010         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2011         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2012         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2013         SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2014         SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2015         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2016         SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2017         SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2018         SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2019         SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2020         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2021         SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2022         SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2023         SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2024         SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
2025         SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2026         SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2027         SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2028         SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
2029
2030         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2031         SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2032         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2033         SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
2034         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2035         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2036         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2037         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2038         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2039         {}
2040 };
2041
2042 static const struct hda_model_fixup alc882_fixup_models[] = {
2043         {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2044         {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2045         {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2046         {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2047         {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2048         {}
2049 };
2050
2051 /*
2052  * BIOS auto configuration
2053  */
2054 /* almost identical with ALC880 parser... */
2055 static int alc882_parse_auto_config(struct hda_codec *codec)
2056 {
2057         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2058         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2059         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2060 }
2061
2062 /*
2063  */
2064 static int patch_alc882(struct hda_codec *codec)
2065 {
2066         struct alc_spec *spec;
2067         int err;
2068
2069         err = alc_alloc_spec(codec, 0x0b);
2070         if (err < 0)
2071                 return err;
2072
2073         spec = codec->spec;
2074
2075         switch (codec->vendor_id) {
2076         case 0x10ec0882:
2077         case 0x10ec0885:
2078                 break;
2079         default:
2080                 /* ALC883 and variants */
2081                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2082                 break;
2083         }
2084
2085         snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2086                        alc882_fixups);
2087         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2088
2089         alc_auto_parse_customize_define(codec);
2090
2091         /* automatic parse from the BIOS config */
2092         err = alc882_parse_auto_config(codec);
2093         if (err < 0)
2094                 goto error;
2095
2096         if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
2097                 err = snd_hda_attach_beep_device(codec, 0x1);
2098                 if (err < 0)
2099                         goto error;
2100                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2101         }
2102
2103         codec->patch_ops = alc_patch_ops;
2104
2105         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2106
2107         return 0;
2108
2109  error:
2110         alc_free(codec);
2111         return err;
2112 }
2113
2114
2115 /*
2116  * ALC262 support
2117  */
2118 static int alc262_parse_auto_config(struct hda_codec *codec)
2119 {
2120         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2121         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2122         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2123 }
2124
2125 /*
2126  * Pin config fixes
2127  */
2128 enum {
2129         ALC262_FIXUP_FSC_H270,
2130         ALC262_FIXUP_HP_Z200,
2131         ALC262_FIXUP_TYAN,
2132         ALC262_FIXUP_LENOVO_3000,
2133         ALC262_FIXUP_BENQ,
2134         ALC262_FIXUP_BENQ_T31,
2135         ALC262_FIXUP_INV_DMIC,
2136 };
2137
2138 static const struct hda_fixup alc262_fixups[] = {
2139         [ALC262_FIXUP_FSC_H270] = {
2140                 .type = HDA_FIXUP_PINS,
2141                 .v.pins = (const struct hda_pintbl[]) {
2142                         { 0x14, 0x99130110 }, /* speaker */
2143                         { 0x15, 0x0221142f }, /* front HP */
2144                         { 0x1b, 0x0121141f }, /* rear HP */
2145                         { }
2146                 }
2147         },
2148         [ALC262_FIXUP_HP_Z200] = {
2149                 .type = HDA_FIXUP_PINS,
2150                 .v.pins = (const struct hda_pintbl[]) {
2151                         { 0x16, 0x99130120 }, /* internal speaker */
2152                         { }
2153                 }
2154         },
2155         [ALC262_FIXUP_TYAN] = {
2156                 .type = HDA_FIXUP_PINS,
2157                 .v.pins = (const struct hda_pintbl[]) {
2158                         { 0x14, 0x1993e1f0 }, /* int AUX */
2159                         { }
2160                 }
2161         },
2162         [ALC262_FIXUP_LENOVO_3000] = {
2163                 .type = HDA_FIXUP_VERBS,
2164                 .v.verbs = (const struct hda_verb[]) {
2165                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
2166                         {}
2167                 },
2168                 .chained = true,
2169                 .chain_id = ALC262_FIXUP_BENQ,
2170         },
2171         [ALC262_FIXUP_BENQ] = {
2172                 .type = HDA_FIXUP_VERBS,
2173                 .v.verbs = (const struct hda_verb[]) {
2174                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2175                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2176                         {}
2177                 }
2178         },
2179         [ALC262_FIXUP_BENQ_T31] = {
2180                 .type = HDA_FIXUP_VERBS,
2181                 .v.verbs = (const struct hda_verb[]) {
2182                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2183                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2184                         {}
2185                 }
2186         },
2187         [ALC262_FIXUP_INV_DMIC] = {
2188                 .type = HDA_FIXUP_FUNC,
2189                 .v.func = alc_fixup_inv_dmic_0x12,
2190         },
2191 };
2192
2193 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2194         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2195         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
2196         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2197         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2198         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2199         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2200         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2201         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2202         {}
2203 };
2204
2205 static const struct hda_model_fixup alc262_fixup_models[] = {
2206         {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2207         {}
2208 };
2209
2210 /*
2211  */
2212 static int patch_alc262(struct hda_codec *codec)
2213 {
2214         struct alc_spec *spec;
2215         int err;
2216
2217         err = alc_alloc_spec(codec, 0x0b);
2218         if (err < 0)
2219                 return err;
2220
2221         spec = codec->spec;
2222         spec->gen.shared_mic_vref_pin = 0x18;
2223
2224 #if 0
2225         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
2226          * under-run
2227          */
2228         {
2229         int tmp;
2230         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2231         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2232         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2233         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2234         }
2235 #endif
2236         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2237
2238         snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2239                        alc262_fixups);
2240         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2241
2242         alc_auto_parse_customize_define(codec);
2243
2244         /* automatic parse from the BIOS config */
2245         err = alc262_parse_auto_config(codec);
2246         if (err < 0)
2247                 goto error;
2248
2249         if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
2250                 err = snd_hda_attach_beep_device(codec, 0x1);
2251                 if (err < 0)
2252                         goto error;
2253                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2254         }
2255
2256         codec->patch_ops = alc_patch_ops;
2257         spec->shutup = alc_eapd_shutup;
2258
2259         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2260
2261         return 0;
2262
2263  error:
2264         alc_free(codec);
2265         return err;
2266 }
2267
2268 /*
2269  *  ALC268
2270  */
2271 /* bind Beep switches of both NID 0x0f and 0x10 */
2272 static const struct hda_bind_ctls alc268_bind_beep_sw = {
2273         .ops = &snd_hda_bind_sw,
2274         .values = {
2275                 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2276                 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2277                 0
2278         },
2279 };
2280
2281 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2282         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2283         HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2284         { }
2285 };
2286
2287 /* set PCBEEP vol = 0, mute connections */
2288 static const struct hda_verb alc268_beep_init_verbs[] = {
2289         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2290         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2291         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2292         { }
2293 };
2294
2295 enum {
2296         ALC268_FIXUP_INV_DMIC,
2297         ALC268_FIXUP_HP_EAPD,
2298 };
2299
2300 static const struct hda_fixup alc268_fixups[] = {
2301         [ALC268_FIXUP_INV_DMIC] = {
2302                 .type = HDA_FIXUP_FUNC,
2303                 .v.func = alc_fixup_inv_dmic_0x12,
2304         },
2305         [ALC268_FIXUP_HP_EAPD] = {
2306                 .type = HDA_FIXUP_VERBS,
2307                 .v.verbs = (const struct hda_verb[]) {
2308                         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2309                         {}
2310                 }
2311         },
2312 };
2313
2314 static const struct hda_model_fixup alc268_fixup_models[] = {
2315         {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2316         {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2317         {}
2318 };
2319
2320 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2321         /* below is codec SSID since multiple Toshiba laptops have the
2322          * same PCI SSID 1179:ff00
2323          */
2324         SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2325         {}
2326 };
2327
2328 /*
2329  * BIOS auto configuration
2330  */
2331 static int alc268_parse_auto_config(struct hda_codec *codec)
2332 {
2333         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2334         struct alc_spec *spec = codec->spec;
2335         int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
2336         if (err > 0) {
2337                 if (!spec->gen.no_analog &&
2338                     spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2339                         add_mixer(spec, alc268_beep_mixer);
2340                         snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2341                 }
2342         }
2343         return err;
2344 }
2345
2346 /*
2347  */
2348 static int patch_alc268(struct hda_codec *codec)
2349 {
2350         struct alc_spec *spec;
2351         int i, has_beep, err;
2352
2353         /* ALC268 has no aa-loopback mixer */
2354         err = alc_alloc_spec(codec, 0);
2355         if (err < 0)
2356                 return err;
2357
2358         spec = codec->spec;
2359
2360         snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2361         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2362
2363         /* automatic parse from the BIOS config */
2364         err = alc268_parse_auto_config(codec);
2365         if (err < 0)
2366                 goto error;
2367
2368         has_beep = 0;
2369         for (i = 0; i < spec->num_mixers; i++) {
2370                 if (spec->mixers[i] == alc268_beep_mixer) {
2371                         has_beep = 1;
2372                         break;
2373                 }
2374         }
2375
2376         if (has_beep) {
2377                 err = snd_hda_attach_beep_device(codec, 0x1);
2378                 if (err < 0)
2379                         goto error;
2380                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2381                         /* override the amp caps for beep generator */
2382                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2383                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2384                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2385                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2386                                           (0 << AC_AMPCAP_MUTE_SHIFT));
2387         }
2388
2389         codec->patch_ops = alc_patch_ops;
2390         spec->shutup = alc_eapd_shutup;
2391
2392         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2393
2394         return 0;
2395
2396  error:
2397         alc_free(codec);
2398         return err;
2399 }
2400
2401 /*
2402  * ALC269
2403  */
2404
2405 static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2406                              struct hda_codec *codec,
2407                              struct snd_pcm_substream *substream)
2408 {
2409         struct hda_gen_spec *spec = codec->spec;
2410         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2411                                              hinfo);
2412 }
2413
2414 static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2415                                 struct hda_codec *codec,
2416                                 unsigned int stream_tag,
2417                                 unsigned int format,
2418                                 struct snd_pcm_substream *substream)
2419 {
2420         struct hda_gen_spec *spec = codec->spec;
2421         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2422                                                 stream_tag, format, substream);
2423 }
2424
2425 static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2426                                 struct hda_codec *codec,
2427                                 struct snd_pcm_substream *substream)
2428 {
2429         struct hda_gen_spec *spec = codec->spec;
2430         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2431 }
2432
2433 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2434         .substreams = 1,
2435         .channels_min = 2,
2436         .channels_max = 8,
2437         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2438         /* NID is set in alc_build_pcms */
2439         .ops = {
2440                 .open = playback_pcm_open,
2441                 .prepare = playback_pcm_prepare,
2442                 .cleanup = playback_pcm_cleanup
2443         },
2444 };
2445
2446 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2447         .substreams = 1,
2448         .channels_min = 2,
2449         .channels_max = 2,
2450         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2451         /* NID is set in alc_build_pcms */
2452 };
2453
2454 /* different alc269-variants */
2455 enum {
2456         ALC269_TYPE_ALC269VA,
2457         ALC269_TYPE_ALC269VB,
2458         ALC269_TYPE_ALC269VC,
2459         ALC269_TYPE_ALC269VD,
2460         ALC269_TYPE_ALC280,
2461         ALC269_TYPE_ALC282,
2462         ALC269_TYPE_ALC284,
2463 };
2464
2465 /*
2466  * BIOS auto configuration
2467  */
2468 static int alc269_parse_auto_config(struct hda_codec *codec)
2469 {
2470         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2471         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2472         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2473         struct alc_spec *spec = codec->spec;
2474         const hda_nid_t *ssids;
2475
2476         switch (spec->codec_variant) {
2477         case ALC269_TYPE_ALC269VA:
2478         case ALC269_TYPE_ALC269VC:
2479         case ALC269_TYPE_ALC280:
2480         case ALC269_TYPE_ALC284:
2481                 ssids = alc269va_ssids;
2482                 break;
2483         case ALC269_TYPE_ALC269VB:
2484         case ALC269_TYPE_ALC269VD:
2485         case ALC269_TYPE_ALC282:
2486                 ssids = alc269_ssids;
2487                 break;
2488         default:
2489                 ssids = alc269_ssids;
2490                 break;
2491         }
2492
2493         return alc_parse_auto_config(codec, alc269_ignore, ssids);
2494 }
2495
2496 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2497 {
2498         int val = alc_read_coef_idx(codec, 0x04);
2499         if (power_up)
2500                 val |= 1 << 11;
2501         else
2502                 val &= ~(1 << 11);
2503         alc_write_coef_idx(codec, 0x04, val);
2504 }
2505
2506 static void alc269_shutup(struct hda_codec *codec)
2507 {
2508         struct alc_spec *spec = codec->spec;
2509
2510         if (spec->codec_variant != ALC269_TYPE_ALC269VB)
2511                 return;
2512
2513         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2514                 alc269vb_toggle_power_output(codec, 0);
2515         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2516                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2517                 msleep(150);
2518         }
2519 }
2520
2521 #ifdef CONFIG_PM
2522 static int alc269_resume(struct hda_codec *codec)
2523 {
2524         struct alc_spec *spec = codec->spec;
2525
2526         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2527                 alc269vb_toggle_power_output(codec, 0);
2528         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2529                         (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2530                 msleep(150);
2531         }
2532
2533         codec->patch_ops.init(codec);
2534
2535         if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2536                 alc269vb_toggle_power_output(codec, 1);
2537         if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2538                         (alc_get_coef0(codec) & 0x00ff) == 0x017) {
2539                 msleep(200);
2540         }
2541
2542         snd_hda_codec_resume_amp(codec);
2543         snd_hda_codec_resume_cache(codec);
2544         hda_call_check_power_status(codec, 0x01);
2545         return 0;
2546 }
2547 #endif /* CONFIG_PM */
2548
2549 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
2550                                                  const struct hda_fixup *fix, int action)
2551 {
2552         struct alc_spec *spec = codec->spec;
2553
2554         if (action == HDA_FIXUP_ACT_PRE_PROBE)
2555                 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2556 }
2557
2558 static void alc269_fixup_hweq(struct hda_codec *codec,
2559                                const struct hda_fixup *fix, int action)
2560 {
2561         int coef;
2562
2563         if (action != HDA_FIXUP_ACT_INIT)
2564                 return;
2565         coef = alc_read_coef_idx(codec, 0x1e);
2566         alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2567 }
2568
2569 static void alc271_fixup_dmic(struct hda_codec *codec,
2570                               const struct hda_fixup *fix, int action)
2571 {
2572         static const struct hda_verb verbs[] = {
2573                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2574                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2575                 {}
2576         };
2577         unsigned int cfg;
2578
2579         if (strcmp(codec->chip_name, "ALC271X"))
2580                 return;
2581         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2582         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2583                 snd_hda_sequence_write(codec, verbs);
2584 }
2585
2586 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
2587                                  const struct hda_fixup *fix, int action)
2588 {
2589         struct alc_spec *spec = codec->spec;
2590
2591         if (action != HDA_FIXUP_ACT_PROBE)
2592                 return;
2593
2594         /* Due to a hardware problem on Lenovo Ideadpad, we need to
2595          * fix the sample rate of analog I/O to 44.1kHz
2596          */
2597         spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2598         spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
2599 }
2600
2601 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
2602                                      const struct hda_fixup *fix, int action)
2603 {
2604         int coef;
2605
2606         if (action != HDA_FIXUP_ACT_INIT)
2607                 return;
2608         /* The digital-mic unit sends PDM (differential signal) instead of
2609          * the standard PCM, thus you can't record a valid mono stream as is.
2610          * Below is a workaround specific to ALC269 to control the dmic
2611          * signal source as mono.
2612          */
2613         coef = alc_read_coef_idx(codec, 0x07);
2614         alc_write_coef_idx(codec, 0x07, coef | 0x80);
2615 }
2616
2617 static void alc269_quanta_automute(struct hda_codec *codec)
2618 {
2619         snd_hda_gen_update_outputs(codec);
2620
2621         snd_hda_codec_write(codec, 0x20, 0,
2622                         AC_VERB_SET_COEF_INDEX, 0x0c);
2623         snd_hda_codec_write(codec, 0x20, 0,
2624                         AC_VERB_SET_PROC_COEF, 0x680);
2625
2626         snd_hda_codec_write(codec, 0x20, 0,
2627                         AC_VERB_SET_COEF_INDEX, 0x0c);
2628         snd_hda_codec_write(codec, 0x20, 0,
2629                         AC_VERB_SET_PROC_COEF, 0x480);
2630 }
2631
2632 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
2633                                      const struct hda_fixup *fix, int action)
2634 {
2635         struct alc_spec *spec = codec->spec;
2636         if (action != HDA_FIXUP_ACT_PROBE)
2637                 return;
2638         spec->gen.automute_hook = alc269_quanta_automute;
2639 }
2640
2641 /* update mute-LED according to the speaker mute state via mic1 VREF pin */
2642 static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
2643 {
2644         struct hda_codec *codec = private_data;
2645         unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
2646                               AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
2647         snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
2648 }
2649
2650 static void alc269_fixup_mic1_mute(struct hda_codec *codec,
2651                                    const struct hda_fixup *fix, int action)
2652 {
2653         struct alc_spec *spec = codec->spec;
2654         if (action == HDA_FIXUP_ACT_PROBE) {
2655                 spec->gen.vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
2656                 spec->gen.vmaster_mute_enum = 1;
2657         }
2658 }
2659
2660 /* update mute-LED according to the speaker mute state via mic2 VREF pin */
2661 static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
2662 {
2663         struct hda_codec *codec = private_data;
2664         unsigned int pinval = enabled ? 0x20 : 0x24;
2665         snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
2666 }
2667
2668 static void alc269_fixup_mic2_mute(struct hda_codec *codec,
2669                                    const struct hda_fixup *fix, int action)
2670 {
2671         struct alc_spec *spec = codec->spec;
2672         if (action == HDA_FIXUP_ACT_PROBE) {
2673                 spec->gen.vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
2674                 spec->gen.vmaster_mute_enum = 1;
2675         }
2676 }
2677
2678 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
2679                                     const struct hda_fixup *fix,
2680                                     int action)
2681 {
2682         struct alc_spec *spec = codec->spec;
2683
2684         if (snd_BUG_ON(!spec->gen.am_entry[1].pin ||
2685                        !spec->gen.autocfg.hp_pins[0]))
2686                 return;
2687         if (action == HDA_FIXUP_ACT_PROBE)
2688                 snd_hda_jack_set_gating_jack(codec, spec->gen.am_entry[1].pin,
2689                                              spec->gen.autocfg.hp_pins[0]);
2690 }
2691
2692 enum {
2693         ALC269_FIXUP_SONY_VAIO,
2694         ALC275_FIXUP_SONY_VAIO_GPIO2,
2695         ALC269_FIXUP_DELL_M101Z,
2696         ALC269_FIXUP_SKU_IGNORE,
2697         ALC269_FIXUP_ASUS_G73JW,
2698         ALC269_FIXUP_LENOVO_EAPD,
2699         ALC275_FIXUP_SONY_HWEQ,
2700         ALC271_FIXUP_DMIC,
2701         ALC269_FIXUP_PCM_44K,
2702         ALC269_FIXUP_STEREO_DMIC,
2703         ALC269_FIXUP_QUANTA_MUTE,
2704         ALC269_FIXUP_LIFEBOOK,
2705         ALC269_FIXUP_AMIC,
2706         ALC269_FIXUP_DMIC,
2707         ALC269VB_FIXUP_AMIC,
2708         ALC269VB_FIXUP_DMIC,
2709         ALC269_FIXUP_MIC1_MUTE_LED,
2710         ALC269_FIXUP_MIC2_MUTE_LED,
2711         ALC269_FIXUP_INV_DMIC,
2712         ALC269_FIXUP_LENOVO_DOCK,
2713         ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
2714         ALC271_FIXUP_AMIC_MIC2,
2715         ALC271_FIXUP_HP_GATE_MIC_JACK,
2716 };
2717
2718 static const struct hda_fixup alc269_fixups[] = {
2719         [ALC269_FIXUP_SONY_VAIO] = {
2720                 .type = HDA_FIXUP_VERBS,
2721                 .v.verbs = (const struct hda_verb[]) {
2722                         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
2723                         {}
2724                 }
2725         },
2726         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
2727                 .type = HDA_FIXUP_VERBS,
2728                 .v.verbs = (const struct hda_verb[]) {
2729                         {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
2730                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
2731                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
2732                         { }
2733                 },
2734                 .chained = true,
2735                 .chain_id = ALC269_FIXUP_SONY_VAIO
2736         },
2737         [ALC269_FIXUP_DELL_M101Z] = {
2738                 .type = HDA_FIXUP_VERBS,
2739                 .v.verbs = (const struct hda_verb[]) {
2740                         /* Enables internal speaker */
2741                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
2742                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
2743                         {}
2744                 }
2745         },
2746         [ALC269_FIXUP_SKU_IGNORE] = {
2747                 .type = HDA_FIXUP_FUNC,
2748                 .v.func = alc_fixup_sku_ignore,
2749         },
2750         [ALC269_FIXUP_ASUS_G73JW] = {
2751                 .type = HDA_FIXUP_PINS,
2752                 .v.pins = (const struct hda_pintbl[]) {
2753                         { 0x17, 0x99130111 }, /* subwoofer */
2754                         { }
2755                 }
2756         },
2757         [ALC269_FIXUP_LENOVO_EAPD] = {
2758                 .type = HDA_FIXUP_VERBS,
2759                 .v.verbs = (const struct hda_verb[]) {
2760                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
2761                         {}
2762                 }
2763         },
2764         [ALC275_FIXUP_SONY_HWEQ] = {
2765                 .type = HDA_FIXUP_FUNC,
2766                 .v.func = alc269_fixup_hweq,
2767                 .chained = true,
2768                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
2769         },
2770         [ALC271_FIXUP_DMIC] = {
2771                 .type = HDA_FIXUP_FUNC,
2772                 .v.func = alc271_fixup_dmic,
2773         },
2774         [ALC269_FIXUP_PCM_44K] = {
2775                 .type = HDA_FIXUP_FUNC,
2776                 .v.func = alc269_fixup_pcm_44k,
2777                 .chained = true,
2778                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
2779         },
2780         [ALC269_FIXUP_STEREO_DMIC] = {
2781                 .type = HDA_FIXUP_FUNC,
2782                 .v.func = alc269_fixup_stereo_dmic,
2783         },
2784         [ALC269_FIXUP_QUANTA_MUTE] = {
2785                 .type = HDA_FIXUP_FUNC,
2786                 .v.func = alc269_fixup_quanta_mute,
2787         },
2788         [ALC269_FIXUP_LIFEBOOK] = {
2789                 .type = HDA_FIXUP_PINS,
2790                 .v.pins = (const struct hda_pintbl[]) {
2791                         { 0x1a, 0x2101103f }, /* dock line-out */
2792                         { 0x1b, 0x23a11040 }, /* dock mic-in */
2793                         { }
2794                 },
2795                 .chained = true,
2796                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
2797         },
2798         [ALC269_FIXUP_AMIC] = {
2799                 .type = HDA_FIXUP_PINS,
2800                 .v.pins = (const struct hda_pintbl[]) {
2801                         { 0x14, 0x99130110 }, /* speaker */
2802                         { 0x15, 0x0121401f }, /* HP out */
2803                         { 0x18, 0x01a19c20 }, /* mic */
2804                         { 0x19, 0x99a3092f }, /* int-mic */
2805                         { }
2806                 },
2807         },
2808         [ALC269_FIXUP_DMIC] = {
2809                 .type = HDA_FIXUP_PINS,
2810                 .v.pins = (const struct hda_pintbl[]) {
2811                         { 0x12, 0x99a3092f }, /* int-mic */
2812                         { 0x14, 0x99130110 }, /* speaker */
2813                         { 0x15, 0x0121401f }, /* HP out */
2814                         { 0x18, 0x01a19c20 }, /* mic */
2815                         { }
2816                 },
2817         },
2818         [ALC269VB_FIXUP_AMIC] = {
2819                 .type = HDA_FIXUP_PINS,
2820                 .v.pins = (const struct hda_pintbl[]) {
2821                         { 0x14, 0x99130110 }, /* speaker */
2822                         { 0x18, 0x01a19c20 }, /* mic */
2823                         { 0x19, 0x99a3092f }, /* int-mic */
2824                         { 0x21, 0x0121401f }, /* HP out */
2825                         { }
2826                 },
2827         },
2828         [ALC269VB_FIXUP_DMIC] = {
2829                 .type = HDA_FIXUP_PINS,
2830                 .v.pins = (const struct hda_pintbl[]) {
2831                         { 0x12, 0x99a3092f }, /* int-mic */
2832                         { 0x14, 0x99130110 }, /* speaker */
2833                         { 0x18, 0x01a19c20 }, /* mic */
2834                         { 0x21, 0x0121401f }, /* HP out */
2835                         { }
2836                 },
2837         },
2838         [ALC269_FIXUP_MIC1_MUTE_LED] = {
2839                 .type = HDA_FIXUP_FUNC,
2840                 .v.func = alc269_fixup_mic1_mute,
2841         },
2842         [ALC269_FIXUP_MIC2_MUTE_LED] = {
2843                 .type = HDA_FIXUP_FUNC,
2844                 .v.func = alc269_fixup_mic2_mute,
2845         },
2846         [ALC269_FIXUP_INV_DMIC] = {
2847                 .type = HDA_FIXUP_FUNC,
2848                 .v.func = alc_fixup_inv_dmic_0x12,
2849         },
2850         [ALC269_FIXUP_LENOVO_DOCK] = {
2851                 .type = HDA_FIXUP_PINS,
2852                 .v.pins = (const struct hda_pintbl[]) {
2853                         { 0x19, 0x23a11040 }, /* dock mic */
2854                         { 0x1b, 0x2121103f }, /* dock headphone */
2855                         { }
2856                 },
2857                 .chained = true,
2858                 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
2859         },
2860         [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
2861                 .type = HDA_FIXUP_FUNC,
2862                 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
2863         },
2864         [ALC271_FIXUP_AMIC_MIC2] = {
2865                 .type = HDA_FIXUP_PINS,
2866                 .v.pins = (const struct hda_pintbl[]) {
2867                         { 0x14, 0x99130110 }, /* speaker */
2868                         { 0x19, 0x01a19c20 }, /* mic */
2869                         { 0x1b, 0x99a7012f }, /* int-mic */
2870                         { 0x21, 0x0121401f }, /* HP out */
2871                         { }
2872                 },
2873         },
2874         [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
2875                 .type = HDA_FIXUP_FUNC,
2876                 .v.func = alc271_hp_gate_mic_jack,
2877                 .chained = true,
2878                 .chain_id = ALC271_FIXUP_AMIC_MIC2,
2879         },
2880 };
2881
2882 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
2883         SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
2884         SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
2885         SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
2886         SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
2887         SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
2888         SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
2889         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
2890         SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
2891         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
2892         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
2893         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
2894         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
2895         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
2896         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
2897         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2898         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2899         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
2900         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
2901         SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
2902         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
2903         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
2904         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
2905         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
2906         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
2907         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
2908         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
2909         SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
2910         SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
2911         SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
2912         SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
2913         SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
2914         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
2915         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
2916
2917 #if 0
2918         /* Below is a quirk table taken from the old code.
2919          * Basically the device should work as is without the fixup table.
2920          * If BIOS doesn't give a proper info, enable the corresponding
2921          * fixup entry.
2922          */
2923         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
2924                       ALC269_FIXUP_AMIC),
2925         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
2926         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
2927         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
2928         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
2929         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
2930         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
2931         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
2932         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
2933         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
2934         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
2935         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
2936         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
2937         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
2938         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
2939         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
2940         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
2941         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
2942         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
2943         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
2944         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
2945         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
2946         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
2947         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
2948         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
2949         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
2950         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
2951         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
2952         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
2953         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
2954         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
2955         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
2956         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
2957         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
2958         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
2959         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
2960         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
2961         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
2962         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
2963         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
2964 #endif
2965         {}
2966 };
2967
2968 static const struct hda_model_fixup alc269_fixup_models[] = {
2969         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
2970         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
2971         {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
2972         {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
2973         {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
2974         {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
2975         {}
2976 };
2977
2978
2979 static void alc269_fill_coef(struct hda_codec *codec)
2980 {
2981         struct alc_spec *spec = codec->spec;
2982         int val;
2983
2984         if (spec->codec_variant != ALC269_TYPE_ALC269VB)
2985                 return;
2986
2987         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
2988                 alc_write_coef_idx(codec, 0xf, 0x960b);
2989                 alc_write_coef_idx(codec, 0xe, 0x8817);
2990         }
2991
2992         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
2993                 alc_write_coef_idx(codec, 0xf, 0x960b);
2994                 alc_write_coef_idx(codec, 0xe, 0x8814);
2995         }
2996
2997         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
2998                 val = alc_read_coef_idx(codec, 0x04);
2999                 /* Power up output pin */
3000                 alc_write_coef_idx(codec, 0x04, val | (1<<11));
3001         }
3002
3003         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
3004                 val = alc_read_coef_idx(codec, 0xd);
3005                 if ((val & 0x0c00) >> 10 != 0x1) {
3006                         /* Capless ramp up clock control */
3007                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
3008                 }
3009                 val = alc_read_coef_idx(codec, 0x17);
3010                 if ((val & 0x01c0) >> 6 != 0x4) {
3011                         /* Class D power on reset */
3012                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
3013                 }
3014         }
3015
3016         val = alc_read_coef_idx(codec, 0xd); /* Class D */
3017         alc_write_coef_idx(codec, 0xd, val | (1<<14));
3018
3019         val = alc_read_coef_idx(codec, 0x4); /* HP */
3020         alc_write_coef_idx(codec, 0x4, val | (1<<11));
3021 }
3022
3023 /*
3024  */
3025 static int patch_alc269(struct hda_codec *codec)
3026 {
3027         struct alc_spec *spec;
3028         int err;
3029
3030         err = alc_alloc_spec(codec, 0x0b);
3031         if (err < 0)
3032                 return err;
3033
3034         spec = codec->spec;
3035         spec->gen.shared_mic_vref_pin = 0x18;
3036
3037         snd_hda_pick_fixup(codec, alc269_fixup_models,
3038                        alc269_fixup_tbl, alc269_fixups);
3039         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3040
3041         alc_auto_parse_customize_define(codec);
3042
3043         switch (codec->vendor_id) {
3044         case 0x10ec0269:
3045                 spec->codec_variant = ALC269_TYPE_ALC269VA;
3046                 switch (alc_get_coef0(codec) & 0x00f0) {
3047                 case 0x0010:
3048                         if (codec->bus->pci->subsystem_vendor == 0x1025 &&
3049                             spec->cdefine.platform_type == 1)
3050                                 err = alc_codec_rename(codec, "ALC271X");
3051                         spec->codec_variant = ALC269_TYPE_ALC269VB;
3052                         break;
3053                 case 0x0020:
3054                         if (codec->bus->pci->subsystem_vendor == 0x17aa &&
3055                             codec->bus->pci->subsystem_device == 0x21f3)
3056                                 err = alc_codec_rename(codec, "ALC3202");
3057                         spec->codec_variant = ALC269_TYPE_ALC269VC;
3058                         break;
3059                 case 0x0030:
3060                         spec->codec_variant = ALC269_TYPE_ALC269VD;
3061                         break;
3062                 default:
3063                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
3064                 }
3065                 if (err < 0)
3066                         goto error;
3067                 spec->init_hook = alc269_fill_coef;
3068                 alc269_fill_coef(codec);
3069                 break;
3070
3071         case 0x10ec0280:
3072         case 0x10ec0290:
3073                 spec->codec_variant = ALC269_TYPE_ALC280;
3074                 break;
3075         case 0x10ec0282:
3076         case 0x10ec0283:
3077                 spec->codec_variant = ALC269_TYPE_ALC282;
3078                 break;
3079         case 0x10ec0284:
3080         case 0x10ec0292:
3081                 spec->codec_variant = ALC269_TYPE_ALC284;
3082                 break;
3083         }
3084
3085         /* automatic parse from the BIOS config */
3086         err = alc269_parse_auto_config(codec);
3087         if (err < 0)
3088                 goto error;
3089
3090         if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3091                 err = snd_hda_attach_beep_device(codec, 0x1);
3092                 if (err < 0)
3093                         goto error;
3094                 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3095         }
3096
3097         codec->patch_ops = alc_patch_ops;
3098 #ifdef CONFIG_PM
3099         codec->patch_ops.resume = alc269_resume;
3100 #endif
3101         spec->shutup = alc269_shutup;
3102
3103         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3104
3105         return 0;
3106
3107  error:
3108         alc_free(codec);
3109         return err;
3110 }
3111
3112 /*
3113  * ALC861
3114  */
3115
3116 static int alc861_parse_auto_config(struct hda_codec *codec)
3117 {
3118         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3119         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
3120         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
3121 }
3122
3123 /* Pin config fixes */
3124 enum {
3125         ALC861_FIXUP_FSC_AMILO_PI1505,
3126         ALC861_FIXUP_AMP_VREF_0F,
3127         ALC861_FIXUP_NO_JACK_DETECT,
3128         ALC861_FIXUP_ASUS_A6RP,
3129 };
3130
3131 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
3132 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
3133                         const struct hda_fixup *fix, int action)
3134 {
3135         struct alc_spec *spec = codec->spec;
3136         unsigned int val;
3137
3138         if (action != HDA_FIXUP_ACT_INIT)
3139                 return;
3140         val = snd_hda_codec_read(codec, 0x0f, 0,
3141                                  AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3142         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
3143                 val |= AC_PINCTL_IN_EN;
3144         val |= AC_PINCTL_VREF_50;
3145         snd_hda_set_pin_ctl(codec, 0x0f, val);
3146         spec->gen.keep_vref_in_automute = 1;
3147 }
3148
3149 /* suppress the jack-detection */
3150 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
3151                                      const struct hda_fixup *fix, int action)
3152 {
3153         if (action == HDA_FIXUP_ACT_PRE_PROBE)
3154                 codec->no_jack_detect = 1;
3155 }
3156
3157 static const struct hda_fixup alc861_fixups[] = {
3158         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
3159                 .type = HDA_FIXUP_PINS,
3160                 .v.pins = (const struct hda_pintbl[]) {
3161                         { 0x0b, 0x0221101f }, /* HP */
3162                         { 0x0f, 0x90170310 }, /* speaker */
3163                         { }
3164                 }
3165         },
3166         [ALC861_FIXUP_AMP_VREF_0F] = {
3167                 .type = HDA_FIXUP_FUNC,
3168                 .v.func = alc861_fixup_asus_amp_vref_0f,
3169         },
3170         [ALC861_FIXUP_NO_JACK_DETECT] = {
3171                 .type = HDA_FIXUP_FUNC,
3172                 .v.func = alc_fixup_no_jack_detect,
3173         },
3174         [ALC861_FIXUP_ASUS_A6RP] = {
3175                 .type = HDA_FIXUP_FUNC,
3176                 .v.func = alc861_fixup_asus_amp_vref_0f,
3177                 .chained = true,
3178                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
3179         }
3180 };
3181
3182 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
3183         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
3184         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
3185         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
3186         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
3187         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
3188         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
3189         {}
3190 };
3191
3192 /*
3193  */
3194 static int patch_alc861(struct hda_codec *codec)
3195 {
3196         struct alc_spec *spec;
3197         int err;
3198
3199         err = alc_alloc_spec(codec, 0x15);
3200         if (err < 0)
3201                 return err;
3202
3203         spec = codec->spec;
3204
3205         snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
3206         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3207
3208         /* automatic parse from the BIOS config */
3209         err = alc861_parse_auto_config(codec);
3210         if (err < 0)
3211                 goto error;
3212
3213         if (!spec->gen.no_analog) {
3214                 err = snd_hda_attach_beep_device(codec, 0x23);
3215                 if (err < 0)
3216                         goto error;
3217                 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
3218         }
3219
3220         codec->patch_ops = alc_patch_ops;
3221 #ifdef CONFIG_PM
3222         spec->power_hook = alc_power_eapd;
3223 #endif
3224
3225         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3226
3227         return 0;
3228
3229  error:
3230         alc_free(codec);
3231         return err;
3232 }
3233
3234 /*
3235  * ALC861-VD support
3236  *
3237  * Based on ALC882
3238  *
3239  * In addition, an independent DAC
3240  */
3241 static int alc861vd_parse_auto_config(struct hda_codec *codec)
3242 {
3243         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3244         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3245         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
3246 }
3247
3248 enum {
3249         ALC660VD_FIX_ASUS_GPIO1,
3250         ALC861VD_FIX_DALLAS,
3251 };
3252
3253 /* exclude VREF80 */
3254 static void alc861vd_fixup_dallas(struct hda_codec *codec,
3255                                   const struct hda_fixup *fix, int action)
3256 {
3257         if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3258                 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
3259                 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
3260         }
3261 }
3262
3263 static const struct hda_fixup alc861vd_fixups[] = {
3264         [ALC660VD_FIX_ASUS_GPIO1] = {
3265                 .type = HDA_FIXUP_VERBS,
3266                 .v.verbs = (const struct hda_verb[]) {
3267                         /* reset GPIO1 */
3268                         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
3269                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3270                         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3271                         { }
3272                 }
3273         },
3274         [ALC861VD_FIX_DALLAS] = {
3275                 .type = HDA_FIXUP_FUNC,
3276                 .v.func = alc861vd_fixup_dallas,
3277         },
3278 };
3279
3280 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
3281         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
3282         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
3283         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
3284         {}
3285 };
3286
3287 /*
3288  */
3289 static int patch_alc861vd(struct hda_codec *codec)
3290 {
3291         struct alc_spec *spec;
3292         int err;
3293
3294         err = alc_alloc_spec(codec, 0x0b);
3295         if (err < 0)
3296                 return err;
3297
3298         spec = codec->spec;
3299
3300         snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
3301         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3302
3303         /* automatic parse from the BIOS config */
3304         err = alc861vd_parse_auto_config(codec);
3305         if (err < 0)
3306                 goto error;
3307
3308         if (!spec->gen.no_analog) {
3309                 err = snd_hda_attach_beep_device(codec, 0x23);
3310                 if (err < 0)
3311                         goto error;
3312                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3313         }
3314
3315         codec->patch_ops = alc_patch_ops;
3316
3317         spec->shutup = alc_eapd_shutup;
3318
3319         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3320
3321         return 0;
3322
3323  error:
3324         alc_free(codec);
3325         return err;
3326 }
3327
3328 /*
3329  * ALC662 support
3330  *
3331  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
3332  * configuration.  Each pin widget can choose any input DACs and a mixer.
3333  * Each ADC is connected from a mixer of all inputs.  This makes possible
3334  * 6-channel independent captures.
3335  *
3336  * In addition, an independent DAC for the multi-playback (not used in this
3337  * driver yet).
3338  */
3339
3340 /*
3341  * BIOS auto configuration
3342  */
3343
3344 static int alc662_parse_auto_config(struct hda_codec *codec)
3345 {
3346         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3347         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
3348         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3349         const hda_nid_t *ssids;
3350
3351         if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
3352             codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
3353                 ssids = alc663_ssids;
3354         else
3355                 ssids = alc662_ssids;
3356         return alc_parse_auto_config(codec, alc662_ignore, ssids);
3357 }
3358
3359 static void alc272_fixup_mario(struct hda_codec *codec,
3360                                const struct hda_fixup *fix, int action)
3361 {
3362         if (action != HDA_FIXUP_ACT_PROBE)
3363                 return;
3364         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
3365                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
3366                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
3367                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3368                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
3369                 printk(KERN_WARNING
3370                        "hda_codec: failed to override amp caps for NID 0x2\n");
3371 }
3372
3373 enum {
3374         ALC662_FIXUP_ASPIRE,
3375         ALC662_FIXUP_IDEAPAD,
3376         ALC272_FIXUP_MARIO,
3377         ALC662_FIXUP_CZC_P10T,
3378         ALC662_FIXUP_SKU_IGNORE,
3379         ALC662_FIXUP_HP_RP5800,
3380         ALC662_FIXUP_ASUS_MODE1,
3381         ALC662_FIXUP_ASUS_MODE2,
3382         ALC662_FIXUP_ASUS_MODE3,
3383         ALC662_FIXUP_ASUS_MODE4,
3384         ALC662_FIXUP_ASUS_MODE5,
3385         ALC662_FIXUP_ASUS_MODE6,
3386         ALC662_FIXUP_ASUS_MODE7,
3387         ALC662_FIXUP_ASUS_MODE8,
3388         ALC662_FIXUP_NO_JACK_DETECT,
3389         ALC662_FIXUP_ZOTAC_Z68,
3390         ALC662_FIXUP_INV_DMIC,
3391 };
3392
3393 static const struct hda_fixup alc662_fixups[] = {
3394         [ALC662_FIXUP_ASPIRE] = {
3395                 .type = HDA_FIXUP_PINS,
3396                 .v.pins = (const struct hda_pintbl[]) {
3397                         { 0x15, 0x99130112 }, /* subwoofer */
3398                         { }
3399                 }
3400         },
3401         [ALC662_FIXUP_IDEAPAD] = {
3402                 .type = HDA_FIXUP_PINS,
3403                 .v.pins = (const struct hda_pintbl[]) {
3404                         { 0x17, 0x99130112 }, /* subwoofer */
3405                         { }
3406                 }
3407         },
3408         [ALC272_FIXUP_MARIO] = {
3409                 .type = HDA_FIXUP_FUNC,
3410                 .v.func = alc272_fixup_mario,
3411         },
3412         [ALC662_FIXUP_CZC_P10T] = {
3413                 .type = HDA_FIXUP_VERBS,
3414                 .v.verbs = (const struct hda_verb[]) {
3415                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3416                         {}
3417                 }
3418         },
3419         [ALC662_FIXUP_SKU_IGNORE] = {
3420                 .type = HDA_FIXUP_FUNC,
3421                 .v.func = alc_fixup_sku_ignore,
3422         },
3423         [ALC662_FIXUP_HP_RP5800] = {
3424                 .type = HDA_FIXUP_PINS,
3425                 .v.pins = (const struct hda_pintbl[]) {
3426                         { 0x14, 0x0221201f }, /* HP out */
3427                         { }
3428                 },
3429                 .chained = true,
3430                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3431         },
3432         [ALC662_FIXUP_ASUS_MODE1] = {
3433                 .type = HDA_FIXUP_PINS,
3434                 .v.pins = (const struct hda_pintbl[]) {
3435                         { 0x14, 0x99130110 }, /* speaker */
3436                         { 0x18, 0x01a19c20 }, /* mic */
3437                         { 0x19, 0x99a3092f }, /* int-mic */
3438                         { 0x21, 0x0121401f }, /* HP out */
3439                         { }
3440                 },
3441                 .chained = true,
3442                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3443         },
3444         [ALC662_FIXUP_ASUS_MODE2] = {
3445                 .type = HDA_FIXUP_PINS,
3446                 .v.pins = (const struct hda_pintbl[]) {
3447                         { 0x14, 0x99130110 }, /* speaker */
3448                         { 0x18, 0x01a19820 }, /* mic */
3449                         { 0x19, 0x99a3092f }, /* int-mic */
3450                         { 0x1b, 0x0121401f }, /* HP out */
3451                         { }
3452                 },
3453                 .chained = true,
3454                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3455         },
3456         [ALC662_FIXUP_ASUS_MODE3] = {
3457                 .type = HDA_FIXUP_PINS,
3458                 .v.pins = (const struct hda_pintbl[]) {
3459                         { 0x14, 0x99130110 }, /* speaker */
3460                         { 0x15, 0x0121441f }, /* HP */
3461                         { 0x18, 0x01a19840 }, /* mic */
3462                         { 0x19, 0x99a3094f }, /* int-mic */
3463                         { 0x21, 0x01211420 }, /* HP2 */
3464                         { }
3465                 },
3466                 .chained = true,
3467                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3468         },
3469         [ALC662_FIXUP_ASUS_MODE4] = {
3470                 .type = HDA_FIXUP_PINS,
3471                 .v.pins = (const struct hda_pintbl[]) {
3472                         { 0x14, 0x99130110 }, /* speaker */
3473                         { 0x16, 0x99130111 }, /* speaker */
3474                         { 0x18, 0x01a19840 }, /* mic */
3475                         { 0x19, 0x99a3094f }, /* int-mic */
3476                         { 0x21, 0x0121441f }, /* HP */
3477                         { }
3478                 },
3479                 .chained = true,
3480                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3481         },
3482         [ALC662_FIXUP_ASUS_MODE5] = {
3483                 .type = HDA_FIXUP_PINS,
3484                 .v.pins = (const struct hda_pintbl[]) {
3485                         { 0x14, 0x99130110 }, /* speaker */
3486                         { 0x15, 0x0121441f }, /* HP */
3487                         { 0x16, 0x99130111 }, /* speaker */
3488                         { 0x18, 0x01a19840 }, /* mic */
3489                         { 0x19, 0x99a3094f }, /* int-mic */
3490                         { }
3491                 },
3492                 .chained = true,
3493                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3494         },
3495         [ALC662_FIXUP_ASUS_MODE6] = {
3496                 .type = HDA_FIXUP_PINS,
3497                 .v.pins = (const struct hda_pintbl[]) {
3498                         { 0x14, 0x99130110 }, /* speaker */
3499                         { 0x15, 0x01211420 }, /* HP2 */
3500                         { 0x18, 0x01a19840 }, /* mic */
3501                         { 0x19, 0x99a3094f }, /* int-mic */
3502                         { 0x1b, 0x0121441f }, /* HP */
3503                         { }
3504                 },
3505                 .chained = true,
3506                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3507         },
3508         [ALC662_FIXUP_ASUS_MODE7] = {
3509                 .type = HDA_FIXUP_PINS,
3510                 .v.pins = (const struct hda_pintbl[]) {
3511                         { 0x14, 0x99130110 }, /* speaker */
3512                         { 0x17, 0x99130111 }, /* speaker */
3513                         { 0x18, 0x01a19840 }, /* mic */
3514                         { 0x19, 0x99a3094f }, /* int-mic */
3515                         { 0x1b, 0x01214020 }, /* HP */
3516                         { 0x21, 0x0121401f }, /* HP */
3517                         { }
3518                 },
3519                 .chained = true,
3520                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3521         },
3522         [ALC662_FIXUP_ASUS_MODE8] = {
3523                 .type = HDA_FIXUP_PINS,
3524                 .v.pins = (const struct hda_pintbl[]) {
3525                         { 0x14, 0x99130110 }, /* speaker */
3526                         { 0x12, 0x99a30970 }, /* int-mic */
3527                         { 0x15, 0x01214020 }, /* HP */
3528                         { 0x17, 0x99130111 }, /* speaker */
3529                         { 0x18, 0x01a19840 }, /* mic */
3530                         { 0x21, 0x0121401f }, /* HP */
3531                         { }
3532                 },
3533                 .chained = true,
3534                 .chain_id = ALC662_FIXUP_SKU_IGNORE
3535         },
3536         [ALC662_FIXUP_NO_JACK_DETECT] = {
3537                 .type = HDA_FIXUP_FUNC,
3538                 .v.func = alc_fixup_no_jack_detect,
3539         },
3540         [ALC662_FIXUP_ZOTAC_Z68] = {
3541                 .type = HDA_FIXUP_PINS,
3542                 .v.pins = (const struct hda_pintbl[]) {
3543                         { 0x1b, 0x02214020 }, /* Front HP */
3544                         { }
3545                 }
3546         },
3547         [ALC662_FIXUP_INV_DMIC] = {
3548                 .type = HDA_FIXUP_FUNC,
3549                 .v.func = alc_fixup_inv_dmic_0x12,
3550         },
3551 };
3552
3553 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
3554         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
3555         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
3556         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
3557         SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
3558         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
3559         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
3560         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
3561         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
3562         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
3563         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
3564         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
3565         SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
3566         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
3567
3568 #if 0
3569         /* Below is a quirk table taken from the old code.
3570          * Basically the device should work as is without the fixup table.
3571          * If BIOS doesn't give a proper info, enable the corresponding
3572          * fixup entry.
3573          */
3574         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
3575         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
3576         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
3577         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
3578         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3579         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3580         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3581         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
3582         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
3583         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3584         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
3585         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
3586         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
3587         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
3588         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
3589         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3590         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
3591         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
3592         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3593         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3594         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3595         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3596         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
3597         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
3598         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
3599         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3600         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
3601         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3602         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3603         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
3604         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3605         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3606         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
3607         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
3608         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
3609         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
3610         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
3611         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
3612         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
3613         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3614         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
3615         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
3616         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3617         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
3618         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
3619         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
3620         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
3621         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
3622         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3623         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
3624 #endif
3625         {}
3626 };
3627
3628 static const struct hda_model_fixup alc662_fixup_models[] = {
3629         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
3630         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
3631         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
3632         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
3633         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
3634         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
3635         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
3636         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
3637         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
3638         {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
3639         {}
3640 };
3641
3642 static void alc662_fill_coef(struct hda_codec *codec)
3643 {
3644         int val, coef;
3645
3646         coef = alc_get_coef0(codec);
3647
3648         switch (codec->vendor_id) {
3649         case 0x10ec0662:
3650                 if ((coef & 0x00f0) == 0x0030) {
3651                         val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
3652                         alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
3653                 }
3654                 break;
3655         case 0x10ec0272:
3656         case 0x10ec0273:
3657         case 0x10ec0663:
3658         case 0x10ec0665:
3659         case 0x10ec0670:
3660         case 0x10ec0671:
3661         case 0x10ec0672:
3662                 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
3663                 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3664                 break;
3665         }
3666 }
3667
3668 /*
3669  */
3670 static int patch_alc662(struct hda_codec *codec)
3671 {
3672         struct alc_spec *spec;
3673         int err;
3674
3675         err = alc_alloc_spec(codec, 0x0b);
3676         if (err < 0)
3677                 return err;
3678
3679         spec = codec->spec;
3680
3681         /* handle multiple HPs as is */
3682         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3683
3684         alc_fix_pll_init(codec, 0x20, 0x04, 15);
3685
3686         spec->init_hook = alc662_fill_coef;
3687         alc662_fill_coef(codec);
3688
3689         snd_hda_pick_fixup(codec, alc662_fixup_models,
3690                        alc662_fixup_tbl, alc662_fixups);
3691         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3692
3693         alc_auto_parse_customize_define(codec);
3694
3695         if ((alc_get_coef0(codec) & (1 << 14)) &&
3696             codec->bus->pci->subsystem_vendor == 0x1025 &&
3697             spec->cdefine.platform_type == 1) {
3698                 if (alc_codec_rename(codec, "ALC272X") < 0)
3699                         goto error;
3700         }
3701
3702         /* automatic parse from the BIOS config */
3703         err = alc662_parse_auto_config(codec);
3704         if (err < 0)
3705                 goto error;
3706
3707         if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3708                 err = snd_hda_attach_beep_device(codec, 0x1);
3709                 if (err < 0)
3710                         goto error;
3711                 switch (codec->vendor_id) {
3712                 case 0x10ec0662:
3713                         set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3714                         break;
3715                 case 0x10ec0272:
3716                 case 0x10ec0663:
3717                 case 0x10ec0665:
3718                         set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3719                         break;
3720                 case 0x10ec0273:
3721                         set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
3722                         break;
3723                 }
3724         }
3725
3726         codec->patch_ops = alc_patch_ops;
3727         spec->shutup = alc_eapd_shutup;
3728
3729         snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3730
3731         return 0;
3732
3733  error:
3734         alc_free(codec);
3735         return err;
3736 }
3737
3738 /*
3739  * ALC680 support
3740  */
3741
3742 static int alc680_parse_auto_config(struct hda_codec *codec)
3743 {
3744         return alc_parse_auto_config(codec, NULL, NULL);
3745 }
3746
3747 /*
3748  */
3749 static int patch_alc680(struct hda_codec *codec)
3750 {
3751         int err;
3752
3753         /* ALC680 has no aa-loopback mixer */
3754         err = alc_alloc_spec(codec, 0);
3755         if (err < 0)
3756                 return err;
3757
3758         /* automatic parse from the BIOS config */
3759         err = alc680_parse_auto_config(codec);
3760         if (err < 0) {
3761                 alc_free(codec);
3762                 return err;
3763         }
3764
3765         codec->patch_ops = alc_patch_ops;
3766
3767         return 0;
3768 }
3769
3770 /*
3771  * patch entries
3772  */
3773 static const struct hda_codec_preset snd_hda_preset_realtek[] = {
3774         { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
3775         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
3776         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
3777         { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
3778         { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
3779         { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
3780         { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
3781         { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
3782         { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
3783         { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
3784         { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
3785         { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
3786         { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
3787         { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
3788         { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
3789         { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
3790         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
3791           .patch = patch_alc861 },
3792         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
3793         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
3794         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
3795         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
3796           .patch = patch_alc882 },
3797         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
3798           .patch = patch_alc662 },
3799         { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
3800           .patch = patch_alc662 },
3801         { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
3802         { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
3803         { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
3804         { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
3805         { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
3806         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
3807         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
3808         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
3809         { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
3810           .patch = patch_alc882 },
3811         { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
3812           .patch = patch_alc882 },
3813         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
3814         { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
3815         { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
3816           .patch = patch_alc882 },
3817         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
3818         { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
3819         { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
3820         { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
3821         { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
3822         {} /* terminator */
3823 };
3824
3825 MODULE_ALIAS("snd-hda-codec-id:10ec*");
3826
3827 MODULE_LICENSE("GPL");
3828 MODULE_DESCRIPTION("Realtek HD-audio codec");
3829
3830 static struct hda_codec_preset_list realtek_list = {
3831         .preset = snd_hda_preset_realtek,
3832         .owner = THIS_MODULE,
3833 };
3834
3835 static int __init patch_realtek_init(void)
3836 {
3837         return snd_hda_add_codec_preset(&realtek_list);
3838 }
3839
3840 static void __exit patch_realtek_exit(void)
3841 {
3842         snd_hda_delete_codec_preset(&realtek_list);
3843 }
3844
3845 module_init(patch_realtek_init)
3846 module_exit(patch_realtek_exit)