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