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