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