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