]> git.ipfire.org Git - thirdparty/linux.git/blob - sound/pci/hda/patch_realtek.c
Linux 6.8-rc1
[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/acpi.h>
14 #include <linux/init.h>
15 #include <linux/delay.h>
16 #include <linux/slab.h>
17 #include <linux/pci.h>
18 #include <linux/dmi.h>
19 #include <linux/module.h>
20 #include <linux/input.h>
21 #include <linux/leds.h>
22 #include <linux/ctype.h>
23 #include <sound/core.h>
24 #include <sound/jack.h>
25 #include <sound/hda_codec.h>
26 #include "hda_local.h"
27 #include "hda_auto_parser.h"
28 #include "hda_jack.h"
29 #include "hda_generic.h"
30 #include "hda_component.h"
31
32 /* keep halting ALC5505 DSP, for power saving */
33 #define HALT_REALTEK_ALC5505
34
35 /* extra amp-initialization sequence types */
36 enum {
37 ALC_INIT_UNDEFINED,
38 ALC_INIT_NONE,
39 ALC_INIT_DEFAULT,
40 };
41
42 enum {
43 ALC_HEADSET_MODE_UNKNOWN,
44 ALC_HEADSET_MODE_UNPLUGGED,
45 ALC_HEADSET_MODE_HEADSET,
46 ALC_HEADSET_MODE_MIC,
47 ALC_HEADSET_MODE_HEADPHONE,
48 };
49
50 enum {
51 ALC_HEADSET_TYPE_UNKNOWN,
52 ALC_HEADSET_TYPE_CTIA,
53 ALC_HEADSET_TYPE_OMTP,
54 };
55
56 enum {
57 ALC_KEY_MICMUTE_INDEX,
58 };
59
60 struct alc_customize_define {
61 unsigned int sku_cfg;
62 unsigned char port_connectivity;
63 unsigned char check_sum;
64 unsigned char customization;
65 unsigned char external_amp;
66 unsigned int enable_pcbeep:1;
67 unsigned int platform_type:1;
68 unsigned int swap:1;
69 unsigned int override:1;
70 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
71 };
72
73 struct alc_coef_led {
74 unsigned int idx;
75 unsigned int mask;
76 unsigned int on;
77 unsigned int off;
78 };
79
80 struct alc_spec {
81 struct hda_gen_spec gen; /* must be at head */
82
83 /* codec parameterization */
84 struct alc_customize_define cdefine;
85 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
86
87 /* GPIO bits */
88 unsigned int gpio_mask;
89 unsigned int gpio_dir;
90 unsigned int gpio_data;
91 bool gpio_write_delay; /* add a delay before writing gpio_data */
92
93 /* mute LED for HP laptops, see vref_mute_led_set() */
94 int mute_led_polarity;
95 int micmute_led_polarity;
96 hda_nid_t mute_led_nid;
97 hda_nid_t cap_mute_led_nid;
98
99 unsigned int gpio_mute_led_mask;
100 unsigned int gpio_mic_led_mask;
101 struct alc_coef_led mute_led_coef;
102 struct alc_coef_led mic_led_coef;
103 struct mutex coef_mutex;
104
105 hda_nid_t headset_mic_pin;
106 hda_nid_t headphone_mic_pin;
107 int current_headset_mode;
108 int current_headset_type;
109
110 /* hooks */
111 void (*init_hook)(struct hda_codec *codec);
112 #ifdef CONFIG_PM
113 void (*power_hook)(struct hda_codec *codec);
114 #endif
115 void (*shutup)(struct hda_codec *codec);
116
117 int init_amp;
118 int codec_variant; /* flag for other variants */
119 unsigned int has_alc5505_dsp:1;
120 unsigned int no_depop_delay:1;
121 unsigned int done_hp_init:1;
122 unsigned int no_shutup_pins:1;
123 unsigned int ultra_low_power:1;
124 unsigned int has_hs_key:1;
125 unsigned int no_internal_mic_pin:1;
126 unsigned int en_3kpull_low:1;
127
128 /* for PLL fix */
129 hda_nid_t pll_nid;
130 unsigned int pll_coef_idx, pll_coef_bit;
131 unsigned int coef0;
132 struct input_dev *kb_dev;
133 u8 alc_mute_keycode_map[1];
134
135 /* component binding */
136 struct component_match *match;
137 struct hda_component comps[HDA_MAX_COMPONENTS];
138 };
139
140 /*
141 * COEF access helper functions
142 */
143
144 static void coef_mutex_lock(struct hda_codec *codec)
145 {
146 struct alc_spec *spec = codec->spec;
147
148 snd_hda_power_up_pm(codec);
149 mutex_lock(&spec->coef_mutex);
150 }
151
152 static void coef_mutex_unlock(struct hda_codec *codec)
153 {
154 struct alc_spec *spec = codec->spec;
155
156 mutex_unlock(&spec->coef_mutex);
157 snd_hda_power_down_pm(codec);
158 }
159
160 static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
161 unsigned int coef_idx)
162 {
163 unsigned int val;
164
165 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
166 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
167 return val;
168 }
169
170 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
171 unsigned int coef_idx)
172 {
173 unsigned int val;
174
175 coef_mutex_lock(codec);
176 val = __alc_read_coefex_idx(codec, nid, coef_idx);
177 coef_mutex_unlock(codec);
178 return val;
179 }
180
181 #define alc_read_coef_idx(codec, coef_idx) \
182 alc_read_coefex_idx(codec, 0x20, coef_idx)
183
184 static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
185 unsigned int coef_idx, unsigned int coef_val)
186 {
187 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
188 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
189 }
190
191 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
192 unsigned int coef_idx, unsigned int coef_val)
193 {
194 coef_mutex_lock(codec);
195 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
196 coef_mutex_unlock(codec);
197 }
198
199 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
200 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
201
202 static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
203 unsigned int coef_idx, unsigned int mask,
204 unsigned int bits_set)
205 {
206 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
207
208 if (val != -1)
209 __alc_write_coefex_idx(codec, nid, coef_idx,
210 (val & ~mask) | bits_set);
211 }
212
213 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
214 unsigned int coef_idx, unsigned int mask,
215 unsigned int bits_set)
216 {
217 coef_mutex_lock(codec);
218 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
219 coef_mutex_unlock(codec);
220 }
221
222 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
223 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
224
225 /* a special bypass for COEF 0; read the cached value at the second time */
226 static unsigned int alc_get_coef0(struct hda_codec *codec)
227 {
228 struct alc_spec *spec = codec->spec;
229
230 if (!spec->coef0)
231 spec->coef0 = alc_read_coef_idx(codec, 0);
232 return spec->coef0;
233 }
234
235 /* coef writes/updates batch */
236 struct coef_fw {
237 unsigned char nid;
238 unsigned char idx;
239 unsigned short mask;
240 unsigned short val;
241 };
242
243 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
244 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
245 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
246 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
247 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
248
249 static void alc_process_coef_fw(struct hda_codec *codec,
250 const struct coef_fw *fw)
251 {
252 coef_mutex_lock(codec);
253 for (; fw->nid; fw++) {
254 if (fw->mask == (unsigned short)-1)
255 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
256 else
257 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
258 fw->mask, fw->val);
259 }
260 coef_mutex_unlock(codec);
261 }
262
263 /*
264 * GPIO setup tables, used in initialization
265 */
266
267 /* Enable GPIO mask and set output */
268 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
269 {
270 struct alc_spec *spec = codec->spec;
271
272 spec->gpio_mask |= mask;
273 spec->gpio_dir |= mask;
274 spec->gpio_data |= mask;
275 }
276
277 static void alc_write_gpio_data(struct hda_codec *codec)
278 {
279 struct alc_spec *spec = codec->spec;
280
281 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
282 spec->gpio_data);
283 }
284
285 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
286 bool on)
287 {
288 struct alc_spec *spec = codec->spec;
289 unsigned int oldval = spec->gpio_data;
290
291 if (on)
292 spec->gpio_data |= mask;
293 else
294 spec->gpio_data &= ~mask;
295 if (oldval != spec->gpio_data)
296 alc_write_gpio_data(codec);
297 }
298
299 static void alc_write_gpio(struct hda_codec *codec)
300 {
301 struct alc_spec *spec = codec->spec;
302
303 if (!spec->gpio_mask)
304 return;
305
306 snd_hda_codec_write(codec, codec->core.afg, 0,
307 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
308 snd_hda_codec_write(codec, codec->core.afg, 0,
309 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
310 if (spec->gpio_write_delay)
311 msleep(1);
312 alc_write_gpio_data(codec);
313 }
314
315 static void alc_fixup_gpio(struct hda_codec *codec, int action,
316 unsigned int mask)
317 {
318 if (action == HDA_FIXUP_ACT_PRE_PROBE)
319 alc_setup_gpio(codec, mask);
320 }
321
322 static void alc_fixup_gpio1(struct hda_codec *codec,
323 const struct hda_fixup *fix, int action)
324 {
325 alc_fixup_gpio(codec, action, 0x01);
326 }
327
328 static void alc_fixup_gpio2(struct hda_codec *codec,
329 const struct hda_fixup *fix, int action)
330 {
331 alc_fixup_gpio(codec, action, 0x02);
332 }
333
334 static void alc_fixup_gpio3(struct hda_codec *codec,
335 const struct hda_fixup *fix, int action)
336 {
337 alc_fixup_gpio(codec, action, 0x03);
338 }
339
340 static void alc_fixup_gpio4(struct hda_codec *codec,
341 const struct hda_fixup *fix, int action)
342 {
343 alc_fixup_gpio(codec, action, 0x04);
344 }
345
346 static void alc_fixup_micmute_led(struct hda_codec *codec,
347 const struct hda_fixup *fix, int action)
348 {
349 if (action == HDA_FIXUP_ACT_PRE_PROBE)
350 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
351 }
352
353 /*
354 * Fix hardware PLL issue
355 * On some codecs, the analog PLL gating control must be off while
356 * the default value is 1.
357 */
358 static void alc_fix_pll(struct hda_codec *codec)
359 {
360 struct alc_spec *spec = codec->spec;
361
362 if (spec->pll_nid)
363 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
364 1 << spec->pll_coef_bit, 0);
365 }
366
367 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
368 unsigned int coef_idx, unsigned int coef_bit)
369 {
370 struct alc_spec *spec = codec->spec;
371 spec->pll_nid = nid;
372 spec->pll_coef_idx = coef_idx;
373 spec->pll_coef_bit = coef_bit;
374 alc_fix_pll(codec);
375 }
376
377 /* update the master volume per volume-knob's unsol event */
378 static void alc_update_knob_master(struct hda_codec *codec,
379 struct hda_jack_callback *jack)
380 {
381 unsigned int val;
382 struct snd_kcontrol *kctl;
383 struct snd_ctl_elem_value *uctl;
384
385 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
386 if (!kctl)
387 return;
388 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
389 if (!uctl)
390 return;
391 val = snd_hda_codec_read(codec, jack->nid, 0,
392 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
393 val &= HDA_AMP_VOLMASK;
394 uctl->value.integer.value[0] = val;
395 uctl->value.integer.value[1] = val;
396 kctl->put(kctl, uctl);
397 kfree(uctl);
398 }
399
400 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
401 {
402 /* For some reason, the res given from ALC880 is broken.
403 Here we adjust it properly. */
404 snd_hda_jack_unsol_event(codec, res >> 2);
405 }
406
407 /* Change EAPD to verb control */
408 static void alc_fill_eapd_coef(struct hda_codec *codec)
409 {
410 int coef;
411
412 coef = alc_get_coef0(codec);
413
414 switch (codec->core.vendor_id) {
415 case 0x10ec0262:
416 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
417 break;
418 case 0x10ec0267:
419 case 0x10ec0268:
420 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
421 break;
422 case 0x10ec0269:
423 if ((coef & 0x00f0) == 0x0010)
424 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
425 if ((coef & 0x00f0) == 0x0020)
426 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
427 if ((coef & 0x00f0) == 0x0030)
428 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
429 break;
430 case 0x10ec0280:
431 case 0x10ec0284:
432 case 0x10ec0290:
433 case 0x10ec0292:
434 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
435 break;
436 case 0x10ec0225:
437 case 0x10ec0295:
438 case 0x10ec0299:
439 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
440 fallthrough;
441 case 0x10ec0215:
442 case 0x10ec0230:
443 case 0x10ec0233:
444 case 0x10ec0235:
445 case 0x10ec0236:
446 case 0x10ec0245:
447 case 0x10ec0255:
448 case 0x10ec0256:
449 case 0x19e58326:
450 case 0x10ec0257:
451 case 0x10ec0282:
452 case 0x10ec0283:
453 case 0x10ec0286:
454 case 0x10ec0288:
455 case 0x10ec0285:
456 case 0x10ec0298:
457 case 0x10ec0289:
458 case 0x10ec0300:
459 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
460 break;
461 case 0x10ec0275:
462 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
463 break;
464 case 0x10ec0287:
465 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
466 alc_write_coef_idx(codec, 0x8, 0x4ab7);
467 break;
468 case 0x10ec0293:
469 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
470 break;
471 case 0x10ec0234:
472 case 0x10ec0274:
473 case 0x10ec0294:
474 case 0x10ec0700:
475 case 0x10ec0701:
476 case 0x10ec0703:
477 case 0x10ec0711:
478 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
479 break;
480 case 0x10ec0662:
481 if ((coef & 0x00f0) == 0x0030)
482 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
483 break;
484 case 0x10ec0272:
485 case 0x10ec0273:
486 case 0x10ec0663:
487 case 0x10ec0665:
488 case 0x10ec0670:
489 case 0x10ec0671:
490 case 0x10ec0672:
491 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
492 break;
493 case 0x10ec0222:
494 case 0x10ec0623:
495 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
496 break;
497 case 0x10ec0668:
498 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
499 break;
500 case 0x10ec0867:
501 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
502 break;
503 case 0x10ec0888:
504 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
505 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
506 break;
507 case 0x10ec0892:
508 case 0x10ec0897:
509 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
510 break;
511 case 0x10ec0899:
512 case 0x10ec0900:
513 case 0x10ec0b00:
514 case 0x10ec1168:
515 case 0x10ec1220:
516 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
517 break;
518 }
519 }
520
521 /* additional initialization for ALC888 variants */
522 static void alc888_coef_init(struct hda_codec *codec)
523 {
524 switch (alc_get_coef0(codec) & 0x00f0) {
525 /* alc888-VA */
526 case 0x00:
527 /* alc888-VB */
528 case 0x10:
529 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
530 break;
531 }
532 }
533
534 /* turn on/off EAPD control (only if available) */
535 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
536 {
537 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
538 return;
539 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
540 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
541 on ? 2 : 0);
542 }
543
544 /* turn on/off EAPD controls of the codec */
545 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
546 {
547 /* We currently only handle front, HP */
548 static const hda_nid_t pins[] = {
549 0x0f, 0x10, 0x14, 0x15, 0x17, 0
550 };
551 const hda_nid_t *p;
552 for (p = pins; *p; p++)
553 set_eapd(codec, *p, on);
554 }
555
556 static int find_ext_mic_pin(struct hda_codec *codec);
557
558 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
559 {
560 const struct hda_pincfg *pin;
561 int mic_pin = find_ext_mic_pin(codec);
562 int i;
563
564 /* don't shut up pins when unloading the driver; otherwise it breaks
565 * the default pin setup at the next load of the driver
566 */
567 if (codec->bus->shutdown)
568 return;
569
570 snd_array_for_each(&codec->init_pins, i, pin) {
571 /* use read here for syncing after issuing each verb */
572 if (pin->nid != mic_pin)
573 snd_hda_codec_read(codec, pin->nid, 0,
574 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
575 }
576
577 codec->pins_shutup = 1;
578 }
579
580 static void alc_shutup_pins(struct hda_codec *codec)
581 {
582 struct alc_spec *spec = codec->spec;
583
584 switch (codec->core.vendor_id) {
585 case 0x10ec0236:
586 case 0x10ec0256:
587 case 0x19e58326:
588 case 0x10ec0283:
589 case 0x10ec0286:
590 case 0x10ec0288:
591 case 0x10ec0298:
592 alc_headset_mic_no_shutup(codec);
593 break;
594 default:
595 if (!spec->no_shutup_pins)
596 snd_hda_shutup_pins(codec);
597 break;
598 }
599 }
600
601 /* generic shutup callback;
602 * just turning off EAPD and a little pause for avoiding pop-noise
603 */
604 static void alc_eapd_shutup(struct hda_codec *codec)
605 {
606 struct alc_spec *spec = codec->spec;
607
608 alc_auto_setup_eapd(codec, false);
609 if (!spec->no_depop_delay)
610 msleep(200);
611 alc_shutup_pins(codec);
612 }
613
614 /* generic EAPD initialization */
615 static void alc_auto_init_amp(struct hda_codec *codec, int type)
616 {
617 alc_auto_setup_eapd(codec, true);
618 alc_write_gpio(codec);
619 switch (type) {
620 case ALC_INIT_DEFAULT:
621 switch (codec->core.vendor_id) {
622 case 0x10ec0260:
623 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
624 break;
625 case 0x10ec0880:
626 case 0x10ec0882:
627 case 0x10ec0883:
628 case 0x10ec0885:
629 alc_update_coef_idx(codec, 7, 0, 0x2030);
630 break;
631 case 0x10ec0888:
632 alc888_coef_init(codec);
633 break;
634 }
635 break;
636 }
637 }
638
639 /* get a primary headphone pin if available */
640 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
641 {
642 if (spec->gen.autocfg.hp_pins[0])
643 return spec->gen.autocfg.hp_pins[0];
644 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
645 return spec->gen.autocfg.line_out_pins[0];
646 return 0;
647 }
648
649 /*
650 * Realtek SSID verification
651 */
652
653 /* Could be any non-zero and even value. When used as fixup, tells
654 * the driver to ignore any present sku defines.
655 */
656 #define ALC_FIXUP_SKU_IGNORE (2)
657
658 static void alc_fixup_sku_ignore(struct hda_codec *codec,
659 const struct hda_fixup *fix, int action)
660 {
661 struct alc_spec *spec = codec->spec;
662 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
663 spec->cdefine.fixup = 1;
664 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
665 }
666 }
667
668 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
669 const struct hda_fixup *fix, int action)
670 {
671 struct alc_spec *spec = codec->spec;
672
673 if (action == HDA_FIXUP_ACT_PROBE) {
674 spec->no_depop_delay = 1;
675 codec->depop_delay = 0;
676 }
677 }
678
679 static int alc_auto_parse_customize_define(struct hda_codec *codec)
680 {
681 unsigned int ass, tmp, i;
682 unsigned nid = 0;
683 struct alc_spec *spec = codec->spec;
684
685 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
686
687 if (spec->cdefine.fixup) {
688 ass = spec->cdefine.sku_cfg;
689 if (ass == ALC_FIXUP_SKU_IGNORE)
690 return -1;
691 goto do_sku;
692 }
693
694 if (!codec->bus->pci)
695 return -1;
696 ass = codec->core.subsystem_id & 0xffff;
697 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
698 goto do_sku;
699
700 nid = 0x1d;
701 if (codec->core.vendor_id == 0x10ec0260)
702 nid = 0x17;
703 ass = snd_hda_codec_get_pincfg(codec, nid);
704
705 if (!(ass & 1)) {
706 codec_info(codec, "%s: SKU not ready 0x%08x\n",
707 codec->core.chip_name, ass);
708 return -1;
709 }
710
711 /* check sum */
712 tmp = 0;
713 for (i = 1; i < 16; i++) {
714 if ((ass >> i) & 1)
715 tmp++;
716 }
717 if (((ass >> 16) & 0xf) != tmp)
718 return -1;
719
720 spec->cdefine.port_connectivity = ass >> 30;
721 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
722 spec->cdefine.check_sum = (ass >> 16) & 0xf;
723 spec->cdefine.customization = ass >> 8;
724 do_sku:
725 spec->cdefine.sku_cfg = ass;
726 spec->cdefine.external_amp = (ass & 0x38) >> 3;
727 spec->cdefine.platform_type = (ass & 0x4) >> 2;
728 spec->cdefine.swap = (ass & 0x2) >> 1;
729 spec->cdefine.override = ass & 0x1;
730
731 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
732 nid, spec->cdefine.sku_cfg);
733 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
734 spec->cdefine.port_connectivity);
735 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
736 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
737 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
738 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
739 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
740 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
741 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
742
743 return 0;
744 }
745
746 /* return the position of NID in the list, or -1 if not found */
747 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
748 {
749 int i;
750 for (i = 0; i < nums; i++)
751 if (list[i] == nid)
752 return i;
753 return -1;
754 }
755 /* return true if the given NID is found in the list */
756 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
757 {
758 return find_idx_in_nid_list(nid, list, nums) >= 0;
759 }
760
761 /* check subsystem ID and set up device-specific initialization;
762 * return 1 if initialized, 0 if invalid SSID
763 */
764 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
765 * 31 ~ 16 : Manufacture ID
766 * 15 ~ 8 : SKU ID
767 * 7 ~ 0 : Assembly ID
768 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
769 */
770 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
771 {
772 unsigned int ass, tmp, i;
773 unsigned nid;
774 struct alc_spec *spec = codec->spec;
775
776 if (spec->cdefine.fixup) {
777 ass = spec->cdefine.sku_cfg;
778 if (ass == ALC_FIXUP_SKU_IGNORE)
779 return 0;
780 goto do_sku;
781 }
782
783 ass = codec->core.subsystem_id & 0xffff;
784 if (codec->bus->pci &&
785 ass != codec->bus->pci->subsystem_device && (ass & 1))
786 goto do_sku;
787
788 /* invalid SSID, check the special NID pin defcfg instead */
789 /*
790 * 31~30 : port connectivity
791 * 29~21 : reserve
792 * 20 : PCBEEP input
793 * 19~16 : Check sum (15:1)
794 * 15~1 : Custom
795 * 0 : override
796 */
797 nid = 0x1d;
798 if (codec->core.vendor_id == 0x10ec0260)
799 nid = 0x17;
800 ass = snd_hda_codec_get_pincfg(codec, nid);
801 codec_dbg(codec,
802 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
803 ass, nid);
804 if (!(ass & 1))
805 return 0;
806 if ((ass >> 30) != 1) /* no physical connection */
807 return 0;
808
809 /* check sum */
810 tmp = 0;
811 for (i = 1; i < 16; i++) {
812 if ((ass >> i) & 1)
813 tmp++;
814 }
815 if (((ass >> 16) & 0xf) != tmp)
816 return 0;
817 do_sku:
818 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
819 ass & 0xffff, codec->core.vendor_id);
820 /*
821 * 0 : override
822 * 1 : Swap Jack
823 * 2 : 0 --> Desktop, 1 --> Laptop
824 * 3~5 : External Amplifier control
825 * 7~6 : Reserved
826 */
827 tmp = (ass & 0x38) >> 3; /* external Amp control */
828 if (spec->init_amp == ALC_INIT_UNDEFINED) {
829 switch (tmp) {
830 case 1:
831 alc_setup_gpio(codec, 0x01);
832 break;
833 case 3:
834 alc_setup_gpio(codec, 0x02);
835 break;
836 case 7:
837 alc_setup_gpio(codec, 0x04);
838 break;
839 case 5:
840 default:
841 spec->init_amp = ALC_INIT_DEFAULT;
842 break;
843 }
844 }
845
846 /* is laptop or Desktop and enable the function "Mute internal speaker
847 * when the external headphone out jack is plugged"
848 */
849 if (!(ass & 0x8000))
850 return 1;
851 /*
852 * 10~8 : Jack location
853 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
854 * 14~13: Resvered
855 * 15 : 1 --> enable the function "Mute internal speaker
856 * when the external headphone out jack is plugged"
857 */
858 if (!alc_get_hp_pin(spec)) {
859 hda_nid_t nid;
860 tmp = (ass >> 11) & 0x3; /* HP to chassis */
861 nid = ports[tmp];
862 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
863 spec->gen.autocfg.line_outs))
864 return 1;
865 spec->gen.autocfg.hp_pins[0] = nid;
866 }
867 return 1;
868 }
869
870 /* Check the validity of ALC subsystem-id
871 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
872 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
873 {
874 if (!alc_subsystem_id(codec, ports)) {
875 struct alc_spec *spec = codec->spec;
876 if (spec->init_amp == ALC_INIT_UNDEFINED) {
877 codec_dbg(codec,
878 "realtek: Enable default setup for auto mode as fallback\n");
879 spec->init_amp = ALC_INIT_DEFAULT;
880 }
881 }
882 }
883
884 /*
885 */
886
887 static void alc_fixup_inv_dmic(struct hda_codec *codec,
888 const struct hda_fixup *fix, int action)
889 {
890 struct alc_spec *spec = codec->spec;
891
892 spec->gen.inv_dmic_split = 1;
893 }
894
895
896 static int alc_build_controls(struct hda_codec *codec)
897 {
898 int err;
899
900 err = snd_hda_gen_build_controls(codec);
901 if (err < 0)
902 return err;
903
904 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
905 return 0;
906 }
907
908
909 /*
910 * Common callbacks
911 */
912
913 static void alc_pre_init(struct hda_codec *codec)
914 {
915 alc_fill_eapd_coef(codec);
916 }
917
918 #define is_s3_resume(codec) \
919 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
920 #define is_s4_resume(codec) \
921 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
922
923 static int alc_init(struct hda_codec *codec)
924 {
925 struct alc_spec *spec = codec->spec;
926
927 /* hibernation resume needs the full chip initialization */
928 if (is_s4_resume(codec))
929 alc_pre_init(codec);
930
931 if (spec->init_hook)
932 spec->init_hook(codec);
933
934 spec->gen.skip_verbs = 1; /* applied in below */
935 snd_hda_gen_init(codec);
936 alc_fix_pll(codec);
937 alc_auto_init_amp(codec, spec->init_amp);
938 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
939
940 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
941
942 return 0;
943 }
944
945 #define alc_free snd_hda_gen_free
946
947 #ifdef CONFIG_PM
948 static inline void alc_shutup(struct hda_codec *codec)
949 {
950 struct alc_spec *spec = codec->spec;
951
952 if (!snd_hda_get_bool_hint(codec, "shutup"))
953 return; /* disabled explicitly by hints */
954
955 if (spec && spec->shutup)
956 spec->shutup(codec);
957 else
958 alc_shutup_pins(codec);
959 }
960
961 static void alc_power_eapd(struct hda_codec *codec)
962 {
963 alc_auto_setup_eapd(codec, false);
964 }
965
966 static int alc_suspend(struct hda_codec *codec)
967 {
968 struct alc_spec *spec = codec->spec;
969 alc_shutup(codec);
970 if (spec && spec->power_hook)
971 spec->power_hook(codec);
972 return 0;
973 }
974
975 static int alc_resume(struct hda_codec *codec)
976 {
977 struct alc_spec *spec = codec->spec;
978
979 if (!spec->no_depop_delay)
980 msleep(150); /* to avoid pop noise */
981 codec->patch_ops.init(codec);
982 snd_hda_regmap_sync(codec);
983 hda_call_check_power_status(codec, 0x01);
984 return 0;
985 }
986 #endif
987
988 /*
989 */
990 static const struct hda_codec_ops alc_patch_ops = {
991 .build_controls = alc_build_controls,
992 .build_pcms = snd_hda_gen_build_pcms,
993 .init = alc_init,
994 .free = alc_free,
995 .unsol_event = snd_hda_jack_unsol_event,
996 #ifdef CONFIG_PM
997 .resume = alc_resume,
998 .suspend = alc_suspend,
999 .check_power_status = snd_hda_gen_check_power_status,
1000 #endif
1001 };
1002
1003
1004 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1005
1006 /*
1007 * Rename codecs appropriately from COEF value or subvendor id
1008 */
1009 struct alc_codec_rename_table {
1010 unsigned int vendor_id;
1011 unsigned short coef_mask;
1012 unsigned short coef_bits;
1013 const char *name;
1014 };
1015
1016 struct alc_codec_rename_pci_table {
1017 unsigned int codec_vendor_id;
1018 unsigned short pci_subvendor;
1019 unsigned short pci_subdevice;
1020 const char *name;
1021 };
1022
1023 static const struct alc_codec_rename_table rename_tbl[] = {
1024 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1025 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1026 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1027 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1028 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1029 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1030 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1031 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1032 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1033 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1034 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1035 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1036 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1037 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1038 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1039 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1040 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1041 { } /* terminator */
1042 };
1043
1044 static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
1045 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1046 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1047 { 0x10ec0283, 0x1028, 0, "ALC3223" },
1048 { 0x10ec0288, 0x1028, 0, "ALC3263" },
1049 { 0x10ec0292, 0x1028, 0, "ALC3226" },
1050 { 0x10ec0293, 0x1028, 0, "ALC3235" },
1051 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1052 { 0x10ec0668, 0x1028, 0, "ALC3661" },
1053 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1054 { 0x10ec0899, 0x1028, 0, "ALC3861" },
1055 { 0x10ec0298, 0x1028, 0, "ALC3266" },
1056 { 0x10ec0236, 0x1028, 0, "ALC3204" },
1057 { 0x10ec0256, 0x1028, 0, "ALC3246" },
1058 { 0x10ec0225, 0x1028, 0, "ALC3253" },
1059 { 0x10ec0295, 0x1028, 0, "ALC3254" },
1060 { 0x10ec0299, 0x1028, 0, "ALC3271" },
1061 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1062 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1063 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1064 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1065 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1066 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1067 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1068 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1069 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1070 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1071 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
1072 { } /* terminator */
1073 };
1074
1075 static int alc_codec_rename_from_preset(struct hda_codec *codec)
1076 {
1077 const struct alc_codec_rename_table *p;
1078 const struct alc_codec_rename_pci_table *q;
1079
1080 for (p = rename_tbl; p->vendor_id; p++) {
1081 if (p->vendor_id != codec->core.vendor_id)
1082 continue;
1083 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1084 return alc_codec_rename(codec, p->name);
1085 }
1086
1087 if (!codec->bus->pci)
1088 return 0;
1089 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1090 if (q->codec_vendor_id != codec->core.vendor_id)
1091 continue;
1092 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1093 continue;
1094 if (!q->pci_subdevice ||
1095 q->pci_subdevice == codec->bus->pci->subsystem_device)
1096 return alc_codec_rename(codec, q->name);
1097 }
1098
1099 return 0;
1100 }
1101
1102
1103 /*
1104 * Digital-beep handlers
1105 */
1106 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1107
1108 /* additional beep mixers; private_value will be overwritten */
1109 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1110 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1111 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1112 };
1113
1114 /* set up and create beep controls */
1115 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1116 int idx, int dir)
1117 {
1118 struct snd_kcontrol_new *knew;
1119 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1120 int i;
1121
1122 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1123 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1124 &alc_beep_mixer[i]);
1125 if (!knew)
1126 return -ENOMEM;
1127 knew->private_value = beep_amp;
1128 }
1129 return 0;
1130 }
1131
1132 static const struct snd_pci_quirk beep_allow_list[] = {
1133 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1134 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1135 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1136 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1137 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1138 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1139 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1140 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1141 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1142 /* denylist -- no beep available */
1143 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1144 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1145 {}
1146 };
1147
1148 static inline int has_cdefine_beep(struct hda_codec *codec)
1149 {
1150 struct alc_spec *spec = codec->spec;
1151 const struct snd_pci_quirk *q;
1152 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1153 if (q)
1154 return q->value;
1155 return spec->cdefine.enable_pcbeep;
1156 }
1157 #else
1158 #define set_beep_amp(spec, nid, idx, dir) 0
1159 #define has_cdefine_beep(codec) 0
1160 #endif
1161
1162 /* parse the BIOS configuration and set up the alc_spec */
1163 /* return 1 if successful, 0 if the proper config is not found,
1164 * or a negative error code
1165 */
1166 static int alc_parse_auto_config(struct hda_codec *codec,
1167 const hda_nid_t *ignore_nids,
1168 const hda_nid_t *ssid_nids)
1169 {
1170 struct alc_spec *spec = codec->spec;
1171 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1172 int err;
1173
1174 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1175 spec->parse_flags);
1176 if (err < 0)
1177 return err;
1178
1179 if (ssid_nids)
1180 alc_ssid_check(codec, ssid_nids);
1181
1182 err = snd_hda_gen_parse_auto_config(codec, cfg);
1183 if (err < 0)
1184 return err;
1185
1186 return 1;
1187 }
1188
1189 /* common preparation job for alc_spec */
1190 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1191 {
1192 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1193 int err;
1194
1195 if (!spec)
1196 return -ENOMEM;
1197 codec->spec = spec;
1198 snd_hda_gen_spec_init(&spec->gen);
1199 spec->gen.mixer_nid = mixer_nid;
1200 spec->gen.own_eapd_ctl = 1;
1201 codec->single_adc_amp = 1;
1202 /* FIXME: do we need this for all Realtek codec models? */
1203 codec->spdif_status_reset = 1;
1204 codec->forced_resume = 1;
1205 codec->patch_ops = alc_patch_ops;
1206 mutex_init(&spec->coef_mutex);
1207
1208 err = alc_codec_rename_from_preset(codec);
1209 if (err < 0) {
1210 kfree(spec);
1211 return err;
1212 }
1213 return 0;
1214 }
1215
1216 static int alc880_parse_auto_config(struct hda_codec *codec)
1217 {
1218 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1219 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1220 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1221 }
1222
1223 /*
1224 * ALC880 fix-ups
1225 */
1226 enum {
1227 ALC880_FIXUP_GPIO1,
1228 ALC880_FIXUP_GPIO2,
1229 ALC880_FIXUP_MEDION_RIM,
1230 ALC880_FIXUP_LG,
1231 ALC880_FIXUP_LG_LW25,
1232 ALC880_FIXUP_W810,
1233 ALC880_FIXUP_EAPD_COEF,
1234 ALC880_FIXUP_TCL_S700,
1235 ALC880_FIXUP_VOL_KNOB,
1236 ALC880_FIXUP_FUJITSU,
1237 ALC880_FIXUP_F1734,
1238 ALC880_FIXUP_UNIWILL,
1239 ALC880_FIXUP_UNIWILL_DIG,
1240 ALC880_FIXUP_Z71V,
1241 ALC880_FIXUP_ASUS_W5A,
1242 ALC880_FIXUP_3ST_BASE,
1243 ALC880_FIXUP_3ST,
1244 ALC880_FIXUP_3ST_DIG,
1245 ALC880_FIXUP_5ST_BASE,
1246 ALC880_FIXUP_5ST,
1247 ALC880_FIXUP_5ST_DIG,
1248 ALC880_FIXUP_6ST_BASE,
1249 ALC880_FIXUP_6ST,
1250 ALC880_FIXUP_6ST_DIG,
1251 ALC880_FIXUP_6ST_AUTOMUTE,
1252 };
1253
1254 /* enable the volume-knob widget support on NID 0x21 */
1255 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1256 const struct hda_fixup *fix, int action)
1257 {
1258 if (action == HDA_FIXUP_ACT_PROBE)
1259 snd_hda_jack_detect_enable_callback(codec, 0x21,
1260 alc_update_knob_master);
1261 }
1262
1263 static const struct hda_fixup alc880_fixups[] = {
1264 [ALC880_FIXUP_GPIO1] = {
1265 .type = HDA_FIXUP_FUNC,
1266 .v.func = alc_fixup_gpio1,
1267 },
1268 [ALC880_FIXUP_GPIO2] = {
1269 .type = HDA_FIXUP_FUNC,
1270 .v.func = alc_fixup_gpio2,
1271 },
1272 [ALC880_FIXUP_MEDION_RIM] = {
1273 .type = HDA_FIXUP_VERBS,
1274 .v.verbs = (const struct hda_verb[]) {
1275 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1276 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1277 { }
1278 },
1279 .chained = true,
1280 .chain_id = ALC880_FIXUP_GPIO2,
1281 },
1282 [ALC880_FIXUP_LG] = {
1283 .type = HDA_FIXUP_PINS,
1284 .v.pins = (const struct hda_pintbl[]) {
1285 /* disable bogus unused pins */
1286 { 0x16, 0x411111f0 },
1287 { 0x18, 0x411111f0 },
1288 { 0x1a, 0x411111f0 },
1289 { }
1290 }
1291 },
1292 [ALC880_FIXUP_LG_LW25] = {
1293 .type = HDA_FIXUP_PINS,
1294 .v.pins = (const struct hda_pintbl[]) {
1295 { 0x1a, 0x0181344f }, /* line-in */
1296 { 0x1b, 0x0321403f }, /* headphone */
1297 { }
1298 }
1299 },
1300 [ALC880_FIXUP_W810] = {
1301 .type = HDA_FIXUP_PINS,
1302 .v.pins = (const struct hda_pintbl[]) {
1303 /* disable bogus unused pins */
1304 { 0x17, 0x411111f0 },
1305 { }
1306 },
1307 .chained = true,
1308 .chain_id = ALC880_FIXUP_GPIO2,
1309 },
1310 [ALC880_FIXUP_EAPD_COEF] = {
1311 .type = HDA_FIXUP_VERBS,
1312 .v.verbs = (const struct hda_verb[]) {
1313 /* change to EAPD mode */
1314 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1315 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1316 {}
1317 },
1318 },
1319 [ALC880_FIXUP_TCL_S700] = {
1320 .type = HDA_FIXUP_VERBS,
1321 .v.verbs = (const struct hda_verb[]) {
1322 /* change to EAPD mode */
1323 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1324 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1325 {}
1326 },
1327 .chained = true,
1328 .chain_id = ALC880_FIXUP_GPIO2,
1329 },
1330 [ALC880_FIXUP_VOL_KNOB] = {
1331 .type = HDA_FIXUP_FUNC,
1332 .v.func = alc880_fixup_vol_knob,
1333 },
1334 [ALC880_FIXUP_FUJITSU] = {
1335 /* override all pins as BIOS on old Amilo is broken */
1336 .type = HDA_FIXUP_PINS,
1337 .v.pins = (const struct hda_pintbl[]) {
1338 { 0x14, 0x0121401f }, /* HP */
1339 { 0x15, 0x99030120 }, /* speaker */
1340 { 0x16, 0x99030130 }, /* bass speaker */
1341 { 0x17, 0x411111f0 }, /* N/A */
1342 { 0x18, 0x411111f0 }, /* N/A */
1343 { 0x19, 0x01a19950 }, /* mic-in */
1344 { 0x1a, 0x411111f0 }, /* N/A */
1345 { 0x1b, 0x411111f0 }, /* N/A */
1346 { 0x1c, 0x411111f0 }, /* N/A */
1347 { 0x1d, 0x411111f0 }, /* N/A */
1348 { 0x1e, 0x01454140 }, /* SPDIF out */
1349 { }
1350 },
1351 .chained = true,
1352 .chain_id = ALC880_FIXUP_VOL_KNOB,
1353 },
1354 [ALC880_FIXUP_F1734] = {
1355 /* almost compatible with FUJITSU, but no bass and SPDIF */
1356 .type = HDA_FIXUP_PINS,
1357 .v.pins = (const struct hda_pintbl[]) {
1358 { 0x14, 0x0121401f }, /* HP */
1359 { 0x15, 0x99030120 }, /* speaker */
1360 { 0x16, 0x411111f0 }, /* N/A */
1361 { 0x17, 0x411111f0 }, /* N/A */
1362 { 0x18, 0x411111f0 }, /* N/A */
1363 { 0x19, 0x01a19950 }, /* mic-in */
1364 { 0x1a, 0x411111f0 }, /* N/A */
1365 { 0x1b, 0x411111f0 }, /* N/A */
1366 { 0x1c, 0x411111f0 }, /* N/A */
1367 { 0x1d, 0x411111f0 }, /* N/A */
1368 { 0x1e, 0x411111f0 }, /* N/A */
1369 { }
1370 },
1371 .chained = true,
1372 .chain_id = ALC880_FIXUP_VOL_KNOB,
1373 },
1374 [ALC880_FIXUP_UNIWILL] = {
1375 /* need to fix HP and speaker pins to be parsed correctly */
1376 .type = HDA_FIXUP_PINS,
1377 .v.pins = (const struct hda_pintbl[]) {
1378 { 0x14, 0x0121411f }, /* HP */
1379 { 0x15, 0x99030120 }, /* speaker */
1380 { 0x16, 0x99030130 }, /* bass speaker */
1381 { }
1382 },
1383 },
1384 [ALC880_FIXUP_UNIWILL_DIG] = {
1385 .type = HDA_FIXUP_PINS,
1386 .v.pins = (const struct hda_pintbl[]) {
1387 /* disable bogus unused pins */
1388 { 0x17, 0x411111f0 },
1389 { 0x19, 0x411111f0 },
1390 { 0x1b, 0x411111f0 },
1391 { 0x1f, 0x411111f0 },
1392 { }
1393 }
1394 },
1395 [ALC880_FIXUP_Z71V] = {
1396 .type = HDA_FIXUP_PINS,
1397 .v.pins = (const struct hda_pintbl[]) {
1398 /* set up the whole pins as BIOS is utterly broken */
1399 { 0x14, 0x99030120 }, /* speaker */
1400 { 0x15, 0x0121411f }, /* HP */
1401 { 0x16, 0x411111f0 }, /* N/A */
1402 { 0x17, 0x411111f0 }, /* N/A */
1403 { 0x18, 0x01a19950 }, /* mic-in */
1404 { 0x19, 0x411111f0 }, /* N/A */
1405 { 0x1a, 0x01813031 }, /* line-in */
1406 { 0x1b, 0x411111f0 }, /* N/A */
1407 { 0x1c, 0x411111f0 }, /* N/A */
1408 { 0x1d, 0x411111f0 }, /* N/A */
1409 { 0x1e, 0x0144111e }, /* SPDIF */
1410 { }
1411 }
1412 },
1413 [ALC880_FIXUP_ASUS_W5A] = {
1414 .type = HDA_FIXUP_PINS,
1415 .v.pins = (const struct hda_pintbl[]) {
1416 /* set up the whole pins as BIOS is utterly broken */
1417 { 0x14, 0x0121411f }, /* HP */
1418 { 0x15, 0x411111f0 }, /* N/A */
1419 { 0x16, 0x411111f0 }, /* N/A */
1420 { 0x17, 0x411111f0 }, /* N/A */
1421 { 0x18, 0x90a60160 }, /* mic */
1422 { 0x19, 0x411111f0 }, /* N/A */
1423 { 0x1a, 0x411111f0 }, /* N/A */
1424 { 0x1b, 0x411111f0 }, /* N/A */
1425 { 0x1c, 0x411111f0 }, /* N/A */
1426 { 0x1d, 0x411111f0 }, /* N/A */
1427 { 0x1e, 0xb743111e }, /* SPDIF out */
1428 { }
1429 },
1430 .chained = true,
1431 .chain_id = ALC880_FIXUP_GPIO1,
1432 },
1433 [ALC880_FIXUP_3ST_BASE] = {
1434 .type = HDA_FIXUP_PINS,
1435 .v.pins = (const struct hda_pintbl[]) {
1436 { 0x14, 0x01014010 }, /* line-out */
1437 { 0x15, 0x411111f0 }, /* N/A */
1438 { 0x16, 0x411111f0 }, /* N/A */
1439 { 0x17, 0x411111f0 }, /* N/A */
1440 { 0x18, 0x01a19c30 }, /* mic-in */
1441 { 0x19, 0x0121411f }, /* HP */
1442 { 0x1a, 0x01813031 }, /* line-in */
1443 { 0x1b, 0x02a19c40 }, /* front-mic */
1444 { 0x1c, 0x411111f0 }, /* N/A */
1445 { 0x1d, 0x411111f0 }, /* N/A */
1446 /* 0x1e is filled in below */
1447 { 0x1f, 0x411111f0 }, /* N/A */
1448 { }
1449 }
1450 },
1451 [ALC880_FIXUP_3ST] = {
1452 .type = HDA_FIXUP_PINS,
1453 .v.pins = (const struct hda_pintbl[]) {
1454 { 0x1e, 0x411111f0 }, /* N/A */
1455 { }
1456 },
1457 .chained = true,
1458 .chain_id = ALC880_FIXUP_3ST_BASE,
1459 },
1460 [ALC880_FIXUP_3ST_DIG] = {
1461 .type = HDA_FIXUP_PINS,
1462 .v.pins = (const struct hda_pintbl[]) {
1463 { 0x1e, 0x0144111e }, /* SPDIF */
1464 { }
1465 },
1466 .chained = true,
1467 .chain_id = ALC880_FIXUP_3ST_BASE,
1468 },
1469 [ALC880_FIXUP_5ST_BASE] = {
1470 .type = HDA_FIXUP_PINS,
1471 .v.pins = (const struct hda_pintbl[]) {
1472 { 0x14, 0x01014010 }, /* front */
1473 { 0x15, 0x411111f0 }, /* N/A */
1474 { 0x16, 0x01011411 }, /* CLFE */
1475 { 0x17, 0x01016412 }, /* surr */
1476 { 0x18, 0x01a19c30 }, /* mic-in */
1477 { 0x19, 0x0121411f }, /* HP */
1478 { 0x1a, 0x01813031 }, /* line-in */
1479 { 0x1b, 0x02a19c40 }, /* front-mic */
1480 { 0x1c, 0x411111f0 }, /* N/A */
1481 { 0x1d, 0x411111f0 }, /* N/A */
1482 /* 0x1e is filled in below */
1483 { 0x1f, 0x411111f0 }, /* N/A */
1484 { }
1485 }
1486 },
1487 [ALC880_FIXUP_5ST] = {
1488 .type = HDA_FIXUP_PINS,
1489 .v.pins = (const struct hda_pintbl[]) {
1490 { 0x1e, 0x411111f0 }, /* N/A */
1491 { }
1492 },
1493 .chained = true,
1494 .chain_id = ALC880_FIXUP_5ST_BASE,
1495 },
1496 [ALC880_FIXUP_5ST_DIG] = {
1497 .type = HDA_FIXUP_PINS,
1498 .v.pins = (const struct hda_pintbl[]) {
1499 { 0x1e, 0x0144111e }, /* SPDIF */
1500 { }
1501 },
1502 .chained = true,
1503 .chain_id = ALC880_FIXUP_5ST_BASE,
1504 },
1505 [ALC880_FIXUP_6ST_BASE] = {
1506 .type = HDA_FIXUP_PINS,
1507 .v.pins = (const struct hda_pintbl[]) {
1508 { 0x14, 0x01014010 }, /* front */
1509 { 0x15, 0x01016412 }, /* surr */
1510 { 0x16, 0x01011411 }, /* CLFE */
1511 { 0x17, 0x01012414 }, /* side */
1512 { 0x18, 0x01a19c30 }, /* mic-in */
1513 { 0x19, 0x02a19c40 }, /* front-mic */
1514 { 0x1a, 0x01813031 }, /* line-in */
1515 { 0x1b, 0x0121411f }, /* HP */
1516 { 0x1c, 0x411111f0 }, /* N/A */
1517 { 0x1d, 0x411111f0 }, /* N/A */
1518 /* 0x1e is filled in below */
1519 { 0x1f, 0x411111f0 }, /* N/A */
1520 { }
1521 }
1522 },
1523 [ALC880_FIXUP_6ST] = {
1524 .type = HDA_FIXUP_PINS,
1525 .v.pins = (const struct hda_pintbl[]) {
1526 { 0x1e, 0x411111f0 }, /* N/A */
1527 { }
1528 },
1529 .chained = true,
1530 .chain_id = ALC880_FIXUP_6ST_BASE,
1531 },
1532 [ALC880_FIXUP_6ST_DIG] = {
1533 .type = HDA_FIXUP_PINS,
1534 .v.pins = (const struct hda_pintbl[]) {
1535 { 0x1e, 0x0144111e }, /* SPDIF */
1536 { }
1537 },
1538 .chained = true,
1539 .chain_id = ALC880_FIXUP_6ST_BASE,
1540 },
1541 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1542 .type = HDA_FIXUP_PINS,
1543 .v.pins = (const struct hda_pintbl[]) {
1544 { 0x1b, 0x0121401f }, /* HP with jack detect */
1545 { }
1546 },
1547 .chained_before = true,
1548 .chain_id = ALC880_FIXUP_6ST_BASE,
1549 },
1550 };
1551
1552 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1553 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1554 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1555 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1556 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1557 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1558 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1559 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1560 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1561 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1562 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1563 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1564 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1565 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1566 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1567 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1568 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1569 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1570 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1571 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1572 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1573 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1574 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1575 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1576
1577 /* Below is the copied entries from alc880_quirks.c.
1578 * It's not quite sure whether BIOS sets the correct pin-config table
1579 * on these machines, thus they are kept to be compatible with
1580 * the old static quirks. Once when it's confirmed to work without
1581 * these overrides, it'd be better to remove.
1582 */
1583 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1584 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1585 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1586 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1587 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1588 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1589 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1590 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1591 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1592 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1593 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1594 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1595 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1596 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1597 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1598 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1599 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1600 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1601 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1602 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1603 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1604 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1605 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1606 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1607 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1613 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1614 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1615 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1616 /* default Intel */
1617 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1618 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1619 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1620 {}
1621 };
1622
1623 static const struct hda_model_fixup alc880_fixup_models[] = {
1624 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1625 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1626 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1627 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1628 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1629 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1630 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1631 {}
1632 };
1633
1634
1635 /*
1636 * OK, here we have finally the patch for ALC880
1637 */
1638 static int patch_alc880(struct hda_codec *codec)
1639 {
1640 struct alc_spec *spec;
1641 int err;
1642
1643 err = alc_alloc_spec(codec, 0x0b);
1644 if (err < 0)
1645 return err;
1646
1647 spec = codec->spec;
1648 spec->gen.need_dac_fix = 1;
1649 spec->gen.beep_nid = 0x01;
1650
1651 codec->patch_ops.unsol_event = alc880_unsol_event;
1652
1653 alc_pre_init(codec);
1654
1655 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1656 alc880_fixups);
1657 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1658
1659 /* automatic parse from the BIOS config */
1660 err = alc880_parse_auto_config(codec);
1661 if (err < 0)
1662 goto error;
1663
1664 if (!spec->gen.no_analog) {
1665 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1666 if (err < 0)
1667 goto error;
1668 }
1669
1670 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1671
1672 return 0;
1673
1674 error:
1675 alc_free(codec);
1676 return err;
1677 }
1678
1679
1680 /*
1681 * ALC260 support
1682 */
1683 static int alc260_parse_auto_config(struct hda_codec *codec)
1684 {
1685 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1686 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1687 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1688 }
1689
1690 /*
1691 * Pin config fixes
1692 */
1693 enum {
1694 ALC260_FIXUP_HP_DC5750,
1695 ALC260_FIXUP_HP_PIN_0F,
1696 ALC260_FIXUP_COEF,
1697 ALC260_FIXUP_GPIO1,
1698 ALC260_FIXUP_GPIO1_TOGGLE,
1699 ALC260_FIXUP_REPLACER,
1700 ALC260_FIXUP_HP_B1900,
1701 ALC260_FIXUP_KN1,
1702 ALC260_FIXUP_FSC_S7020,
1703 ALC260_FIXUP_FSC_S7020_JWSE,
1704 ALC260_FIXUP_VAIO_PINS,
1705 };
1706
1707 static void alc260_gpio1_automute(struct hda_codec *codec)
1708 {
1709 struct alc_spec *spec = codec->spec;
1710
1711 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1712 }
1713
1714 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1715 const struct hda_fixup *fix, int action)
1716 {
1717 struct alc_spec *spec = codec->spec;
1718 if (action == HDA_FIXUP_ACT_PROBE) {
1719 /* although the machine has only one output pin, we need to
1720 * toggle GPIO1 according to the jack state
1721 */
1722 spec->gen.automute_hook = alc260_gpio1_automute;
1723 spec->gen.detect_hp = 1;
1724 spec->gen.automute_speaker = 1;
1725 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1726 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1727 snd_hda_gen_hp_automute);
1728 alc_setup_gpio(codec, 0x01);
1729 }
1730 }
1731
1732 static void alc260_fixup_kn1(struct hda_codec *codec,
1733 const struct hda_fixup *fix, int action)
1734 {
1735 struct alc_spec *spec = codec->spec;
1736 static const struct hda_pintbl pincfgs[] = {
1737 { 0x0f, 0x02214000 }, /* HP/speaker */
1738 { 0x12, 0x90a60160 }, /* int mic */
1739 { 0x13, 0x02a19000 }, /* ext mic */
1740 { 0x18, 0x01446000 }, /* SPDIF out */
1741 /* disable bogus I/O pins */
1742 { 0x10, 0x411111f0 },
1743 { 0x11, 0x411111f0 },
1744 { 0x14, 0x411111f0 },
1745 { 0x15, 0x411111f0 },
1746 { 0x16, 0x411111f0 },
1747 { 0x17, 0x411111f0 },
1748 { 0x19, 0x411111f0 },
1749 { }
1750 };
1751
1752 switch (action) {
1753 case HDA_FIXUP_ACT_PRE_PROBE:
1754 snd_hda_apply_pincfgs(codec, pincfgs);
1755 spec->init_amp = ALC_INIT_NONE;
1756 break;
1757 }
1758 }
1759
1760 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1761 const struct hda_fixup *fix, int action)
1762 {
1763 struct alc_spec *spec = codec->spec;
1764 if (action == HDA_FIXUP_ACT_PRE_PROBE)
1765 spec->init_amp = ALC_INIT_NONE;
1766 }
1767
1768 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1769 const struct hda_fixup *fix, int action)
1770 {
1771 struct alc_spec *spec = codec->spec;
1772 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1773 spec->gen.add_jack_modes = 1;
1774 spec->gen.hp_mic = 1;
1775 }
1776 }
1777
1778 static const struct hda_fixup alc260_fixups[] = {
1779 [ALC260_FIXUP_HP_DC5750] = {
1780 .type = HDA_FIXUP_PINS,
1781 .v.pins = (const struct hda_pintbl[]) {
1782 { 0x11, 0x90130110 }, /* speaker */
1783 { }
1784 }
1785 },
1786 [ALC260_FIXUP_HP_PIN_0F] = {
1787 .type = HDA_FIXUP_PINS,
1788 .v.pins = (const struct hda_pintbl[]) {
1789 { 0x0f, 0x01214000 }, /* HP */
1790 { }
1791 }
1792 },
1793 [ALC260_FIXUP_COEF] = {
1794 .type = HDA_FIXUP_VERBS,
1795 .v.verbs = (const struct hda_verb[]) {
1796 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1797 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1798 { }
1799 },
1800 },
1801 [ALC260_FIXUP_GPIO1] = {
1802 .type = HDA_FIXUP_FUNC,
1803 .v.func = alc_fixup_gpio1,
1804 },
1805 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1806 .type = HDA_FIXUP_FUNC,
1807 .v.func = alc260_fixup_gpio1_toggle,
1808 .chained = true,
1809 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1810 },
1811 [ALC260_FIXUP_REPLACER] = {
1812 .type = HDA_FIXUP_VERBS,
1813 .v.verbs = (const struct hda_verb[]) {
1814 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1815 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1816 { }
1817 },
1818 .chained = true,
1819 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1820 },
1821 [ALC260_FIXUP_HP_B1900] = {
1822 .type = HDA_FIXUP_FUNC,
1823 .v.func = alc260_fixup_gpio1_toggle,
1824 .chained = true,
1825 .chain_id = ALC260_FIXUP_COEF,
1826 },
1827 [ALC260_FIXUP_KN1] = {
1828 .type = HDA_FIXUP_FUNC,
1829 .v.func = alc260_fixup_kn1,
1830 },
1831 [ALC260_FIXUP_FSC_S7020] = {
1832 .type = HDA_FIXUP_FUNC,
1833 .v.func = alc260_fixup_fsc_s7020,
1834 },
1835 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1836 .type = HDA_FIXUP_FUNC,
1837 .v.func = alc260_fixup_fsc_s7020_jwse,
1838 .chained = true,
1839 .chain_id = ALC260_FIXUP_FSC_S7020,
1840 },
1841 [ALC260_FIXUP_VAIO_PINS] = {
1842 .type = HDA_FIXUP_PINS,
1843 .v.pins = (const struct hda_pintbl[]) {
1844 /* Pin configs are missing completely on some VAIOs */
1845 { 0x0f, 0x01211020 },
1846 { 0x10, 0x0001003f },
1847 { 0x11, 0x411111f0 },
1848 { 0x12, 0x01a15930 },
1849 { 0x13, 0x411111f0 },
1850 { 0x14, 0x411111f0 },
1851 { 0x15, 0x411111f0 },
1852 { 0x16, 0x411111f0 },
1853 { 0x17, 0x411111f0 },
1854 { 0x18, 0x411111f0 },
1855 { 0x19, 0x411111f0 },
1856 { }
1857 }
1858 },
1859 };
1860
1861 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1862 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1863 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1864 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1865 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1866 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1867 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1868 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1869 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1870 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1871 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1872 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1873 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1874 {}
1875 };
1876
1877 static const struct hda_model_fixup alc260_fixup_models[] = {
1878 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1879 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1880 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1881 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1882 {}
1883 };
1884
1885 /*
1886 */
1887 static int patch_alc260(struct hda_codec *codec)
1888 {
1889 struct alc_spec *spec;
1890 int err;
1891
1892 err = alc_alloc_spec(codec, 0x07);
1893 if (err < 0)
1894 return err;
1895
1896 spec = codec->spec;
1897 /* as quite a few machines require HP amp for speaker outputs,
1898 * it's easier to enable it unconditionally; even if it's unneeded,
1899 * it's almost harmless.
1900 */
1901 spec->gen.prefer_hp_amp = 1;
1902 spec->gen.beep_nid = 0x01;
1903
1904 spec->shutup = alc_eapd_shutup;
1905
1906 alc_pre_init(codec);
1907
1908 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1909 alc260_fixups);
1910 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1911
1912 /* automatic parse from the BIOS config */
1913 err = alc260_parse_auto_config(codec);
1914 if (err < 0)
1915 goto error;
1916
1917 if (!spec->gen.no_analog) {
1918 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1919 if (err < 0)
1920 goto error;
1921 }
1922
1923 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1924
1925 return 0;
1926
1927 error:
1928 alc_free(codec);
1929 return err;
1930 }
1931
1932
1933 /*
1934 * ALC882/883/885/888/889 support
1935 *
1936 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1937 * configuration. Each pin widget can choose any input DACs and a mixer.
1938 * Each ADC is connected from a mixer of all inputs. This makes possible
1939 * 6-channel independent captures.
1940 *
1941 * In addition, an independent DAC for the multi-playback (not used in this
1942 * driver yet).
1943 */
1944
1945 /*
1946 * Pin config fixes
1947 */
1948 enum {
1949 ALC882_FIXUP_ABIT_AW9D_MAX,
1950 ALC882_FIXUP_LENOVO_Y530,
1951 ALC882_FIXUP_PB_M5210,
1952 ALC882_FIXUP_ACER_ASPIRE_7736,
1953 ALC882_FIXUP_ASUS_W90V,
1954 ALC889_FIXUP_CD,
1955 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1956 ALC889_FIXUP_VAIO_TT,
1957 ALC888_FIXUP_EEE1601,
1958 ALC886_FIXUP_EAPD,
1959 ALC882_FIXUP_EAPD,
1960 ALC883_FIXUP_EAPD,
1961 ALC883_FIXUP_ACER_EAPD,
1962 ALC882_FIXUP_GPIO1,
1963 ALC882_FIXUP_GPIO2,
1964 ALC882_FIXUP_GPIO3,
1965 ALC889_FIXUP_COEF,
1966 ALC882_FIXUP_ASUS_W2JC,
1967 ALC882_FIXUP_ACER_ASPIRE_4930G,
1968 ALC882_FIXUP_ACER_ASPIRE_8930G,
1969 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1970 ALC885_FIXUP_MACPRO_GPIO,
1971 ALC889_FIXUP_DAC_ROUTE,
1972 ALC889_FIXUP_MBP_VREF,
1973 ALC889_FIXUP_IMAC91_VREF,
1974 ALC889_FIXUP_MBA11_VREF,
1975 ALC889_FIXUP_MBA21_VREF,
1976 ALC889_FIXUP_MP11_VREF,
1977 ALC889_FIXUP_MP41_VREF,
1978 ALC882_FIXUP_INV_DMIC,
1979 ALC882_FIXUP_NO_PRIMARY_HP,
1980 ALC887_FIXUP_ASUS_BASS,
1981 ALC887_FIXUP_BASS_CHMAP,
1982 ALC1220_FIXUP_GB_DUAL_CODECS,
1983 ALC1220_FIXUP_GB_X570,
1984 ALC1220_FIXUP_CLEVO_P950,
1985 ALC1220_FIXUP_CLEVO_PB51ED,
1986 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1987 ALC887_FIXUP_ASUS_AUDIO,
1988 ALC887_FIXUP_ASUS_HMIC,
1989 ALCS1200A_FIXUP_MIC_VREF,
1990 ALC888VD_FIXUP_MIC_100VREF,
1991 };
1992
1993 static void alc889_fixup_coef(struct hda_codec *codec,
1994 const struct hda_fixup *fix, int action)
1995 {
1996 if (action != HDA_FIXUP_ACT_INIT)
1997 return;
1998 alc_update_coef_idx(codec, 7, 0, 0x2030);
1999 }
2000
2001 /* set up GPIO at initialization */
2002 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
2003 const struct hda_fixup *fix, int action)
2004 {
2005 struct alc_spec *spec = codec->spec;
2006
2007 spec->gpio_write_delay = true;
2008 alc_fixup_gpio3(codec, fix, action);
2009 }
2010
2011 /* Fix the connection of some pins for ALC889:
2012 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2013 * work correctly (bko#42740)
2014 */
2015 static void alc889_fixup_dac_route(struct hda_codec *codec,
2016 const struct hda_fixup *fix, int action)
2017 {
2018 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2019 /* fake the connections during parsing the tree */
2020 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2021 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2022 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2023 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2024 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2025 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
2026 } else if (action == HDA_FIXUP_ACT_PROBE) {
2027 /* restore the connections */
2028 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2029 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2030 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2031 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2032 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
2033 }
2034 }
2035
2036 /* Set VREF on HP pin */
2037 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
2038 const struct hda_fixup *fix, int action)
2039 {
2040 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
2041 struct alc_spec *spec = codec->spec;
2042 int i;
2043
2044 if (action != HDA_FIXUP_ACT_INIT)
2045 return;
2046 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2047 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2048 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2049 continue;
2050 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2051 val |= AC_PINCTL_VREF_80;
2052 snd_hda_set_pin_ctl(codec, nids[i], val);
2053 spec->gen.keep_vref_in_automute = 1;
2054 break;
2055 }
2056 }
2057
2058 static void alc889_fixup_mac_pins(struct hda_codec *codec,
2059 const hda_nid_t *nids, int num_nids)
2060 {
2061 struct alc_spec *spec = codec->spec;
2062 int i;
2063
2064 for (i = 0; i < num_nids; i++) {
2065 unsigned int val;
2066 val = snd_hda_codec_get_pin_target(codec, nids[i]);
2067 val |= AC_PINCTL_VREF_50;
2068 snd_hda_set_pin_ctl(codec, nids[i], val);
2069 }
2070 spec->gen.keep_vref_in_automute = 1;
2071 }
2072
2073 /* Set VREF on speaker pins on imac91 */
2074 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2075 const struct hda_fixup *fix, int action)
2076 {
2077 static const hda_nid_t nids[] = { 0x18, 0x1a };
2078
2079 if (action == HDA_FIXUP_ACT_INIT)
2080 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2081 }
2082
2083 /* Set VREF on speaker pins on mba11 */
2084 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2085 const struct hda_fixup *fix, int action)
2086 {
2087 static const hda_nid_t nids[] = { 0x18 };
2088
2089 if (action == HDA_FIXUP_ACT_INIT)
2090 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2091 }
2092
2093 /* Set VREF on speaker pins on mba21 */
2094 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2095 const struct hda_fixup *fix, int action)
2096 {
2097 static const hda_nid_t nids[] = { 0x18, 0x19 };
2098
2099 if (action == HDA_FIXUP_ACT_INIT)
2100 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2101 }
2102
2103 /* Don't take HP output as primary
2104 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2105 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2106 */
2107 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2108 const struct hda_fixup *fix, int action)
2109 {
2110 struct alc_spec *spec = codec->spec;
2111 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2112 spec->gen.no_primary_hp = 1;
2113 spec->gen.no_multi_io = 1;
2114 }
2115 }
2116
2117 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2118 const struct hda_fixup *fix, int action);
2119
2120 /* For dual-codec configuration, we need to disable some features to avoid
2121 * conflicts of kctls and PCM streams
2122 */
2123 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2124 const struct hda_fixup *fix, int action)
2125 {
2126 struct alc_spec *spec = codec->spec;
2127
2128 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2129 return;
2130 /* disable vmaster */
2131 spec->gen.suppress_vmaster = 1;
2132 /* auto-mute and auto-mic switch don't work with multiple codecs */
2133 spec->gen.suppress_auto_mute = 1;
2134 spec->gen.suppress_auto_mic = 1;
2135 /* disable aamix as well */
2136 spec->gen.mixer_nid = 0;
2137 /* add location prefix to avoid conflicts */
2138 codec->force_pin_prefix = 1;
2139 }
2140
2141 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2142 const char *newname)
2143 {
2144 struct snd_kcontrol *kctl;
2145
2146 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2147 if (kctl)
2148 snd_ctl_rename(codec->card, kctl, newname);
2149 }
2150
2151 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2152 const struct hda_fixup *fix,
2153 int action)
2154 {
2155 alc_fixup_dual_codecs(codec, fix, action);
2156 switch (action) {
2157 case HDA_FIXUP_ACT_PRE_PROBE:
2158 /* override card longname to provide a unique UCM profile */
2159 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2160 break;
2161 case HDA_FIXUP_ACT_BUILD:
2162 /* rename Capture controls depending on the codec */
2163 rename_ctl(codec, "Capture Volume",
2164 codec->addr == 0 ?
2165 "Rear-Panel Capture Volume" :
2166 "Front-Panel Capture Volume");
2167 rename_ctl(codec, "Capture Switch",
2168 codec->addr == 0 ?
2169 "Rear-Panel Capture Switch" :
2170 "Front-Panel Capture Switch");
2171 break;
2172 }
2173 }
2174
2175 static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2176 const struct hda_fixup *fix,
2177 int action)
2178 {
2179 static const hda_nid_t conn1[] = { 0x0c };
2180 static const struct coef_fw gb_x570_coefs[] = {
2181 WRITE_COEF(0x07, 0x03c0),
2182 WRITE_COEF(0x1a, 0x01c1),
2183 WRITE_COEF(0x1b, 0x0202),
2184 WRITE_COEF(0x43, 0x3005),
2185 {}
2186 };
2187
2188 switch (action) {
2189 case HDA_FIXUP_ACT_PRE_PROBE:
2190 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2191 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2192 break;
2193 case HDA_FIXUP_ACT_INIT:
2194 alc_process_coef_fw(codec, gb_x570_coefs);
2195 break;
2196 }
2197 }
2198
2199 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2200 const struct hda_fixup *fix,
2201 int action)
2202 {
2203 static const hda_nid_t conn1[] = { 0x0c };
2204
2205 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2206 return;
2207
2208 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2209 /* We therefore want to make sure 0x14 (front headphone) and
2210 * 0x1b (speakers) use the stereo DAC 0x02
2211 */
2212 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2213 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2214 }
2215
2216 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2217 const struct hda_fixup *fix, int action);
2218
2219 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2220 const struct hda_fixup *fix,
2221 int action)
2222 {
2223 alc1220_fixup_clevo_p950(codec, fix, action);
2224 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2225 }
2226
2227 static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2228 struct hda_jack_callback *jack)
2229 {
2230 struct alc_spec *spec = codec->spec;
2231 unsigned int vref;
2232
2233 snd_hda_gen_hp_automute(codec, jack);
2234
2235 if (spec->gen.hp_jack_present)
2236 vref = AC_PINCTL_VREF_80;
2237 else
2238 vref = AC_PINCTL_VREF_HIZ;
2239 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2240 }
2241
2242 static void alc887_fixup_asus_jack(struct hda_codec *codec,
2243 const struct hda_fixup *fix, int action)
2244 {
2245 struct alc_spec *spec = codec->spec;
2246 if (action != HDA_FIXUP_ACT_PROBE)
2247 return;
2248 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2249 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2250 }
2251
2252 static const struct hda_fixup alc882_fixups[] = {
2253 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2254 .type = HDA_FIXUP_PINS,
2255 .v.pins = (const struct hda_pintbl[]) {
2256 { 0x15, 0x01080104 }, /* side */
2257 { 0x16, 0x01011012 }, /* rear */
2258 { 0x17, 0x01016011 }, /* clfe */
2259 { }
2260 }
2261 },
2262 [ALC882_FIXUP_LENOVO_Y530] = {
2263 .type = HDA_FIXUP_PINS,
2264 .v.pins = (const struct hda_pintbl[]) {
2265 { 0x15, 0x99130112 }, /* rear int speakers */
2266 { 0x16, 0x99130111 }, /* subwoofer */
2267 { }
2268 }
2269 },
2270 [ALC882_FIXUP_PB_M5210] = {
2271 .type = HDA_FIXUP_PINCTLS,
2272 .v.pins = (const struct hda_pintbl[]) {
2273 { 0x19, PIN_VREF50 },
2274 {}
2275 }
2276 },
2277 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2278 .type = HDA_FIXUP_FUNC,
2279 .v.func = alc_fixup_sku_ignore,
2280 },
2281 [ALC882_FIXUP_ASUS_W90V] = {
2282 .type = HDA_FIXUP_PINS,
2283 .v.pins = (const struct hda_pintbl[]) {
2284 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2285 { }
2286 }
2287 },
2288 [ALC889_FIXUP_CD] = {
2289 .type = HDA_FIXUP_PINS,
2290 .v.pins = (const struct hda_pintbl[]) {
2291 { 0x1c, 0x993301f0 }, /* CD */
2292 { }
2293 }
2294 },
2295 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2296 .type = HDA_FIXUP_PINS,
2297 .v.pins = (const struct hda_pintbl[]) {
2298 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2299 { }
2300 },
2301 .chained = true,
2302 .chain_id = ALC889_FIXUP_CD,
2303 },
2304 [ALC889_FIXUP_VAIO_TT] = {
2305 .type = HDA_FIXUP_PINS,
2306 .v.pins = (const struct hda_pintbl[]) {
2307 { 0x17, 0x90170111 }, /* hidden surround speaker */
2308 { }
2309 }
2310 },
2311 [ALC888_FIXUP_EEE1601] = {
2312 .type = HDA_FIXUP_VERBS,
2313 .v.verbs = (const struct hda_verb[]) {
2314 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2315 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2316 { }
2317 }
2318 },
2319 [ALC886_FIXUP_EAPD] = {
2320 .type = HDA_FIXUP_VERBS,
2321 .v.verbs = (const struct hda_verb[]) {
2322 /* change to EAPD mode */
2323 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2324 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2325 { }
2326 }
2327 },
2328 [ALC882_FIXUP_EAPD] = {
2329 .type = HDA_FIXUP_VERBS,
2330 .v.verbs = (const struct hda_verb[]) {
2331 /* change to EAPD mode */
2332 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2333 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2334 { }
2335 }
2336 },
2337 [ALC883_FIXUP_EAPD] = {
2338 .type = HDA_FIXUP_VERBS,
2339 .v.verbs = (const struct hda_verb[]) {
2340 /* change to EAPD mode */
2341 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2342 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2343 { }
2344 }
2345 },
2346 [ALC883_FIXUP_ACER_EAPD] = {
2347 .type = HDA_FIXUP_VERBS,
2348 .v.verbs = (const struct hda_verb[]) {
2349 /* eanable EAPD on Acer laptops */
2350 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2351 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2352 { }
2353 }
2354 },
2355 [ALC882_FIXUP_GPIO1] = {
2356 .type = HDA_FIXUP_FUNC,
2357 .v.func = alc_fixup_gpio1,
2358 },
2359 [ALC882_FIXUP_GPIO2] = {
2360 .type = HDA_FIXUP_FUNC,
2361 .v.func = alc_fixup_gpio2,
2362 },
2363 [ALC882_FIXUP_GPIO3] = {
2364 .type = HDA_FIXUP_FUNC,
2365 .v.func = alc_fixup_gpio3,
2366 },
2367 [ALC882_FIXUP_ASUS_W2JC] = {
2368 .type = HDA_FIXUP_FUNC,
2369 .v.func = alc_fixup_gpio1,
2370 .chained = true,
2371 .chain_id = ALC882_FIXUP_EAPD,
2372 },
2373 [ALC889_FIXUP_COEF] = {
2374 .type = HDA_FIXUP_FUNC,
2375 .v.func = alc889_fixup_coef,
2376 },
2377 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2378 .type = HDA_FIXUP_PINS,
2379 .v.pins = (const struct hda_pintbl[]) {
2380 { 0x16, 0x99130111 }, /* CLFE speaker */
2381 { 0x17, 0x99130112 }, /* surround speaker */
2382 { }
2383 },
2384 .chained = true,
2385 .chain_id = ALC882_FIXUP_GPIO1,
2386 },
2387 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2388 .type = HDA_FIXUP_PINS,
2389 .v.pins = (const struct hda_pintbl[]) {
2390 { 0x16, 0x99130111 }, /* CLFE speaker */
2391 { 0x1b, 0x99130112 }, /* surround speaker */
2392 { }
2393 },
2394 .chained = true,
2395 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2396 },
2397 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2398 /* additional init verbs for Acer Aspire 8930G */
2399 .type = HDA_FIXUP_VERBS,
2400 .v.verbs = (const struct hda_verb[]) {
2401 /* Enable all DACs */
2402 /* DAC DISABLE/MUTE 1? */
2403 /* setting bits 1-5 disables DAC nids 0x02-0x06
2404 * apparently. Init=0x38 */
2405 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2406 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2407 /* DAC DISABLE/MUTE 2? */
2408 /* some bit here disables the other DACs.
2409 * Init=0x4900 */
2410 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2411 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2412 /* DMIC fix
2413 * This laptop has a stereo digital microphone.
2414 * The mics are only 1cm apart which makes the stereo
2415 * useless. However, either the mic or the ALC889
2416 * makes the signal become a difference/sum signal
2417 * instead of standard stereo, which is annoying.
2418 * So instead we flip this bit which makes the
2419 * codec replicate the sum signal to both channels,
2420 * turning it into a normal mono mic.
2421 */
2422 /* DMIC_CONTROL? Init value = 0x0001 */
2423 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2424 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2425 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2426 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2427 { }
2428 },
2429 .chained = true,
2430 .chain_id = ALC882_FIXUP_GPIO1,
2431 },
2432 [ALC885_FIXUP_MACPRO_GPIO] = {
2433 .type = HDA_FIXUP_FUNC,
2434 .v.func = alc885_fixup_macpro_gpio,
2435 },
2436 [ALC889_FIXUP_DAC_ROUTE] = {
2437 .type = HDA_FIXUP_FUNC,
2438 .v.func = alc889_fixup_dac_route,
2439 },
2440 [ALC889_FIXUP_MBP_VREF] = {
2441 .type = HDA_FIXUP_FUNC,
2442 .v.func = alc889_fixup_mbp_vref,
2443 .chained = true,
2444 .chain_id = ALC882_FIXUP_GPIO1,
2445 },
2446 [ALC889_FIXUP_IMAC91_VREF] = {
2447 .type = HDA_FIXUP_FUNC,
2448 .v.func = alc889_fixup_imac91_vref,
2449 .chained = true,
2450 .chain_id = ALC882_FIXUP_GPIO1,
2451 },
2452 [ALC889_FIXUP_MBA11_VREF] = {
2453 .type = HDA_FIXUP_FUNC,
2454 .v.func = alc889_fixup_mba11_vref,
2455 .chained = true,
2456 .chain_id = ALC889_FIXUP_MBP_VREF,
2457 },
2458 [ALC889_FIXUP_MBA21_VREF] = {
2459 .type = HDA_FIXUP_FUNC,
2460 .v.func = alc889_fixup_mba21_vref,
2461 .chained = true,
2462 .chain_id = ALC889_FIXUP_MBP_VREF,
2463 },
2464 [ALC889_FIXUP_MP11_VREF] = {
2465 .type = HDA_FIXUP_FUNC,
2466 .v.func = alc889_fixup_mba11_vref,
2467 .chained = true,
2468 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2469 },
2470 [ALC889_FIXUP_MP41_VREF] = {
2471 .type = HDA_FIXUP_FUNC,
2472 .v.func = alc889_fixup_mbp_vref,
2473 .chained = true,
2474 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2475 },
2476 [ALC882_FIXUP_INV_DMIC] = {
2477 .type = HDA_FIXUP_FUNC,
2478 .v.func = alc_fixup_inv_dmic,
2479 },
2480 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2481 .type = HDA_FIXUP_FUNC,
2482 .v.func = alc882_fixup_no_primary_hp,
2483 },
2484 [ALC887_FIXUP_ASUS_BASS] = {
2485 .type = HDA_FIXUP_PINS,
2486 .v.pins = (const struct hda_pintbl[]) {
2487 {0x16, 0x99130130}, /* bass speaker */
2488 {}
2489 },
2490 .chained = true,
2491 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2492 },
2493 [ALC887_FIXUP_BASS_CHMAP] = {
2494 .type = HDA_FIXUP_FUNC,
2495 .v.func = alc_fixup_bass_chmap,
2496 },
2497 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2498 .type = HDA_FIXUP_FUNC,
2499 .v.func = alc1220_fixup_gb_dual_codecs,
2500 },
2501 [ALC1220_FIXUP_GB_X570] = {
2502 .type = HDA_FIXUP_FUNC,
2503 .v.func = alc1220_fixup_gb_x570,
2504 },
2505 [ALC1220_FIXUP_CLEVO_P950] = {
2506 .type = HDA_FIXUP_FUNC,
2507 .v.func = alc1220_fixup_clevo_p950,
2508 },
2509 [ALC1220_FIXUP_CLEVO_PB51ED] = {
2510 .type = HDA_FIXUP_FUNC,
2511 .v.func = alc1220_fixup_clevo_pb51ed,
2512 },
2513 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2514 .type = HDA_FIXUP_PINS,
2515 .v.pins = (const struct hda_pintbl[]) {
2516 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2517 {}
2518 },
2519 .chained = true,
2520 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2521 },
2522 [ALC887_FIXUP_ASUS_AUDIO] = {
2523 .type = HDA_FIXUP_PINS,
2524 .v.pins = (const struct hda_pintbl[]) {
2525 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2526 { 0x19, 0x22219420 },
2527 {}
2528 },
2529 },
2530 [ALC887_FIXUP_ASUS_HMIC] = {
2531 .type = HDA_FIXUP_FUNC,
2532 .v.func = alc887_fixup_asus_jack,
2533 .chained = true,
2534 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2535 },
2536 [ALCS1200A_FIXUP_MIC_VREF] = {
2537 .type = HDA_FIXUP_PINCTLS,
2538 .v.pins = (const struct hda_pintbl[]) {
2539 { 0x18, PIN_VREF50 }, /* rear mic */
2540 { 0x19, PIN_VREF50 }, /* front mic */
2541 {}
2542 }
2543 },
2544 [ALC888VD_FIXUP_MIC_100VREF] = {
2545 .type = HDA_FIXUP_PINCTLS,
2546 .v.pins = (const struct hda_pintbl[]) {
2547 { 0x18, PIN_VREF100 }, /* headset mic */
2548 {}
2549 }
2550 },
2551 };
2552
2553 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2554 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2555 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2556 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2557 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2558 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2559 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2560 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2561 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2562 ALC882_FIXUP_ACER_ASPIRE_4930G),
2563 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2564 ALC882_FIXUP_ACER_ASPIRE_4930G),
2565 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2566 ALC882_FIXUP_ACER_ASPIRE_8930G),
2567 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2568 ALC882_FIXUP_ACER_ASPIRE_8930G),
2569 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2570 ALC882_FIXUP_ACER_ASPIRE_4930G),
2571 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2572 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2573 ALC882_FIXUP_ACER_ASPIRE_4930G),
2574 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2575 ALC882_FIXUP_ACER_ASPIRE_4930G),
2576 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2577 ALC882_FIXUP_ACER_ASPIRE_4930G),
2578 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2579 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2580 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2581 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2582 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2583 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2584 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
2585 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2586 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2587 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2588 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
2589 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2590 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2591 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2592 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2593 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2594
2595 /* All Apple entries are in codec SSIDs */
2596 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2597 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2598 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2599 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2600 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2601 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2602 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2603 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2604 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2605 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2606 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2607 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2608 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2609 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2610 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2611 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2612 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2613 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2614 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2615 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2616 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2617 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2618
2619 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2620 SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF),
2621 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
2622 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2623 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2624 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
2625 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
2626 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
2627 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
2628 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
2629 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
2630 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
2631 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
2632 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
2633 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2634 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
2635 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2636 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2637 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2638 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2639 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2640 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2641 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2643 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2644 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2645 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2646 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2647 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2648 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2649 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2650 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2651 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2652 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2653 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2654 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
2655 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2656 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
2657 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
2658 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2659 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2660 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2661 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2662 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2663 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
2664 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2665 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2666 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
2667 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2668 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2669 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2670 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2671 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2672 {}
2673 };
2674
2675 static const struct hda_model_fixup alc882_fixup_models[] = {
2676 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2677 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2678 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2679 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2680 {.id = ALC889_FIXUP_CD, .name = "cd"},
2681 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2682 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2683 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2684 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2685 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2686 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2687 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2688 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2689 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2690 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2691 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2692 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2693 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2694 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2695 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2696 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2697 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2698 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2699 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2700 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2701 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2702 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2703 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2704 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2705 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2706 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
2707 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2708 {}
2709 };
2710
2711 static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2712 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2713 {0x14, 0x01014010},
2714 {0x15, 0x01011012},
2715 {0x16, 0x01016011},
2716 {0x18, 0x01a19040},
2717 {0x19, 0x02a19050},
2718 {0x1a, 0x0181304f},
2719 {0x1b, 0x0221401f},
2720 {0x1e, 0x01456130}),
2721 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2722 {0x14, 0x01015010},
2723 {0x15, 0x01011012},
2724 {0x16, 0x01011011},
2725 {0x18, 0x01a11040},
2726 {0x19, 0x02a19050},
2727 {0x1a, 0x0181104f},
2728 {0x1b, 0x0221401f},
2729 {0x1e, 0x01451130}),
2730 {}
2731 };
2732
2733 /*
2734 * BIOS auto configuration
2735 */
2736 /* almost identical with ALC880 parser... */
2737 static int alc882_parse_auto_config(struct hda_codec *codec)
2738 {
2739 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2740 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2741 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2742 }
2743
2744 /*
2745 */
2746 static int patch_alc882(struct hda_codec *codec)
2747 {
2748 struct alc_spec *spec;
2749 int err;
2750
2751 err = alc_alloc_spec(codec, 0x0b);
2752 if (err < 0)
2753 return err;
2754
2755 spec = codec->spec;
2756
2757 switch (codec->core.vendor_id) {
2758 case 0x10ec0882:
2759 case 0x10ec0885:
2760 case 0x10ec0900:
2761 case 0x10ec0b00:
2762 case 0x10ec1220:
2763 break;
2764 default:
2765 /* ALC883 and variants */
2766 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2767 break;
2768 }
2769
2770 alc_pre_init(codec);
2771
2772 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2773 alc882_fixups);
2774 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
2775 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2776
2777 alc_auto_parse_customize_define(codec);
2778
2779 if (has_cdefine_beep(codec))
2780 spec->gen.beep_nid = 0x01;
2781
2782 /* automatic parse from the BIOS config */
2783 err = alc882_parse_auto_config(codec);
2784 if (err < 0)
2785 goto error;
2786
2787 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2788 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2789 if (err < 0)
2790 goto error;
2791 }
2792
2793 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2794
2795 return 0;
2796
2797 error:
2798 alc_free(codec);
2799 return err;
2800 }
2801
2802
2803 /*
2804 * ALC262 support
2805 */
2806 static int alc262_parse_auto_config(struct hda_codec *codec)
2807 {
2808 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2809 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2810 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2811 }
2812
2813 /*
2814 * Pin config fixes
2815 */
2816 enum {
2817 ALC262_FIXUP_FSC_H270,
2818 ALC262_FIXUP_FSC_S7110,
2819 ALC262_FIXUP_HP_Z200,
2820 ALC262_FIXUP_TYAN,
2821 ALC262_FIXUP_LENOVO_3000,
2822 ALC262_FIXUP_BENQ,
2823 ALC262_FIXUP_BENQ_T31,
2824 ALC262_FIXUP_INV_DMIC,
2825 ALC262_FIXUP_INTEL_BAYLEYBAY,
2826 };
2827
2828 static const struct hda_fixup alc262_fixups[] = {
2829 [ALC262_FIXUP_FSC_H270] = {
2830 .type = HDA_FIXUP_PINS,
2831 .v.pins = (const struct hda_pintbl[]) {
2832 { 0x14, 0x99130110 }, /* speaker */
2833 { 0x15, 0x0221142f }, /* front HP */
2834 { 0x1b, 0x0121141f }, /* rear HP */
2835 { }
2836 }
2837 },
2838 [ALC262_FIXUP_FSC_S7110] = {
2839 .type = HDA_FIXUP_PINS,
2840 .v.pins = (const struct hda_pintbl[]) {
2841 { 0x15, 0x90170110 }, /* speaker */
2842 { }
2843 },
2844 .chained = true,
2845 .chain_id = ALC262_FIXUP_BENQ,
2846 },
2847 [ALC262_FIXUP_HP_Z200] = {
2848 .type = HDA_FIXUP_PINS,
2849 .v.pins = (const struct hda_pintbl[]) {
2850 { 0x16, 0x99130120 }, /* internal speaker */
2851 { }
2852 }
2853 },
2854 [ALC262_FIXUP_TYAN] = {
2855 .type = HDA_FIXUP_PINS,
2856 .v.pins = (const struct hda_pintbl[]) {
2857 { 0x14, 0x1993e1f0 }, /* int AUX */
2858 { }
2859 }
2860 },
2861 [ALC262_FIXUP_LENOVO_3000] = {
2862 .type = HDA_FIXUP_PINCTLS,
2863 .v.pins = (const struct hda_pintbl[]) {
2864 { 0x19, PIN_VREF50 },
2865 {}
2866 },
2867 .chained = true,
2868 .chain_id = ALC262_FIXUP_BENQ,
2869 },
2870 [ALC262_FIXUP_BENQ] = {
2871 .type = HDA_FIXUP_VERBS,
2872 .v.verbs = (const struct hda_verb[]) {
2873 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2874 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2875 {}
2876 }
2877 },
2878 [ALC262_FIXUP_BENQ_T31] = {
2879 .type = HDA_FIXUP_VERBS,
2880 .v.verbs = (const struct hda_verb[]) {
2881 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2882 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2883 {}
2884 }
2885 },
2886 [ALC262_FIXUP_INV_DMIC] = {
2887 .type = HDA_FIXUP_FUNC,
2888 .v.func = alc_fixup_inv_dmic,
2889 },
2890 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2891 .type = HDA_FIXUP_FUNC,
2892 .v.func = alc_fixup_no_depop_delay,
2893 },
2894 };
2895
2896 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2897 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2898 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2899 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2900 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2901 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2902 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2903 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2904 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2905 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2906 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2907 {}
2908 };
2909
2910 static const struct hda_model_fixup alc262_fixup_models[] = {
2911 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2912 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2913 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2914 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2915 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2916 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2917 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2918 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2919 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2920 {}
2921 };
2922
2923 /*
2924 */
2925 static int patch_alc262(struct hda_codec *codec)
2926 {
2927 struct alc_spec *spec;
2928 int err;
2929
2930 err = alc_alloc_spec(codec, 0x0b);
2931 if (err < 0)
2932 return err;
2933
2934 spec = codec->spec;
2935 spec->gen.shared_mic_vref_pin = 0x18;
2936
2937 spec->shutup = alc_eapd_shutup;
2938
2939 #if 0
2940 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2941 * under-run
2942 */
2943 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2944 #endif
2945 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2946
2947 alc_pre_init(codec);
2948
2949 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2950 alc262_fixups);
2951 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2952
2953 alc_auto_parse_customize_define(codec);
2954
2955 if (has_cdefine_beep(codec))
2956 spec->gen.beep_nid = 0x01;
2957
2958 /* automatic parse from the BIOS config */
2959 err = alc262_parse_auto_config(codec);
2960 if (err < 0)
2961 goto error;
2962
2963 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2964 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2965 if (err < 0)
2966 goto error;
2967 }
2968
2969 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2970
2971 return 0;
2972
2973 error:
2974 alc_free(codec);
2975 return err;
2976 }
2977
2978 /*
2979 * ALC268
2980 */
2981 /* bind Beep switches of both NID 0x0f and 0x10 */
2982 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2983 struct snd_ctl_elem_value *ucontrol)
2984 {
2985 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2986 unsigned long pval;
2987 int err;
2988
2989 mutex_lock(&codec->control_mutex);
2990 pval = kcontrol->private_value;
2991 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2992 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2993 if (err >= 0) {
2994 kcontrol->private_value = (pval & ~0xff) | 0x10;
2995 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2996 }
2997 kcontrol->private_value = pval;
2998 mutex_unlock(&codec->control_mutex);
2999 return err;
3000 }
3001
3002 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
3003 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
3004 {
3005 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3006 .name = "Beep Playback Switch",
3007 .subdevice = HDA_SUBDEV_AMP_FLAG,
3008 .info = snd_hda_mixer_amp_switch_info,
3009 .get = snd_hda_mixer_amp_switch_get,
3010 .put = alc268_beep_switch_put,
3011 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3012 },
3013 };
3014
3015 /* set PCBEEP vol = 0, mute connections */
3016 static const struct hda_verb alc268_beep_init_verbs[] = {
3017 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3018 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3019 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3020 { }
3021 };
3022
3023 enum {
3024 ALC268_FIXUP_INV_DMIC,
3025 ALC268_FIXUP_HP_EAPD,
3026 ALC268_FIXUP_SPDIF,
3027 };
3028
3029 static const struct hda_fixup alc268_fixups[] = {
3030 [ALC268_FIXUP_INV_DMIC] = {
3031 .type = HDA_FIXUP_FUNC,
3032 .v.func = alc_fixup_inv_dmic,
3033 },
3034 [ALC268_FIXUP_HP_EAPD] = {
3035 .type = HDA_FIXUP_VERBS,
3036 .v.verbs = (const struct hda_verb[]) {
3037 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3038 {}
3039 }
3040 },
3041 [ALC268_FIXUP_SPDIF] = {
3042 .type = HDA_FIXUP_PINS,
3043 .v.pins = (const struct hda_pintbl[]) {
3044 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3045 {}
3046 }
3047 },
3048 };
3049
3050 static const struct hda_model_fixup alc268_fixup_models[] = {
3051 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
3052 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
3053 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
3054 {}
3055 };
3056
3057 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
3058 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
3059 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
3060 /* below is codec SSID since multiple Toshiba laptops have the
3061 * same PCI SSID 1179:ff00
3062 */
3063 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
3064 {}
3065 };
3066
3067 /*
3068 * BIOS auto configuration
3069 */
3070 static int alc268_parse_auto_config(struct hda_codec *codec)
3071 {
3072 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3073 return alc_parse_auto_config(codec, NULL, alc268_ssids);
3074 }
3075
3076 /*
3077 */
3078 static int patch_alc268(struct hda_codec *codec)
3079 {
3080 struct alc_spec *spec;
3081 int i, err;
3082
3083 /* ALC268 has no aa-loopback mixer */
3084 err = alc_alloc_spec(codec, 0);
3085 if (err < 0)
3086 return err;
3087
3088 spec = codec->spec;
3089 if (has_cdefine_beep(codec))
3090 spec->gen.beep_nid = 0x01;
3091
3092 spec->shutup = alc_eapd_shutup;
3093
3094 alc_pre_init(codec);
3095
3096 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3097 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3098
3099 /* automatic parse from the BIOS config */
3100 err = alc268_parse_auto_config(codec);
3101 if (err < 0)
3102 goto error;
3103
3104 if (err > 0 && !spec->gen.no_analog &&
3105 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3106 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3107 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3108 &alc268_beep_mixer[i])) {
3109 err = -ENOMEM;
3110 goto error;
3111 }
3112 }
3113 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
3114 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3115 /* override the amp caps for beep generator */
3116 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3117 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3118 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3119 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3120 (0 << AC_AMPCAP_MUTE_SHIFT));
3121 }
3122
3123 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3124
3125 return 0;
3126
3127 error:
3128 alc_free(codec);
3129 return err;
3130 }
3131
3132 /*
3133 * ALC269
3134 */
3135
3136 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
3137 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3138 };
3139
3140 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
3141 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3142 };
3143
3144 /* different alc269-variants */
3145 enum {
3146 ALC269_TYPE_ALC269VA,
3147 ALC269_TYPE_ALC269VB,
3148 ALC269_TYPE_ALC269VC,
3149 ALC269_TYPE_ALC269VD,
3150 ALC269_TYPE_ALC280,
3151 ALC269_TYPE_ALC282,
3152 ALC269_TYPE_ALC283,
3153 ALC269_TYPE_ALC284,
3154 ALC269_TYPE_ALC293,
3155 ALC269_TYPE_ALC286,
3156 ALC269_TYPE_ALC298,
3157 ALC269_TYPE_ALC255,
3158 ALC269_TYPE_ALC256,
3159 ALC269_TYPE_ALC257,
3160 ALC269_TYPE_ALC215,
3161 ALC269_TYPE_ALC225,
3162 ALC269_TYPE_ALC245,
3163 ALC269_TYPE_ALC287,
3164 ALC269_TYPE_ALC294,
3165 ALC269_TYPE_ALC300,
3166 ALC269_TYPE_ALC623,
3167 ALC269_TYPE_ALC700,
3168 };
3169
3170 /*
3171 * BIOS auto configuration
3172 */
3173 static int alc269_parse_auto_config(struct hda_codec *codec)
3174 {
3175 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3176 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3177 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3178 struct alc_spec *spec = codec->spec;
3179 const hda_nid_t *ssids;
3180
3181 switch (spec->codec_variant) {
3182 case ALC269_TYPE_ALC269VA:
3183 case ALC269_TYPE_ALC269VC:
3184 case ALC269_TYPE_ALC280:
3185 case ALC269_TYPE_ALC284:
3186 case ALC269_TYPE_ALC293:
3187 ssids = alc269va_ssids;
3188 break;
3189 case ALC269_TYPE_ALC269VB:
3190 case ALC269_TYPE_ALC269VD:
3191 case ALC269_TYPE_ALC282:
3192 case ALC269_TYPE_ALC283:
3193 case ALC269_TYPE_ALC286:
3194 case ALC269_TYPE_ALC298:
3195 case ALC269_TYPE_ALC255:
3196 case ALC269_TYPE_ALC256:
3197 case ALC269_TYPE_ALC257:
3198 case ALC269_TYPE_ALC215:
3199 case ALC269_TYPE_ALC225:
3200 case ALC269_TYPE_ALC245:
3201 case ALC269_TYPE_ALC287:
3202 case ALC269_TYPE_ALC294:
3203 case ALC269_TYPE_ALC300:
3204 case ALC269_TYPE_ALC623:
3205 case ALC269_TYPE_ALC700:
3206 ssids = alc269_ssids;
3207 break;
3208 default:
3209 ssids = alc269_ssids;
3210 break;
3211 }
3212
3213 return alc_parse_auto_config(codec, alc269_ignore, ssids);
3214 }
3215
3216 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3217 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3218 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3219 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3220 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3221 {}
3222 };
3223
3224 static void alc_headset_btn_callback(struct hda_codec *codec,
3225 struct hda_jack_callback *jack)
3226 {
3227 int report = 0;
3228
3229 if (jack->unsol_res & (7 << 13))
3230 report |= SND_JACK_BTN_0;
3231
3232 if (jack->unsol_res & (1 << 16 | 3 << 8))
3233 report |= SND_JACK_BTN_1;
3234
3235 /* Volume up key */
3236 if (jack->unsol_res & (7 << 23))
3237 report |= SND_JACK_BTN_2;
3238
3239 /* Volume down key */
3240 if (jack->unsol_res & (7 << 10))
3241 report |= SND_JACK_BTN_3;
3242
3243 snd_hda_jack_set_button_state(codec, jack->nid, report);
3244 }
3245
3246 static void alc_disable_headset_jack_key(struct hda_codec *codec)
3247 {
3248 struct alc_spec *spec = codec->spec;
3249
3250 if (!spec->has_hs_key)
3251 return;
3252
3253 switch (codec->core.vendor_id) {
3254 case 0x10ec0215:
3255 case 0x10ec0225:
3256 case 0x10ec0285:
3257 case 0x10ec0287:
3258 case 0x10ec0295:
3259 case 0x10ec0289:
3260 case 0x10ec0299:
3261 alc_write_coef_idx(codec, 0x48, 0x0);
3262 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3263 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3264 break;
3265 case 0x10ec0230:
3266 case 0x10ec0236:
3267 case 0x10ec0256:
3268 case 0x10ec0257:
3269 case 0x19e58326:
3270 alc_write_coef_idx(codec, 0x48, 0x0);
3271 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3272 break;
3273 }
3274 }
3275
3276 static void alc_enable_headset_jack_key(struct hda_codec *codec)
3277 {
3278 struct alc_spec *spec = codec->spec;
3279
3280 if (!spec->has_hs_key)
3281 return;
3282
3283 switch (codec->core.vendor_id) {
3284 case 0x10ec0215:
3285 case 0x10ec0225:
3286 case 0x10ec0285:
3287 case 0x10ec0287:
3288 case 0x10ec0295:
3289 case 0x10ec0289:
3290 case 0x10ec0299:
3291 alc_write_coef_idx(codec, 0x48, 0xd011);
3292 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3293 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3294 break;
3295 case 0x10ec0230:
3296 case 0x10ec0236:
3297 case 0x10ec0256:
3298 case 0x10ec0257:
3299 case 0x19e58326:
3300 alc_write_coef_idx(codec, 0x48, 0xd011);
3301 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3302 break;
3303 }
3304 }
3305
3306 static void alc_fixup_headset_jack(struct hda_codec *codec,
3307 const struct hda_fixup *fix, int action)
3308 {
3309 struct alc_spec *spec = codec->spec;
3310 hda_nid_t hp_pin;
3311
3312 switch (action) {
3313 case HDA_FIXUP_ACT_PRE_PROBE:
3314 spec->has_hs_key = 1;
3315 snd_hda_jack_detect_enable_callback(codec, 0x55,
3316 alc_headset_btn_callback);
3317 break;
3318 case HDA_FIXUP_ACT_BUILD:
3319 hp_pin = alc_get_hp_pin(spec);
3320 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3321 alc_headset_btn_keymap,
3322 hp_pin))
3323 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3324 false, SND_JACK_HEADSET,
3325 alc_headset_btn_keymap);
3326
3327 alc_enable_headset_jack_key(codec);
3328 break;
3329 }
3330 }
3331
3332 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
3333 {
3334 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
3335 }
3336
3337 static void alc269_shutup(struct hda_codec *codec)
3338 {
3339 struct alc_spec *spec = codec->spec;
3340
3341 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3342 alc269vb_toggle_power_output(codec, 0);
3343 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3344 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3345 msleep(150);
3346 }
3347 alc_shutup_pins(codec);
3348 }
3349
3350 static const struct coef_fw alc282_coefs[] = {
3351 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3352 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3353 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3354 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3355 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3356 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3357 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3358 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3359 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3360 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3361 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3362 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3363 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3364 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3365 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3366 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3367 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3368 WRITE_COEF(0x63, 0x2902), /* PLL */
3369 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3370 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3371 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3372 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3373 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3374 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3375 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3376 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3377 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3378 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3379 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3380 {}
3381 };
3382
3383 static void alc282_restore_default_value(struct hda_codec *codec)
3384 {
3385 alc_process_coef_fw(codec, alc282_coefs);
3386 }
3387
3388 static void alc282_init(struct hda_codec *codec)
3389 {
3390 struct alc_spec *spec = codec->spec;
3391 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3392 bool hp_pin_sense;
3393 int coef78;
3394
3395 alc282_restore_default_value(codec);
3396
3397 if (!hp_pin)
3398 return;
3399 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3400 coef78 = alc_read_coef_idx(codec, 0x78);
3401
3402 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3403 /* Headphone capless set to high power mode */
3404 alc_write_coef_idx(codec, 0x78, 0x9004);
3405
3406 if (hp_pin_sense)
3407 msleep(2);
3408
3409 snd_hda_codec_write(codec, hp_pin, 0,
3410 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3411
3412 if (hp_pin_sense)
3413 msleep(85);
3414
3415 snd_hda_codec_write(codec, hp_pin, 0,
3416 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3417
3418 if (hp_pin_sense)
3419 msleep(100);
3420
3421 /* Headphone capless set to normal mode */
3422 alc_write_coef_idx(codec, 0x78, coef78);
3423 }
3424
3425 static void alc282_shutup(struct hda_codec *codec)
3426 {
3427 struct alc_spec *spec = codec->spec;
3428 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3429 bool hp_pin_sense;
3430 int coef78;
3431
3432 if (!hp_pin) {
3433 alc269_shutup(codec);
3434 return;
3435 }
3436
3437 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3438 coef78 = alc_read_coef_idx(codec, 0x78);
3439 alc_write_coef_idx(codec, 0x78, 0x9004);
3440
3441 if (hp_pin_sense)
3442 msleep(2);
3443
3444 snd_hda_codec_write(codec, hp_pin, 0,
3445 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3446
3447 if (hp_pin_sense)
3448 msleep(85);
3449
3450 if (!spec->no_shutup_pins)
3451 snd_hda_codec_write(codec, hp_pin, 0,
3452 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3453
3454 if (hp_pin_sense)
3455 msleep(100);
3456
3457 alc_auto_setup_eapd(codec, false);
3458 alc_shutup_pins(codec);
3459 alc_write_coef_idx(codec, 0x78, coef78);
3460 }
3461
3462 static const struct coef_fw alc283_coefs[] = {
3463 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3464 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3465 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3466 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3467 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3468 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3469 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3470 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3471 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3472 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3473 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3474 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3475 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3476 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3477 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3478 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3479 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3480 WRITE_COEF(0x2e, 0x2902), /* PLL */
3481 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3482 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3483 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3484 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3485 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3486 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3487 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3488 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3489 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3490 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3491 WRITE_COEF(0x49, 0x0), /* test mode */
3492 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3493 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3494 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3495 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3496 {}
3497 };
3498
3499 static void alc283_restore_default_value(struct hda_codec *codec)
3500 {
3501 alc_process_coef_fw(codec, alc283_coefs);
3502 }
3503
3504 static void alc283_init(struct hda_codec *codec)
3505 {
3506 struct alc_spec *spec = codec->spec;
3507 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3508 bool hp_pin_sense;
3509
3510 alc283_restore_default_value(codec);
3511
3512 if (!hp_pin)
3513 return;
3514
3515 msleep(30);
3516 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3517
3518 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3519 /* Headphone capless set to high power mode */
3520 alc_write_coef_idx(codec, 0x43, 0x9004);
3521
3522 snd_hda_codec_write(codec, hp_pin, 0,
3523 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3524
3525 if (hp_pin_sense)
3526 msleep(85);
3527
3528 snd_hda_codec_write(codec, hp_pin, 0,
3529 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3530
3531 if (hp_pin_sense)
3532 msleep(85);
3533 /* Index 0x46 Combo jack auto switch control 2 */
3534 /* 3k pull low control for Headset jack. */
3535 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3536 /* Headphone capless set to normal mode */
3537 alc_write_coef_idx(codec, 0x43, 0x9614);
3538 }
3539
3540 static void alc283_shutup(struct hda_codec *codec)
3541 {
3542 struct alc_spec *spec = codec->spec;
3543 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3544 bool hp_pin_sense;
3545
3546 if (!hp_pin) {
3547 alc269_shutup(codec);
3548 return;
3549 }
3550
3551 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3552
3553 alc_write_coef_idx(codec, 0x43, 0x9004);
3554
3555 /*depop hp during suspend*/
3556 alc_write_coef_idx(codec, 0x06, 0x2100);
3557
3558 snd_hda_codec_write(codec, hp_pin, 0,
3559 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3560
3561 if (hp_pin_sense)
3562 msleep(100);
3563
3564 if (!spec->no_shutup_pins)
3565 snd_hda_codec_write(codec, hp_pin, 0,
3566 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3567
3568 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3569
3570 if (hp_pin_sense)
3571 msleep(100);
3572 alc_auto_setup_eapd(codec, false);
3573 alc_shutup_pins(codec);
3574 alc_write_coef_idx(codec, 0x43, 0x9614);
3575 }
3576
3577 static void alc256_init(struct hda_codec *codec)
3578 {
3579 struct alc_spec *spec = codec->spec;
3580 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3581 bool hp_pin_sense;
3582
3583 if (spec->ultra_low_power) {
3584 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3585 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3586 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3587 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3588 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3589 msleep(30);
3590 }
3591
3592 if (!hp_pin)
3593 hp_pin = 0x21;
3594
3595 msleep(30);
3596
3597 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3598
3599 if (hp_pin_sense)
3600 msleep(2);
3601
3602 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3603
3604 snd_hda_codec_write(codec, hp_pin, 0,
3605 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3606
3607 if (hp_pin_sense || spec->ultra_low_power)
3608 msleep(85);
3609
3610 snd_hda_codec_write(codec, hp_pin, 0,
3611 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3612
3613 if (hp_pin_sense || spec->ultra_low_power)
3614 msleep(100);
3615
3616 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3617 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3618 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3619 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3620 /*
3621 * Expose headphone mic (or possibly Line In on some machines) instead
3622 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3623 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3624 * this register.
3625 */
3626 alc_write_coef_idx(codec, 0x36, 0x5757);
3627 }
3628
3629 static void alc256_shutup(struct hda_codec *codec)
3630 {
3631 struct alc_spec *spec = codec->spec;
3632 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3633 bool hp_pin_sense;
3634
3635 if (!hp_pin)
3636 hp_pin = 0x21;
3637
3638 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3639 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3640
3641 if (hp_pin_sense)
3642 msleep(2);
3643
3644 snd_hda_codec_write(codec, hp_pin, 0,
3645 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3646
3647 if (hp_pin_sense || spec->ultra_low_power)
3648 msleep(85);
3649
3650 /* 3k pull low control for Headset jack. */
3651 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3652 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3653 * when booting with headset plugged. So skip setting it for the codec alc257
3654 */
3655 if (spec->en_3kpull_low)
3656 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3657
3658 if (!spec->no_shutup_pins)
3659 snd_hda_codec_write(codec, hp_pin, 0,
3660 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3661
3662 if (hp_pin_sense || spec->ultra_low_power)
3663 msleep(100);
3664
3665 alc_auto_setup_eapd(codec, false);
3666 alc_shutup_pins(codec);
3667 if (spec->ultra_low_power) {
3668 msleep(50);
3669 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3670 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3671 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3672 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3673 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3674 msleep(30);
3675 }
3676 }
3677
3678 static void alc285_hp_init(struct hda_codec *codec)
3679 {
3680 struct alc_spec *spec = codec->spec;
3681 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3682 int i, val;
3683 int coef38, coef0d, coef36;
3684
3685 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3686 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3687 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3688 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3689 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3690 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3691
3692 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3693
3694 if (hp_pin)
3695 snd_hda_codec_write(codec, hp_pin, 0,
3696 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3697
3698 msleep(130);
3699 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3700 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3701
3702 if (hp_pin)
3703 snd_hda_codec_write(codec, hp_pin, 0,
3704 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3705 msleep(10);
3706 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3707 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3708 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3709 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3710
3711 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3712 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3713 for (i = 0; i < 20 && val & 0x8000; i++) {
3714 msleep(50);
3715 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3716 } /* Wait for depop procedure finish */
3717
3718 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3719 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3720 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3721 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3722
3723 msleep(50);
3724 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3725 }
3726
3727 static void alc225_init(struct hda_codec *codec)
3728 {
3729 struct alc_spec *spec = codec->spec;
3730 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3731 bool hp1_pin_sense, hp2_pin_sense;
3732
3733 if (spec->ultra_low_power) {
3734 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3735 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3736 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3737 msleep(30);
3738 }
3739
3740 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3741 spec->codec_variant != ALC269_TYPE_ALC245)
3742 /* required only at boot or S3 and S4 resume time */
3743 if (!spec->done_hp_init ||
3744 is_s3_resume(codec) ||
3745 is_s4_resume(codec)) {
3746 alc285_hp_init(codec);
3747 spec->done_hp_init = true;
3748 }
3749
3750 if (!hp_pin)
3751 hp_pin = 0x21;
3752 msleep(30);
3753
3754 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3755 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3756
3757 if (hp1_pin_sense || hp2_pin_sense)
3758 msleep(2);
3759
3760 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3761
3762 if (hp1_pin_sense || spec->ultra_low_power)
3763 snd_hda_codec_write(codec, hp_pin, 0,
3764 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3765 if (hp2_pin_sense)
3766 snd_hda_codec_write(codec, 0x16, 0,
3767 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3768
3769 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3770 msleep(85);
3771
3772 if (hp1_pin_sense || spec->ultra_low_power)
3773 snd_hda_codec_write(codec, hp_pin, 0,
3774 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3775 if (hp2_pin_sense)
3776 snd_hda_codec_write(codec, 0x16, 0,
3777 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3778
3779 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3780 msleep(100);
3781
3782 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3783 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3784 }
3785
3786 static void alc225_shutup(struct hda_codec *codec)
3787 {
3788 struct alc_spec *spec = codec->spec;
3789 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3790 bool hp1_pin_sense, hp2_pin_sense;
3791
3792 if (!hp_pin)
3793 hp_pin = 0x21;
3794
3795 alc_disable_headset_jack_key(codec);
3796 /* 3k pull low control for Headset jack. */
3797 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3798
3799 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3800 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3801
3802 if (hp1_pin_sense || hp2_pin_sense)
3803 msleep(2);
3804
3805 if (hp1_pin_sense || spec->ultra_low_power)
3806 snd_hda_codec_write(codec, hp_pin, 0,
3807 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3808 if (hp2_pin_sense)
3809 snd_hda_codec_write(codec, 0x16, 0,
3810 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3811
3812 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3813 msleep(85);
3814
3815 if (hp1_pin_sense || spec->ultra_low_power)
3816 snd_hda_codec_write(codec, hp_pin, 0,
3817 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3818 if (hp2_pin_sense)
3819 snd_hda_codec_write(codec, 0x16, 0,
3820 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3821
3822 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3823 msleep(100);
3824
3825 alc_auto_setup_eapd(codec, false);
3826 alc_shutup_pins(codec);
3827 if (spec->ultra_low_power) {
3828 msleep(50);
3829 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3830 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3831 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3832 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3833 msleep(30);
3834 }
3835
3836 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3837 alc_enable_headset_jack_key(codec);
3838 }
3839
3840 static void alc_default_init(struct hda_codec *codec)
3841 {
3842 struct alc_spec *spec = codec->spec;
3843 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3844 bool hp_pin_sense;
3845
3846 if (!hp_pin)
3847 return;
3848
3849 msleep(30);
3850
3851 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3852
3853 if (hp_pin_sense)
3854 msleep(2);
3855
3856 snd_hda_codec_write(codec, hp_pin, 0,
3857 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3858
3859 if (hp_pin_sense)
3860 msleep(85);
3861
3862 snd_hda_codec_write(codec, hp_pin, 0,
3863 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3864
3865 if (hp_pin_sense)
3866 msleep(100);
3867 }
3868
3869 static void alc_default_shutup(struct hda_codec *codec)
3870 {
3871 struct alc_spec *spec = codec->spec;
3872 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3873 bool hp_pin_sense;
3874
3875 if (!hp_pin) {
3876 alc269_shutup(codec);
3877 return;
3878 }
3879
3880 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3881
3882 if (hp_pin_sense)
3883 msleep(2);
3884
3885 snd_hda_codec_write(codec, hp_pin, 0,
3886 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3887
3888 if (hp_pin_sense)
3889 msleep(85);
3890
3891 if (!spec->no_shutup_pins)
3892 snd_hda_codec_write(codec, hp_pin, 0,
3893 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3894
3895 if (hp_pin_sense)
3896 msleep(100);
3897
3898 alc_auto_setup_eapd(codec, false);
3899 alc_shutup_pins(codec);
3900 }
3901
3902 static void alc294_hp_init(struct hda_codec *codec)
3903 {
3904 struct alc_spec *spec = codec->spec;
3905 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3906 int i, val;
3907
3908 if (!hp_pin)
3909 return;
3910
3911 snd_hda_codec_write(codec, hp_pin, 0,
3912 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3913
3914 msleep(100);
3915
3916 if (!spec->no_shutup_pins)
3917 snd_hda_codec_write(codec, hp_pin, 0,
3918 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3919
3920 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3921 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3922
3923 /* Wait for depop procedure finish */
3924 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3925 for (i = 0; i < 20 && val & 0x0080; i++) {
3926 msleep(50);
3927 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3928 }
3929 /* Set HP depop to auto mode */
3930 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3931 msleep(50);
3932 }
3933
3934 static void alc294_init(struct hda_codec *codec)
3935 {
3936 struct alc_spec *spec = codec->spec;
3937
3938 /* required only at boot or S4 resume time */
3939 if (!spec->done_hp_init ||
3940 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3941 alc294_hp_init(codec);
3942 spec->done_hp_init = true;
3943 }
3944 alc_default_init(codec);
3945 }
3946
3947 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3948 unsigned int val)
3949 {
3950 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3951 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3952 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3953 }
3954
3955 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3956 {
3957 unsigned int val;
3958
3959 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3960 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3961 & 0xffff;
3962 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3963 << 16;
3964 return val;
3965 }
3966
3967 static void alc5505_dsp_halt(struct hda_codec *codec)
3968 {
3969 unsigned int val;
3970
3971 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3972 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3973 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3974 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3975 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3976 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3977 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3978 val = alc5505_coef_get(codec, 0x6220);
3979 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3980 }
3981
3982 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3983 {
3984 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3985 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3986 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3987 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3988 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3989 alc5505_coef_set(codec, 0x880c, 0x00000004);
3990 }
3991
3992 static void alc5505_dsp_init(struct hda_codec *codec)
3993 {
3994 unsigned int val;
3995
3996 alc5505_dsp_halt(codec);
3997 alc5505_dsp_back_from_halt(codec);
3998 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3999 alc5505_coef_set(codec, 0x61b0, 0x5b16);
4000 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
4001 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
4002 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
4003 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
4004 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
4005 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
4006 alc5505_coef_set(codec, 0x61b8, 0x04173302);
4007 alc5505_coef_set(codec, 0x61b8, 0x04163302);
4008 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
4009 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
4010 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4011
4012 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4013 if (val <= 3)
4014 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4015 else
4016 alc5505_coef_set(codec, 0x6220, 0x6002018f);
4017
4018 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4019 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4020 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4021 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4022 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4023 alc5505_coef_set(codec, 0x880c, 0x00000003);
4024 alc5505_coef_set(codec, 0x880c, 0x00000010);
4025
4026 #ifdef HALT_REALTEK_ALC5505
4027 alc5505_dsp_halt(codec);
4028 #endif
4029 }
4030
4031 #ifdef HALT_REALTEK_ALC5505
4032 #define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4033 #define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
4034 #else
4035 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4036 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4037 #endif
4038
4039 #ifdef CONFIG_PM
4040 static int alc269_suspend(struct hda_codec *codec)
4041 {
4042 struct alc_spec *spec = codec->spec;
4043
4044 if (spec->has_alc5505_dsp)
4045 alc5505_dsp_suspend(codec);
4046
4047 return alc_suspend(codec);
4048 }
4049
4050 static int alc269_resume(struct hda_codec *codec)
4051 {
4052 struct alc_spec *spec = codec->spec;
4053
4054 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4055 alc269vb_toggle_power_output(codec, 0);
4056 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4057 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
4058 msleep(150);
4059 }
4060
4061 codec->patch_ops.init(codec);
4062
4063 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4064 alc269vb_toggle_power_output(codec, 1);
4065 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4066 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
4067 msleep(200);
4068 }
4069
4070 snd_hda_regmap_sync(codec);
4071 hda_call_check_power_status(codec, 0x01);
4072
4073 /* on some machine, the BIOS will clear the codec gpio data when enter
4074 * suspend, and won't restore the data after resume, so we restore it
4075 * in the driver.
4076 */
4077 if (spec->gpio_data)
4078 alc_write_gpio_data(codec);
4079
4080 if (spec->has_alc5505_dsp)
4081 alc5505_dsp_resume(codec);
4082
4083 return 0;
4084 }
4085 #endif /* CONFIG_PM */
4086
4087 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
4088 const struct hda_fixup *fix, int action)
4089 {
4090 struct alc_spec *spec = codec->spec;
4091
4092 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4093 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4094 }
4095
4096 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4097 const struct hda_fixup *fix,
4098 int action)
4099 {
4100 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4101 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4102
4103 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4104 snd_hda_codec_set_pincfg(codec, 0x19,
4105 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4106 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4107 }
4108
4109 static void alc269_fixup_hweq(struct hda_codec *codec,
4110 const struct hda_fixup *fix, int action)
4111 {
4112 if (action == HDA_FIXUP_ACT_INIT)
4113 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
4114 }
4115
4116 static void alc269_fixup_headset_mic(struct hda_codec *codec,
4117 const struct hda_fixup *fix, int action)
4118 {
4119 struct alc_spec *spec = codec->spec;
4120
4121 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4122 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4123 }
4124
4125 static void alc271_fixup_dmic(struct hda_codec *codec,
4126 const struct hda_fixup *fix, int action)
4127 {
4128 static const struct hda_verb verbs[] = {
4129 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4130 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4131 {}
4132 };
4133 unsigned int cfg;
4134
4135 if (strcmp(codec->core.chip_name, "ALC271X") &&
4136 strcmp(codec->core.chip_name, "ALC269VB"))
4137 return;
4138 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4139 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4140 snd_hda_sequence_write(codec, verbs);
4141 }
4142
4143 /* Fix the speaker amp after resume, etc */
4144 static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4145 const struct hda_fixup *fix,
4146 int action)
4147 {
4148 if (action == HDA_FIXUP_ACT_INIT)
4149 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4150 }
4151
4152 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4153 const struct hda_fixup *fix, int action)
4154 {
4155 struct alc_spec *spec = codec->spec;
4156
4157 if (action != HDA_FIXUP_ACT_PROBE)
4158 return;
4159
4160 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4161 * fix the sample rate of analog I/O to 44.1kHz
4162 */
4163 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4164 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
4165 }
4166
4167 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4168 const struct hda_fixup *fix, int action)
4169 {
4170 /* The digital-mic unit sends PDM (differential signal) instead of
4171 * the standard PCM, thus you can't record a valid mono stream as is.
4172 * Below is a workaround specific to ALC269 to control the dmic
4173 * signal source as mono.
4174 */
4175 if (action == HDA_FIXUP_ACT_INIT)
4176 alc_update_coef_idx(codec, 0x07, 0, 0x80);
4177 }
4178
4179 static void alc269_quanta_automute(struct hda_codec *codec)
4180 {
4181 snd_hda_gen_update_outputs(codec);
4182
4183 alc_write_coef_idx(codec, 0x0c, 0x680);
4184 alc_write_coef_idx(codec, 0x0c, 0x480);
4185 }
4186
4187 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4188 const struct hda_fixup *fix, int action)
4189 {
4190 struct alc_spec *spec = codec->spec;
4191 if (action != HDA_FIXUP_ACT_PROBE)
4192 return;
4193 spec->gen.automute_hook = alc269_quanta_automute;
4194 }
4195
4196 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
4197 struct hda_jack_callback *jack)
4198 {
4199 struct alc_spec *spec = codec->spec;
4200 int vref;
4201 msleep(200);
4202 snd_hda_gen_hp_automute(codec, jack);
4203
4204 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4205 msleep(100);
4206 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4207 vref);
4208 msleep(500);
4209 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4210 vref);
4211 }
4212
4213 /*
4214 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4215 */
4216 struct hda_alc298_mbxinit {
4217 unsigned char value_0x23;
4218 unsigned char value_0x25;
4219 };
4220
4221 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4222 const struct hda_alc298_mbxinit *initval,
4223 bool first)
4224 {
4225 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4226 alc_write_coef_idx(codec, 0x26, 0xb000);
4227
4228 if (first)
4229 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4230
4231 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4232 alc_write_coef_idx(codec, 0x26, 0xf000);
4233 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4234
4235 if (initval->value_0x23 != 0x1e)
4236 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4237
4238 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4239 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4240 }
4241
4242 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4243 const struct hda_fixup *fix,
4244 int action)
4245 {
4246 /* Initialization magic */
4247 static const struct hda_alc298_mbxinit dac_init[] = {
4248 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4249 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4250 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4251 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4252 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4253 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4254 {0x2f, 0x00},
4255 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4256 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4257 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4258 {}
4259 };
4260 const struct hda_alc298_mbxinit *seq;
4261
4262 if (action != HDA_FIXUP_ACT_INIT)
4263 return;
4264
4265 /* Start */
4266 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4267 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4268 alc_write_coef_idx(codec, 0x26, 0xf000);
4269 alc_write_coef_idx(codec, 0x22, 0x31);
4270 alc_write_coef_idx(codec, 0x23, 0x0b);
4271 alc_write_coef_idx(codec, 0x25, 0x00);
4272 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4273 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4274
4275 for (seq = dac_init; seq->value_0x23; seq++)
4276 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4277 }
4278
4279 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4280 const struct hda_fixup *fix, int action)
4281 {
4282 struct alc_spec *spec = codec->spec;
4283 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4284 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4285 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4286 }
4287 }
4288
4289 static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4290 bool polarity, bool on)
4291 {
4292 unsigned int pinval;
4293
4294 if (!pin)
4295 return;
4296 if (polarity)
4297 on = !on;
4298 pinval = snd_hda_codec_get_pin_target(codec, pin);
4299 pinval &= ~AC_PINCTL_VREFEN;
4300 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4301 /* temporarily power up/down for setting VREF */
4302 snd_hda_power_up_pm(codec);
4303 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4304 snd_hda_power_down_pm(codec);
4305 }
4306
4307 /* update mute-LED according to the speaker mute state via mic VREF pin */
4308 static int vref_mute_led_set(struct led_classdev *led_cdev,
4309 enum led_brightness brightness)
4310 {
4311 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4312 struct alc_spec *spec = codec->spec;
4313
4314 alc_update_vref_led(codec, spec->mute_led_nid,
4315 spec->mute_led_polarity, brightness);
4316 return 0;
4317 }
4318
4319 /* Make sure the led works even in runtime suspend */
4320 static unsigned int led_power_filter(struct hda_codec *codec,
4321 hda_nid_t nid,
4322 unsigned int power_state)
4323 {
4324 struct alc_spec *spec = codec->spec;
4325
4326 if (power_state != AC_PWRST_D3 || nid == 0 ||
4327 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
4328 return power_state;
4329
4330 /* Set pin ctl again, it might have just been set to 0 */
4331 snd_hda_set_pin_ctl(codec, nid,
4332 snd_hda_codec_get_pin_target(codec, nid));
4333
4334 return snd_hda_gen_path_power_filter(codec, nid, power_state);
4335 }
4336
4337 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4338 const struct hda_fixup *fix, int action)
4339 {
4340 struct alc_spec *spec = codec->spec;
4341 const struct dmi_device *dev = NULL;
4342
4343 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4344 return;
4345
4346 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4347 int pol, pin;
4348 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4349 continue;
4350 if (pin < 0x0a || pin >= 0x10)
4351 break;
4352 spec->mute_led_polarity = pol;
4353 spec->mute_led_nid = pin - 0x0a + 0x18;
4354 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4355 codec->power_filter = led_power_filter;
4356 codec_dbg(codec,
4357 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
4358 spec->mute_led_polarity);
4359 break;
4360 }
4361 }
4362
4363 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4364 const struct hda_fixup *fix,
4365 int action, hda_nid_t pin)
4366 {
4367 struct alc_spec *spec = codec->spec;
4368
4369 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4370 spec->mute_led_polarity = 0;
4371 spec->mute_led_nid = pin;
4372 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4373 codec->power_filter = led_power_filter;
4374 }
4375 }
4376
4377 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4378 const struct hda_fixup *fix, int action)
4379 {
4380 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4381 }
4382
4383 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4384 const struct hda_fixup *fix, int action)
4385 {
4386 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
4387 }
4388
4389 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4390 const struct hda_fixup *fix, int action)
4391 {
4392 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
4393 }
4394
4395 /* update LED status via GPIO */
4396 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
4397 int polarity, bool enabled)
4398 {
4399 if (polarity)
4400 enabled = !enabled;
4401 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
4402 }
4403
4404 /* turn on/off mute LED via GPIO per vmaster hook */
4405 static int gpio_mute_led_set(struct led_classdev *led_cdev,
4406 enum led_brightness brightness)
4407 {
4408 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4409 struct alc_spec *spec = codec->spec;
4410
4411 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
4412 spec->mute_led_polarity, !brightness);
4413 return 0;
4414 }
4415
4416 /* turn on/off mic-mute LED via GPIO per capture hook */
4417 static int micmute_led_set(struct led_classdev *led_cdev,
4418 enum led_brightness brightness)
4419 {
4420 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4421 struct alc_spec *spec = codec->spec;
4422
4423 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
4424 spec->micmute_led_polarity, !brightness);
4425 return 0;
4426 }
4427
4428 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
4429 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4430 int action,
4431 unsigned int mute_mask,
4432 unsigned int micmute_mask)
4433 {
4434 struct alc_spec *spec = codec->spec;
4435
4436 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4437
4438 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4439 return;
4440 if (mute_mask) {
4441 spec->gpio_mute_led_mask = mute_mask;
4442 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
4443 }
4444 if (micmute_mask) {
4445 spec->gpio_mic_led_mask = micmute_mask;
4446 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
4447 }
4448 }
4449
4450 static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4451 const struct hda_fixup *fix, int action)
4452 {
4453 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4454 }
4455
4456 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
4457 const struct hda_fixup *fix, int action)
4458 {
4459 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4460 }
4461
4462 static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4463 const struct hda_fixup *fix, int action)
4464 {
4465 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
4466 }
4467
4468 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4469 const struct hda_fixup *fix, int action)
4470 {
4471 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4472 }
4473
4474 static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4475 const struct hda_fixup *fix, int action)
4476 {
4477 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4478 }
4479
4480 static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4481 const struct hda_fixup *fix, int action)
4482 {
4483 struct alc_spec *spec = codec->spec;
4484
4485 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4486 spec->micmute_led_polarity = 1;
4487 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4488 }
4489
4490 /* turn on/off mic-mute LED per capture hook via VREF change */
4491 static int vref_micmute_led_set(struct led_classdev *led_cdev,
4492 enum led_brightness brightness)
4493 {
4494 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4495 struct alc_spec *spec = codec->spec;
4496
4497 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4498 spec->micmute_led_polarity, brightness);
4499 return 0;
4500 }
4501
4502 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4503 const struct hda_fixup *fix, int action)
4504 {
4505 struct alc_spec *spec = codec->spec;
4506
4507 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4508 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4509 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4510 * enable headphone amp
4511 */
4512 spec->gpio_mask |= 0x10;
4513 spec->gpio_dir |= 0x10;
4514 spec->cap_mute_led_nid = 0x18;
4515 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4516 codec->power_filter = led_power_filter;
4517 }
4518 }
4519
4520 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4521 const struct hda_fixup *fix, int action)
4522 {
4523 struct alc_spec *spec = codec->spec;
4524
4525 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4526 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4527 spec->cap_mute_led_nid = 0x18;
4528 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4529 codec->power_filter = led_power_filter;
4530 }
4531 }
4532
4533 /* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4534 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4535 */
4536 static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4537 const struct hda_fixup *fix, int action)
4538 {
4539 struct alc_spec *spec = codec->spec;
4540
4541 switch (action) {
4542 case HDA_FIXUP_ACT_PRE_PROBE:
4543 spec->gpio_mask |= 0x01;
4544 spec->gpio_dir |= 0x01;
4545 break;
4546 case HDA_FIXUP_ACT_INIT:
4547 /* need to toggle GPIO to enable the amp */
4548 alc_update_gpio_data(codec, 0x01, true);
4549 msleep(100);
4550 alc_update_gpio_data(codec, 0x01, false);
4551 break;
4552 }
4553 }
4554
4555 /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4556 static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4557 struct hda_codec *codec,
4558 struct snd_pcm_substream *substream,
4559 int action)
4560 {
4561 switch (action) {
4562 case HDA_GEN_PCM_ACT_PREPARE:
4563 alc_update_gpio_data(codec, 0x04, true);
4564 break;
4565 case HDA_GEN_PCM_ACT_CLEANUP:
4566 alc_update_gpio_data(codec, 0x04, false);
4567 break;
4568 }
4569 }
4570
4571 static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4572 const struct hda_fixup *fix,
4573 int action)
4574 {
4575 struct alc_spec *spec = codec->spec;
4576
4577 if (action == HDA_FIXUP_ACT_PROBE) {
4578 spec->gpio_mask |= 0x04;
4579 spec->gpio_dir |= 0x04;
4580 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4581 }
4582 }
4583
4584 static void alc_update_coef_led(struct hda_codec *codec,
4585 struct alc_coef_led *led,
4586 bool polarity, bool on)
4587 {
4588 if (polarity)
4589 on = !on;
4590 /* temporarily power up/down for setting COEF bit */
4591 alc_update_coef_idx(codec, led->idx, led->mask,
4592 on ? led->on : led->off);
4593 }
4594
4595 /* update mute-LED according to the speaker mute state via COEF bit */
4596 static int coef_mute_led_set(struct led_classdev *led_cdev,
4597 enum led_brightness brightness)
4598 {
4599 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4600 struct alc_spec *spec = codec->spec;
4601
4602 alc_update_coef_led(codec, &spec->mute_led_coef,
4603 spec->mute_led_polarity, brightness);
4604 return 0;
4605 }
4606
4607 static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4608 const struct hda_fixup *fix,
4609 int action)
4610 {
4611 struct alc_spec *spec = codec->spec;
4612
4613 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4614 spec->mute_led_polarity = 0;
4615 spec->mute_led_coef.idx = 0x0b;
4616 spec->mute_led_coef.mask = 1 << 3;
4617 spec->mute_led_coef.on = 1 << 3;
4618 spec->mute_led_coef.off = 0;
4619 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4620 }
4621 }
4622
4623 static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4624 const struct hda_fixup *fix,
4625 int action)
4626 {
4627 struct alc_spec *spec = codec->spec;
4628
4629 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4630 spec->mute_led_polarity = 0;
4631 spec->mute_led_coef.idx = 0x34;
4632 spec->mute_led_coef.mask = 1 << 5;
4633 spec->mute_led_coef.on = 0;
4634 spec->mute_led_coef.off = 1 << 5;
4635 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4636 }
4637 }
4638
4639 static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4640 const struct hda_fixup *fix, int action)
4641 {
4642 struct alc_spec *spec = codec->spec;
4643
4644 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4645 spec->mute_led_polarity = 0;
4646 spec->mute_led_coef.idx = 0x07;
4647 spec->mute_led_coef.mask = 1;
4648 spec->mute_led_coef.on = 1;
4649 spec->mute_led_coef.off = 0;
4650 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4651 }
4652 }
4653
4654 static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4655 const struct hda_fixup *fix,
4656 int action)
4657 {
4658 struct alc_spec *spec = codec->spec;
4659
4660 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4661 spec->mute_led_polarity = 0;
4662 spec->mute_led_coef.idx = 0x0b;
4663 spec->mute_led_coef.mask = 3 << 2;
4664 spec->mute_led_coef.on = 2 << 2;
4665 spec->mute_led_coef.off = 1 << 2;
4666 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4667 }
4668 }
4669
4670 /* turn on/off mic-mute LED per capture hook by coef bit */
4671 static int coef_micmute_led_set(struct led_classdev *led_cdev,
4672 enum led_brightness brightness)
4673 {
4674 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4675 struct alc_spec *spec = codec->spec;
4676
4677 alc_update_coef_led(codec, &spec->mic_led_coef,
4678 spec->micmute_led_polarity, brightness);
4679 return 0;
4680 }
4681
4682 static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4683 const struct hda_fixup *fix, int action)
4684 {
4685 struct alc_spec *spec = codec->spec;
4686
4687 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4688 spec->mic_led_coef.idx = 0x19;
4689 spec->mic_led_coef.mask = 1 << 13;
4690 spec->mic_led_coef.on = 1 << 13;
4691 spec->mic_led_coef.off = 0;
4692 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4693 }
4694 }
4695
4696 static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4697 const struct hda_fixup *fix, int action)
4698 {
4699 struct alc_spec *spec = codec->spec;
4700
4701 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4702 spec->micmute_led_polarity = 1;
4703 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4704 }
4705
4706 static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4707 const struct hda_fixup *fix, int action)
4708 {
4709 struct alc_spec *spec = codec->spec;
4710
4711 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4712 spec->mic_led_coef.idx = 0x35;
4713 spec->mic_led_coef.mask = 3 << 2;
4714 spec->mic_led_coef.on = 2 << 2;
4715 spec->mic_led_coef.off = 1 << 2;
4716 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4717 }
4718 }
4719
4720 static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4721 const struct hda_fixup *fix, int action)
4722 {
4723 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4724 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4725 }
4726
4727 static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4728 const struct hda_fixup *fix, int action)
4729 {
4730 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4731 alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4732 }
4733
4734 static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4735 const struct hda_fixup *fix, int action)
4736 {
4737 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4738 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4739 }
4740
4741 static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4742 const struct hda_fixup *fix, int action)
4743 {
4744 struct alc_spec *spec = codec->spec;
4745
4746 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4747 spec->cap_mute_led_nid = 0x1a;
4748 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4749 codec->power_filter = led_power_filter;
4750 }
4751 }
4752
4753 static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4754 const struct hda_fixup *fix, int action)
4755 {
4756 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4757 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4758 }
4759
4760 static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4761 const unsigned short coefs[2])
4762 {
4763 alc_write_coef_idx(codec, 0x23, coefs[0]);
4764 alc_write_coef_idx(codec, 0x25, coefs[1]);
4765 alc_write_coef_idx(codec, 0x26, 0xb011);
4766 }
4767
4768 struct alc298_samsung_amp_desc {
4769 unsigned char nid;
4770 unsigned short init_seq[2][2];
4771 };
4772
4773 static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4774 const struct hda_fixup *fix, int action)
4775 {
4776 int i, j;
4777 static const unsigned short init_seq[][2] = {
4778 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4779 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4780 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4781 { 0x41, 0x07 }, { 0x400, 0x1 }
4782 };
4783 static const struct alc298_samsung_amp_desc amps[] = {
4784 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4785 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4786 };
4787
4788 if (action != HDA_FIXUP_ACT_INIT)
4789 return;
4790
4791 for (i = 0; i < ARRAY_SIZE(amps); i++) {
4792 alc_write_coef_idx(codec, 0x22, amps[i].nid);
4793
4794 for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4795 alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4796
4797 for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4798 alc298_samsung_write_coef_pack(codec, init_seq[j]);
4799 }
4800 }
4801
4802 #if IS_REACHABLE(CONFIG_INPUT)
4803 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4804 struct hda_jack_callback *event)
4805 {
4806 struct alc_spec *spec = codec->spec;
4807
4808 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4809 send both key on and key off event for every interrupt. */
4810 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4811 input_sync(spec->kb_dev);
4812 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4813 input_sync(spec->kb_dev);
4814 }
4815
4816 static int alc_register_micmute_input_device(struct hda_codec *codec)
4817 {
4818 struct alc_spec *spec = codec->spec;
4819 int i;
4820
4821 spec->kb_dev = input_allocate_device();
4822 if (!spec->kb_dev) {
4823 codec_err(codec, "Out of memory (input_allocate_device)\n");
4824 return -ENOMEM;
4825 }
4826
4827 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4828
4829 spec->kb_dev->name = "Microphone Mute Button";
4830 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4831 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4832 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4833 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4834 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4835 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4836
4837 if (input_register_device(spec->kb_dev)) {
4838 codec_err(codec, "input_register_device failed\n");
4839 input_free_device(spec->kb_dev);
4840 spec->kb_dev = NULL;
4841 return -ENOMEM;
4842 }
4843
4844 return 0;
4845 }
4846
4847 /* GPIO1 = set according to SKU external amp
4848 * GPIO2 = mic mute hotkey
4849 * GPIO3 = mute LED
4850 * GPIO4 = mic mute LED
4851 */
4852 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4853 const struct hda_fixup *fix, int action)
4854 {
4855 struct alc_spec *spec = codec->spec;
4856
4857 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4858 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4859 spec->init_amp = ALC_INIT_DEFAULT;
4860 if (alc_register_micmute_input_device(codec) != 0)
4861 return;
4862
4863 spec->gpio_mask |= 0x06;
4864 spec->gpio_dir |= 0x02;
4865 spec->gpio_data |= 0x02;
4866 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4867 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4868 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4869 gpio2_mic_hotkey_event);
4870 return;
4871 }
4872
4873 if (!spec->kb_dev)
4874 return;
4875
4876 switch (action) {
4877 case HDA_FIXUP_ACT_FREE:
4878 input_unregister_device(spec->kb_dev);
4879 spec->kb_dev = NULL;
4880 }
4881 }
4882
4883 /* Line2 = mic mute hotkey
4884 * GPIO2 = mic mute LED
4885 */
4886 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4887 const struct hda_fixup *fix, int action)
4888 {
4889 struct alc_spec *spec = codec->spec;
4890
4891 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4892 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4893 spec->init_amp = ALC_INIT_DEFAULT;
4894 if (alc_register_micmute_input_device(codec) != 0)
4895 return;
4896
4897 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4898 gpio2_mic_hotkey_event);
4899 return;
4900 }
4901
4902 if (!spec->kb_dev)
4903 return;
4904
4905 switch (action) {
4906 case HDA_FIXUP_ACT_FREE:
4907 input_unregister_device(spec->kb_dev);
4908 spec->kb_dev = NULL;
4909 }
4910 }
4911 #else /* INPUT */
4912 #define alc280_fixup_hp_gpio2_mic_hotkey NULL
4913 #define alc233_fixup_lenovo_line2_mic_hotkey NULL
4914 #endif /* INPUT */
4915
4916 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4917 const struct hda_fixup *fix, int action)
4918 {
4919 struct alc_spec *spec = codec->spec;
4920
4921 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4922 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4923 spec->cap_mute_led_nid = 0x18;
4924 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4925 }
4926 }
4927
4928 static const struct coef_fw alc225_pre_hsmode[] = {
4929 UPDATE_COEF(0x4a, 1<<8, 0),
4930 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4931 UPDATE_COEF(0x63, 3<<14, 3<<14),
4932 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4933 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4934 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4935 UPDATE_COEF(0x4a, 3<<10, 0),
4936 {}
4937 };
4938
4939 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4940 {
4941 struct alc_spec *spec = codec->spec;
4942 static const struct coef_fw coef0255[] = {
4943 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4944 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4945 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4946 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4947 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4948 {}
4949 };
4950 static const struct coef_fw coef0256[] = {
4951 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4952 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4953 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4954 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4955 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4956 {}
4957 };
4958 static const struct coef_fw coef0233[] = {
4959 WRITE_COEF(0x1b, 0x0c0b),
4960 WRITE_COEF(0x45, 0xc429),
4961 UPDATE_COEF(0x35, 0x4000, 0),
4962 WRITE_COEF(0x06, 0x2104),
4963 WRITE_COEF(0x1a, 0x0001),
4964 WRITE_COEF(0x26, 0x0004),
4965 WRITE_COEF(0x32, 0x42a3),
4966 {}
4967 };
4968 static const struct coef_fw coef0288[] = {
4969 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4970 UPDATE_COEF(0x50, 0x2000, 0x2000),
4971 UPDATE_COEF(0x56, 0x0006, 0x0006),
4972 UPDATE_COEF(0x66, 0x0008, 0),
4973 UPDATE_COEF(0x67, 0x2000, 0),
4974 {}
4975 };
4976 static const struct coef_fw coef0298[] = {
4977 UPDATE_COEF(0x19, 0x1300, 0x0300),
4978 {}
4979 };
4980 static const struct coef_fw coef0292[] = {
4981 WRITE_COEF(0x76, 0x000e),
4982 WRITE_COEF(0x6c, 0x2400),
4983 WRITE_COEF(0x18, 0x7308),
4984 WRITE_COEF(0x6b, 0xc429),
4985 {}
4986 };
4987 static const struct coef_fw coef0293[] = {
4988 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4989 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4990 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4991 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4992 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4993 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4994 {}
4995 };
4996 static const struct coef_fw coef0668[] = {
4997 WRITE_COEF(0x15, 0x0d40),
4998 WRITE_COEF(0xb7, 0x802b),
4999 {}
5000 };
5001 static const struct coef_fw coef0225[] = {
5002 UPDATE_COEF(0x63, 3<<14, 0),
5003 {}
5004 };
5005 static const struct coef_fw coef0274[] = {
5006 UPDATE_COEF(0x4a, 0x0100, 0),
5007 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5008 UPDATE_COEF(0x6b, 0xf000, 0x5000),
5009 UPDATE_COEF(0x4a, 0x0010, 0),
5010 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5011 WRITE_COEF(0x45, 0x5289),
5012 UPDATE_COEF(0x4a, 0x0c00, 0),
5013 {}
5014 };
5015
5016 if (spec->no_internal_mic_pin) {
5017 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5018 return;
5019 }
5020
5021 switch (codec->core.vendor_id) {
5022 case 0x10ec0255:
5023 alc_process_coef_fw(codec, coef0255);
5024 break;
5025 case 0x10ec0230:
5026 case 0x10ec0236:
5027 case 0x10ec0256:
5028 case 0x19e58326:
5029 alc_process_coef_fw(codec, coef0256);
5030 break;
5031 case 0x10ec0234:
5032 case 0x10ec0274:
5033 case 0x10ec0294:
5034 alc_process_coef_fw(codec, coef0274);
5035 break;
5036 case 0x10ec0233:
5037 case 0x10ec0283:
5038 alc_process_coef_fw(codec, coef0233);
5039 break;
5040 case 0x10ec0286:
5041 case 0x10ec0288:
5042 alc_process_coef_fw(codec, coef0288);
5043 break;
5044 case 0x10ec0298:
5045 alc_process_coef_fw(codec, coef0298);
5046 alc_process_coef_fw(codec, coef0288);
5047 break;
5048 case 0x10ec0292:
5049 alc_process_coef_fw(codec, coef0292);
5050 break;
5051 case 0x10ec0293:
5052 alc_process_coef_fw(codec, coef0293);
5053 break;
5054 case 0x10ec0668:
5055 alc_process_coef_fw(codec, coef0668);
5056 break;
5057 case 0x10ec0215:
5058 case 0x10ec0225:
5059 case 0x10ec0285:
5060 case 0x10ec0295:
5061 case 0x10ec0289:
5062 case 0x10ec0299:
5063 alc_process_coef_fw(codec, alc225_pre_hsmode);
5064 alc_process_coef_fw(codec, coef0225);
5065 break;
5066 case 0x10ec0867:
5067 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5068 break;
5069 }
5070 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
5071 }
5072
5073
5074 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5075 hda_nid_t mic_pin)
5076 {
5077 static const struct coef_fw coef0255[] = {
5078 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5079 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5080 {}
5081 };
5082 static const struct coef_fw coef0256[] = {
5083 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5084 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5085 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5086 {}
5087 };
5088 static const struct coef_fw coef0233[] = {
5089 UPDATE_COEF(0x35, 0, 1<<14),
5090 WRITE_COEF(0x06, 0x2100),
5091 WRITE_COEF(0x1a, 0x0021),
5092 WRITE_COEF(0x26, 0x008c),
5093 {}
5094 };
5095 static const struct coef_fw coef0288[] = {
5096 UPDATE_COEF(0x4f, 0x00c0, 0),
5097 UPDATE_COEF(0x50, 0x2000, 0),
5098 UPDATE_COEF(0x56, 0x0006, 0),
5099 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5100 UPDATE_COEF(0x66, 0x0008, 0x0008),
5101 UPDATE_COEF(0x67, 0x2000, 0x2000),
5102 {}
5103 };
5104 static const struct coef_fw coef0292[] = {
5105 WRITE_COEF(0x19, 0xa208),
5106 WRITE_COEF(0x2e, 0xacf0),
5107 {}
5108 };
5109 static const struct coef_fw coef0293[] = {
5110 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5111 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5112 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5113 {}
5114 };
5115 static const struct coef_fw coef0688[] = {
5116 WRITE_COEF(0xb7, 0x802b),
5117 WRITE_COEF(0xb5, 0x1040),
5118 UPDATE_COEF(0xc3, 0, 1<<12),
5119 {}
5120 };
5121 static const struct coef_fw coef0225[] = {
5122 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5123 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5124 UPDATE_COEF(0x63, 3<<14, 0),
5125 {}
5126 };
5127 static const struct coef_fw coef0274[] = {
5128 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5129 UPDATE_COEF(0x4a, 0x0010, 0),
5130 UPDATE_COEF(0x6b, 0xf000, 0),
5131 {}
5132 };
5133
5134 switch (codec->core.vendor_id) {
5135 case 0x10ec0255:
5136 alc_write_coef_idx(codec, 0x45, 0xc489);
5137 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5138 alc_process_coef_fw(codec, coef0255);
5139 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5140 break;
5141 case 0x10ec0230:
5142 case 0x10ec0236:
5143 case 0x10ec0256:
5144 case 0x19e58326:
5145 alc_write_coef_idx(codec, 0x45, 0xc489);
5146 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5147 alc_process_coef_fw(codec, coef0256);
5148 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5149 break;
5150 case 0x10ec0234:
5151 case 0x10ec0274:
5152 case 0x10ec0294:
5153 alc_write_coef_idx(codec, 0x45, 0x4689);
5154 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5155 alc_process_coef_fw(codec, coef0274);
5156 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5157 break;
5158 case 0x10ec0233:
5159 case 0x10ec0283:
5160 alc_write_coef_idx(codec, 0x45, 0xc429);
5161 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5162 alc_process_coef_fw(codec, coef0233);
5163 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5164 break;
5165 case 0x10ec0286:
5166 case 0x10ec0288:
5167 case 0x10ec0298:
5168 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5169 alc_process_coef_fw(codec, coef0288);
5170 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5171 break;
5172 case 0x10ec0292:
5173 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5174 alc_process_coef_fw(codec, coef0292);
5175 break;
5176 case 0x10ec0293:
5177 /* Set to TRS mode */
5178 alc_write_coef_idx(codec, 0x45, 0xc429);
5179 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5180 alc_process_coef_fw(codec, coef0293);
5181 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5182 break;
5183 case 0x10ec0867:
5184 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
5185 fallthrough;
5186 case 0x10ec0221:
5187 case 0x10ec0662:
5188 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5189 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5190 break;
5191 case 0x10ec0668:
5192 alc_write_coef_idx(codec, 0x11, 0x0001);
5193 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5194 alc_process_coef_fw(codec, coef0688);
5195 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5196 break;
5197 case 0x10ec0215:
5198 case 0x10ec0225:
5199 case 0x10ec0285:
5200 case 0x10ec0295:
5201 case 0x10ec0289:
5202 case 0x10ec0299:
5203 alc_process_coef_fw(codec, alc225_pre_hsmode);
5204 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5205 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5206 alc_process_coef_fw(codec, coef0225);
5207 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5208 break;
5209 }
5210 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
5211 }
5212
5213 static void alc_headset_mode_default(struct hda_codec *codec)
5214 {
5215 static const struct coef_fw coef0225[] = {
5216 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5217 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5218 UPDATE_COEF(0x49, 3<<8, 0<<8),
5219 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5220 UPDATE_COEF(0x63, 3<<14, 0),
5221 UPDATE_COEF(0x67, 0xf000, 0x3000),
5222 {}
5223 };
5224 static const struct coef_fw coef0255[] = {
5225 WRITE_COEF(0x45, 0xc089),
5226 WRITE_COEF(0x45, 0xc489),
5227 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5228 WRITE_COEF(0x49, 0x0049),
5229 {}
5230 };
5231 static const struct coef_fw coef0256[] = {
5232 WRITE_COEF(0x45, 0xc489),
5233 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5234 WRITE_COEF(0x49, 0x0049),
5235 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5236 WRITE_COEF(0x06, 0x6100),
5237 {}
5238 };
5239 static const struct coef_fw coef0233[] = {
5240 WRITE_COEF(0x06, 0x2100),
5241 WRITE_COEF(0x32, 0x4ea3),
5242 {}
5243 };
5244 static const struct coef_fw coef0288[] = {
5245 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5246 UPDATE_COEF(0x50, 0x2000, 0x2000),
5247 UPDATE_COEF(0x56, 0x0006, 0x0006),
5248 UPDATE_COEF(0x66, 0x0008, 0),
5249 UPDATE_COEF(0x67, 0x2000, 0),
5250 {}
5251 };
5252 static const struct coef_fw coef0292[] = {
5253 WRITE_COEF(0x76, 0x000e),
5254 WRITE_COEF(0x6c, 0x2400),
5255 WRITE_COEF(0x6b, 0xc429),
5256 WRITE_COEF(0x18, 0x7308),
5257 {}
5258 };
5259 static const struct coef_fw coef0293[] = {
5260 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5261 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5262 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5263 {}
5264 };
5265 static const struct coef_fw coef0688[] = {
5266 WRITE_COEF(0x11, 0x0041),
5267 WRITE_COEF(0x15, 0x0d40),
5268 WRITE_COEF(0xb7, 0x802b),
5269 {}
5270 };
5271 static const struct coef_fw coef0274[] = {
5272 WRITE_COEF(0x45, 0x4289),
5273 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5274 UPDATE_COEF(0x6b, 0x0f00, 0),
5275 UPDATE_COEF(0x49, 0x0300, 0x0300),
5276 {}
5277 };
5278
5279 switch (codec->core.vendor_id) {
5280 case 0x10ec0215:
5281 case 0x10ec0225:
5282 case 0x10ec0285:
5283 case 0x10ec0295:
5284 case 0x10ec0289:
5285 case 0x10ec0299:
5286 alc_process_coef_fw(codec, alc225_pre_hsmode);
5287 alc_process_coef_fw(codec, coef0225);
5288 break;
5289 case 0x10ec0255:
5290 alc_process_coef_fw(codec, coef0255);
5291 break;
5292 case 0x10ec0230:
5293 case 0x10ec0236:
5294 case 0x10ec0256:
5295 case 0x19e58326:
5296 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5297 alc_write_coef_idx(codec, 0x45, 0xc089);
5298 msleep(50);
5299 alc_process_coef_fw(codec, coef0256);
5300 break;
5301 case 0x10ec0234:
5302 case 0x10ec0274:
5303 case 0x10ec0294:
5304 alc_process_coef_fw(codec, coef0274);
5305 break;
5306 case 0x10ec0233:
5307 case 0x10ec0283:
5308 alc_process_coef_fw(codec, coef0233);
5309 break;
5310 case 0x10ec0286:
5311 case 0x10ec0288:
5312 case 0x10ec0298:
5313 alc_process_coef_fw(codec, coef0288);
5314 break;
5315 case 0x10ec0292:
5316 alc_process_coef_fw(codec, coef0292);
5317 break;
5318 case 0x10ec0293:
5319 alc_process_coef_fw(codec, coef0293);
5320 break;
5321 case 0x10ec0668:
5322 alc_process_coef_fw(codec, coef0688);
5323 break;
5324 case 0x10ec0867:
5325 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5326 break;
5327 }
5328 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
5329 }
5330
5331 /* Iphone type */
5332 static void alc_headset_mode_ctia(struct hda_codec *codec)
5333 {
5334 int val;
5335
5336 static const struct coef_fw coef0255[] = {
5337 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5338 WRITE_COEF(0x1b, 0x0c2b),
5339 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5340 {}
5341 };
5342 static const struct coef_fw coef0256[] = {
5343 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5344 WRITE_COEF(0x1b, 0x0e6b),
5345 {}
5346 };
5347 static const struct coef_fw coef0233[] = {
5348 WRITE_COEF(0x45, 0xd429),
5349 WRITE_COEF(0x1b, 0x0c2b),
5350 WRITE_COEF(0x32, 0x4ea3),
5351 {}
5352 };
5353 static const struct coef_fw coef0288[] = {
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 {}
5359 };
5360 static const struct coef_fw coef0292[] = {
5361 WRITE_COEF(0x6b, 0xd429),
5362 WRITE_COEF(0x76, 0x0008),
5363 WRITE_COEF(0x18, 0x7388),
5364 {}
5365 };
5366 static const struct coef_fw coef0293[] = {
5367 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5368 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5369 {}
5370 };
5371 static const struct coef_fw coef0688[] = {
5372 WRITE_COEF(0x11, 0x0001),
5373 WRITE_COEF(0x15, 0x0d60),
5374 WRITE_COEF(0xc3, 0x0000),
5375 {}
5376 };
5377 static const struct coef_fw coef0225_1[] = {
5378 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5379 UPDATE_COEF(0x63, 3<<14, 2<<14),
5380 {}
5381 };
5382 static const struct coef_fw coef0225_2[] = {
5383 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5384 UPDATE_COEF(0x63, 3<<14, 1<<14),
5385 {}
5386 };
5387
5388 switch (codec->core.vendor_id) {
5389 case 0x10ec0255:
5390 alc_process_coef_fw(codec, coef0255);
5391 break;
5392 case 0x10ec0230:
5393 case 0x10ec0236:
5394 case 0x10ec0256:
5395 case 0x19e58326:
5396 alc_process_coef_fw(codec, coef0256);
5397 break;
5398 case 0x10ec0234:
5399 case 0x10ec0274:
5400 case 0x10ec0294:
5401 alc_write_coef_idx(codec, 0x45, 0xd689);
5402 break;
5403 case 0x10ec0233:
5404 case 0x10ec0283:
5405 alc_process_coef_fw(codec, coef0233);
5406 break;
5407 case 0x10ec0298:
5408 val = alc_read_coef_idx(codec, 0x50);
5409 if (val & (1 << 12)) {
5410 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5411 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5412 msleep(300);
5413 } else {
5414 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5415 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5416 msleep(300);
5417 }
5418 break;
5419 case 0x10ec0286:
5420 case 0x10ec0288:
5421 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5422 msleep(300);
5423 alc_process_coef_fw(codec, coef0288);
5424 break;
5425 case 0x10ec0292:
5426 alc_process_coef_fw(codec, coef0292);
5427 break;
5428 case 0x10ec0293:
5429 alc_process_coef_fw(codec, coef0293);
5430 break;
5431 case 0x10ec0668:
5432 alc_process_coef_fw(codec, coef0688);
5433 break;
5434 case 0x10ec0215:
5435 case 0x10ec0225:
5436 case 0x10ec0285:
5437 case 0x10ec0295:
5438 case 0x10ec0289:
5439 case 0x10ec0299:
5440 val = alc_read_coef_idx(codec, 0x45);
5441 if (val & (1 << 9))
5442 alc_process_coef_fw(codec, coef0225_2);
5443 else
5444 alc_process_coef_fw(codec, coef0225_1);
5445 break;
5446 case 0x10ec0867:
5447 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5448 break;
5449 }
5450 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
5451 }
5452
5453 /* Nokia type */
5454 static void alc_headset_mode_omtp(struct hda_codec *codec)
5455 {
5456 static const struct coef_fw coef0255[] = {
5457 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5458 WRITE_COEF(0x1b, 0x0c2b),
5459 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5460 {}
5461 };
5462 static const struct coef_fw coef0256[] = {
5463 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5464 WRITE_COEF(0x1b, 0x0e6b),
5465 {}
5466 };
5467 static const struct coef_fw coef0233[] = {
5468 WRITE_COEF(0x45, 0xe429),
5469 WRITE_COEF(0x1b, 0x0c2b),
5470 WRITE_COEF(0x32, 0x4ea3),
5471 {}
5472 };
5473 static const struct coef_fw coef0288[] = {
5474 UPDATE_COEF(0x50, 0x2000, 0x2000),
5475 UPDATE_COEF(0x56, 0x0006, 0x0006),
5476 UPDATE_COEF(0x66, 0x0008, 0),
5477 UPDATE_COEF(0x67, 0x2000, 0),
5478 {}
5479 };
5480 static const struct coef_fw coef0292[] = {
5481 WRITE_COEF(0x6b, 0xe429),
5482 WRITE_COEF(0x76, 0x0008),
5483 WRITE_COEF(0x18, 0x7388),
5484 {}
5485 };
5486 static const struct coef_fw coef0293[] = {
5487 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5488 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5489 {}
5490 };
5491 static const struct coef_fw coef0688[] = {
5492 WRITE_COEF(0x11, 0x0001),
5493 WRITE_COEF(0x15, 0x0d50),
5494 WRITE_COEF(0xc3, 0x0000),
5495 {}
5496 };
5497 static const struct coef_fw coef0225[] = {
5498 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5499 UPDATE_COEF(0x63, 3<<14, 2<<14),
5500 {}
5501 };
5502
5503 switch (codec->core.vendor_id) {
5504 case 0x10ec0255:
5505 alc_process_coef_fw(codec, coef0255);
5506 break;
5507 case 0x10ec0230:
5508 case 0x10ec0236:
5509 case 0x10ec0256:
5510 case 0x19e58326:
5511 alc_process_coef_fw(codec, coef0256);
5512 break;
5513 case 0x10ec0234:
5514 case 0x10ec0274:
5515 case 0x10ec0294:
5516 alc_write_coef_idx(codec, 0x45, 0xe689);
5517 break;
5518 case 0x10ec0233:
5519 case 0x10ec0283:
5520 alc_process_coef_fw(codec, coef0233);
5521 break;
5522 case 0x10ec0298:
5523 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5524 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5525 msleep(300);
5526 break;
5527 case 0x10ec0286:
5528 case 0x10ec0288:
5529 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5530 msleep(300);
5531 alc_process_coef_fw(codec, coef0288);
5532 break;
5533 case 0x10ec0292:
5534 alc_process_coef_fw(codec, coef0292);
5535 break;
5536 case 0x10ec0293:
5537 alc_process_coef_fw(codec, coef0293);
5538 break;
5539 case 0x10ec0668:
5540 alc_process_coef_fw(codec, coef0688);
5541 break;
5542 case 0x10ec0215:
5543 case 0x10ec0225:
5544 case 0x10ec0285:
5545 case 0x10ec0295:
5546 case 0x10ec0289:
5547 case 0x10ec0299:
5548 alc_process_coef_fw(codec, coef0225);
5549 break;
5550 }
5551 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
5552 }
5553
5554 static void alc_determine_headset_type(struct hda_codec *codec)
5555 {
5556 int val;
5557 bool is_ctia = false;
5558 struct alc_spec *spec = codec->spec;
5559 static const struct coef_fw coef0255[] = {
5560 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5561 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5562 conteol) */
5563 {}
5564 };
5565 static const struct coef_fw coef0288[] = {
5566 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5567 {}
5568 };
5569 static const struct coef_fw coef0298[] = {
5570 UPDATE_COEF(0x50, 0x2000, 0x2000),
5571 UPDATE_COEF(0x56, 0x0006, 0x0006),
5572 UPDATE_COEF(0x66, 0x0008, 0),
5573 UPDATE_COEF(0x67, 0x2000, 0),
5574 UPDATE_COEF(0x19, 0x1300, 0x1300),
5575 {}
5576 };
5577 static const struct coef_fw coef0293[] = {
5578 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5579 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5580 {}
5581 };
5582 static const struct coef_fw coef0688[] = {
5583 WRITE_COEF(0x11, 0x0001),
5584 WRITE_COEF(0xb7, 0x802b),
5585 WRITE_COEF(0x15, 0x0d60),
5586 WRITE_COEF(0xc3, 0x0c00),
5587 {}
5588 };
5589 static const struct coef_fw coef0274[] = {
5590 UPDATE_COEF(0x4a, 0x0010, 0),
5591 UPDATE_COEF(0x4a, 0x8000, 0),
5592 WRITE_COEF(0x45, 0xd289),
5593 UPDATE_COEF(0x49, 0x0300, 0x0300),
5594 {}
5595 };
5596
5597 if (spec->no_internal_mic_pin) {
5598 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5599 return;
5600 }
5601
5602 switch (codec->core.vendor_id) {
5603 case 0x10ec0255:
5604 alc_process_coef_fw(codec, coef0255);
5605 msleep(300);
5606 val = alc_read_coef_idx(codec, 0x46);
5607 is_ctia = (val & 0x0070) == 0x0070;
5608 break;
5609 case 0x10ec0230:
5610 case 0x10ec0236:
5611 case 0x10ec0256:
5612 case 0x19e58326:
5613 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5614 alc_write_coef_idx(codec, 0x06, 0x6104);
5615 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5616
5617 snd_hda_codec_write(codec, 0x21, 0,
5618 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5619 msleep(80);
5620 snd_hda_codec_write(codec, 0x21, 0,
5621 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5622
5623 alc_process_coef_fw(codec, coef0255);
5624 msleep(300);
5625 val = alc_read_coef_idx(codec, 0x46);
5626 is_ctia = (val & 0x0070) == 0x0070;
5627
5628 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5629 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5630
5631 snd_hda_codec_write(codec, 0x21, 0,
5632 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5633 msleep(80);
5634 snd_hda_codec_write(codec, 0x21, 0,
5635 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5636 break;
5637 case 0x10ec0234:
5638 case 0x10ec0274:
5639 case 0x10ec0294:
5640 alc_process_coef_fw(codec, coef0274);
5641 msleep(850);
5642 val = alc_read_coef_idx(codec, 0x46);
5643 is_ctia = (val & 0x00f0) == 0x00f0;
5644 break;
5645 case 0x10ec0233:
5646 case 0x10ec0283:
5647 alc_write_coef_idx(codec, 0x45, 0xd029);
5648 msleep(300);
5649 val = alc_read_coef_idx(codec, 0x46);
5650 is_ctia = (val & 0x0070) == 0x0070;
5651 break;
5652 case 0x10ec0298:
5653 snd_hda_codec_write(codec, 0x21, 0,
5654 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5655 msleep(100);
5656 snd_hda_codec_write(codec, 0x21, 0,
5657 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5658 msleep(200);
5659
5660 val = alc_read_coef_idx(codec, 0x50);
5661 if (val & (1 << 12)) {
5662 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5663 alc_process_coef_fw(codec, coef0288);
5664 msleep(350);
5665 val = alc_read_coef_idx(codec, 0x50);
5666 is_ctia = (val & 0x0070) == 0x0070;
5667 } else {
5668 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5669 alc_process_coef_fw(codec, coef0288);
5670 msleep(350);
5671 val = alc_read_coef_idx(codec, 0x50);
5672 is_ctia = (val & 0x0070) == 0x0070;
5673 }
5674 alc_process_coef_fw(codec, coef0298);
5675 snd_hda_codec_write(codec, 0x21, 0,
5676 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5677 msleep(75);
5678 snd_hda_codec_write(codec, 0x21, 0,
5679 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5680 break;
5681 case 0x10ec0286:
5682 case 0x10ec0288:
5683 alc_process_coef_fw(codec, coef0288);
5684 msleep(350);
5685 val = alc_read_coef_idx(codec, 0x50);
5686 is_ctia = (val & 0x0070) == 0x0070;
5687 break;
5688 case 0x10ec0292:
5689 alc_write_coef_idx(codec, 0x6b, 0xd429);
5690 msleep(300);
5691 val = alc_read_coef_idx(codec, 0x6c);
5692 is_ctia = (val & 0x001c) == 0x001c;
5693 break;
5694 case 0x10ec0293:
5695 alc_process_coef_fw(codec, coef0293);
5696 msleep(300);
5697 val = alc_read_coef_idx(codec, 0x46);
5698 is_ctia = (val & 0x0070) == 0x0070;
5699 break;
5700 case 0x10ec0668:
5701 alc_process_coef_fw(codec, coef0688);
5702 msleep(300);
5703 val = alc_read_coef_idx(codec, 0xbe);
5704 is_ctia = (val & 0x1c02) == 0x1c02;
5705 break;
5706 case 0x10ec0215:
5707 case 0x10ec0225:
5708 case 0x10ec0285:
5709 case 0x10ec0295:
5710 case 0x10ec0289:
5711 case 0x10ec0299:
5712 snd_hda_codec_write(codec, 0x21, 0,
5713 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5714 msleep(80);
5715 snd_hda_codec_write(codec, 0x21, 0,
5716 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5717
5718 alc_process_coef_fw(codec, alc225_pre_hsmode);
5719 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5720 val = alc_read_coef_idx(codec, 0x45);
5721 if (val & (1 << 9)) {
5722 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5723 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5724 msleep(800);
5725 val = alc_read_coef_idx(codec, 0x46);
5726 is_ctia = (val & 0x00f0) == 0x00f0;
5727 } else {
5728 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5729 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5730 msleep(800);
5731 val = alc_read_coef_idx(codec, 0x46);
5732 is_ctia = (val & 0x00f0) == 0x00f0;
5733 }
5734 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5735 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5736 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
5737
5738 snd_hda_codec_write(codec, 0x21, 0,
5739 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5740 msleep(80);
5741 snd_hda_codec_write(codec, 0x21, 0,
5742 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5743 break;
5744 case 0x10ec0867:
5745 is_ctia = true;
5746 break;
5747 }
5748
5749 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
5750 is_ctia ? "yes" : "no");
5751 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5752 }
5753
5754 static void alc_update_headset_mode(struct hda_codec *codec)
5755 {
5756 struct alc_spec *spec = codec->spec;
5757
5758 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
5759 hda_nid_t hp_pin = alc_get_hp_pin(spec);
5760
5761 int new_headset_mode;
5762
5763 if (!snd_hda_jack_detect(codec, hp_pin))
5764 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5765 else if (mux_pin == spec->headset_mic_pin)
5766 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5767 else if (mux_pin == spec->headphone_mic_pin)
5768 new_headset_mode = ALC_HEADSET_MODE_MIC;
5769 else
5770 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5771
5772 if (new_headset_mode == spec->current_headset_mode) {
5773 snd_hda_gen_update_outputs(codec);
5774 return;
5775 }
5776
5777 switch (new_headset_mode) {
5778 case ALC_HEADSET_MODE_UNPLUGGED:
5779 alc_headset_mode_unplugged(codec);
5780 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5781 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5782 spec->gen.hp_jack_present = false;
5783 break;
5784 case ALC_HEADSET_MODE_HEADSET:
5785 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5786 alc_determine_headset_type(codec);
5787 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5788 alc_headset_mode_ctia(codec);
5789 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5790 alc_headset_mode_omtp(codec);
5791 spec->gen.hp_jack_present = true;
5792 break;
5793 case ALC_HEADSET_MODE_MIC:
5794 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5795 spec->gen.hp_jack_present = false;
5796 break;
5797 case ALC_HEADSET_MODE_HEADPHONE:
5798 alc_headset_mode_default(codec);
5799 spec->gen.hp_jack_present = true;
5800 break;
5801 }
5802 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5803 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5804 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5805 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5806 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5807 PIN_VREFHIZ);
5808 }
5809 spec->current_headset_mode = new_headset_mode;
5810
5811 snd_hda_gen_update_outputs(codec);
5812 }
5813
5814 static void alc_update_headset_mode_hook(struct hda_codec *codec,
5815 struct snd_kcontrol *kcontrol,
5816 struct snd_ctl_elem_value *ucontrol)
5817 {
5818 alc_update_headset_mode(codec);
5819 }
5820
5821 static void alc_update_headset_jack_cb(struct hda_codec *codec,
5822 struct hda_jack_callback *jack)
5823 {
5824 snd_hda_gen_hp_automute(codec, jack);
5825 alc_update_headset_mode(codec);
5826 }
5827
5828 static void alc_probe_headset_mode(struct hda_codec *codec)
5829 {
5830 int i;
5831 struct alc_spec *spec = codec->spec;
5832 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5833
5834 /* Find mic pins */
5835 for (i = 0; i < cfg->num_inputs; i++) {
5836 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5837 spec->headset_mic_pin = cfg->inputs[i].pin;
5838 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5839 spec->headphone_mic_pin = cfg->inputs[i].pin;
5840 }
5841
5842 WARN_ON(spec->gen.cap_sync_hook);
5843 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5844 spec->gen.automute_hook = alc_update_headset_mode;
5845 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5846 }
5847
5848 static void alc_fixup_headset_mode(struct hda_codec *codec,
5849 const struct hda_fixup *fix, int action)
5850 {
5851 struct alc_spec *spec = codec->spec;
5852
5853 switch (action) {
5854 case HDA_FIXUP_ACT_PRE_PROBE:
5855 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5856 break;
5857 case HDA_FIXUP_ACT_PROBE:
5858 alc_probe_headset_mode(codec);
5859 break;
5860 case HDA_FIXUP_ACT_INIT:
5861 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5862 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5863 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5864 }
5865 alc_update_headset_mode(codec);
5866 break;
5867 }
5868 }
5869
5870 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5871 const struct hda_fixup *fix, int action)
5872 {
5873 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5874 struct alc_spec *spec = codec->spec;
5875 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5876 }
5877 else
5878 alc_fixup_headset_mode(codec, fix, action);
5879 }
5880
5881 static void alc255_set_default_jack_type(struct hda_codec *codec)
5882 {
5883 /* Set to iphone type */
5884 static const struct coef_fw alc255fw[] = {
5885 WRITE_COEF(0x1b, 0x880b),
5886 WRITE_COEF(0x45, 0xd089),
5887 WRITE_COEF(0x1b, 0x080b),
5888 WRITE_COEF(0x46, 0x0004),
5889 WRITE_COEF(0x1b, 0x0c0b),
5890 {}
5891 };
5892 static const struct coef_fw alc256fw[] = {
5893 WRITE_COEF(0x1b, 0x884b),
5894 WRITE_COEF(0x45, 0xd089),
5895 WRITE_COEF(0x1b, 0x084b),
5896 WRITE_COEF(0x46, 0x0004),
5897 WRITE_COEF(0x1b, 0x0c4b),
5898 {}
5899 };
5900 switch (codec->core.vendor_id) {
5901 case 0x10ec0255:
5902 alc_process_coef_fw(codec, alc255fw);
5903 break;
5904 case 0x10ec0230:
5905 case 0x10ec0236:
5906 case 0x10ec0256:
5907 case 0x19e58326:
5908 alc_process_coef_fw(codec, alc256fw);
5909 break;
5910 }
5911 msleep(30);
5912 }
5913
5914 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5915 const struct hda_fixup *fix, int action)
5916 {
5917 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5918 alc255_set_default_jack_type(codec);
5919 }
5920 alc_fixup_headset_mode(codec, fix, action);
5921 }
5922
5923 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5924 const struct hda_fixup *fix, int action)
5925 {
5926 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5927 struct alc_spec *spec = codec->spec;
5928 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5929 alc255_set_default_jack_type(codec);
5930 }
5931 else
5932 alc_fixup_headset_mode(codec, fix, action);
5933 }
5934
5935 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5936 struct hda_jack_callback *jack)
5937 {
5938 struct alc_spec *spec = codec->spec;
5939
5940 alc_update_headset_jack_cb(codec, jack);
5941 /* Headset Mic enable or disable, only for Dell Dino */
5942 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5943 }
5944
5945 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5946 const struct hda_fixup *fix, int action)
5947 {
5948 alc_fixup_headset_mode(codec, fix, action);
5949 if (action == HDA_FIXUP_ACT_PROBE) {
5950 struct alc_spec *spec = codec->spec;
5951 /* toggled via hp_automute_hook */
5952 spec->gpio_mask |= 0x40;
5953 spec->gpio_dir |= 0x40;
5954 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5955 }
5956 }
5957
5958 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5959 const struct hda_fixup *fix, int action)
5960 {
5961 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5962 struct alc_spec *spec = codec->spec;
5963 spec->gen.auto_mute_via_amp = 1;
5964 }
5965 }
5966
5967 static void alc_fixup_no_shutup(struct hda_codec *codec,
5968 const struct hda_fixup *fix, int action)
5969 {
5970 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5971 struct alc_spec *spec = codec->spec;
5972 spec->no_shutup_pins = 1;
5973 }
5974 }
5975
5976 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5977 const struct hda_fixup *fix, int action)
5978 {
5979 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5980 struct alc_spec *spec = codec->spec;
5981 /* Disable AA-loopback as it causes white noise */
5982 spec->gen.mixer_nid = 0;
5983 }
5984 }
5985
5986 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5987 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5988 const struct hda_fixup *fix, int action)
5989 {
5990 static const struct hda_pintbl pincfgs[] = {
5991 { 0x16, 0x21211010 }, /* dock headphone */
5992 { 0x19, 0x21a11010 }, /* dock mic */
5993 { }
5994 };
5995 struct alc_spec *spec = codec->spec;
5996
5997 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5998 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5999 codec->power_save_node = 0; /* avoid click noises */
6000 snd_hda_apply_pincfgs(codec, pincfgs);
6001 }
6002 }
6003
6004 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
6005 const struct hda_fixup *fix, int action)
6006 {
6007 static const struct hda_pintbl pincfgs[] = {
6008 { 0x17, 0x21211010 }, /* dock headphone */
6009 { 0x19, 0x21a11010 }, /* dock mic */
6010 { }
6011 };
6012 struct alc_spec *spec = codec->spec;
6013
6014 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6015 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6016 snd_hda_apply_pincfgs(codec, pincfgs);
6017 } else if (action == HDA_FIXUP_ACT_INIT) {
6018 /* Enable DOCK device */
6019 snd_hda_codec_write(codec, 0x17, 0,
6020 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6021 /* Enable DOCK device */
6022 snd_hda_codec_write(codec, 0x19, 0,
6023 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6024 }
6025 }
6026
6027 static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6028 const struct hda_fixup *fix, int action)
6029 {
6030 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6031 * the speaker output becomes too low by some reason on Thinkpads with
6032 * ALC298 codec
6033 */
6034 static const hda_nid_t preferred_pairs[] = {
6035 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6036 0
6037 };
6038 struct alc_spec *spec = codec->spec;
6039
6040 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6041 spec->gen.preferred_dacs = preferred_pairs;
6042 }
6043
6044 static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6045 const struct hda_fixup *fix, int action)
6046 {
6047 static const hda_nid_t preferred_pairs[] = {
6048 0x17, 0x02, 0x21, 0x03, 0
6049 };
6050 struct alc_spec *spec = codec->spec;
6051
6052 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6053 spec->gen.preferred_dacs = preferred_pairs;
6054 }
6055
6056 static void alc_shutup_dell_xps13(struct hda_codec *codec)
6057 {
6058 struct alc_spec *spec = codec->spec;
6059 int hp_pin = alc_get_hp_pin(spec);
6060
6061 /* Prevent pop noises when headphones are plugged in */
6062 snd_hda_codec_write(codec, hp_pin, 0,
6063 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6064 msleep(20);
6065 }
6066
6067 static void alc_fixup_dell_xps13(struct hda_codec *codec,
6068 const struct hda_fixup *fix, int action)
6069 {
6070 struct alc_spec *spec = codec->spec;
6071 struct hda_input_mux *imux = &spec->gen.input_mux;
6072 int i;
6073
6074 switch (action) {
6075 case HDA_FIXUP_ACT_PRE_PROBE:
6076 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6077 * it causes a click noise at start up
6078 */
6079 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6080 spec->shutup = alc_shutup_dell_xps13;
6081 break;
6082 case HDA_FIXUP_ACT_PROBE:
6083 /* Make the internal mic the default input source. */
6084 for (i = 0; i < imux->num_items; i++) {
6085 if (spec->gen.imux_pins[i] == 0x12) {
6086 spec->gen.cur_mux[0] = i;
6087 break;
6088 }
6089 }
6090 break;
6091 }
6092 }
6093
6094 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6095 const struct hda_fixup *fix, int action)
6096 {
6097 struct alc_spec *spec = codec->spec;
6098
6099 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6100 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6101 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
6102
6103 /* Disable boost for mic-in permanently. (This code is only called
6104 from quirks that guarantee that the headphone is at NID 0x1b.) */
6105 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6106 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
6107 } else
6108 alc_fixup_headset_mode(codec, fix, action);
6109 }
6110
6111 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6112 const struct hda_fixup *fix, int action)
6113 {
6114 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6115 alc_write_coef_idx(codec, 0xc4, 0x8000);
6116 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
6117 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6118 }
6119 alc_fixup_headset_mode(codec, fix, action);
6120 }
6121
6122 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6123 static int find_ext_mic_pin(struct hda_codec *codec)
6124 {
6125 struct alc_spec *spec = codec->spec;
6126 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6127 hda_nid_t nid;
6128 unsigned int defcfg;
6129 int i;
6130
6131 for (i = 0; i < cfg->num_inputs; i++) {
6132 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6133 continue;
6134 nid = cfg->inputs[i].pin;
6135 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6136 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6137 continue;
6138 return nid;
6139 }
6140
6141 return 0;
6142 }
6143
6144 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6145 const struct hda_fixup *fix,
6146 int action)
6147 {
6148 struct alc_spec *spec = codec->spec;
6149
6150 if (action == HDA_FIXUP_ACT_PROBE) {
6151 int mic_pin = find_ext_mic_pin(codec);
6152 int hp_pin = alc_get_hp_pin(spec);
6153
6154 if (snd_BUG_ON(!mic_pin || !hp_pin))
6155 return;
6156 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
6157 }
6158 }
6159
6160 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6161 const struct hda_fixup *fix,
6162 int action)
6163 {
6164 struct alc_spec *spec = codec->spec;
6165 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6166 int i;
6167
6168 /* The mic boosts on level 2 and 3 are too noisy
6169 on the internal mic input.
6170 Therefore limit the boost to 0 or 1. */
6171
6172 if (action != HDA_FIXUP_ACT_PROBE)
6173 return;
6174
6175 for (i = 0; i < cfg->num_inputs; i++) {
6176 hda_nid_t nid = cfg->inputs[i].pin;
6177 unsigned int defcfg;
6178 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6179 continue;
6180 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6181 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6182 continue;
6183
6184 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6185 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6186 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6187 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6188 (0 << AC_AMPCAP_MUTE_SHIFT));
6189 }
6190 }
6191
6192 static void alc283_hp_automute_hook(struct hda_codec *codec,
6193 struct hda_jack_callback *jack)
6194 {
6195 struct alc_spec *spec = codec->spec;
6196 int vref;
6197
6198 msleep(200);
6199 snd_hda_gen_hp_automute(codec, jack);
6200
6201 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6202
6203 msleep(600);
6204 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6205 vref);
6206 }
6207
6208 static void alc283_fixup_chromebook(struct hda_codec *codec,
6209 const struct hda_fixup *fix, int action)
6210 {
6211 struct alc_spec *spec = codec->spec;
6212
6213 switch (action) {
6214 case HDA_FIXUP_ACT_PRE_PROBE:
6215 snd_hda_override_wcaps(codec, 0x03, 0);
6216 /* Disable AA-loopback as it causes white noise */
6217 spec->gen.mixer_nid = 0;
6218 break;
6219 case HDA_FIXUP_ACT_INIT:
6220 /* MIC2-VREF control */
6221 /* Set to manual mode */
6222 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6223 /* Enable Line1 input control by verb */
6224 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
6225 break;
6226 }
6227 }
6228
6229 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6230 const struct hda_fixup *fix, int action)
6231 {
6232 struct alc_spec *spec = codec->spec;
6233
6234 switch (action) {
6235 case HDA_FIXUP_ACT_PRE_PROBE:
6236 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
6237 break;
6238 case HDA_FIXUP_ACT_INIT:
6239 /* MIC2-VREF control */
6240 /* Set to manual mode */
6241 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6242 break;
6243 }
6244 }
6245
6246 /* mute tablet speaker pin (0x14) via dock plugging in addition */
6247 static void asus_tx300_automute(struct hda_codec *codec)
6248 {
6249 struct alc_spec *spec = codec->spec;
6250 snd_hda_gen_update_outputs(codec);
6251 if (snd_hda_jack_detect(codec, 0x1b))
6252 spec->gen.mute_bits |= (1ULL << 0x14);
6253 }
6254
6255 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6256 const struct hda_fixup *fix, int action)
6257 {
6258 struct alc_spec *spec = codec->spec;
6259 static const struct hda_pintbl dock_pins[] = {
6260 { 0x1b, 0x21114000 }, /* dock speaker pin */
6261 {}
6262 };
6263
6264 switch (action) {
6265 case HDA_FIXUP_ACT_PRE_PROBE:
6266 spec->init_amp = ALC_INIT_DEFAULT;
6267 /* TX300 needs to set up GPIO2 for the speaker amp */
6268 alc_setup_gpio(codec, 0x04);
6269 snd_hda_apply_pincfgs(codec, dock_pins);
6270 spec->gen.auto_mute_via_amp = 1;
6271 spec->gen.automute_hook = asus_tx300_automute;
6272 snd_hda_jack_detect_enable_callback(codec, 0x1b,
6273 snd_hda_gen_hp_automute);
6274 break;
6275 case HDA_FIXUP_ACT_PROBE:
6276 spec->init_amp = ALC_INIT_DEFAULT;
6277 break;
6278 case HDA_FIXUP_ACT_BUILD:
6279 /* this is a bit tricky; give more sane names for the main
6280 * (tablet) speaker and the dock speaker, respectively
6281 */
6282 rename_ctl(codec, "Speaker Playback Switch",
6283 "Dock Speaker Playback Switch");
6284 rename_ctl(codec, "Bass Speaker Playback Switch",
6285 "Speaker Playback Switch");
6286 break;
6287 }
6288 }
6289
6290 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6291 const struct hda_fixup *fix, int action)
6292 {
6293 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6294 /* DAC node 0x03 is giving mono output. We therefore want to
6295 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6296 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6297 static const hda_nid_t conn1[] = { 0x0c };
6298 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6299 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
6300 }
6301 }
6302
6303 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6304 const struct hda_fixup *fix, int action)
6305 {
6306 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6307 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6308 we can't adjust the speaker's volume since this node does not has
6309 Amp-out capability. we change the speaker's route to:
6310 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6311 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6312 speaker's volume now. */
6313
6314 static const hda_nid_t conn1[] = { 0x0c };
6315 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
6316 }
6317 }
6318
6319 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6320 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6321 const struct hda_fixup *fix, int action)
6322 {
6323 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6324 static const hda_nid_t conn[] = { 0x02, 0x03 };
6325 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6326 }
6327 }
6328
6329 /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6330 static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6331 const struct hda_fixup *fix, int action)
6332 {
6333 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6334 static const hda_nid_t conn[] = { 0x02 };
6335 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6336 }
6337 }
6338
6339 /* Hook to update amp GPIO4 for automute */
6340 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6341 struct hda_jack_callback *jack)
6342 {
6343 struct alc_spec *spec = codec->spec;
6344
6345 snd_hda_gen_hp_automute(codec, jack);
6346 /* mute_led_polarity is set to 0, so we pass inverted value here */
6347 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6348 !spec->gen.hp_jack_present);
6349 }
6350
6351 /* Manage GPIOs for HP EliteBook Folio 9480m.
6352 *
6353 * GPIO4 is the headphone amplifier power control
6354 * GPIO3 is the audio output mute indicator LED
6355 */
6356
6357 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6358 const struct hda_fixup *fix,
6359 int action)
6360 {
6361 struct alc_spec *spec = codec->spec;
6362
6363 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
6364 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6365 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6366 spec->gpio_mask |= 0x10;
6367 spec->gpio_dir |= 0x10;
6368 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
6369 }
6370 }
6371
6372 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6373 const struct hda_fixup *fix,
6374 int action)
6375 {
6376 struct alc_spec *spec = codec->spec;
6377
6378 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6379 spec->gpio_mask |= 0x04;
6380 spec->gpio_dir |= 0x04;
6381 /* set data bit low */
6382 }
6383 }
6384
6385 /* Quirk for Thinkpad X1 7th and 8th Gen
6386 * The following fixed routing needed
6387 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6388 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6389 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6390 */
6391 static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6392 const struct hda_fixup *fix, int action)
6393 {
6394 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6395 static const hda_nid_t preferred_pairs[] = {
6396 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6397 };
6398 struct alc_spec *spec = codec->spec;
6399
6400 switch (action) {
6401 case HDA_FIXUP_ACT_PRE_PROBE:
6402 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6403 spec->gen.preferred_dacs = preferred_pairs;
6404 break;
6405 case HDA_FIXUP_ACT_BUILD:
6406 /* The generic parser creates somewhat unintuitive volume ctls
6407 * with the fixed routing above, and the shared DAC2 may be
6408 * confusing for PA.
6409 * Rename those to unique names so that PA doesn't touch them
6410 * and use only Master volume.
6411 */
6412 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6413 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6414 break;
6415 }
6416 }
6417
6418 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6419 const struct hda_fixup *fix,
6420 int action)
6421 {
6422 alc_fixup_dual_codecs(codec, fix, action);
6423 switch (action) {
6424 case HDA_FIXUP_ACT_PRE_PROBE:
6425 /* override card longname to provide a unique UCM profile */
6426 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6427 break;
6428 case HDA_FIXUP_ACT_BUILD:
6429 /* rename Capture controls depending on the codec */
6430 rename_ctl(codec, "Capture Volume",
6431 codec->addr == 0 ?
6432 "Rear-Panel Capture Volume" :
6433 "Front-Panel Capture Volume");
6434 rename_ctl(codec, "Capture Switch",
6435 codec->addr == 0 ?
6436 "Rear-Panel Capture Switch" :
6437 "Front-Panel Capture Switch");
6438 break;
6439 }
6440 }
6441
6442 static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6443 const struct hda_fixup *fix, int action)
6444 {
6445 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6446 return;
6447
6448 codec->power_save_node = 1;
6449 }
6450
6451 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6452 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6453 const struct hda_fixup *fix, int action)
6454 {
6455 struct alc_spec *spec = codec->spec;
6456 static const hda_nid_t preferred_pairs[] = {
6457 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6458 0
6459 };
6460
6461 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6462 return;
6463
6464 spec->gen.preferred_dacs = preferred_pairs;
6465 spec->gen.auto_mute_via_amp = 1;
6466 codec->power_save_node = 0;
6467 }
6468
6469 /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6470 static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6471 const struct hda_fixup *fix, int action)
6472 {
6473 static const hda_nid_t preferred_pairs[] = {
6474 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6475 };
6476 struct alc_spec *spec = codec->spec;
6477
6478 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6479 spec->gen.preferred_dacs = preferred_pairs;
6480 spec->gen.obey_preferred_dacs = 1;
6481 }
6482 }
6483
6484 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6485 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6486 const struct hda_fixup *fix, int action)
6487 {
6488 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6489 return;
6490
6491 snd_hda_override_wcaps(codec, 0x03, 0);
6492 }
6493
6494 static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6495 {
6496 switch (codec->core.vendor_id) {
6497 case 0x10ec0274:
6498 case 0x10ec0294:
6499 case 0x10ec0225:
6500 case 0x10ec0295:
6501 case 0x10ec0299:
6502 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6503 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6504 break;
6505 case 0x10ec0230:
6506 case 0x10ec0235:
6507 case 0x10ec0236:
6508 case 0x10ec0255:
6509 case 0x10ec0256:
6510 case 0x10ec0257:
6511 case 0x19e58326:
6512 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6513 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6514 break;
6515 }
6516 }
6517
6518 static void alc295_fixup_chromebook(struct hda_codec *codec,
6519 const struct hda_fixup *fix, int action)
6520 {
6521 struct alc_spec *spec = codec->spec;
6522
6523 switch (action) {
6524 case HDA_FIXUP_ACT_PRE_PROBE:
6525 spec->ultra_low_power = true;
6526 break;
6527 case HDA_FIXUP_ACT_INIT:
6528 alc_combo_jack_hp_jd_restart(codec);
6529 break;
6530 }
6531 }
6532
6533 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6534 const struct hda_fixup *fix, int action)
6535 {
6536 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6537 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6538 }
6539
6540
6541 static void alc294_gx502_toggle_output(struct hda_codec *codec,
6542 struct hda_jack_callback *cb)
6543 {
6544 /* The Windows driver sets the codec up in a very different way where
6545 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6546 */
6547 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6548 alc_write_coef_idx(codec, 0x10, 0x8a20);
6549 else
6550 alc_write_coef_idx(codec, 0x10, 0x0a20);
6551 }
6552
6553 static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6554 const struct hda_fixup *fix, int action)
6555 {
6556 /* Pin 0x21: headphones/headset mic */
6557 if (!is_jack_detectable(codec, 0x21))
6558 return;
6559
6560 switch (action) {
6561 case HDA_FIXUP_ACT_PRE_PROBE:
6562 snd_hda_jack_detect_enable_callback(codec, 0x21,
6563 alc294_gx502_toggle_output);
6564 break;
6565 case HDA_FIXUP_ACT_INIT:
6566 /* Make sure to start in a correct state, i.e. if
6567 * headphones have been plugged in before powering up the system
6568 */
6569 alc294_gx502_toggle_output(codec, NULL);
6570 break;
6571 }
6572 }
6573
6574 static void alc294_gu502_toggle_output(struct hda_codec *codec,
6575 struct hda_jack_callback *cb)
6576 {
6577 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6578 * responsible from changes between speakers and headphones
6579 */
6580 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6581 alc_write_coef_idx(codec, 0x10, 0x8420);
6582 else
6583 alc_write_coef_idx(codec, 0x10, 0x0a20);
6584 }
6585
6586 static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6587 const struct hda_fixup *fix, int action)
6588 {
6589 if (!is_jack_detectable(codec, 0x21))
6590 return;
6591
6592 switch (action) {
6593 case HDA_FIXUP_ACT_PRE_PROBE:
6594 snd_hda_jack_detect_enable_callback(codec, 0x21,
6595 alc294_gu502_toggle_output);
6596 break;
6597 case HDA_FIXUP_ACT_INIT:
6598 alc294_gu502_toggle_output(codec, NULL);
6599 break;
6600 }
6601 }
6602
6603 static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6604 const struct hda_fixup *fix, int action)
6605 {
6606 if (action != HDA_FIXUP_ACT_INIT)
6607 return;
6608
6609 msleep(100);
6610 alc_write_coef_idx(codec, 0x65, 0x0);
6611 }
6612
6613 static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6614 const struct hda_fixup *fix, int action)
6615 {
6616 switch (action) {
6617 case HDA_FIXUP_ACT_INIT:
6618 alc_combo_jack_hp_jd_restart(codec);
6619 break;
6620 }
6621 }
6622
6623 static void alc_fixup_no_int_mic(struct hda_codec *codec,
6624 const struct hda_fixup *fix, int action)
6625 {
6626 struct alc_spec *spec = codec->spec;
6627
6628 switch (action) {
6629 case HDA_FIXUP_ACT_PRE_PROBE:
6630 /* Mic RING SLEEVE swap for combo jack */
6631 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6632 spec->no_internal_mic_pin = true;
6633 break;
6634 case HDA_FIXUP_ACT_INIT:
6635 alc_combo_jack_hp_jd_restart(codec);
6636 break;
6637 }
6638 }
6639
6640 /* GPIO1 = amplifier on/off
6641 * GPIO3 = mic mute LED
6642 */
6643 static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6644 const struct hda_fixup *fix, int action)
6645 {
6646 static const hda_nid_t conn[] = { 0x02 };
6647
6648 struct alc_spec *spec = codec->spec;
6649 static const struct hda_pintbl pincfgs[] = {
6650 { 0x14, 0x90170110 }, /* front/high speakers */
6651 { 0x17, 0x90170130 }, /* back/bass speakers */
6652 { }
6653 };
6654
6655 //enable micmute led
6656 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6657
6658 switch (action) {
6659 case HDA_FIXUP_ACT_PRE_PROBE:
6660 spec->micmute_led_polarity = 1;
6661 /* needed for amp of back speakers */
6662 spec->gpio_mask |= 0x01;
6663 spec->gpio_dir |= 0x01;
6664 snd_hda_apply_pincfgs(codec, pincfgs);
6665 /* share DAC to have unified volume control */
6666 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6667 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6668 break;
6669 case HDA_FIXUP_ACT_INIT:
6670 /* need to toggle GPIO to enable the amp of back speakers */
6671 alc_update_gpio_data(codec, 0x01, true);
6672 msleep(100);
6673 alc_update_gpio_data(codec, 0x01, false);
6674 break;
6675 }
6676 }
6677
6678 static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6679 const struct hda_fixup *fix, int action)
6680 {
6681 static const hda_nid_t conn[] = { 0x02 };
6682 static const struct hda_pintbl pincfgs[] = {
6683 { 0x14, 0x90170110 }, /* rear speaker */
6684 { }
6685 };
6686
6687 switch (action) {
6688 case HDA_FIXUP_ACT_PRE_PROBE:
6689 snd_hda_apply_pincfgs(codec, pincfgs);
6690 /* force front speaker to DAC1 */
6691 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6692 break;
6693 }
6694 }
6695
6696 /* for hda_fixup_thinkpad_acpi() */
6697 #include "thinkpad_helper.c"
6698
6699 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6700 const struct hda_fixup *fix, int action)
6701 {
6702 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6703 hda_fixup_thinkpad_acpi(codec, fix, action);
6704 }
6705
6706 /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6707 static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6708 const struct hda_fixup *fix,
6709 int action)
6710 {
6711 struct alc_spec *spec = codec->spec;
6712
6713 switch (action) {
6714 case HDA_FIXUP_ACT_PRE_PROBE:
6715 spec->gen.suppress_auto_mute = 1;
6716 break;
6717 }
6718 }
6719
6720 #ifdef CONFIG_ACPI
6721 static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data)
6722 {
6723 struct hda_codec *cdc = data;
6724 struct alc_spec *spec = cdc->spec;
6725 int i;
6726
6727 codec_info(cdc, "ACPI Notification %d\n", event);
6728
6729 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6730 if (spec->comps[i].dev && spec->comps[i].acpi_notify)
6731 spec->comps[i].acpi_notify(acpi_device_handle(spec->comps[i].adev), event,
6732 spec->comps[i].dev);
6733 }
6734 }
6735
6736 static int comp_bind_acpi(struct device *dev)
6737 {
6738 struct hda_codec *cdc = dev_to_hda_codec(dev);
6739 struct alc_spec *spec = cdc->spec;
6740 bool support_notifications = false;
6741 struct acpi_device *adev;
6742 int ret;
6743 int i;
6744
6745 adev = spec->comps[0].adev;
6746 if (!acpi_device_handle(adev))
6747 return 0;
6748
6749 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
6750 support_notifications = support_notifications ||
6751 spec->comps[i].acpi_notifications_supported;
6752
6753 if (support_notifications) {
6754 ret = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6755 comp_acpi_device_notify, cdc);
6756 if (ret < 0) {
6757 codec_warn(cdc, "Failed to install notify handler: %d\n", ret);
6758 return 0;
6759 }
6760
6761 codec_dbg(cdc, "Notify handler installed\n");
6762 }
6763
6764 return 0;
6765 }
6766
6767 static void comp_unbind_acpi(struct device *dev)
6768 {
6769 struct hda_codec *cdc = dev_to_hda_codec(dev);
6770 struct alc_spec *spec = cdc->spec;
6771 struct acpi_device *adev;
6772 int ret;
6773
6774 adev = spec->comps[0].adev;
6775 if (!acpi_device_handle(adev))
6776 return;
6777
6778 ret = acpi_remove_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6779 comp_acpi_device_notify);
6780 if (ret < 0)
6781 codec_warn(cdc, "Failed to uninstall notify handler: %d\n", ret);
6782 }
6783 #else
6784 static int comp_bind_acpi(struct device *dev)
6785 {
6786 return 0;
6787 }
6788
6789 static void comp_unbind_acpi(struct device *dev)
6790 {
6791 }
6792 #endif
6793
6794 static int comp_bind(struct device *dev)
6795 {
6796 struct hda_codec *cdc = dev_to_hda_codec(dev);
6797 struct alc_spec *spec = cdc->spec;
6798 int ret;
6799
6800 ret = component_bind_all(dev, spec->comps);
6801 if (ret)
6802 return ret;
6803
6804 return comp_bind_acpi(dev);
6805 }
6806
6807 static void comp_unbind(struct device *dev)
6808 {
6809 struct hda_codec *cdc = dev_to_hda_codec(dev);
6810 struct alc_spec *spec = cdc->spec;
6811
6812 comp_unbind_acpi(dev);
6813 component_unbind_all(dev, spec->comps);
6814 }
6815
6816 static const struct component_master_ops comp_master_ops = {
6817 .bind = comp_bind,
6818 .unbind = comp_unbind,
6819 };
6820
6821 static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6822 struct snd_pcm_substream *sub, int action)
6823 {
6824 struct alc_spec *spec = cdc->spec;
6825 int i;
6826
6827 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6828 if (spec->comps[i].dev && spec->comps[i].pre_playback_hook)
6829 spec->comps[i].pre_playback_hook(spec->comps[i].dev, action);
6830 }
6831 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6832 if (spec->comps[i].dev && spec->comps[i].playback_hook)
6833 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6834 }
6835 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6836 if (spec->comps[i].dev && spec->comps[i].post_playback_hook)
6837 spec->comps[i].post_playback_hook(spec->comps[i].dev, action);
6838 }
6839 }
6840
6841 struct scodec_dev_name {
6842 const char *bus;
6843 const char *hid;
6844 int index;
6845 };
6846
6847 /* match the device name in a slightly relaxed manner */
6848 static int comp_match_cs35l41_dev_name(struct device *dev, void *data)
6849 {
6850 struct scodec_dev_name *p = data;
6851 const char *d = dev_name(dev);
6852 int n = strlen(p->bus);
6853 char tmp[32];
6854
6855 /* check the bus name */
6856 if (strncmp(d, p->bus, n))
6857 return 0;
6858 /* skip the bus number */
6859 if (isdigit(d[n]))
6860 n++;
6861 /* the rest must be exact matching */
6862 snprintf(tmp, sizeof(tmp), "-%s:00-cs35l41-hda.%d", p->hid, p->index);
6863 return !strcmp(d + n, tmp);
6864 }
6865
6866 static int comp_match_tas2781_dev_name(struct device *dev,
6867 void *data)
6868 {
6869 struct scodec_dev_name *p = data;
6870 const char *d = dev_name(dev);
6871 int n = strlen(p->bus);
6872 char tmp[32];
6873
6874 /* check the bus name */
6875 if (strncmp(d, p->bus, n))
6876 return 0;
6877 /* skip the bus number */
6878 if (isdigit(d[n]))
6879 n++;
6880 /* the rest must be exact matching */
6881 snprintf(tmp, sizeof(tmp), "-%s:00", p->hid);
6882
6883 return !strcmp(d + n, tmp);
6884 }
6885
6886 static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6887 const char *hid, int count)
6888 {
6889 struct device *dev = hda_codec_dev(cdc);
6890 struct alc_spec *spec = cdc->spec;
6891 struct scodec_dev_name *rec;
6892 int ret, i;
6893
6894 switch (action) {
6895 case HDA_FIXUP_ACT_PRE_PROBE:
6896 for (i = 0; i < count; i++) {
6897 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6898 if (!rec)
6899 return;
6900 rec->bus = bus;
6901 rec->hid = hid;
6902 rec->index = i;
6903 spec->comps[i].codec = cdc;
6904 component_match_add(dev, &spec->match,
6905 comp_match_cs35l41_dev_name, rec);
6906 }
6907 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6908 if (ret)
6909 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6910 else
6911 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6912 break;
6913 case HDA_FIXUP_ACT_FREE:
6914 component_master_del(dev, &comp_master_ops);
6915 break;
6916 }
6917 }
6918
6919 static void tas2781_generic_fixup(struct hda_codec *cdc, int action,
6920 const char *bus, const char *hid)
6921 {
6922 struct device *dev = hda_codec_dev(cdc);
6923 struct alc_spec *spec = cdc->spec;
6924 struct scodec_dev_name *rec;
6925 int ret;
6926
6927 switch (action) {
6928 case HDA_FIXUP_ACT_PRE_PROBE:
6929 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6930 if (!rec)
6931 return;
6932 rec->bus = bus;
6933 rec->hid = hid;
6934 rec->index = 0;
6935 spec->comps[0].codec = cdc;
6936 component_match_add(dev, &spec->match,
6937 comp_match_tas2781_dev_name, rec);
6938 ret = component_master_add_with_match(dev, &comp_master_ops,
6939 spec->match);
6940 if (ret)
6941 codec_err(cdc,
6942 "Fail to register component aggregator %d\n",
6943 ret);
6944 else
6945 spec->gen.pcm_playback_hook =
6946 comp_generic_playback_hook;
6947 break;
6948 case HDA_FIXUP_ACT_FREE:
6949 component_master_del(dev, &comp_master_ops);
6950 break;
6951 }
6952 }
6953
6954 static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6955 {
6956 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6957 }
6958
6959 static void cs35l41_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6960 {
6961 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 4);
6962 }
6963
6964 static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6965 {
6966 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 2);
6967 }
6968
6969 static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6970 {
6971 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 4);
6972 }
6973
6974 static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6975 int action)
6976 {
6977 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2);
6978 }
6979
6980 static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6981 int action)
6982 {
6983 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0101", 2);
6984 }
6985
6986 static void tas2781_fixup_i2c(struct hda_codec *cdc,
6987 const struct hda_fixup *fix, int action)
6988 {
6989 tas2781_generic_fixup(cdc, action, "i2c", "TIAS2781");
6990 }
6991
6992 static void yoga7_14arb7_fixup_i2c(struct hda_codec *cdc,
6993 const struct hda_fixup *fix, int action)
6994 {
6995 tas2781_generic_fixup(cdc, action, "i2c", "INT8866");
6996 }
6997
6998 /* for alc295_fixup_hp_top_speakers */
6999 #include "hp_x360_helper.c"
7000
7001 /* for alc285_fixup_ideapad_s740_coef() */
7002 #include "ideapad_s740_helper.c"
7003
7004 static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
7005 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
7006 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
7007 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
7008 {}
7009 };
7010
7011 static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
7012 const struct hda_fixup *fix,
7013 int action)
7014 {
7015 /*
7016 * A certain other OS sets these coeffs to different values. On at least
7017 * one TongFang barebone these settings might survive even a cold
7018 * reboot. So to restore a clean slate the values are explicitly reset
7019 * to default here. Without this, the external microphone is always in a
7020 * plugged-in state, while the internal microphone is always in an
7021 * unplugged state, breaking the ability to use the internal microphone.
7022 */
7023 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
7024 }
7025
7026 static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
7027 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
7028 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
7029 WRITE_COEF(0x49, 0x0149),
7030 {}
7031 };
7032
7033 static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
7034 const struct hda_fixup *fix,
7035 int action)
7036 {
7037 /*
7038 * The audio jack input and output is not detected on the ASRock NUC Box
7039 * 1100 series when cold booting without this fix. Warm rebooting from a
7040 * certain other OS makes the audio functional, as COEF settings are
7041 * preserved in this case. This fix sets these altered COEF values as
7042 * the default.
7043 */
7044 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
7045 }
7046
7047 static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
7048 const struct hda_fixup *fix,
7049 int action)
7050 {
7051 /*
7052 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
7053 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
7054 * needs an additional quirk for sound working after suspend and resume.
7055 */
7056 if (codec->core.vendor_id == 0x10ec0256) {
7057 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
7058 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
7059 } else {
7060 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
7061 }
7062 }
7063
7064 static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
7065 const struct hda_fixup *fix,
7066 int action)
7067 {
7068 struct alc_spec *spec = codec->spec;
7069 struct hda_input_mux *imux = &spec->gen.input_mux;
7070 int i;
7071
7072 alc269_fixup_limit_int_mic_boost(codec, fix, action);
7073
7074 switch (action) {
7075 case HDA_FIXUP_ACT_PRE_PROBE:
7076 /**
7077 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
7078 * to Hi-Z to avoid pop noises at startup and when plugging and
7079 * unplugging headphones.
7080 */
7081 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
7082 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
7083 break;
7084 case HDA_FIXUP_ACT_PROBE:
7085 /**
7086 * Make the internal mic (0x12) the default input source to
7087 * prevent pop noises on cold boot.
7088 */
7089 for (i = 0; i < imux->num_items; i++) {
7090 if (spec->gen.imux_pins[i] == 0x12) {
7091 spec->gen.cur_mux[0] = i;
7092 break;
7093 }
7094 }
7095 break;
7096 }
7097 }
7098
7099 static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
7100 const struct hda_fixup *fix, int action)
7101 {
7102 /*
7103 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7104 * unconnected.
7105 */
7106 static const struct hda_pintbl pincfgs[] = {
7107 { 0x17, 0x90170121 },
7108 { }
7109 };
7110 /*
7111 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7112 * DAC 0x02 and 0x03 would be fine.
7113 */
7114 static const hda_nid_t conn[] = { 0x02, 0x03 };
7115 /*
7116 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7117 * Headphones (0x21) are connected to DAC 0x03.
7118 */
7119 static const hda_nid_t preferred_pairs[] = {
7120 0x14, 0x02,
7121 0x17, 0x02,
7122 0x21, 0x03,
7123 0
7124 };
7125 struct alc_spec *spec = codec->spec;
7126
7127 switch (action) {
7128 case HDA_FIXUP_ACT_PRE_PROBE:
7129 snd_hda_apply_pincfgs(codec, pincfgs);
7130 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7131 spec->gen.preferred_dacs = preferred_pairs;
7132 break;
7133 }
7134 }
7135
7136 static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
7137 const struct hda_fixup *fix, int action)
7138 {
7139 static const struct hda_pintbl pincfgs[] = {
7140 { 0x14, 0x90170151 },
7141 { 0x17, 0x90170150 },
7142 { }
7143 };
7144 static const hda_nid_t conn[] = { 0x02, 0x03 };
7145 static const hda_nid_t preferred_pairs[] = {
7146 0x14, 0x02,
7147 0x17, 0x03,
7148 0x21, 0x02,
7149 0
7150 };
7151 struct alc_spec *spec = codec->spec;
7152
7153 alc_fixup_no_shutup(codec, fix, action);
7154
7155 switch (action) {
7156 case HDA_FIXUP_ACT_PRE_PROBE:
7157 snd_hda_apply_pincfgs(codec, pincfgs);
7158 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7159 spec->gen.preferred_dacs = preferred_pairs;
7160 break;
7161 }
7162 }
7163
7164 /* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7165 static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7166 const struct hda_fixup *fix, int action)
7167 {
7168 struct alc_spec *spec = codec->spec;
7169 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7170 static const hda_nid_t preferred_pairs[] = {
7171 0x17, 0x02, 0x21, 0x03, 0
7172 };
7173
7174 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7175 return;
7176
7177 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7178 spec->gen.preferred_dacs = preferred_pairs;
7179 spec->gen.auto_mute_via_amp = 1;
7180 if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7181 snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7182 0x0); /* Make sure 0x14 was disable */
7183 }
7184 }
7185 /* Fix none verb table of Headset Mic pin */
7186 static void alc_fixup_headset_mic(struct hda_codec *codec,
7187 const struct hda_fixup *fix, int action)
7188 {
7189 struct alc_spec *spec = codec->spec;
7190 static const struct hda_pintbl pincfgs[] = {
7191 { 0x19, 0x03a1103c },
7192 { }
7193 };
7194
7195 switch (action) {
7196 case HDA_FIXUP_ACT_PRE_PROBE:
7197 snd_hda_apply_pincfgs(codec, pincfgs);
7198 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7199 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7200 break;
7201 }
7202 }
7203
7204
7205 enum {
7206 ALC269_FIXUP_GPIO2,
7207 ALC269_FIXUP_SONY_VAIO,
7208 ALC275_FIXUP_SONY_VAIO_GPIO2,
7209 ALC269_FIXUP_DELL_M101Z,
7210 ALC269_FIXUP_SKU_IGNORE,
7211 ALC269_FIXUP_ASUS_G73JW,
7212 ALC269_FIXUP_ASUS_N7601ZM_PINS,
7213 ALC269_FIXUP_ASUS_N7601ZM,
7214 ALC269_FIXUP_LENOVO_EAPD,
7215 ALC275_FIXUP_SONY_HWEQ,
7216 ALC275_FIXUP_SONY_DISABLE_AAMIX,
7217 ALC271_FIXUP_DMIC,
7218 ALC269_FIXUP_PCM_44K,
7219 ALC269_FIXUP_STEREO_DMIC,
7220 ALC269_FIXUP_HEADSET_MIC,
7221 ALC269_FIXUP_QUANTA_MUTE,
7222 ALC269_FIXUP_LIFEBOOK,
7223 ALC269_FIXUP_LIFEBOOK_EXTMIC,
7224 ALC269_FIXUP_LIFEBOOK_HP_PIN,
7225 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
7226 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
7227 ALC269_FIXUP_AMIC,
7228 ALC269_FIXUP_DMIC,
7229 ALC269VB_FIXUP_AMIC,
7230 ALC269VB_FIXUP_DMIC,
7231 ALC269_FIXUP_HP_MUTE_LED,
7232 ALC269_FIXUP_HP_MUTE_LED_MIC1,
7233 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7234 ALC269_FIXUP_HP_MUTE_LED_MIC3,
7235 ALC269_FIXUP_HP_GPIO_LED,
7236 ALC269_FIXUP_HP_GPIO_MIC1_LED,
7237 ALC269_FIXUP_HP_LINE1_MIC1_LED,
7238 ALC269_FIXUP_INV_DMIC,
7239 ALC269_FIXUP_LENOVO_DOCK,
7240 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
7241 ALC269_FIXUP_NO_SHUTUP,
7242 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
7243 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
7244 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7245 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7246 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7247 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7248 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
7249 ALC269_FIXUP_HEADSET_MODE,
7250 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7251 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
7252 ALC269_FIXUP_ASUS_X101_FUNC,
7253 ALC269_FIXUP_ASUS_X101_VERB,
7254 ALC269_FIXUP_ASUS_X101,
7255 ALC271_FIXUP_AMIC_MIC2,
7256 ALC271_FIXUP_HP_GATE_MIC_JACK,
7257 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
7258 ALC269_FIXUP_ACER_AC700,
7259 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
7260 ALC269VB_FIXUP_ASUS_ZENBOOK,
7261 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
7262 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
7263 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
7264 ALC269VB_FIXUP_ORDISSIMO_EVE2,
7265 ALC283_FIXUP_CHROME_BOOK,
7266 ALC283_FIXUP_SENSE_COMBO_JACK,
7267 ALC282_FIXUP_ASUS_TX300,
7268 ALC283_FIXUP_INT_MIC,
7269 ALC290_FIXUP_MONO_SPEAKERS,
7270 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7271 ALC290_FIXUP_SUBWOOFER,
7272 ALC290_FIXUP_SUBWOOFER_HSJACK,
7273 ALC269_FIXUP_THINKPAD_ACPI,
7274 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7275 ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO,
7276 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7277 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7278 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7279 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7280 ALC255_FIXUP_HEADSET_MODE,
7281 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
7282 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7283 ALC292_FIXUP_TPT440_DOCK,
7284 ALC292_FIXUP_TPT440,
7285 ALC283_FIXUP_HEADSET_MIC,
7286 ALC255_FIXUP_MIC_MUTE_LED,
7287 ALC282_FIXUP_ASPIRE_V5_PINS,
7288 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7289 ALC280_FIXUP_HP_GPIO4,
7290 ALC286_FIXUP_HP_GPIO_LED,
7291 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
7292 ALC280_FIXUP_HP_DOCK_PINS,
7293 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
7294 ALC280_FIXUP_HP_9480M,
7295 ALC245_FIXUP_HP_X360_AMP,
7296 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
7297 ALC288_FIXUP_DELL_HEADSET_MODE,
7298 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7299 ALC288_FIXUP_DELL_XPS_13,
7300 ALC288_FIXUP_DISABLE_AAMIX,
7301 ALC292_FIXUP_DELL_E7X_AAMIX,
7302 ALC292_FIXUP_DELL_E7X,
7303 ALC292_FIXUP_DISABLE_AAMIX,
7304 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
7305 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7306 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7307 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
7308 ALC275_FIXUP_DELL_XPS,
7309 ALC293_FIXUP_LENOVO_SPK_NOISE,
7310 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7311 ALC255_FIXUP_DELL_SPK_NOISE,
7312 ALC225_FIXUP_DISABLE_MIC_VREF,
7313 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7314 ALC295_FIXUP_DISABLE_DAC3,
7315 ALC285_FIXUP_SPEAKER2_TO_DAC1,
7316 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7317 ALC285_FIXUP_ASUS_HEADSET_MIC,
7318 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
7319 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7320 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
7321 ALC280_FIXUP_HP_HEADSET_MIC,
7322 ALC221_FIXUP_HP_FRONT_MIC,
7323 ALC292_FIXUP_TPT460,
7324 ALC298_FIXUP_SPK_VOLUME,
7325 ALC298_FIXUP_LENOVO_SPK_VOLUME,
7326 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
7327 ALC269_FIXUP_ATIV_BOOK_8,
7328 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
7329 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
7330 ALC256_FIXUP_ASUS_HEADSET_MODE,
7331 ALC256_FIXUP_ASUS_MIC,
7332 ALC256_FIXUP_ASUS_AIO_GPIO2,
7333 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7334 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
7335 ALC233_FIXUP_LENOVO_MULTI_CODECS,
7336 ALC233_FIXUP_ACER_HEADSET_MIC,
7337 ALC294_FIXUP_LENOVO_MIC_LOCATION,
7338 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
7339 ALC225_FIXUP_S3_POP_NOISE,
7340 ALC700_FIXUP_INTEL_REFERENCE,
7341 ALC274_FIXUP_DELL_BIND_DACS,
7342 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7343 ALC298_FIXUP_TPT470_DOCK_FIX,
7344 ALC298_FIXUP_TPT470_DOCK,
7345 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
7346 ALC255_FIXUP_DELL_HEADSET_MIC,
7347 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
7348 ALC298_FIXUP_HUAWEI_MBX_STEREO,
7349 ALC295_FIXUP_HP_X360,
7350 ALC221_FIXUP_HP_HEADSET_MIC,
7351 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
7352 ALC295_FIXUP_HP_AUTO_MUTE,
7353 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7354 ALC294_FIXUP_ASUS_MIC,
7355 ALC294_FIXUP_ASUS_HEADSET_MIC,
7356 ALC294_FIXUP_ASUS_SPK,
7357 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7358 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7359 ALC255_FIXUP_ACER_HEADSET_MIC,
7360 ALC295_FIXUP_CHROME_BOOK,
7361 ALC225_FIXUP_HEADSET_JACK,
7362 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7363 ALC225_FIXUP_WYSE_AUTO_MUTE,
7364 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
7365 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
7366 ALC256_FIXUP_ASUS_HEADSET_MIC,
7367 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7368 ALC299_FIXUP_PREDATOR_SPK,
7369 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
7370 ALC289_FIXUP_DELL_SPK1,
7371 ALC289_FIXUP_DELL_SPK2,
7372 ALC289_FIXUP_DUAL_SPK,
7373 ALC289_FIXUP_RTK_AMP_DUAL_SPK,
7374 ALC294_FIXUP_SPK2_TO_DAC1,
7375 ALC294_FIXUP_ASUS_DUAL_SPK,
7376 ALC285_FIXUP_THINKPAD_X1_GEN7,
7377 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
7378 ALC294_FIXUP_ASUS_ALLY,
7379 ALC294_FIXUP_ASUS_ALLY_PINS,
7380 ALC294_FIXUP_ASUS_ALLY_VERBS,
7381 ALC294_FIXUP_ASUS_ALLY_SPEAKER,
7382 ALC294_FIXUP_ASUS_HPE,
7383 ALC294_FIXUP_ASUS_COEF_1B,
7384 ALC294_FIXUP_ASUS_GX502_HP,
7385 ALC294_FIXUP_ASUS_GX502_PINS,
7386 ALC294_FIXUP_ASUS_GX502_VERBS,
7387 ALC294_FIXUP_ASUS_GU502_HP,
7388 ALC294_FIXUP_ASUS_GU502_PINS,
7389 ALC294_FIXUP_ASUS_GU502_VERBS,
7390 ALC294_FIXUP_ASUS_G513_PINS,
7391 ALC285_FIXUP_ASUS_G533Z_PINS,
7392 ALC285_FIXUP_HP_GPIO_LED,
7393 ALC285_FIXUP_HP_MUTE_LED,
7394 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
7395 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
7396 ALC236_FIXUP_HP_GPIO_LED,
7397 ALC236_FIXUP_HP_MUTE_LED,
7398 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
7399 ALC298_FIXUP_SAMSUNG_AMP,
7400 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7401 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7402 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
7403 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
7404 ALC269VC_FIXUP_ACER_HEADSET_MIC,
7405 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
7406 ALC289_FIXUP_ASUS_GA401,
7407 ALC289_FIXUP_ASUS_GA502,
7408 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
7409 ALC285_FIXUP_HP_GPIO_AMP_INIT,
7410 ALC269_FIXUP_CZC_B20,
7411 ALC269_FIXUP_CZC_TMI,
7412 ALC269_FIXUP_CZC_L101,
7413 ALC269_FIXUP_LEMOTE_A1802,
7414 ALC269_FIXUP_LEMOTE_A190X,
7415 ALC256_FIXUP_INTEL_NUC8_RUGGED,
7416 ALC233_FIXUP_INTEL_NUC8_DMIC,
7417 ALC233_FIXUP_INTEL_NUC8_BOOST,
7418 ALC256_FIXUP_INTEL_NUC10,
7419 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
7420 ALC274_FIXUP_HP_MIC,
7421 ALC274_FIXUP_HP_HEADSET_MIC,
7422 ALC274_FIXUP_HP_ENVY_GPIO,
7423 ALC256_FIXUP_ASUS_HPE,
7424 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
7425 ALC287_FIXUP_HP_GPIO_LED,
7426 ALC256_FIXUP_HP_HEADSET_MIC,
7427 ALC245_FIXUP_HP_GPIO_LED,
7428 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
7429 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
7430 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
7431 ALC256_FIXUP_ACER_HEADSET_MIC,
7432 ALC285_FIXUP_IDEAPAD_S740_COEF,
7433 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7434 ALC295_FIXUP_ASUS_DACS,
7435 ALC295_FIXUP_HP_OMEN,
7436 ALC285_FIXUP_HP_SPECTRE_X360,
7437 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
7438 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
7439 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
7440 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7441 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7442 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7443 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
7444 ALC298_FIXUP_LENOVO_C940_DUET7,
7445 ALC287_FIXUP_13S_GEN2_SPEAKERS,
7446 ALC256_FIXUP_SET_COEF_DEFAULTS,
7447 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7448 ALC233_FIXUP_NO_AUDIO_JACK,
7449 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
7450 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7451 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
7452 ALC287_FIXUP_LEGION_16ACHG6,
7453 ALC287_FIXUP_CS35L41_I2C_2,
7454 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
7455 ALC287_FIXUP_CS35L41_I2C_4,
7456 ALC245_FIXUP_CS35L41_SPI_2,
7457 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
7458 ALC245_FIXUP_CS35L41_SPI_4,
7459 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
7460 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
7461 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
7462 ALC287_FIXUP_LEGION_16ITHG6,
7463 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7464 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
7465 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
7466 ALC236_FIXUP_DELL_DUAL_CODECS,
7467 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
7468 ALC287_FIXUP_TAS2781_I2C,
7469 ALC287_FIXUP_YOGA7_14ARB7_I2C,
7470 ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
7471 ALC245_FIXUP_HP_X360_MUTE_LEDS,
7472 ALC287_FIXUP_THINKPAD_I2S_SPK,
7473 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
7474 ALC2XX_FIXUP_HEADSET_MIC,
7475 ALC289_FIXUP_DELL_CS35L41_SPI_2,
7476 ALC294_FIXUP_CS35L41_I2C_2,
7477 };
7478
7479 /* A special fixup for Lenovo C940 and Yoga Duet 7;
7480 * both have the very same PCI SSID, and we need to apply different fixups
7481 * depending on the codec ID
7482 */
7483 static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7484 const struct hda_fixup *fix,
7485 int action)
7486 {
7487 int id;
7488
7489 if (codec->core.vendor_id == 0x10ec0298)
7490 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7491 else
7492 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7493 __snd_hda_apply_fixup(codec, id, action, 0);
7494 }
7495
7496 static const struct hda_fixup alc269_fixups[] = {
7497 [ALC269_FIXUP_GPIO2] = {
7498 .type = HDA_FIXUP_FUNC,
7499 .v.func = alc_fixup_gpio2,
7500 },
7501 [ALC269_FIXUP_SONY_VAIO] = {
7502 .type = HDA_FIXUP_PINCTLS,
7503 .v.pins = (const struct hda_pintbl[]) {
7504 {0x19, PIN_VREFGRD},
7505 {}
7506 }
7507 },
7508 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
7509 .type = HDA_FIXUP_FUNC,
7510 .v.func = alc275_fixup_gpio4_off,
7511 .chained = true,
7512 .chain_id = ALC269_FIXUP_SONY_VAIO
7513 },
7514 [ALC269_FIXUP_DELL_M101Z] = {
7515 .type = HDA_FIXUP_VERBS,
7516 .v.verbs = (const struct hda_verb[]) {
7517 /* Enables internal speaker */
7518 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7519 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7520 {}
7521 }
7522 },
7523 [ALC269_FIXUP_SKU_IGNORE] = {
7524 .type = HDA_FIXUP_FUNC,
7525 .v.func = alc_fixup_sku_ignore,
7526 },
7527 [ALC269_FIXUP_ASUS_G73JW] = {
7528 .type = HDA_FIXUP_PINS,
7529 .v.pins = (const struct hda_pintbl[]) {
7530 { 0x17, 0x99130111 }, /* subwoofer */
7531 { }
7532 }
7533 },
7534 [ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7535 .type = HDA_FIXUP_PINS,
7536 .v.pins = (const struct hda_pintbl[]) {
7537 { 0x19, 0x03A11050 },
7538 { 0x1a, 0x03A11C30 },
7539 { 0x21, 0x03211420 },
7540 { }
7541 }
7542 },
7543 [ALC269_FIXUP_ASUS_N7601ZM] = {
7544 .type = HDA_FIXUP_VERBS,
7545 .v.verbs = (const struct hda_verb[]) {
7546 {0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7547 {0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7548 {0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7549 {0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7550 {0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7551 {0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7552 { }
7553 },
7554 .chained = true,
7555 .chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7556 },
7557 [ALC269_FIXUP_LENOVO_EAPD] = {
7558 .type = HDA_FIXUP_VERBS,
7559 .v.verbs = (const struct hda_verb[]) {
7560 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7561 {}
7562 }
7563 },
7564 [ALC275_FIXUP_SONY_HWEQ] = {
7565 .type = HDA_FIXUP_FUNC,
7566 .v.func = alc269_fixup_hweq,
7567 .chained = true,
7568 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7569 },
7570 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7571 .type = HDA_FIXUP_FUNC,
7572 .v.func = alc_fixup_disable_aamix,
7573 .chained = true,
7574 .chain_id = ALC269_FIXUP_SONY_VAIO
7575 },
7576 [ALC271_FIXUP_DMIC] = {
7577 .type = HDA_FIXUP_FUNC,
7578 .v.func = alc271_fixup_dmic,
7579 },
7580 [ALC269_FIXUP_PCM_44K] = {
7581 .type = HDA_FIXUP_FUNC,
7582 .v.func = alc269_fixup_pcm_44k,
7583 .chained = true,
7584 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7585 },
7586 [ALC269_FIXUP_STEREO_DMIC] = {
7587 .type = HDA_FIXUP_FUNC,
7588 .v.func = alc269_fixup_stereo_dmic,
7589 },
7590 [ALC269_FIXUP_HEADSET_MIC] = {
7591 .type = HDA_FIXUP_FUNC,
7592 .v.func = alc269_fixup_headset_mic,
7593 },
7594 [ALC269_FIXUP_QUANTA_MUTE] = {
7595 .type = HDA_FIXUP_FUNC,
7596 .v.func = alc269_fixup_quanta_mute,
7597 },
7598 [ALC269_FIXUP_LIFEBOOK] = {
7599 .type = HDA_FIXUP_PINS,
7600 .v.pins = (const struct hda_pintbl[]) {
7601 { 0x1a, 0x2101103f }, /* dock line-out */
7602 { 0x1b, 0x23a11040 }, /* dock mic-in */
7603 { }
7604 },
7605 .chained = true,
7606 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7607 },
7608 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7609 .type = HDA_FIXUP_PINS,
7610 .v.pins = (const struct hda_pintbl[]) {
7611 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7612 { }
7613 },
7614 },
7615 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7616 .type = HDA_FIXUP_PINS,
7617 .v.pins = (const struct hda_pintbl[]) {
7618 { 0x21, 0x0221102f }, /* HP out */
7619 { }
7620 },
7621 },
7622 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7623 .type = HDA_FIXUP_FUNC,
7624 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7625 },
7626 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7627 .type = HDA_FIXUP_FUNC,
7628 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7629 },
7630 [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = {
7631 .type = HDA_FIXUP_PINS,
7632 .v.pins = (const struct hda_pintbl[]) {
7633 { 0x18, 0x03a19020 }, /* headset mic */
7634 { 0x1b, 0x90170150 }, /* speaker */
7635 { }
7636 },
7637 },
7638 [ALC269_FIXUP_AMIC] = {
7639 .type = HDA_FIXUP_PINS,
7640 .v.pins = (const struct hda_pintbl[]) {
7641 { 0x14, 0x99130110 }, /* speaker */
7642 { 0x15, 0x0121401f }, /* HP out */
7643 { 0x18, 0x01a19c20 }, /* mic */
7644 { 0x19, 0x99a3092f }, /* int-mic */
7645 { }
7646 },
7647 },
7648 [ALC269_FIXUP_DMIC] = {
7649 .type = HDA_FIXUP_PINS,
7650 .v.pins = (const struct hda_pintbl[]) {
7651 { 0x12, 0x99a3092f }, /* int-mic */
7652 { 0x14, 0x99130110 }, /* speaker */
7653 { 0x15, 0x0121401f }, /* HP out */
7654 { 0x18, 0x01a19c20 }, /* mic */
7655 { }
7656 },
7657 },
7658 [ALC269VB_FIXUP_AMIC] = {
7659 .type = HDA_FIXUP_PINS,
7660 .v.pins = (const struct hda_pintbl[]) {
7661 { 0x14, 0x99130110 }, /* speaker */
7662 { 0x18, 0x01a19c20 }, /* mic */
7663 { 0x19, 0x99a3092f }, /* int-mic */
7664 { 0x21, 0x0121401f }, /* HP out */
7665 { }
7666 },
7667 },
7668 [ALC269VB_FIXUP_DMIC] = {
7669 .type = HDA_FIXUP_PINS,
7670 .v.pins = (const struct hda_pintbl[]) {
7671 { 0x12, 0x99a3092f }, /* int-mic */
7672 { 0x14, 0x99130110 }, /* speaker */
7673 { 0x18, 0x01a19c20 }, /* mic */
7674 { 0x21, 0x0121401f }, /* HP out */
7675 { }
7676 },
7677 },
7678 [ALC269_FIXUP_HP_MUTE_LED] = {
7679 .type = HDA_FIXUP_FUNC,
7680 .v.func = alc269_fixup_hp_mute_led,
7681 },
7682 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7683 .type = HDA_FIXUP_FUNC,
7684 .v.func = alc269_fixup_hp_mute_led_mic1,
7685 },
7686 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
7687 .type = HDA_FIXUP_FUNC,
7688 .v.func = alc269_fixup_hp_mute_led_mic2,
7689 },
7690 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7691 .type = HDA_FIXUP_FUNC,
7692 .v.func = alc269_fixup_hp_mute_led_mic3,
7693 .chained = true,
7694 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7695 },
7696 [ALC269_FIXUP_HP_GPIO_LED] = {
7697 .type = HDA_FIXUP_FUNC,
7698 .v.func = alc269_fixup_hp_gpio_led,
7699 },
7700 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7701 .type = HDA_FIXUP_FUNC,
7702 .v.func = alc269_fixup_hp_gpio_mic1_led,
7703 },
7704 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7705 .type = HDA_FIXUP_FUNC,
7706 .v.func = alc269_fixup_hp_line1_mic1_led,
7707 },
7708 [ALC269_FIXUP_INV_DMIC] = {
7709 .type = HDA_FIXUP_FUNC,
7710 .v.func = alc_fixup_inv_dmic,
7711 },
7712 [ALC269_FIXUP_NO_SHUTUP] = {
7713 .type = HDA_FIXUP_FUNC,
7714 .v.func = alc_fixup_no_shutup,
7715 },
7716 [ALC269_FIXUP_LENOVO_DOCK] = {
7717 .type = HDA_FIXUP_PINS,
7718 .v.pins = (const struct hda_pintbl[]) {
7719 { 0x19, 0x23a11040 }, /* dock mic */
7720 { 0x1b, 0x2121103f }, /* dock headphone */
7721 { }
7722 },
7723 .chained = true,
7724 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7725 },
7726 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7727 .type = HDA_FIXUP_FUNC,
7728 .v.func = alc269_fixup_limit_int_mic_boost,
7729 .chained = true,
7730 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7731 },
7732 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
7733 .type = HDA_FIXUP_FUNC,
7734 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7735 .chained = true,
7736 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7737 },
7738 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7739 .type = HDA_FIXUP_PINS,
7740 .v.pins = (const struct hda_pintbl[]) {
7741 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7742 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7743 { }
7744 },
7745 .chained = true,
7746 .chain_id = ALC269_FIXUP_HEADSET_MODE
7747 },
7748 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7749 .type = HDA_FIXUP_PINS,
7750 .v.pins = (const struct hda_pintbl[]) {
7751 { 0x16, 0x21014020 }, /* dock line out */
7752 { 0x19, 0x21a19030 }, /* dock mic */
7753 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7754 { }
7755 },
7756 .chained = true,
7757 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7758 },
7759 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7760 .type = HDA_FIXUP_PINS,
7761 .v.pins = (const struct hda_pintbl[]) {
7762 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7763 { }
7764 },
7765 .chained = true,
7766 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7767 },
7768 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7769 .type = HDA_FIXUP_PINS,
7770 .v.pins = (const struct hda_pintbl[]) {
7771 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7772 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7773 { }
7774 },
7775 .chained = true,
7776 .chain_id = ALC269_FIXUP_HEADSET_MODE
7777 },
7778 [ALC269_FIXUP_HEADSET_MODE] = {
7779 .type = HDA_FIXUP_FUNC,
7780 .v.func = alc_fixup_headset_mode,
7781 .chained = true,
7782 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7783 },
7784 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7785 .type = HDA_FIXUP_FUNC,
7786 .v.func = alc_fixup_headset_mode_no_hp_mic,
7787 },
7788 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7789 .type = HDA_FIXUP_PINS,
7790 .v.pins = (const struct hda_pintbl[]) {
7791 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7792 { }
7793 },
7794 .chained = true,
7795 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7796 },
7797 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7798 .type = HDA_FIXUP_PINS,
7799 .v.pins = (const struct hda_pintbl[]) {
7800 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7801 { }
7802 },
7803 .chained = true,
7804 .chain_id = ALC269_FIXUP_HEADSET_MIC
7805 },
7806 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
7807 .type = HDA_FIXUP_PINS,
7808 .v.pins = (const struct hda_pintbl[]) {
7809 {0x12, 0x90a60130},
7810 {0x13, 0x40000000},
7811 {0x14, 0x90170110},
7812 {0x18, 0x411111f0},
7813 {0x19, 0x04a11040},
7814 {0x1a, 0x411111f0},
7815 {0x1b, 0x90170112},
7816 {0x1d, 0x40759a05},
7817 {0x1e, 0x411111f0},
7818 {0x21, 0x04211020},
7819 { }
7820 },
7821 .chained = true,
7822 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7823 },
7824 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7825 .type = HDA_FIXUP_FUNC,
7826 .v.func = alc298_fixup_huawei_mbx_stereo,
7827 .chained = true,
7828 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7829 },
7830 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7831 .type = HDA_FIXUP_FUNC,
7832 .v.func = alc269_fixup_x101_headset_mic,
7833 },
7834 [ALC269_FIXUP_ASUS_X101_VERB] = {
7835 .type = HDA_FIXUP_VERBS,
7836 .v.verbs = (const struct hda_verb[]) {
7837 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7838 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7839 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7840 { }
7841 },
7842 .chained = true,
7843 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7844 },
7845 [ALC269_FIXUP_ASUS_X101] = {
7846 .type = HDA_FIXUP_PINS,
7847 .v.pins = (const struct hda_pintbl[]) {
7848 { 0x18, 0x04a1182c }, /* Headset mic */
7849 { }
7850 },
7851 .chained = true,
7852 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7853 },
7854 [ALC271_FIXUP_AMIC_MIC2] = {
7855 .type = HDA_FIXUP_PINS,
7856 .v.pins = (const struct hda_pintbl[]) {
7857 { 0x14, 0x99130110 }, /* speaker */
7858 { 0x19, 0x01a19c20 }, /* mic */
7859 { 0x1b, 0x99a7012f }, /* int-mic */
7860 { 0x21, 0x0121401f }, /* HP out */
7861 { }
7862 },
7863 },
7864 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
7865 .type = HDA_FIXUP_FUNC,
7866 .v.func = alc271_hp_gate_mic_jack,
7867 .chained = true,
7868 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7869 },
7870 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7871 .type = HDA_FIXUP_FUNC,
7872 .v.func = alc269_fixup_limit_int_mic_boost,
7873 .chained = true,
7874 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7875 },
7876 [ALC269_FIXUP_ACER_AC700] = {
7877 .type = HDA_FIXUP_PINS,
7878 .v.pins = (const struct hda_pintbl[]) {
7879 { 0x12, 0x99a3092f }, /* int-mic */
7880 { 0x14, 0x99130110 }, /* speaker */
7881 { 0x18, 0x03a11c20 }, /* mic */
7882 { 0x1e, 0x0346101e }, /* SPDIF1 */
7883 { 0x21, 0x0321101f }, /* HP out */
7884 { }
7885 },
7886 .chained = true,
7887 .chain_id = ALC271_FIXUP_DMIC,
7888 },
7889 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7890 .type = HDA_FIXUP_FUNC,
7891 .v.func = alc269_fixup_limit_int_mic_boost,
7892 .chained = true,
7893 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7894 },
7895 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7896 .type = HDA_FIXUP_FUNC,
7897 .v.func = alc269_fixup_limit_int_mic_boost,
7898 .chained = true,
7899 .chain_id = ALC269VB_FIXUP_DMIC,
7900 },
7901 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7902 .type = HDA_FIXUP_VERBS,
7903 .v.verbs = (const struct hda_verb[]) {
7904 /* class-D output amp +5dB */
7905 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7906 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7907 {}
7908 },
7909 .chained = true,
7910 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7911 },
7912 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7913 .type = HDA_FIXUP_PINS,
7914 .v.pins = (const struct hda_pintbl[]) {
7915 { 0x18, 0x01a110f0 }, /* use as headset mic */
7916 { }
7917 },
7918 .chained = true,
7919 .chain_id = ALC269_FIXUP_HEADSET_MIC
7920 },
7921 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7922 .type = HDA_FIXUP_FUNC,
7923 .v.func = alc269_fixup_limit_int_mic_boost,
7924 .chained = true,
7925 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7926 },
7927 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7928 .type = HDA_FIXUP_PINS,
7929 .v.pins = (const struct hda_pintbl[]) {
7930 { 0x12, 0x99a3092f }, /* int-mic */
7931 { 0x18, 0x03a11d20 }, /* mic */
7932 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7933 { }
7934 },
7935 },
7936 [ALC283_FIXUP_CHROME_BOOK] = {
7937 .type = HDA_FIXUP_FUNC,
7938 .v.func = alc283_fixup_chromebook,
7939 },
7940 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7941 .type = HDA_FIXUP_FUNC,
7942 .v.func = alc283_fixup_sense_combo_jack,
7943 .chained = true,
7944 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7945 },
7946 [ALC282_FIXUP_ASUS_TX300] = {
7947 .type = HDA_FIXUP_FUNC,
7948 .v.func = alc282_fixup_asus_tx300,
7949 },
7950 [ALC283_FIXUP_INT_MIC] = {
7951 .type = HDA_FIXUP_VERBS,
7952 .v.verbs = (const struct hda_verb[]) {
7953 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7954 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7955 { }
7956 },
7957 .chained = true,
7958 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7959 },
7960 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7961 .type = HDA_FIXUP_PINS,
7962 .v.pins = (const struct hda_pintbl[]) {
7963 { 0x17, 0x90170112 }, /* subwoofer */
7964 { }
7965 },
7966 .chained = true,
7967 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7968 },
7969 [ALC290_FIXUP_SUBWOOFER] = {
7970 .type = HDA_FIXUP_PINS,
7971 .v.pins = (const struct hda_pintbl[]) {
7972 { 0x17, 0x90170112 }, /* subwoofer */
7973 { }
7974 },
7975 .chained = true,
7976 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7977 },
7978 [ALC290_FIXUP_MONO_SPEAKERS] = {
7979 .type = HDA_FIXUP_FUNC,
7980 .v.func = alc290_fixup_mono_speakers,
7981 },
7982 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7983 .type = HDA_FIXUP_FUNC,
7984 .v.func = alc290_fixup_mono_speakers,
7985 .chained = true,
7986 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7987 },
7988 [ALC269_FIXUP_THINKPAD_ACPI] = {
7989 .type = HDA_FIXUP_FUNC,
7990 .v.func = alc_fixup_thinkpad_acpi,
7991 .chained = true,
7992 .chain_id = ALC269_FIXUP_SKU_IGNORE,
7993 },
7994 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7995 .type = HDA_FIXUP_FUNC,
7996 .v.func = alc_fixup_inv_dmic,
7997 .chained = true,
7998 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7999 },
8000 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
8001 .type = HDA_FIXUP_PINS,
8002 .v.pins = (const struct hda_pintbl[]) {
8003 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8004 { }
8005 },
8006 .chained = true,
8007 .chain_id = ALC255_FIXUP_HEADSET_MODE
8008 },
8009 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8010 .type = HDA_FIXUP_PINS,
8011 .v.pins = (const struct hda_pintbl[]) {
8012 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8013 { }
8014 },
8015 .chained = true,
8016 .chain_id = ALC255_FIXUP_HEADSET_MODE
8017 },
8018 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8019 .type = HDA_FIXUP_PINS,
8020 .v.pins = (const struct hda_pintbl[]) {
8021 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8022 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8023 { }
8024 },
8025 .chained = true,
8026 .chain_id = ALC255_FIXUP_HEADSET_MODE
8027 },
8028 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
8029 .type = HDA_FIXUP_PINS,
8030 .v.pins = (const struct hda_pintbl[]) {
8031 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8032 { }
8033 },
8034 .chained = true,
8035 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8036 },
8037 [ALC255_FIXUP_HEADSET_MODE] = {
8038 .type = HDA_FIXUP_FUNC,
8039 .v.func = alc_fixup_headset_mode_alc255,
8040 .chained = true,
8041 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8042 },
8043 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
8044 .type = HDA_FIXUP_FUNC,
8045 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
8046 },
8047 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8048 .type = HDA_FIXUP_PINS,
8049 .v.pins = (const struct hda_pintbl[]) {
8050 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8051 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8052 { }
8053 },
8054 .chained = true,
8055 .chain_id = ALC269_FIXUP_HEADSET_MODE
8056 },
8057 [ALC292_FIXUP_TPT440_DOCK] = {
8058 .type = HDA_FIXUP_FUNC,
8059 .v.func = alc_fixup_tpt440_dock,
8060 .chained = true,
8061 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8062 },
8063 [ALC292_FIXUP_TPT440] = {
8064 .type = HDA_FIXUP_FUNC,
8065 .v.func = alc_fixup_disable_aamix,
8066 .chained = true,
8067 .chain_id = ALC292_FIXUP_TPT440_DOCK,
8068 },
8069 [ALC283_FIXUP_HEADSET_MIC] = {
8070 .type = HDA_FIXUP_PINS,
8071 .v.pins = (const struct hda_pintbl[]) {
8072 { 0x19, 0x04a110f0 },
8073 { },
8074 },
8075 },
8076 [ALC255_FIXUP_MIC_MUTE_LED] = {
8077 .type = HDA_FIXUP_FUNC,
8078 .v.func = alc_fixup_micmute_led,
8079 },
8080 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
8081 .type = HDA_FIXUP_PINS,
8082 .v.pins = (const struct hda_pintbl[]) {
8083 { 0x12, 0x90a60130 },
8084 { 0x14, 0x90170110 },
8085 { 0x17, 0x40000008 },
8086 { 0x18, 0x411111f0 },
8087 { 0x19, 0x01a1913c },
8088 { 0x1a, 0x411111f0 },
8089 { 0x1b, 0x411111f0 },
8090 { 0x1d, 0x40f89b2d },
8091 { 0x1e, 0x411111f0 },
8092 { 0x21, 0x0321101f },
8093 { },
8094 },
8095 },
8096 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
8097 .type = HDA_FIXUP_FUNC,
8098 .v.func = alc269vb_fixup_aspire_e1_coef,
8099 },
8100 [ALC280_FIXUP_HP_GPIO4] = {
8101 .type = HDA_FIXUP_FUNC,
8102 .v.func = alc280_fixup_hp_gpio4,
8103 },
8104 [ALC286_FIXUP_HP_GPIO_LED] = {
8105 .type = HDA_FIXUP_FUNC,
8106 .v.func = alc286_fixup_hp_gpio_led,
8107 },
8108 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
8109 .type = HDA_FIXUP_FUNC,
8110 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
8111 },
8112 [ALC280_FIXUP_HP_DOCK_PINS] = {
8113 .type = HDA_FIXUP_PINS,
8114 .v.pins = (const struct hda_pintbl[]) {
8115 { 0x1b, 0x21011020 }, /* line-out */
8116 { 0x1a, 0x01a1903c }, /* headset mic */
8117 { 0x18, 0x2181103f }, /* line-in */
8118 { },
8119 },
8120 .chained = true,
8121 .chain_id = ALC280_FIXUP_HP_GPIO4
8122 },
8123 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
8124 .type = HDA_FIXUP_PINS,
8125 .v.pins = (const struct hda_pintbl[]) {
8126 { 0x1b, 0x21011020 }, /* line-out */
8127 { 0x18, 0x2181103f }, /* line-in */
8128 { },
8129 },
8130 .chained = true,
8131 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
8132 },
8133 [ALC280_FIXUP_HP_9480M] = {
8134 .type = HDA_FIXUP_FUNC,
8135 .v.func = alc280_fixup_hp_9480m,
8136 },
8137 [ALC245_FIXUP_HP_X360_AMP] = {
8138 .type = HDA_FIXUP_FUNC,
8139 .v.func = alc245_fixup_hp_x360_amp,
8140 .chained = true,
8141 .chain_id = ALC245_FIXUP_HP_GPIO_LED
8142 },
8143 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
8144 .type = HDA_FIXUP_FUNC,
8145 .v.func = alc_fixup_headset_mode_dell_alc288,
8146 .chained = true,
8147 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8148 },
8149 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8150 .type = HDA_FIXUP_PINS,
8151 .v.pins = (const struct hda_pintbl[]) {
8152 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8153 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8154 { }
8155 },
8156 .chained = true,
8157 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
8158 },
8159 [ALC288_FIXUP_DISABLE_AAMIX] = {
8160 .type = HDA_FIXUP_FUNC,
8161 .v.func = alc_fixup_disable_aamix,
8162 .chained = true,
8163 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
8164 },
8165 [ALC288_FIXUP_DELL_XPS_13] = {
8166 .type = HDA_FIXUP_FUNC,
8167 .v.func = alc_fixup_dell_xps13,
8168 .chained = true,
8169 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
8170 },
8171 [ALC292_FIXUP_DISABLE_AAMIX] = {
8172 .type = HDA_FIXUP_FUNC,
8173 .v.func = alc_fixup_disable_aamix,
8174 .chained = true,
8175 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8176 },
8177 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8178 .type = HDA_FIXUP_FUNC,
8179 .v.func = alc_fixup_disable_aamix,
8180 .chained = true,
8181 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8182 },
8183 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8184 .type = HDA_FIXUP_FUNC,
8185 .v.func = alc_fixup_dell_xps13,
8186 .chained = true,
8187 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
8188 },
8189 [ALC292_FIXUP_DELL_E7X] = {
8190 .type = HDA_FIXUP_FUNC,
8191 .v.func = alc_fixup_micmute_led,
8192 /* micmute fixup must be applied at last */
8193 .chained_before = true,
8194 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8195 },
8196 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8197 .type = HDA_FIXUP_PINS,
8198 .v.pins = (const struct hda_pintbl[]) {
8199 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8200 { }
8201 },
8202 .chained_before = true,
8203 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8204 },
8205 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8206 .type = HDA_FIXUP_PINS,
8207 .v.pins = (const struct hda_pintbl[]) {
8208 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8209 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8210 { }
8211 },
8212 .chained = true,
8213 .chain_id = ALC269_FIXUP_HEADSET_MODE
8214 },
8215 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8216 .type = HDA_FIXUP_PINS,
8217 .v.pins = (const struct hda_pintbl[]) {
8218 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8219 { }
8220 },
8221 .chained = true,
8222 .chain_id = ALC269_FIXUP_HEADSET_MODE
8223 },
8224 [ALC275_FIXUP_DELL_XPS] = {
8225 .type = HDA_FIXUP_VERBS,
8226 .v.verbs = (const struct hda_verb[]) {
8227 /* Enables internal speaker */
8228 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8229 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8230 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8231 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8232 {}
8233 }
8234 },
8235 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8236 .type = HDA_FIXUP_FUNC,
8237 .v.func = alc_fixup_disable_aamix,
8238 .chained = true,
8239 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8240 },
8241 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8242 .type = HDA_FIXUP_FUNC,
8243 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8244 },
8245 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8246 .type = HDA_FIXUP_FUNC,
8247 .v.func = alc_fixup_inv_dmic,
8248 .chained = true,
8249 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8250 },
8251 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8252 .type = HDA_FIXUP_FUNC,
8253 .v.func = alc269_fixup_limit_int_mic_boost
8254 },
8255 [ALC255_FIXUP_DELL_SPK_NOISE] = {
8256 .type = HDA_FIXUP_FUNC,
8257 .v.func = alc_fixup_disable_aamix,
8258 .chained = true,
8259 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8260 },
8261 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
8262 .type = HDA_FIXUP_FUNC,
8263 .v.func = alc_fixup_disable_mic_vref,
8264 .chained = true,
8265 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8266 },
8267 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8268 .type = HDA_FIXUP_VERBS,
8269 .v.verbs = (const struct hda_verb[]) {
8270 /* Disable pass-through path for FRONT 14h */
8271 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8272 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8273 {}
8274 },
8275 .chained = true,
8276 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
8277 },
8278 [ALC280_FIXUP_HP_HEADSET_MIC] = {
8279 .type = HDA_FIXUP_FUNC,
8280 .v.func = alc_fixup_disable_aamix,
8281 .chained = true,
8282 .chain_id = ALC269_FIXUP_HEADSET_MIC,
8283 },
8284 [ALC221_FIXUP_HP_FRONT_MIC] = {
8285 .type = HDA_FIXUP_PINS,
8286 .v.pins = (const struct hda_pintbl[]) {
8287 { 0x19, 0x02a19020 }, /* Front Mic */
8288 { }
8289 },
8290 },
8291 [ALC292_FIXUP_TPT460] = {
8292 .type = HDA_FIXUP_FUNC,
8293 .v.func = alc_fixup_tpt440_dock,
8294 .chained = true,
8295 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8296 },
8297 [ALC298_FIXUP_SPK_VOLUME] = {
8298 .type = HDA_FIXUP_FUNC,
8299 .v.func = alc298_fixup_speaker_volume,
8300 .chained = true,
8301 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
8302 },
8303 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8304 .type = HDA_FIXUP_FUNC,
8305 .v.func = alc298_fixup_speaker_volume,
8306 },
8307 [ALC295_FIXUP_DISABLE_DAC3] = {
8308 .type = HDA_FIXUP_FUNC,
8309 .v.func = alc295_fixup_disable_dac3,
8310 },
8311 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8312 .type = HDA_FIXUP_FUNC,
8313 .v.func = alc285_fixup_speaker2_to_dac1,
8314 .chained = true,
8315 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8316 },
8317 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8318 .type = HDA_FIXUP_FUNC,
8319 .v.func = alc285_fixup_speaker2_to_dac1,
8320 .chained = true,
8321 .chain_id = ALC245_FIXUP_CS35L41_SPI_2
8322 },
8323 [ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8324 .type = HDA_FIXUP_PINS,
8325 .v.pins = (const struct hda_pintbl[]) {
8326 { 0x19, 0x03a11050 },
8327 { 0x1b, 0x03a11c30 },
8328 { }
8329 },
8330 .chained = true,
8331 .chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8332 },
8333 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8334 .type = HDA_FIXUP_PINS,
8335 .v.pins = (const struct hda_pintbl[]) {
8336 { 0x14, 0x90170120 },
8337 { }
8338 },
8339 .chained = true,
8340 .chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8341 },
8342 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8343 .type = HDA_FIXUP_FUNC,
8344 .v.func = alc285_fixup_speaker2_to_dac1,
8345 .chained = true,
8346 .chain_id = ALC287_FIXUP_CS35L41_I2C_2
8347 },
8348 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8349 .type = HDA_FIXUP_PINS,
8350 .v.pins = (const struct hda_pintbl[]) {
8351 { 0x19, 0x03a11050 },
8352 { 0x1b, 0x03a11c30 },
8353 { }
8354 },
8355 .chained = true,
8356 .chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8357 },
8358 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8359 .type = HDA_FIXUP_PINS,
8360 .v.pins = (const struct hda_pintbl[]) {
8361 { 0x1b, 0x90170151 },
8362 { }
8363 },
8364 .chained = true,
8365 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8366 },
8367 [ALC269_FIXUP_ATIV_BOOK_8] = {
8368 .type = HDA_FIXUP_FUNC,
8369 .v.func = alc_fixup_auto_mute_via_amp,
8370 .chained = true,
8371 .chain_id = ALC269_FIXUP_NO_SHUTUP
8372 },
8373 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8374 .type = HDA_FIXUP_PINS,
8375 .v.pins = (const struct hda_pintbl[]) {
8376 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8377 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8378 { }
8379 },
8380 .chained = true,
8381 .chain_id = ALC269_FIXUP_HEADSET_MODE
8382 },
8383 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8384 .type = HDA_FIXUP_PINS,
8385 .v.pins = (const struct hda_pintbl[]) {
8386 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8387 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8388 { }
8389 },
8390 .chained = true,
8391 .chain_id = ALC269_FIXUP_HEADSET_MODE
8392 },
8393 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8394 .type = HDA_FIXUP_FUNC,
8395 .v.func = alc_fixup_headset_mode,
8396 },
8397 [ALC256_FIXUP_ASUS_MIC] = {
8398 .type = HDA_FIXUP_PINS,
8399 .v.pins = (const struct hda_pintbl[]) {
8400 { 0x13, 0x90a60160 }, /* use as internal mic */
8401 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8402 { }
8403 },
8404 .chained = true,
8405 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8406 },
8407 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
8408 .type = HDA_FIXUP_FUNC,
8409 /* Set up GPIO2 for the speaker amp */
8410 .v.func = alc_fixup_gpio4,
8411 },
8412 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8413 .type = HDA_FIXUP_PINS,
8414 .v.pins = (const struct hda_pintbl[]) {
8415 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8416 { }
8417 },
8418 .chained = true,
8419 .chain_id = ALC269_FIXUP_HEADSET_MIC
8420 },
8421 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8422 .type = HDA_FIXUP_VERBS,
8423 .v.verbs = (const struct hda_verb[]) {
8424 /* Enables internal speaker */
8425 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8426 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8427 {}
8428 },
8429 .chained = true,
8430 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8431 },
8432 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8433 .type = HDA_FIXUP_FUNC,
8434 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8435 .chained = true,
8436 .chain_id = ALC269_FIXUP_GPIO2
8437 },
8438 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
8439 .type = HDA_FIXUP_VERBS,
8440 .v.verbs = (const struct hda_verb[]) {
8441 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8442 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8443 { }
8444 },
8445 .chained = true,
8446 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8447 },
8448 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8449 .type = HDA_FIXUP_PINS,
8450 .v.pins = (const struct hda_pintbl[]) {
8451 /* Change the mic location from front to right, otherwise there are
8452 two front mics with the same name, pulseaudio can't handle them.
8453 This is just a temporary workaround, after applying this fixup,
8454 there will be one "Front Mic" and one "Mic" in this machine.
8455 */
8456 { 0x1a, 0x04a19040 },
8457 { }
8458 },
8459 },
8460 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8461 .type = HDA_FIXUP_PINS,
8462 .v.pins = (const struct hda_pintbl[]) {
8463 { 0x16, 0x0101102f }, /* Rear Headset HP */
8464 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8465 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8466 { 0x1b, 0x02011020 },
8467 { }
8468 },
8469 .chained = true,
8470 .chain_id = ALC225_FIXUP_S3_POP_NOISE
8471 },
8472 [ALC225_FIXUP_S3_POP_NOISE] = {
8473 .type = HDA_FIXUP_FUNC,
8474 .v.func = alc225_fixup_s3_pop_noise,
8475 .chained = true,
8476 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8477 },
8478 [ALC700_FIXUP_INTEL_REFERENCE] = {
8479 .type = HDA_FIXUP_VERBS,
8480 .v.verbs = (const struct hda_verb[]) {
8481 /* Enables internal speaker */
8482 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8483 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8484 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8485 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8486 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8487 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8488 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8489 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8490 {}
8491 }
8492 },
8493 [ALC274_FIXUP_DELL_BIND_DACS] = {
8494 .type = HDA_FIXUP_FUNC,
8495 .v.func = alc274_fixup_bind_dacs,
8496 .chained = true,
8497 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8498 },
8499 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8500 .type = HDA_FIXUP_PINS,
8501 .v.pins = (const struct hda_pintbl[]) {
8502 { 0x1b, 0x0401102f },
8503 { }
8504 },
8505 .chained = true,
8506 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8507 },
8508 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
8509 .type = HDA_FIXUP_FUNC,
8510 .v.func = alc_fixup_tpt470_dock,
8511 .chained = true,
8512 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8513 },
8514 [ALC298_FIXUP_TPT470_DOCK] = {
8515 .type = HDA_FIXUP_FUNC,
8516 .v.func = alc_fixup_tpt470_dacs,
8517 .chained = true,
8518 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8519 },
8520 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8521 .type = HDA_FIXUP_PINS,
8522 .v.pins = (const struct hda_pintbl[]) {
8523 { 0x14, 0x0201101f },
8524 { }
8525 },
8526 .chained = true,
8527 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8528 },
8529 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8530 .type = HDA_FIXUP_PINS,
8531 .v.pins = (const struct hda_pintbl[]) {
8532 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8533 { }
8534 },
8535 .chained = true,
8536 .chain_id = ALC269_FIXUP_HEADSET_MIC
8537 },
8538 [ALC295_FIXUP_HP_X360] = {
8539 .type = HDA_FIXUP_FUNC,
8540 .v.func = alc295_fixup_hp_top_speakers,
8541 .chained = true,
8542 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8543 },
8544 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8545 .type = HDA_FIXUP_PINS,
8546 .v.pins = (const struct hda_pintbl[]) {
8547 { 0x19, 0x0181313f},
8548 { }
8549 },
8550 .chained = true,
8551 .chain_id = ALC269_FIXUP_HEADSET_MIC
8552 },
8553 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8554 .type = HDA_FIXUP_FUNC,
8555 .v.func = alc285_fixup_invalidate_dacs,
8556 .chained = true,
8557 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8558 },
8559 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8560 .type = HDA_FIXUP_FUNC,
8561 .v.func = alc_fixup_auto_mute_via_amp,
8562 },
8563 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8564 .type = HDA_FIXUP_PINS,
8565 .v.pins = (const struct hda_pintbl[]) {
8566 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8567 { }
8568 },
8569 .chained = true,
8570 .chain_id = ALC269_FIXUP_HEADSET_MIC
8571 },
8572 [ALC294_FIXUP_ASUS_MIC] = {
8573 .type = HDA_FIXUP_PINS,
8574 .v.pins = (const struct hda_pintbl[]) {
8575 { 0x13, 0x90a60160 }, /* use as internal mic */
8576 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8577 { }
8578 },
8579 .chained = true,
8580 .chain_id = ALC269_FIXUP_HEADSET_MIC
8581 },
8582 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8583 .type = HDA_FIXUP_PINS,
8584 .v.pins = (const struct hda_pintbl[]) {
8585 { 0x19, 0x01a1103c }, /* use as headset mic */
8586 { }
8587 },
8588 .chained = true,
8589 .chain_id = ALC269_FIXUP_HEADSET_MIC
8590 },
8591 [ALC294_FIXUP_ASUS_SPK] = {
8592 .type = HDA_FIXUP_VERBS,
8593 .v.verbs = (const struct hda_verb[]) {
8594 /* Set EAPD high */
8595 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8596 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
8597 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8598 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8599 { }
8600 },
8601 .chained = true,
8602 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8603 },
8604 [ALC295_FIXUP_CHROME_BOOK] = {
8605 .type = HDA_FIXUP_FUNC,
8606 .v.func = alc295_fixup_chromebook,
8607 .chained = true,
8608 .chain_id = ALC225_FIXUP_HEADSET_JACK
8609 },
8610 [ALC225_FIXUP_HEADSET_JACK] = {
8611 .type = HDA_FIXUP_FUNC,
8612 .v.func = alc_fixup_headset_jack,
8613 },
8614 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8615 .type = HDA_FIXUP_PINS,
8616 .v.pins = (const struct hda_pintbl[]) {
8617 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8618 { }
8619 },
8620 .chained = true,
8621 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8622 },
8623 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8624 .type = HDA_FIXUP_VERBS,
8625 .v.verbs = (const struct hda_verb[]) {
8626 /* Disable PCBEEP-IN passthrough */
8627 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8628 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8629 { }
8630 },
8631 .chained = true,
8632 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8633 },
8634 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8635 .type = HDA_FIXUP_PINS,
8636 .v.pins = (const struct hda_pintbl[]) {
8637 { 0x19, 0x03a11130 },
8638 { 0x1a, 0x90a60140 }, /* use as internal mic */
8639 { }
8640 },
8641 .chained = true,
8642 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8643 },
8644 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8645 .type = HDA_FIXUP_PINS,
8646 .v.pins = (const struct hda_pintbl[]) {
8647 { 0x16, 0x01011020 }, /* Rear Line out */
8648 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8649 { }
8650 },
8651 .chained = true,
8652 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8653 },
8654 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8655 .type = HDA_FIXUP_FUNC,
8656 .v.func = alc_fixup_auto_mute_via_amp,
8657 .chained = true,
8658 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8659 },
8660 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8661 .type = HDA_FIXUP_FUNC,
8662 .v.func = alc_fixup_disable_mic_vref,
8663 .chained = true,
8664 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8665 },
8666 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8667 .type = HDA_FIXUP_VERBS,
8668 .v.verbs = (const struct hda_verb[]) {
8669 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8670 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8671 { }
8672 },
8673 .chained = true,
8674 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8675 },
8676 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8677 .type = HDA_FIXUP_PINS,
8678 .v.pins = (const struct hda_pintbl[]) {
8679 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8680 { }
8681 },
8682 .chained = true,
8683 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8684 },
8685 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8686 .type = HDA_FIXUP_PINS,
8687 .v.pins = (const struct hda_pintbl[]) {
8688 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8689 { }
8690 },
8691 .chained = true,
8692 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8693 },
8694 [ALC299_FIXUP_PREDATOR_SPK] = {
8695 .type = HDA_FIXUP_PINS,
8696 .v.pins = (const struct hda_pintbl[]) {
8697 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8698 { }
8699 }
8700 },
8701 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
8702 .type = HDA_FIXUP_PINS,
8703 .v.pins = (const struct hda_pintbl[]) {
8704 { 0x19, 0x04a11040 },
8705 { 0x21, 0x04211020 },
8706 { }
8707 },
8708 .chained = true,
8709 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8710 },
8711 [ALC289_FIXUP_DELL_SPK1] = {
8712 .type = HDA_FIXUP_PINS,
8713 .v.pins = (const struct hda_pintbl[]) {
8714 { 0x14, 0x90170140 },
8715 { }
8716 },
8717 .chained = true,
8718 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8719 },
8720 [ALC289_FIXUP_DELL_SPK2] = {
8721 .type = HDA_FIXUP_PINS,
8722 .v.pins = (const struct hda_pintbl[]) {
8723 { 0x17, 0x90170130 }, /* bass spk */
8724 { }
8725 },
8726 .chained = true,
8727 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8728 },
8729 [ALC289_FIXUP_DUAL_SPK] = {
8730 .type = HDA_FIXUP_FUNC,
8731 .v.func = alc285_fixup_speaker2_to_dac1,
8732 .chained = true,
8733 .chain_id = ALC289_FIXUP_DELL_SPK2
8734 },
8735 [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8736 .type = HDA_FIXUP_FUNC,
8737 .v.func = alc285_fixup_speaker2_to_dac1,
8738 .chained = true,
8739 .chain_id = ALC289_FIXUP_DELL_SPK1
8740 },
8741 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8742 .type = HDA_FIXUP_FUNC,
8743 .v.func = alc285_fixup_speaker2_to_dac1,
8744 .chained = true,
8745 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8746 },
8747 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
8748 .type = HDA_FIXUP_FUNC,
8749 /* The GPIO must be pulled to initialize the AMP */
8750 .v.func = alc_fixup_gpio4,
8751 .chained = true,
8752 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
8753 },
8754 [ALC294_FIXUP_ASUS_ALLY] = {
8755 .type = HDA_FIXUP_FUNC,
8756 .v.func = cs35l41_fixup_i2c_two,
8757 .chained = true,
8758 .chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8759 },
8760 [ALC294_FIXUP_ASUS_ALLY_PINS] = {
8761 .type = HDA_FIXUP_PINS,
8762 .v.pins = (const struct hda_pintbl[]) {
8763 { 0x19, 0x03a11050 },
8764 { 0x1a, 0x03a11c30 },
8765 { 0x21, 0x03211420 },
8766 { }
8767 },
8768 .chained = true,
8769 .chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8770 },
8771 [ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8772 .type = HDA_FIXUP_VERBS,
8773 .v.verbs = (const struct hda_verb[]) {
8774 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8775 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8776 { 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8777 { 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8778 { 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8779 { 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8780 { 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8781 { 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8782 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8783 { 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8784 { 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8785 { 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8786 { }
8787 },
8788 .chained = true,
8789 .chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8790 },
8791 [ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8792 .type = HDA_FIXUP_FUNC,
8793 .v.func = alc285_fixup_speaker2_to_dac1,
8794 },
8795 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8796 .type = HDA_FIXUP_FUNC,
8797 .v.func = alc285_fixup_thinkpad_x1_gen7,
8798 .chained = true,
8799 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8800 },
8801 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8802 .type = HDA_FIXUP_FUNC,
8803 .v.func = alc_fixup_headset_jack,
8804 .chained = true,
8805 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
8806 },
8807 [ALC294_FIXUP_ASUS_HPE] = {
8808 .type = HDA_FIXUP_VERBS,
8809 .v.verbs = (const struct hda_verb[]) {
8810 /* Set EAPD high */
8811 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8812 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8813 { }
8814 },
8815 .chained = true,
8816 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8817 },
8818 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8819 .type = HDA_FIXUP_PINS,
8820 .v.pins = (const struct hda_pintbl[]) {
8821 { 0x19, 0x03a11050 }, /* front HP mic */
8822 { 0x1a, 0x01a11830 }, /* rear external mic */
8823 { 0x21, 0x03211020 }, /* front HP out */
8824 { }
8825 },
8826 .chained = true,
8827 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8828 },
8829 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8830 .type = HDA_FIXUP_VERBS,
8831 .v.verbs = (const struct hda_verb[]) {
8832 /* set 0x15 to HP-OUT ctrl */
8833 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8834 /* unmute the 0x15 amp */
8835 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8836 { }
8837 },
8838 .chained = true,
8839 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8840 },
8841 [ALC294_FIXUP_ASUS_GX502_HP] = {
8842 .type = HDA_FIXUP_FUNC,
8843 .v.func = alc294_fixup_gx502_hp,
8844 },
8845 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8846 .type = HDA_FIXUP_PINS,
8847 .v.pins = (const struct hda_pintbl[]) {
8848 { 0x19, 0x01a11050 }, /* rear HP mic */
8849 { 0x1a, 0x01a11830 }, /* rear external mic */
8850 { 0x21, 0x012110f0 }, /* rear HP out */
8851 { }
8852 },
8853 .chained = true,
8854 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8855 },
8856 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8857 .type = HDA_FIXUP_VERBS,
8858 .v.verbs = (const struct hda_verb[]) {
8859 /* set 0x15 to HP-OUT ctrl */
8860 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8861 /* unmute the 0x15 amp */
8862 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8863 /* set 0x1b to HP-OUT */
8864 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8865 { }
8866 },
8867 .chained = true,
8868 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8869 },
8870 [ALC294_FIXUP_ASUS_GU502_HP] = {
8871 .type = HDA_FIXUP_FUNC,
8872 .v.func = alc294_fixup_gu502_hp,
8873 },
8874 [ALC294_FIXUP_ASUS_G513_PINS] = {
8875 .type = HDA_FIXUP_PINS,
8876 .v.pins = (const struct hda_pintbl[]) {
8877 { 0x19, 0x03a11050 }, /* front HP mic */
8878 { 0x1a, 0x03a11c30 }, /* rear external mic */
8879 { 0x21, 0x03211420 }, /* front HP out */
8880 { }
8881 },
8882 },
8883 [ALC285_FIXUP_ASUS_G533Z_PINS] = {
8884 .type = HDA_FIXUP_PINS,
8885 .v.pins = (const struct hda_pintbl[]) {
8886 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8887 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
8888 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8889 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8890 { 0x21, 0x03211420 },
8891 { }
8892 },
8893 },
8894 [ALC294_FIXUP_ASUS_COEF_1B] = {
8895 .type = HDA_FIXUP_VERBS,
8896 .v.verbs = (const struct hda_verb[]) {
8897 /* Set bit 10 to correct noisy output after reboot from
8898 * Windows 10 (due to pop noise reduction?)
8899 */
8900 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8901 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8902 { }
8903 },
8904 .chained = true,
8905 .chain_id = ALC289_FIXUP_ASUS_GA401,
8906 },
8907 [ALC285_FIXUP_HP_GPIO_LED] = {
8908 .type = HDA_FIXUP_FUNC,
8909 .v.func = alc285_fixup_hp_gpio_led,
8910 },
8911 [ALC285_FIXUP_HP_MUTE_LED] = {
8912 .type = HDA_FIXUP_FUNC,
8913 .v.func = alc285_fixup_hp_mute_led,
8914 },
8915 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
8916 .type = HDA_FIXUP_FUNC,
8917 .v.func = alc285_fixup_hp_spectre_x360_mute_led,
8918 },
8919 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
8920 .type = HDA_FIXUP_FUNC,
8921 .v.func = alc236_fixup_hp_mute_led_coefbit2,
8922 },
8923 [ALC236_FIXUP_HP_GPIO_LED] = {
8924 .type = HDA_FIXUP_FUNC,
8925 .v.func = alc236_fixup_hp_gpio_led,
8926 },
8927 [ALC236_FIXUP_HP_MUTE_LED] = {
8928 .type = HDA_FIXUP_FUNC,
8929 .v.func = alc236_fixup_hp_mute_led,
8930 },
8931 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8932 .type = HDA_FIXUP_FUNC,
8933 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8934 },
8935 [ALC298_FIXUP_SAMSUNG_AMP] = {
8936 .type = HDA_FIXUP_FUNC,
8937 .v.func = alc298_fixup_samsung_amp,
8938 .chained = true,
8939 .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
8940 },
8941 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8942 .type = HDA_FIXUP_VERBS,
8943 .v.verbs = (const struct hda_verb[]) {
8944 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8945 { }
8946 },
8947 },
8948 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8949 .type = HDA_FIXUP_VERBS,
8950 .v.verbs = (const struct hda_verb[]) {
8951 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8952 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8953 { }
8954 },
8955 },
8956 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8957 .type = HDA_FIXUP_PINS,
8958 .v.pins = (const struct hda_pintbl[]) {
8959 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8960 { }
8961 },
8962 .chained = true,
8963 .chain_id = ALC269_FIXUP_HEADSET_MODE
8964 },
8965 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8966 .type = HDA_FIXUP_PINS,
8967 .v.pins = (const struct hda_pintbl[]) {
8968 { 0x14, 0x90100120 }, /* use as internal speaker */
8969 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8970 { 0x1a, 0x01011020 }, /* use as line out */
8971 { },
8972 },
8973 .chained = true,
8974 .chain_id = ALC269_FIXUP_HEADSET_MIC
8975 },
8976 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8977 .type = HDA_FIXUP_PINS,
8978 .v.pins = (const struct hda_pintbl[]) {
8979 { 0x18, 0x02a11030 }, /* use as headset mic */
8980 { }
8981 },
8982 .chained = true,
8983 .chain_id = ALC269_FIXUP_HEADSET_MIC
8984 },
8985 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8986 .type = HDA_FIXUP_PINS,
8987 .v.pins = (const struct hda_pintbl[]) {
8988 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8989 { }
8990 },
8991 .chained = true,
8992 .chain_id = ALC269_FIXUP_HEADSET_MIC
8993 },
8994 [ALC289_FIXUP_ASUS_GA401] = {
8995 .type = HDA_FIXUP_FUNC,
8996 .v.func = alc289_fixup_asus_ga401,
8997 .chained = true,
8998 .chain_id = ALC289_FIXUP_ASUS_GA502,
8999 },
9000 [ALC289_FIXUP_ASUS_GA502] = {
9001 .type = HDA_FIXUP_PINS,
9002 .v.pins = (const struct hda_pintbl[]) {
9003 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
9004 { }
9005 },
9006 },
9007 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
9008 .type = HDA_FIXUP_PINS,
9009 .v.pins = (const struct hda_pintbl[]) {
9010 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
9011 { }
9012 },
9013 .chained = true,
9014 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
9015 },
9016 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
9017 .type = HDA_FIXUP_FUNC,
9018 .v.func = alc285_fixup_hp_gpio_amp_init,
9019 .chained = true,
9020 .chain_id = ALC285_FIXUP_HP_GPIO_LED
9021 },
9022 [ALC269_FIXUP_CZC_B20] = {
9023 .type = HDA_FIXUP_PINS,
9024 .v.pins = (const struct hda_pintbl[]) {
9025 { 0x12, 0x411111f0 },
9026 { 0x14, 0x90170110 }, /* speaker */
9027 { 0x15, 0x032f1020 }, /* HP out */
9028 { 0x17, 0x411111f0 },
9029 { 0x18, 0x03ab1040 }, /* mic */
9030 { 0x19, 0xb7a7013f },
9031 { 0x1a, 0x0181305f },
9032 { 0x1b, 0x411111f0 },
9033 { 0x1d, 0x411111f0 },
9034 { 0x1e, 0x411111f0 },
9035 { }
9036 },
9037 .chain_id = ALC269_FIXUP_DMIC,
9038 },
9039 [ALC269_FIXUP_CZC_TMI] = {
9040 .type = HDA_FIXUP_PINS,
9041 .v.pins = (const struct hda_pintbl[]) {
9042 { 0x12, 0x4000c000 },
9043 { 0x14, 0x90170110 }, /* speaker */
9044 { 0x15, 0x0421401f }, /* HP out */
9045 { 0x17, 0x411111f0 },
9046 { 0x18, 0x04a19020 }, /* mic */
9047 { 0x19, 0x411111f0 },
9048 { 0x1a, 0x411111f0 },
9049 { 0x1b, 0x411111f0 },
9050 { 0x1d, 0x40448505 },
9051 { 0x1e, 0x411111f0 },
9052 { 0x20, 0x8000ffff },
9053 { }
9054 },
9055 .chain_id = ALC269_FIXUP_DMIC,
9056 },
9057 [ALC269_FIXUP_CZC_L101] = {
9058 .type = HDA_FIXUP_PINS,
9059 .v.pins = (const struct hda_pintbl[]) {
9060 { 0x12, 0x40000000 },
9061 { 0x14, 0x01014010 }, /* speaker */
9062 { 0x15, 0x411111f0 }, /* HP out */
9063 { 0x16, 0x411111f0 },
9064 { 0x18, 0x01a19020 }, /* mic */
9065 { 0x19, 0x02a19021 },
9066 { 0x1a, 0x0181302f },
9067 { 0x1b, 0x0221401f },
9068 { 0x1c, 0x411111f0 },
9069 { 0x1d, 0x4044c601 },
9070 { 0x1e, 0x411111f0 },
9071 { }
9072 },
9073 .chain_id = ALC269_FIXUP_DMIC,
9074 },
9075 [ALC269_FIXUP_LEMOTE_A1802] = {
9076 .type = HDA_FIXUP_PINS,
9077 .v.pins = (const struct hda_pintbl[]) {
9078 { 0x12, 0x40000000 },
9079 { 0x14, 0x90170110 }, /* speaker */
9080 { 0x17, 0x411111f0 },
9081 { 0x18, 0x03a19040 }, /* mic1 */
9082 { 0x19, 0x90a70130 }, /* mic2 */
9083 { 0x1a, 0x411111f0 },
9084 { 0x1b, 0x411111f0 },
9085 { 0x1d, 0x40489d2d },
9086 { 0x1e, 0x411111f0 },
9087 { 0x20, 0x0003ffff },
9088 { 0x21, 0x03214020 },
9089 { }
9090 },
9091 .chain_id = ALC269_FIXUP_DMIC,
9092 },
9093 [ALC269_FIXUP_LEMOTE_A190X] = {
9094 .type = HDA_FIXUP_PINS,
9095 .v.pins = (const struct hda_pintbl[]) {
9096 { 0x14, 0x99130110 }, /* speaker */
9097 { 0x15, 0x0121401f }, /* HP out */
9098 { 0x18, 0x01a19c20 }, /* rear mic */
9099 { 0x19, 0x99a3092f }, /* front mic */
9100 { 0x1b, 0x0201401f }, /* front lineout */
9101 { }
9102 },
9103 .chain_id = ALC269_FIXUP_DMIC,
9104 },
9105 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
9106 .type = HDA_FIXUP_PINS,
9107 .v.pins = (const struct hda_pintbl[]) {
9108 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9109 { }
9110 },
9111 .chained = true,
9112 .chain_id = ALC269_FIXUP_HEADSET_MODE
9113 },
9114 [ALC256_FIXUP_INTEL_NUC10] = {
9115 .type = HDA_FIXUP_PINS,
9116 .v.pins = (const struct hda_pintbl[]) {
9117 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9118 { }
9119 },
9120 .chained = true,
9121 .chain_id = ALC269_FIXUP_HEADSET_MODE
9122 },
9123 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
9124 .type = HDA_FIXUP_VERBS,
9125 .v.verbs = (const struct hda_verb[]) {
9126 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9127 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9128 { }
9129 },
9130 .chained = true,
9131 .chain_id = ALC289_FIXUP_ASUS_GA502
9132 },
9133 [ALC274_FIXUP_HP_MIC] = {
9134 .type = HDA_FIXUP_VERBS,
9135 .v.verbs = (const struct hda_verb[]) {
9136 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9137 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9138 { }
9139 },
9140 },
9141 [ALC274_FIXUP_HP_HEADSET_MIC] = {
9142 .type = HDA_FIXUP_FUNC,
9143 .v.func = alc274_fixup_hp_headset_mic,
9144 .chained = true,
9145 .chain_id = ALC274_FIXUP_HP_MIC
9146 },
9147 [ALC274_FIXUP_HP_ENVY_GPIO] = {
9148 .type = HDA_FIXUP_FUNC,
9149 .v.func = alc274_fixup_hp_envy_gpio,
9150 },
9151 [ALC256_FIXUP_ASUS_HPE] = {
9152 .type = HDA_FIXUP_VERBS,
9153 .v.verbs = (const struct hda_verb[]) {
9154 /* Set EAPD high */
9155 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
9156 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
9157 { }
9158 },
9159 .chained = true,
9160 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9161 },
9162 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9163 .type = HDA_FIXUP_FUNC,
9164 .v.func = alc_fixup_headset_jack,
9165 .chained = true,
9166 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
9167 },
9168 [ALC287_FIXUP_HP_GPIO_LED] = {
9169 .type = HDA_FIXUP_FUNC,
9170 .v.func = alc287_fixup_hp_gpio_led,
9171 },
9172 [ALC256_FIXUP_HP_HEADSET_MIC] = {
9173 .type = HDA_FIXUP_FUNC,
9174 .v.func = alc274_fixup_hp_headset_mic,
9175 },
9176 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9177 .type = HDA_FIXUP_FUNC,
9178 .v.func = alc_fixup_no_int_mic,
9179 .chained = true,
9180 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9181 },
9182 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9183 .type = HDA_FIXUP_PINS,
9184 .v.pins = (const struct hda_pintbl[]) {
9185 { 0x1b, 0x411111f0 },
9186 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9187 { },
9188 },
9189 .chained = true,
9190 .chain_id = ALC269_FIXUP_HEADSET_MODE
9191 },
9192 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9193 .type = HDA_FIXUP_FUNC,
9194 .v.func = alc269_fixup_limit_int_mic_boost,
9195 .chained = true,
9196 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9197 },
9198 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
9199 .type = HDA_FIXUP_PINS,
9200 .v.pins = (const struct hda_pintbl[]) {
9201 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9202 { 0x1a, 0x90a1092f }, /* use as internal mic */
9203 { }
9204 },
9205 .chained = true,
9206 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9207 },
9208 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9209 .type = HDA_FIXUP_FUNC,
9210 .v.func = alc285_fixup_ideapad_s740_coef,
9211 .chained = true,
9212 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9213 },
9214 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9215 .type = HDA_FIXUP_FUNC,
9216 .v.func = alc269_fixup_limit_int_mic_boost,
9217 .chained = true,
9218 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9219 },
9220 [ALC295_FIXUP_ASUS_DACS] = {
9221 .type = HDA_FIXUP_FUNC,
9222 .v.func = alc295_fixup_asus_dacs,
9223 },
9224 [ALC295_FIXUP_HP_OMEN] = {
9225 .type = HDA_FIXUP_PINS,
9226 .v.pins = (const struct hda_pintbl[]) {
9227 { 0x12, 0xb7a60130 },
9228 { 0x13, 0x40000000 },
9229 { 0x14, 0x411111f0 },
9230 { 0x16, 0x411111f0 },
9231 { 0x17, 0x90170110 },
9232 { 0x18, 0x411111f0 },
9233 { 0x19, 0x02a11030 },
9234 { 0x1a, 0x411111f0 },
9235 { 0x1b, 0x04a19030 },
9236 { 0x1d, 0x40600001 },
9237 { 0x1e, 0x411111f0 },
9238 { 0x21, 0x03211020 },
9239 {}
9240 },
9241 .chained = true,
9242 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9243 },
9244 [ALC285_FIXUP_HP_SPECTRE_X360] = {
9245 .type = HDA_FIXUP_FUNC,
9246 .v.func = alc285_fixup_hp_spectre_x360,
9247 },
9248 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9249 .type = HDA_FIXUP_FUNC,
9250 .v.func = alc285_fixup_hp_spectre_x360_eb1
9251 },
9252 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9253 .type = HDA_FIXUP_FUNC,
9254 .v.func = alc285_fixup_ideapad_s740_coef,
9255 .chained = true,
9256 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9257 },
9258 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9259 .type = HDA_FIXUP_FUNC,
9260 .v.func = alc_fixup_no_shutup,
9261 .chained = true,
9262 .chain_id = ALC283_FIXUP_HEADSET_MIC,
9263 },
9264 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9265 .type = HDA_FIXUP_PINS,
9266 .v.pins = (const struct hda_pintbl[]) {
9267 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9268 { }
9269 },
9270 .chained = true,
9271 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9272 },
9273 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9274 .type = HDA_FIXUP_FUNC,
9275 .v.func = alc269_fixup_limit_int_mic_boost,
9276 .chained = true,
9277 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9278 },
9279 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9280 .type = HDA_FIXUP_FUNC,
9281 .v.func = alc285_fixup_ideapad_s740_coef,
9282 .chained = true,
9283 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9284 },
9285 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9286 .type = HDA_FIXUP_FUNC,
9287 .v.func = alc287_fixup_legion_15imhg05_speakers,
9288 .chained = true,
9289 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9290 },
9291 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9292 .type = HDA_FIXUP_VERBS,
9293 //.v.verbs = legion_15imhg05_coefs,
9294 .v.verbs = (const struct hda_verb[]) {
9295 // set left speaker Legion 7i.
9296 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9297 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9298
9299 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9300 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9301 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9302 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9303 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9304
9305 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9306 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9307 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9308 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9309 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9310
9311 // set right speaker Legion 7i.
9312 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9313 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9314
9315 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9316 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9317 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9318 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9319 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9320
9321 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9322 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9323 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9324 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9325 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9326 {}
9327 },
9328 .chained = true,
9329 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9330 },
9331 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9332 .type = HDA_FIXUP_FUNC,
9333 .v.func = alc287_fixup_legion_15imhg05_speakers,
9334 .chained = true,
9335 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9336 },
9337 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9338 .type = HDA_FIXUP_VERBS,
9339 .v.verbs = (const struct hda_verb[]) {
9340 // set left speaker Yoga 7i.
9341 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9342 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9343
9344 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9345 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9346 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9347 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9348 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9349
9350 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9351 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9352 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9353 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9354 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9355
9356 // set right speaker Yoga 7i.
9357 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9358 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9359
9360 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9361 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9362 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9363 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9364 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9365
9366 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9367 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9368 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9369 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9370 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9371 {}
9372 },
9373 .chained = true,
9374 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9375 },
9376 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
9377 .type = HDA_FIXUP_FUNC,
9378 .v.func = alc298_fixup_lenovo_c940_duet7,
9379 },
9380 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9381 .type = HDA_FIXUP_VERBS,
9382 .v.verbs = (const struct hda_verb[]) {
9383 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9384 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9385 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9386 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9387 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9388 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9389 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9390 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9391 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9392 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9393 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9394 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9395 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9396 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9397 {}
9398 },
9399 .chained = true,
9400 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9401 },
9402 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
9403 .type = HDA_FIXUP_FUNC,
9404 .v.func = alc256_fixup_set_coef_defaults,
9405 },
9406 [ALC245_FIXUP_HP_GPIO_LED] = {
9407 .type = HDA_FIXUP_FUNC,
9408 .v.func = alc245_fixup_hp_gpio_led,
9409 },
9410 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9411 .type = HDA_FIXUP_PINS,
9412 .v.pins = (const struct hda_pintbl[]) {
9413 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9414 { }
9415 },
9416 .chained = true,
9417 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9418 },
9419 [ALC233_FIXUP_NO_AUDIO_JACK] = {
9420 .type = HDA_FIXUP_FUNC,
9421 .v.func = alc233_fixup_no_audio_jack,
9422 },
9423 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9424 .type = HDA_FIXUP_FUNC,
9425 .v.func = alc256_fixup_mic_no_presence_and_resume,
9426 .chained = true,
9427 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9428 },
9429 [ALC287_FIXUP_LEGION_16ACHG6] = {
9430 .type = HDA_FIXUP_FUNC,
9431 .v.func = alc287_fixup_legion_16achg6_speakers,
9432 },
9433 [ALC287_FIXUP_CS35L41_I2C_2] = {
9434 .type = HDA_FIXUP_FUNC,
9435 .v.func = cs35l41_fixup_i2c_two,
9436 },
9437 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9438 .type = HDA_FIXUP_FUNC,
9439 .v.func = cs35l41_fixup_i2c_two,
9440 .chained = true,
9441 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9442 },
9443 [ALC287_FIXUP_CS35L41_I2C_4] = {
9444 .type = HDA_FIXUP_FUNC,
9445 .v.func = cs35l41_fixup_i2c_four,
9446 },
9447 [ALC245_FIXUP_CS35L41_SPI_2] = {
9448 .type = HDA_FIXUP_FUNC,
9449 .v.func = cs35l41_fixup_spi_two,
9450 },
9451 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9452 .type = HDA_FIXUP_FUNC,
9453 .v.func = cs35l41_fixup_spi_two,
9454 .chained = true,
9455 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9456 },
9457 [ALC245_FIXUP_CS35L41_SPI_4] = {
9458 .type = HDA_FIXUP_FUNC,
9459 .v.func = cs35l41_fixup_spi_four,
9460 },
9461 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9462 .type = HDA_FIXUP_FUNC,
9463 .v.func = cs35l41_fixup_spi_four,
9464 .chained = true,
9465 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9466 },
9467 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9468 .type = HDA_FIXUP_VERBS,
9469 .v.verbs = (const struct hda_verb[]) {
9470 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9471 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9472 { }
9473 },
9474 .chained = true,
9475 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9476 },
9477 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9478 .type = HDA_FIXUP_FUNC,
9479 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
9480 .chained = true,
9481 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9482 },
9483 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9484 .type = HDA_FIXUP_PINS,
9485 .v.pins = (const struct hda_pintbl[]) {
9486 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9487 { }
9488 },
9489 .chained = true,
9490 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9491 },
9492 [ALC287_FIXUP_LEGION_16ITHG6] = {
9493 .type = HDA_FIXUP_FUNC,
9494 .v.func = alc287_fixup_legion_16ithg6_speakers,
9495 },
9496 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9497 .type = HDA_FIXUP_VERBS,
9498 .v.verbs = (const struct hda_verb[]) {
9499 // enable left speaker
9500 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9501 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9502
9503 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9504 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9505 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9506 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9507 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9508
9509 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9510 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9511 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9512 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9513 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9514
9515 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9516 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9517 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9518 { 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9519 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9520
9521 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9522 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9523 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9524 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9525 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9526
9527 // enable right speaker
9528 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9529 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9530
9531 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9532 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9533 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9534 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9535 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9536
9537 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9538 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9539 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9540 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9541 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9542
9543 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9544 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9545 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9546 { 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9547 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9548
9549 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9550 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9551 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9552 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9553 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9554
9555 { },
9556 },
9557 },
9558 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9559 .type = HDA_FIXUP_FUNC,
9560 .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9561 .chained = true,
9562 .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9563 },
9564 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9565 .type = HDA_FIXUP_FUNC,
9566 .v.func = alc295_fixup_dell_inspiron_top_speakers,
9567 .chained = true,
9568 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9569 },
9570 [ALC236_FIXUP_DELL_DUAL_CODECS] = {
9571 .type = HDA_FIXUP_PINS,
9572 .v.func = alc1220_fixup_gb_dual_codecs,
9573 .chained = true,
9574 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9575 },
9576 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9577 .type = HDA_FIXUP_FUNC,
9578 .v.func = cs35l41_fixup_i2c_two,
9579 .chained = true,
9580 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9581 },
9582 [ALC287_FIXUP_TAS2781_I2C] = {
9583 .type = HDA_FIXUP_FUNC,
9584 .v.func = tas2781_fixup_i2c,
9585 .chained = true,
9586 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9587 },
9588 [ALC287_FIXUP_YOGA7_14ARB7_I2C] = {
9589 .type = HDA_FIXUP_FUNC,
9590 .v.func = yoga7_14arb7_fixup_i2c,
9591 .chained = true,
9592 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9593 },
9594 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9595 .type = HDA_FIXUP_FUNC,
9596 .v.func = alc245_fixup_hp_mute_led_coefbit,
9597 },
9598 [ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9599 .type = HDA_FIXUP_FUNC,
9600 .v.func = alc245_fixup_hp_mute_led_coefbit,
9601 .chained = true,
9602 .chain_id = ALC245_FIXUP_HP_GPIO_LED
9603 },
9604 [ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9605 .type = HDA_FIXUP_FUNC,
9606 .v.func = alc287_fixup_bind_dacs,
9607 },
9608 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9609 .type = HDA_FIXUP_FUNC,
9610 .v.func = alc287_fixup_bind_dacs,
9611 .chained = true,
9612 .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9613 },
9614 [ALC2XX_FIXUP_HEADSET_MIC] = {
9615 .type = HDA_FIXUP_FUNC,
9616 .v.func = alc_fixup_headset_mic,
9617 },
9618 [ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9619 .type = HDA_FIXUP_FUNC,
9620 .v.func = cs35l41_fixup_spi_two,
9621 .chained = true,
9622 .chain_id = ALC289_FIXUP_DUAL_SPK
9623 },
9624 [ALC294_FIXUP_CS35L41_I2C_2] = {
9625 .type = HDA_FIXUP_FUNC,
9626 .v.func = cs35l41_fixup_i2c_two,
9627 },
9628 };
9629
9630 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
9631 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
9632 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9633 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
9634 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
9635 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9636 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9637 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
9638 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9639 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9640 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
9641 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9642 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
9643 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
9644 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
9645 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
9646 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
9647 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
9648 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9649 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9650 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9651 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
9652 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
9653 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
9654 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
9655 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
9656 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9657 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9658 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9659 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
9660 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9661 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9662 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9663 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
9664 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
9665 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9666 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9667 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9668 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
9669 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9670 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
9671 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
9672 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
9673 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
9674 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
9675 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9676 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
9677 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
9678 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9679 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9680 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9681 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9682 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9683 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
9684 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
9685 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
9686 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9687 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9688 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
9689 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9690 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
9691 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9692 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9693 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9694 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9695 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9696 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9697 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9698 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9699 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9700 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
9701 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
9702 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
9703 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
9704 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9705 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
9706 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
9707 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9708 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9709 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9710 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9711 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
9712 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
9713 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
9714 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9715 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9716 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9717 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9718 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9719 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9720 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9721 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
9722 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
9723 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
9724 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
9725 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9726 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9727 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
9728 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
9729 SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9730 SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9731 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9732 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9733 SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9734 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9735 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9736 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9737 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9738 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9739 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9740 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9741 SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4),
9742 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9743 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9744 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9745 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9746 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9747 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9748 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9749 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9750 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9751 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9752 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9753 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9754 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
9755 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
9756 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9757 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9758 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9759 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9760 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9761 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9762 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9763 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9764 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9765 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9766 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9767 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9768 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9769 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9770 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9771 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9772 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9773 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9774 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
9775 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
9776 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9777 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9778 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9779 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9780 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9781 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9782 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9783 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9784 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9785 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9786 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9787 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9788 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9789 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9790 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9791 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9792 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9793 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9794 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9795 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9796 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9797 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9798 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9799 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9800 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9801 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9802 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9803 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9804 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9805 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9806 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9807 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9808 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9809 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9810 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
9811 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9812 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9813 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9814 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9815 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
9816 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
9817 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
9818 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9819 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9820 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9821 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9822 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9823 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9824 SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9825 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
9826 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9827 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
9828 SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9829 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9830 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9831 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9832 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
9833 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9834 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9835 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
9836 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9837 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9838 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
9839 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
9840 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
9841 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9842 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9843 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9844 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
9845 SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
9846 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
9847 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
9848 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9849 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9850 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9851 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9852 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9853 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9854 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
9855 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
9856 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9857 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9858 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9859 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9860 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9861 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
9862 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9863 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
9864 SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9865 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
9866 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9867 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9868 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9869 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9870 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9871 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9872 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9873 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
9874 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9875 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9876 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9877 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9878 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
9879 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9880 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
9881 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
9882 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
9883 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
9884 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9885 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
9886 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
9887 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9888 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
9889 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9890 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9891 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9892 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9893 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9894 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9895 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9896 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9897 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9898 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9899 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9900 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
9901 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9902 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
9903 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9904 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
9905 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
9906 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9907 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
9908 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9909 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9910 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9911 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9912 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9913 SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED),
9914 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9915 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
9916 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9917 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9918 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9919 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9920 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
9921 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9922 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9923 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9924 SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9925 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9926 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9927 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9928 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9929 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9930 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9931 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9932 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9933 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9934 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9935 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9936 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9937 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9938 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9939 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
9940 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9941 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9942 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
9943 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9944 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
9945 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
9946 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9947 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9948 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9949 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9950 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
9951 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9952 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9953 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9954 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9955 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9956 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9957 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9958 SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9959 SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9960 SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9961 SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9962 SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
9963 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9964 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
9965 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9966 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
9967 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
9968 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9969 SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK),
9970 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9971 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9972 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
9973 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
9974 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9975 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9976 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
9977 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
9978 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
9979 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
9980 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
9981 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
9982 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
9983 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9984 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9985 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC),
9986 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9987 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9988 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
9989 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2),
9990 SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2),
9991 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
9992 SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2),
9993 SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301VV/VQ/VU/VJ/VA/VC/VE/VVC/VQC/VUC/VJC/VEC/VCC", ALC285_FIXUP_ASUS_HEADSET_MIC),
9994 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
9995 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
9996 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
9997 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
9998 SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2),
9999 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
10000 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2),
10001 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
10002 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
10003 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY),
10004 SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2),
10005 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
10006 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
10007 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2),
10008 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
10009 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
10010 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
10011 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
10012 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
10013 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
10014 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
10015 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
10016 SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2),
10017 SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
10018 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
10019 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
10020 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
10021 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10022 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10023 SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2),
10024 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10025 SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2),
10026 SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2),
10027 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
10028 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
10029 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10030 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
10031 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
10032 SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2),
10033 SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10034 SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC),
10035 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2),
10036 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
10037 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
10038 SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2),
10039 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
10040 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
10041 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
10042 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
10043 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2),
10044 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
10045 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
10046 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
10047 SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
10048 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
10049 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
10050 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
10051 SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2),
10052 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
10053 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
10054 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
10055 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
10056 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10057 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC245_FIXUP_CS35L41_SPI_2),
10058 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10059 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10060 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
10061 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
10062 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10063 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10064 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
10065 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
10066 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10067 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10068 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
10069 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10070 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10071 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
10072 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
10073 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10074 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
10075 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10076 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
10077 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
10078 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
10079 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10080 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10081 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10082 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10083 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10084 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
10085 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
10086 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10087 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
10088 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
10089 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10090 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
10091 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
10092 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
10093 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
10094 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
10095 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
10096 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
10097 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
10098 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
10099 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
10100 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
10101 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
10102 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10103 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10104 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10105 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10106 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10107 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10108 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10109 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10110 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10111 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10112 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10113 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10114 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10115 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10116 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10117 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10118 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10119 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10120 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10121 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10122 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10123 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10124 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10125 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10126 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10127 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10128 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10129 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10130 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10131 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10132 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10133 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10134 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10135 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10136 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10137 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10138 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10139 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10140 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10141 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10142 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10143 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10144 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10145 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10146 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10147 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10148 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10149 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10150 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10151 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10152 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10153 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10154 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
10155 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10156 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10157 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10158 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10159 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10160 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
10161 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10162 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10163 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10164 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10165 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10166 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10167 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10168 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10169 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10170 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10171 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10172 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10173 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10174 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10175 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10176 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10177 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10178 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
10179 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10180 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10181 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10182 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10183 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10184 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
10185 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
10186 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
10187 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
10188 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
10189 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
10190 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
10191 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
10192 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
10193 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
10194 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
10195 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
10196 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
10197 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10198 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
10199 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
10200 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
10201 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10202 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10203 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
10204 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
10205 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10206 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10207 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10208 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
10209 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10210 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10211 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10212 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10213 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10214 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10215 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10216 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10217 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10218 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10219 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10220 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10221 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10222 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10223 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10224 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10225 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10226 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10227 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10228 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10229 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10230 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10231 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10232 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10233 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10234 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10235 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10236 SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC),
10237 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10238 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10239 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10240 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
10241 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
10242 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10243 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10244 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
10245 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10246 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10247 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
10248 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
10249 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10250 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10251 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10252 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
10253 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10254 SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C),
10255 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10256 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
10257 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
10258 SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10259 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10260 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10261 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10262 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
10263 SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10264 SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10265 SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10266 SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10267 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10268 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10269 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10270 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10271 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10272 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10273 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10274 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10275 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
10276 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10277 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
10278 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10279 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
10280 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
10281 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10282 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
10283 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
10284 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
10285 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
10286 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
10287 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
10288 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
10289 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
10290 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10291 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10292 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10293 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10294 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10295 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10296 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10297 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
10298 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10299 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
10300 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
10301 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
10302 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10303 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10304 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10305 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
10306 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
10307 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10308 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
10309 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
10310 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
10311 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10312 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10313 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10314 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10315 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10316 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10317 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10318 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
10319 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10320 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
10321 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
10322 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
10323 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10324 SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
10325 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
10326 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
10327 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
10328 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
10329 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10330 SND_PCI_QUIRK(0xf111, 0x0005, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10331 SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10332
10333 #if 0
10334 /* Below is a quirk table taken from the old code.
10335 * Basically the device should work as is without the fixup table.
10336 * If BIOS doesn't give a proper info, enable the corresponding
10337 * fixup entry.
10338 */
10339 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10340 ALC269_FIXUP_AMIC),
10341 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
10342 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10343 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10344 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10345 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10346 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10347 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10348 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10349 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10350 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10351 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10352 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10353 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10354 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10355 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10356 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10357 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10358 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10359 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10360 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10361 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10362 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10363 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10364 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10365 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10366 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10367 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10368 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10369 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10370 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10371 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10372 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10373 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10374 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10375 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10376 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10377 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10378 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10379 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10380 #endif
10381 {}
10382 };
10383
10384 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10385 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10386 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10387 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10388 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
10389 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
10390 {}
10391 };
10392
10393 static const struct hda_model_fixup alc269_fixup_models[] = {
10394 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10395 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
10396 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10397 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10398 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
10399 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
10400 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10401 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
10402 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
10403 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
10404 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10405 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
10406 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10407 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
10408 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10409 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
10410 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
10411 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
10412 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
10413 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
10414 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
10415 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
10416 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
10417 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
10418 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
10419 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10420 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10421 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10422 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10423 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10424 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10425 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10426 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10427 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10428 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10429 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10430 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10431 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10432 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10433 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10434 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10435 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10436 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10437 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10438 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10439 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10440 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10441 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10442 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10443 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10444 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10445 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10446 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10447 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10448 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10449 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10450 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10451 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10452 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10453 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10454 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10455 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10456 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10457 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10458 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
10459 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
10460 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
10461 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
10462 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10463 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10464 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10465 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10466 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10467 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10468 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10469 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10470 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10471 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10472 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10473 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10474 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10475 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
10476 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10477 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10478 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
10479 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
10480 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
10481 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
10482 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10483 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10484 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10485 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10486 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10487 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10488 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10489 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10490 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10491 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10492 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10493 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10494 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10495 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10496 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10497 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10498 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
10499 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10500 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
10501 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
10502 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
10503 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
10504 {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
10505 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
10506 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
10507 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
10508 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
10509 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
10510 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
10511 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
10512 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
10513 {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
10514 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
10515 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
10516 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
10517 {}
10518 };
10519 #define ALC225_STANDARD_PINS \
10520 {0x21, 0x04211020}
10521
10522 #define ALC256_STANDARD_PINS \
10523 {0x12, 0x90a60140}, \
10524 {0x14, 0x90170110}, \
10525 {0x21, 0x02211020}
10526
10527 #define ALC282_STANDARD_PINS \
10528 {0x14, 0x90170110}
10529
10530 #define ALC290_STANDARD_PINS \
10531 {0x12, 0x99a30130}
10532
10533 #define ALC292_STANDARD_PINS \
10534 {0x14, 0x90170110}, \
10535 {0x15, 0x0221401f}
10536
10537 #define ALC295_STANDARD_PINS \
10538 {0x12, 0xb7a60130}, \
10539 {0x14, 0x90170110}, \
10540 {0x21, 0x04211020}
10541
10542 #define ALC298_STANDARD_PINS \
10543 {0x12, 0x90a60130}, \
10544 {0x21, 0x03211020}
10545
10546 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
10547 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10548 {0x14, 0x01014020},
10549 {0x17, 0x90170110},
10550 {0x18, 0x02a11030},
10551 {0x19, 0x0181303F},
10552 {0x21, 0x0221102f}),
10553 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10554 {0x12, 0x90a601c0},
10555 {0x14, 0x90171120},
10556 {0x21, 0x02211030}),
10557 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10558 {0x14, 0x90170110},
10559 {0x1b, 0x90a70130},
10560 {0x21, 0x03211020}),
10561 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10562 {0x1a, 0x90a70130},
10563 {0x1b, 0x90170110},
10564 {0x21, 0x03211020}),
10565 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10566 ALC225_STANDARD_PINS,
10567 {0x12, 0xb7a60130},
10568 {0x14, 0x901701a0}),
10569 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10570 ALC225_STANDARD_PINS,
10571 {0x12, 0xb7a60130},
10572 {0x14, 0x901701b0}),
10573 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10574 ALC225_STANDARD_PINS,
10575 {0x12, 0xb7a60150},
10576 {0x14, 0x901701a0}),
10577 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10578 ALC225_STANDARD_PINS,
10579 {0x12, 0xb7a60150},
10580 {0x14, 0x901701b0}),
10581 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10582 ALC225_STANDARD_PINS,
10583 {0x12, 0xb7a60130},
10584 {0x1b, 0x90170110}),
10585 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10586 {0x1b, 0x01111010},
10587 {0x1e, 0x01451130},
10588 {0x21, 0x02211020}),
10589 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10590 {0x12, 0x90a60140},
10591 {0x14, 0x90170110},
10592 {0x19, 0x02a11030},
10593 {0x21, 0x02211020}),
10594 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10595 {0x14, 0x90170110},
10596 {0x19, 0x02a11030},
10597 {0x1a, 0x02a11040},
10598 {0x1b, 0x01014020},
10599 {0x21, 0x0221101f}),
10600 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10601 {0x14, 0x90170110},
10602 {0x19, 0x02a11030},
10603 {0x1a, 0x02a11040},
10604 {0x1b, 0x01011020},
10605 {0x21, 0x0221101f}),
10606 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10607 {0x14, 0x90170110},
10608 {0x19, 0x02a11020},
10609 {0x1a, 0x02a11030},
10610 {0x21, 0x0221101f}),
10611 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10612 {0x21, 0x02211010}),
10613 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10614 {0x14, 0x90170110},
10615 {0x19, 0x02a11020},
10616 {0x21, 0x02211030}),
10617 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
10618 {0x14, 0x90170110},
10619 {0x21, 0x02211020}),
10620 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10621 {0x14, 0x90170130},
10622 {0x21, 0x02211040}),
10623 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10624 {0x12, 0x90a60140},
10625 {0x14, 0x90170110},
10626 {0x21, 0x02211020}),
10627 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10628 {0x12, 0x90a60160},
10629 {0x14, 0x90170120},
10630 {0x21, 0x02211030}),
10631 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10632 {0x14, 0x90170110},
10633 {0x1b, 0x02011020},
10634 {0x21, 0x0221101f}),
10635 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10636 {0x14, 0x90170110},
10637 {0x1b, 0x01011020},
10638 {0x21, 0x0221101f}),
10639 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10640 {0x14, 0x90170130},
10641 {0x1b, 0x01014020},
10642 {0x21, 0x0221103f}),
10643 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10644 {0x14, 0x90170130},
10645 {0x1b, 0x01011020},
10646 {0x21, 0x0221103f}),
10647 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10648 {0x14, 0x90170130},
10649 {0x1b, 0x02011020},
10650 {0x21, 0x0221103f}),
10651 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10652 {0x14, 0x90170150},
10653 {0x1b, 0x02011020},
10654 {0x21, 0x0221105f}),
10655 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10656 {0x14, 0x90170110},
10657 {0x1b, 0x01014020},
10658 {0x21, 0x0221101f}),
10659 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10660 {0x12, 0x90a60160},
10661 {0x14, 0x90170120},
10662 {0x17, 0x90170140},
10663 {0x21, 0x0321102f}),
10664 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10665 {0x12, 0x90a60160},
10666 {0x14, 0x90170130},
10667 {0x21, 0x02211040}),
10668 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10669 {0x12, 0x90a60160},
10670 {0x14, 0x90170140},
10671 {0x21, 0x02211050}),
10672 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10673 {0x12, 0x90a60170},
10674 {0x14, 0x90170120},
10675 {0x21, 0x02211030}),
10676 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10677 {0x12, 0x90a60170},
10678 {0x14, 0x90170130},
10679 {0x21, 0x02211040}),
10680 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10681 {0x12, 0x90a60170},
10682 {0x14, 0x90171130},
10683 {0x21, 0x02211040}),
10684 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10685 {0x12, 0x90a60170},
10686 {0x14, 0x90170140},
10687 {0x21, 0x02211050}),
10688 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10689 {0x12, 0x90a60180},
10690 {0x14, 0x90170130},
10691 {0x21, 0x02211040}),
10692 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10693 {0x12, 0x90a60180},
10694 {0x14, 0x90170120},
10695 {0x21, 0x02211030}),
10696 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10697 {0x1b, 0x01011020},
10698 {0x21, 0x02211010}),
10699 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10700 {0x14, 0x90170110},
10701 {0x1b, 0x90a70130},
10702 {0x21, 0x04211020}),
10703 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10704 {0x14, 0x90170110},
10705 {0x1b, 0x90a70130},
10706 {0x21, 0x03211020}),
10707 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10708 {0x12, 0x90a60130},
10709 {0x14, 0x90170110},
10710 {0x21, 0x03211020}),
10711 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10712 {0x12, 0x90a60130},
10713 {0x14, 0x90170110},
10714 {0x21, 0x04211020}),
10715 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10716 {0x1a, 0x90a70130},
10717 {0x1b, 0x90170110},
10718 {0x21, 0x03211020}),
10719 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10720 {0x14, 0x90170110},
10721 {0x19, 0x02a11020},
10722 {0x21, 0x0221101f}),
10723 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
10724 {0x17, 0x90170110},
10725 {0x19, 0x03a11030},
10726 {0x21, 0x03211020}),
10727 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
10728 {0x12, 0x90a60130},
10729 {0x14, 0x90170110},
10730 {0x15, 0x0421101f},
10731 {0x1a, 0x04a11020}),
10732 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
10733 {0x12, 0x90a60140},
10734 {0x14, 0x90170110},
10735 {0x15, 0x0421101f},
10736 {0x18, 0x02811030},
10737 {0x1a, 0x04a1103f},
10738 {0x1b, 0x02011020}),
10739 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10740 ALC282_STANDARD_PINS,
10741 {0x12, 0x99a30130},
10742 {0x19, 0x03a11020},
10743 {0x21, 0x0321101f}),
10744 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10745 ALC282_STANDARD_PINS,
10746 {0x12, 0x99a30130},
10747 {0x19, 0x03a11020},
10748 {0x21, 0x03211040}),
10749 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10750 ALC282_STANDARD_PINS,
10751 {0x12, 0x99a30130},
10752 {0x19, 0x03a11030},
10753 {0x21, 0x03211020}),
10754 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10755 ALC282_STANDARD_PINS,
10756 {0x12, 0x99a30130},
10757 {0x19, 0x04a11020},
10758 {0x21, 0x0421101f}),
10759 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
10760 ALC282_STANDARD_PINS,
10761 {0x12, 0x90a60140},
10762 {0x19, 0x04a11030},
10763 {0x21, 0x04211020}),
10764 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10765 ALC282_STANDARD_PINS,
10766 {0x12, 0x90a609c0},
10767 {0x18, 0x03a11830},
10768 {0x19, 0x04a19831},
10769 {0x1a, 0x0481303f},
10770 {0x1b, 0x04211020},
10771 {0x21, 0x0321101f}),
10772 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10773 ALC282_STANDARD_PINS,
10774 {0x12, 0x90a60940},
10775 {0x18, 0x03a11830},
10776 {0x19, 0x04a19831},
10777 {0x1a, 0x0481303f},
10778 {0x1b, 0x04211020},
10779 {0x21, 0x0321101f}),
10780 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10781 ALC282_STANDARD_PINS,
10782 {0x12, 0x90a60130},
10783 {0x21, 0x0321101f}),
10784 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10785 {0x12, 0x90a60160},
10786 {0x14, 0x90170120},
10787 {0x21, 0x02211030}),
10788 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10789 ALC282_STANDARD_PINS,
10790 {0x12, 0x90a60130},
10791 {0x19, 0x03a11020},
10792 {0x21, 0x0321101f}),
10793 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10794 {0x12, 0x90a60130},
10795 {0x14, 0x90170110},
10796 {0x19, 0x04a11040},
10797 {0x21, 0x04211020}),
10798 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10799 {0x14, 0x90170110},
10800 {0x19, 0x04a11040},
10801 {0x1d, 0x40600001},
10802 {0x21, 0x04211020}),
10803 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
10804 {0x14, 0x90170110},
10805 {0x19, 0x04a11040},
10806 {0x21, 0x04211020}),
10807 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
10808 {0x14, 0x90170110},
10809 {0x17, 0x90170111},
10810 {0x19, 0x03a11030},
10811 {0x21, 0x03211020}),
10812 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10813 {0x17, 0x90170110},
10814 {0x19, 0x03a11030},
10815 {0x21, 0x03211020}),
10816 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10817 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
10818 {0x19, 0x04a11040},
10819 {0x21, 0x04211020}),
10820 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
10821 {0x12, 0x90a60130},
10822 {0x17, 0x90170110},
10823 {0x21, 0x02211020}),
10824 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
10825 {0x12, 0x90a60120},
10826 {0x14, 0x90170110},
10827 {0x21, 0x0321101f}),
10828 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10829 ALC290_STANDARD_PINS,
10830 {0x15, 0x04211040},
10831 {0x18, 0x90170112},
10832 {0x1a, 0x04a11020}),
10833 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10834 ALC290_STANDARD_PINS,
10835 {0x15, 0x04211040},
10836 {0x18, 0x90170110},
10837 {0x1a, 0x04a11020}),
10838 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10839 ALC290_STANDARD_PINS,
10840 {0x15, 0x0421101f},
10841 {0x1a, 0x04a11020}),
10842 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10843 ALC290_STANDARD_PINS,
10844 {0x15, 0x04211020},
10845 {0x1a, 0x04a11040}),
10846 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10847 ALC290_STANDARD_PINS,
10848 {0x14, 0x90170110},
10849 {0x15, 0x04211020},
10850 {0x1a, 0x04a11040}),
10851 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10852 ALC290_STANDARD_PINS,
10853 {0x14, 0x90170110},
10854 {0x15, 0x04211020},
10855 {0x1a, 0x04a11020}),
10856 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
10857 ALC290_STANDARD_PINS,
10858 {0x14, 0x90170110},
10859 {0x15, 0x0421101f},
10860 {0x1a, 0x04a11020}),
10861 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10862 ALC292_STANDARD_PINS,
10863 {0x12, 0x90a60140},
10864 {0x16, 0x01014020},
10865 {0x19, 0x01a19030}),
10866 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
10867 ALC292_STANDARD_PINS,
10868 {0x12, 0x90a60140},
10869 {0x16, 0x01014020},
10870 {0x18, 0x02a19031},
10871 {0x19, 0x01a1903e}),
10872 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
10873 ALC292_STANDARD_PINS,
10874 {0x12, 0x90a60140}),
10875 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10876 ALC292_STANDARD_PINS,
10877 {0x13, 0x90a60140},
10878 {0x16, 0x21014020},
10879 {0x19, 0x21a19030}),
10880 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
10881 ALC292_STANDARD_PINS,
10882 {0x13, 0x90a60140}),
10883 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
10884 {0x17, 0x90170110},
10885 {0x21, 0x04211020}),
10886 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
10887 {0x14, 0x90170110},
10888 {0x1b, 0x90a70130},
10889 {0x21, 0x04211020}),
10890 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10891 {0x12, 0x90a60130},
10892 {0x17, 0x90170110},
10893 {0x21, 0x03211020}),
10894 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10895 {0x12, 0x90a60130},
10896 {0x17, 0x90170110},
10897 {0x21, 0x04211020}),
10898 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10899 {0x12, 0x90a60130},
10900 {0x17, 0x90170110},
10901 {0x21, 0x03211020}),
10902 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10903 {0x12, 0x90a60120},
10904 {0x17, 0x90170110},
10905 {0x21, 0x04211030}),
10906 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10907 {0x12, 0x90a60130},
10908 {0x17, 0x90170110},
10909 {0x21, 0x03211020}),
10910 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10911 {0x12, 0x90a60130},
10912 {0x17, 0x90170110},
10913 {0x21, 0x03211020}),
10914 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10915 ALC298_STANDARD_PINS,
10916 {0x17, 0x90170110}),
10917 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10918 ALC298_STANDARD_PINS,
10919 {0x17, 0x90170140}),
10920 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10921 ALC298_STANDARD_PINS,
10922 {0x17, 0x90170150}),
10923 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10924 {0x12, 0xb7a60140},
10925 {0x13, 0xb7a60150},
10926 {0x17, 0x90170110},
10927 {0x1a, 0x03011020},
10928 {0x21, 0x03211030}),
10929 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10930 {0x12, 0xb7a60140},
10931 {0x17, 0x90170110},
10932 {0x1a, 0x03a11030},
10933 {0x21, 0x03211020}),
10934 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10935 ALC225_STANDARD_PINS,
10936 {0x12, 0xb7a60130},
10937 {0x17, 0x90170110}),
10938 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10939 {0x14, 0x01014010},
10940 {0x17, 0x90170120},
10941 {0x18, 0x02a11030},
10942 {0x19, 0x02a1103f},
10943 {0x21, 0x0221101f}),
10944 {}
10945 };
10946
10947 /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10948 * more machines, don't need to match all valid pins, just need to match
10949 * all the pins defined in the tbl. Just because of this reason, it is possible
10950 * that a single machine matches multiple tbls, so there is one limitation:
10951 * at most one tbl is allowed to define for the same vendor and same codec
10952 */
10953 static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
10954 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10955 {0x19, 0x40000000},
10956 {0x1b, 0x40000000}),
10957 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10958 {0x19, 0x40000000},
10959 {0x1b, 0x40000000}),
10960 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10961 {0x19, 0x40000000},
10962 {0x1a, 0x40000000}),
10963 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10964 {0x19, 0x40000000},
10965 {0x1a, 0x40000000}),
10966 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
10967 {0x19, 0x40000000},
10968 {0x1a, 0x40000000}),
10969 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
10970 {0x19, 0x40000000}),
10971 {}
10972 };
10973
10974 static void alc269_fill_coef(struct hda_codec *codec)
10975 {
10976 struct alc_spec *spec = codec->spec;
10977 int val;
10978
10979 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
10980 return;
10981
10982 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
10983 alc_write_coef_idx(codec, 0xf, 0x960b);
10984 alc_write_coef_idx(codec, 0xe, 0x8817);
10985 }
10986
10987 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
10988 alc_write_coef_idx(codec, 0xf, 0x960b);
10989 alc_write_coef_idx(codec, 0xe, 0x8814);
10990 }
10991
10992 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
10993 /* Power up output pin */
10994 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
10995 }
10996
10997 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
10998 val = alc_read_coef_idx(codec, 0xd);
10999 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
11000 /* Capless ramp up clock control */
11001 alc_write_coef_idx(codec, 0xd, val | (1<<10));
11002 }
11003 val = alc_read_coef_idx(codec, 0x17);
11004 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
11005 /* Class D power on reset */
11006 alc_write_coef_idx(codec, 0x17, val | (1<<7));
11007 }
11008 }
11009
11010 /* HP */
11011 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
11012 }
11013
11014 /*
11015 */
11016 static int patch_alc269(struct hda_codec *codec)
11017 {
11018 struct alc_spec *spec;
11019 int err;
11020
11021 err = alc_alloc_spec(codec, 0x0b);
11022 if (err < 0)
11023 return err;
11024
11025 spec = codec->spec;
11026 spec->gen.shared_mic_vref_pin = 0x18;
11027 codec->power_save_node = 0;
11028 spec->en_3kpull_low = true;
11029
11030 #ifdef CONFIG_PM
11031 codec->patch_ops.suspend = alc269_suspend;
11032 codec->patch_ops.resume = alc269_resume;
11033 #endif
11034 spec->shutup = alc_default_shutup;
11035 spec->init_hook = alc_default_init;
11036
11037 switch (codec->core.vendor_id) {
11038 case 0x10ec0269:
11039 spec->codec_variant = ALC269_TYPE_ALC269VA;
11040 switch (alc_get_coef0(codec) & 0x00f0) {
11041 case 0x0010:
11042 if (codec->bus->pci &&
11043 codec->bus->pci->subsystem_vendor == 0x1025 &&
11044 spec->cdefine.platform_type == 1)
11045 err = alc_codec_rename(codec, "ALC271X");
11046 spec->codec_variant = ALC269_TYPE_ALC269VB;
11047 break;
11048 case 0x0020:
11049 if (codec->bus->pci &&
11050 codec->bus->pci->subsystem_vendor == 0x17aa &&
11051 codec->bus->pci->subsystem_device == 0x21f3)
11052 err = alc_codec_rename(codec, "ALC3202");
11053 spec->codec_variant = ALC269_TYPE_ALC269VC;
11054 break;
11055 case 0x0030:
11056 spec->codec_variant = ALC269_TYPE_ALC269VD;
11057 break;
11058 default:
11059 alc_fix_pll_init(codec, 0x20, 0x04, 15);
11060 }
11061 if (err < 0)
11062 goto error;
11063 spec->shutup = alc269_shutup;
11064 spec->init_hook = alc269_fill_coef;
11065 alc269_fill_coef(codec);
11066 break;
11067
11068 case 0x10ec0280:
11069 case 0x10ec0290:
11070 spec->codec_variant = ALC269_TYPE_ALC280;
11071 break;
11072 case 0x10ec0282:
11073 spec->codec_variant = ALC269_TYPE_ALC282;
11074 spec->shutup = alc282_shutup;
11075 spec->init_hook = alc282_init;
11076 break;
11077 case 0x10ec0233:
11078 case 0x10ec0283:
11079 spec->codec_variant = ALC269_TYPE_ALC283;
11080 spec->shutup = alc283_shutup;
11081 spec->init_hook = alc283_init;
11082 break;
11083 case 0x10ec0284:
11084 case 0x10ec0292:
11085 spec->codec_variant = ALC269_TYPE_ALC284;
11086 break;
11087 case 0x10ec0293:
11088 spec->codec_variant = ALC269_TYPE_ALC293;
11089 break;
11090 case 0x10ec0286:
11091 case 0x10ec0288:
11092 spec->codec_variant = ALC269_TYPE_ALC286;
11093 break;
11094 case 0x10ec0298:
11095 spec->codec_variant = ALC269_TYPE_ALC298;
11096 break;
11097 case 0x10ec0235:
11098 case 0x10ec0255:
11099 spec->codec_variant = ALC269_TYPE_ALC255;
11100 spec->shutup = alc256_shutup;
11101 spec->init_hook = alc256_init;
11102 break;
11103 case 0x10ec0230:
11104 case 0x10ec0236:
11105 case 0x10ec0256:
11106 case 0x19e58326:
11107 spec->codec_variant = ALC269_TYPE_ALC256;
11108 spec->shutup = alc256_shutup;
11109 spec->init_hook = alc256_init;
11110 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
11111 if (codec->core.vendor_id == 0x10ec0236 &&
11112 codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
11113 spec->en_3kpull_low = false;
11114 break;
11115 case 0x10ec0257:
11116 spec->codec_variant = ALC269_TYPE_ALC257;
11117 spec->shutup = alc256_shutup;
11118 spec->init_hook = alc256_init;
11119 spec->gen.mixer_nid = 0;
11120 spec->en_3kpull_low = false;
11121 break;
11122 case 0x10ec0215:
11123 case 0x10ec0245:
11124 case 0x10ec0285:
11125 case 0x10ec0289:
11126 if (alc_get_coef0(codec) & 0x0010)
11127 spec->codec_variant = ALC269_TYPE_ALC245;
11128 else
11129 spec->codec_variant = ALC269_TYPE_ALC215;
11130 spec->shutup = alc225_shutup;
11131 spec->init_hook = alc225_init;
11132 spec->gen.mixer_nid = 0;
11133 break;
11134 case 0x10ec0225:
11135 case 0x10ec0295:
11136 case 0x10ec0299:
11137 spec->codec_variant = ALC269_TYPE_ALC225;
11138 spec->shutup = alc225_shutup;
11139 spec->init_hook = alc225_init;
11140 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
11141 break;
11142 case 0x10ec0287:
11143 spec->codec_variant = ALC269_TYPE_ALC287;
11144 spec->shutup = alc225_shutup;
11145 spec->init_hook = alc225_init;
11146 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
11147 break;
11148 case 0x10ec0234:
11149 case 0x10ec0274:
11150 case 0x10ec0294:
11151 spec->codec_variant = ALC269_TYPE_ALC294;
11152 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
11153 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
11154 spec->init_hook = alc294_init;
11155 break;
11156 case 0x10ec0300:
11157 spec->codec_variant = ALC269_TYPE_ALC300;
11158 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
11159 break;
11160 case 0x10ec0623:
11161 spec->codec_variant = ALC269_TYPE_ALC623;
11162 break;
11163 case 0x10ec0700:
11164 case 0x10ec0701:
11165 case 0x10ec0703:
11166 case 0x10ec0711:
11167 spec->codec_variant = ALC269_TYPE_ALC700;
11168 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
11169 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
11170 spec->init_hook = alc294_init;
11171 break;
11172
11173 }
11174
11175 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
11176 spec->has_alc5505_dsp = 1;
11177 spec->init_hook = alc5505_dsp_init;
11178 }
11179
11180 alc_pre_init(codec);
11181
11182 snd_hda_pick_fixup(codec, alc269_fixup_models,
11183 alc269_fixup_tbl, alc269_fixups);
11184 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11185 * the quirk breaks the latter (bko#214101).
11186 * Clear the wrong entry.
11187 */
11188 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11189 codec->core.vendor_id == 0x10ec0294) {
11190 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11191 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11192 }
11193
11194 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
11195 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
11196 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
11197 alc269_fixups);
11198 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11199
11200 alc_auto_parse_customize_define(codec);
11201
11202 if (has_cdefine_beep(codec))
11203 spec->gen.beep_nid = 0x01;
11204
11205 /* automatic parse from the BIOS config */
11206 err = alc269_parse_auto_config(codec);
11207 if (err < 0)
11208 goto error;
11209
11210 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11211 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11212 if (err < 0)
11213 goto error;
11214 }
11215
11216 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11217
11218 return 0;
11219
11220 error:
11221 alc_free(codec);
11222 return err;
11223 }
11224
11225 /*
11226 * ALC861
11227 */
11228
11229 static int alc861_parse_auto_config(struct hda_codec *codec)
11230 {
11231 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
11232 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11233 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
11234 }
11235
11236 /* Pin config fixes */
11237 enum {
11238 ALC861_FIXUP_FSC_AMILO_PI1505,
11239 ALC861_FIXUP_AMP_VREF_0F,
11240 ALC861_FIXUP_NO_JACK_DETECT,
11241 ALC861_FIXUP_ASUS_A6RP,
11242 ALC660_FIXUP_ASUS_W7J,
11243 };
11244
11245 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11246 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
11247 const struct hda_fixup *fix, int action)
11248 {
11249 struct alc_spec *spec = codec->spec;
11250 unsigned int val;
11251
11252 if (action != HDA_FIXUP_ACT_INIT)
11253 return;
11254 val = snd_hda_codec_get_pin_target(codec, 0x0f);
11255 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11256 val |= AC_PINCTL_IN_EN;
11257 val |= AC_PINCTL_VREF_50;
11258 snd_hda_set_pin_ctl(codec, 0x0f, val);
11259 spec->gen.keep_vref_in_automute = 1;
11260 }
11261
11262 /* suppress the jack-detection */
11263 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
11264 const struct hda_fixup *fix, int action)
11265 {
11266 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11267 codec->no_jack_detect = 1;
11268 }
11269
11270 static const struct hda_fixup alc861_fixups[] = {
11271 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
11272 .type = HDA_FIXUP_PINS,
11273 .v.pins = (const struct hda_pintbl[]) {
11274 { 0x0b, 0x0221101f }, /* HP */
11275 { 0x0f, 0x90170310 }, /* speaker */
11276 { }
11277 }
11278 },
11279 [ALC861_FIXUP_AMP_VREF_0F] = {
11280 .type = HDA_FIXUP_FUNC,
11281 .v.func = alc861_fixup_asus_amp_vref_0f,
11282 },
11283 [ALC861_FIXUP_NO_JACK_DETECT] = {
11284 .type = HDA_FIXUP_FUNC,
11285 .v.func = alc_fixup_no_jack_detect,
11286 },
11287 [ALC861_FIXUP_ASUS_A6RP] = {
11288 .type = HDA_FIXUP_FUNC,
11289 .v.func = alc861_fixup_asus_amp_vref_0f,
11290 .chained = true,
11291 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
11292 },
11293 [ALC660_FIXUP_ASUS_W7J] = {
11294 .type = HDA_FIXUP_VERBS,
11295 .v.verbs = (const struct hda_verb[]) {
11296 /* ASUS W7J needs a magic pin setup on unused NID 0x10
11297 * for enabling outputs
11298 */
11299 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11300 { }
11301 },
11302 }
11303 };
11304
11305 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
11306 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
11307 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
11308 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11309 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11310 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
11311 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
11312 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
11313 {}
11314 };
11315
11316 /*
11317 */
11318 static int patch_alc861(struct hda_codec *codec)
11319 {
11320 struct alc_spec *spec;
11321 int err;
11322
11323 err = alc_alloc_spec(codec, 0x15);
11324 if (err < 0)
11325 return err;
11326
11327 spec = codec->spec;
11328 if (has_cdefine_beep(codec))
11329 spec->gen.beep_nid = 0x23;
11330
11331 #ifdef CONFIG_PM
11332 spec->power_hook = alc_power_eapd;
11333 #endif
11334
11335 alc_pre_init(codec);
11336
11337 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11338 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11339
11340 /* automatic parse from the BIOS config */
11341 err = alc861_parse_auto_config(codec);
11342 if (err < 0)
11343 goto error;
11344
11345 if (!spec->gen.no_analog) {
11346 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11347 if (err < 0)
11348 goto error;
11349 }
11350
11351 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11352
11353 return 0;
11354
11355 error:
11356 alc_free(codec);
11357 return err;
11358 }
11359
11360 /*
11361 * ALC861-VD support
11362 *
11363 * Based on ALC882
11364 *
11365 * In addition, an independent DAC
11366 */
11367 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11368 {
11369 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11370 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11371 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
11372 }
11373
11374 enum {
11375 ALC660VD_FIX_ASUS_GPIO1,
11376 ALC861VD_FIX_DALLAS,
11377 };
11378
11379 /* exclude VREF80 */
11380 static void alc861vd_fixup_dallas(struct hda_codec *codec,
11381 const struct hda_fixup *fix, int action)
11382 {
11383 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11384 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11385 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
11386 }
11387 }
11388
11389 /* reset GPIO1 */
11390 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11391 const struct hda_fixup *fix, int action)
11392 {
11393 struct alc_spec *spec = codec->spec;
11394
11395 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11396 spec->gpio_mask |= 0x02;
11397 alc_fixup_gpio(codec, action, 0x01);
11398 }
11399
11400 static const struct hda_fixup alc861vd_fixups[] = {
11401 [ALC660VD_FIX_ASUS_GPIO1] = {
11402 .type = HDA_FIXUP_FUNC,
11403 .v.func = alc660vd_fixup_asus_gpio1,
11404 },
11405 [ALC861VD_FIX_DALLAS] = {
11406 .type = HDA_FIXUP_FUNC,
11407 .v.func = alc861vd_fixup_dallas,
11408 },
11409 };
11410
11411 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
11412 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
11413 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
11414 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
11415 {}
11416 };
11417
11418 /*
11419 */
11420 static int patch_alc861vd(struct hda_codec *codec)
11421 {
11422 struct alc_spec *spec;
11423 int err;
11424
11425 err = alc_alloc_spec(codec, 0x0b);
11426 if (err < 0)
11427 return err;
11428
11429 spec = codec->spec;
11430 if (has_cdefine_beep(codec))
11431 spec->gen.beep_nid = 0x23;
11432
11433 spec->shutup = alc_eapd_shutup;
11434
11435 alc_pre_init(codec);
11436
11437 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11438 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11439
11440 /* automatic parse from the BIOS config */
11441 err = alc861vd_parse_auto_config(codec);
11442 if (err < 0)
11443 goto error;
11444
11445 if (!spec->gen.no_analog) {
11446 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11447 if (err < 0)
11448 goto error;
11449 }
11450
11451 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11452
11453 return 0;
11454
11455 error:
11456 alc_free(codec);
11457 return err;
11458 }
11459
11460 /*
11461 * ALC662 support
11462 *
11463 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11464 * configuration. Each pin widget can choose any input DACs and a mixer.
11465 * Each ADC is connected from a mixer of all inputs. This makes possible
11466 * 6-channel independent captures.
11467 *
11468 * In addition, an independent DAC for the multi-playback (not used in this
11469 * driver yet).
11470 */
11471
11472 /*
11473 * BIOS auto configuration
11474 */
11475
11476 static int alc662_parse_auto_config(struct hda_codec *codec)
11477 {
11478 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11479 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11480 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11481 const hda_nid_t *ssids;
11482
11483 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11484 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11485 codec->core.vendor_id == 0x10ec0671)
11486 ssids = alc663_ssids;
11487 else
11488 ssids = alc662_ssids;
11489 return alc_parse_auto_config(codec, alc662_ignore, ssids);
11490 }
11491
11492 static void alc272_fixup_mario(struct hda_codec *codec,
11493 const struct hda_fixup *fix, int action)
11494 {
11495 if (action != HDA_FIXUP_ACT_PRE_PROBE)
11496 return;
11497 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11498 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11499 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11500 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11501 (0 << AC_AMPCAP_MUTE_SHIFT)))
11502 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
11503 }
11504
11505 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11506 { .channels = 2,
11507 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11508 { .channels = 4,
11509 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11510 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11511 { }
11512 };
11513
11514 /* override the 2.1 chmap */
11515 static void alc_fixup_bass_chmap(struct hda_codec *codec,
11516 const struct hda_fixup *fix, int action)
11517 {
11518 if (action == HDA_FIXUP_ACT_BUILD) {
11519 struct alc_spec *spec = codec->spec;
11520 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
11521 }
11522 }
11523
11524 /* avoid D3 for keeping GPIO up */
11525 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11526 hda_nid_t nid,
11527 unsigned int power_state)
11528 {
11529 struct alc_spec *spec = codec->spec;
11530 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
11531 return AC_PWRST_D0;
11532 return power_state;
11533 }
11534
11535 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11536 const struct hda_fixup *fix, int action)
11537 {
11538 struct alc_spec *spec = codec->spec;
11539
11540 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
11541 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11542 spec->mute_led_polarity = 1;
11543 codec->power_filter = gpio_led_power_filter;
11544 }
11545 }
11546
11547 static void alc662_usi_automute_hook(struct hda_codec *codec,
11548 struct hda_jack_callback *jack)
11549 {
11550 struct alc_spec *spec = codec->spec;
11551 int vref;
11552 msleep(200);
11553 snd_hda_gen_hp_automute(codec, jack);
11554
11555 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11556 msleep(100);
11557 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11558 vref);
11559 }
11560
11561 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11562 const struct hda_fixup *fix, int action)
11563 {
11564 struct alc_spec *spec = codec->spec;
11565 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11566 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11567 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11568 }
11569 }
11570
11571 static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11572 struct hda_jack_callback *cb)
11573 {
11574 /* surround speakers at 0x1b already get muted automatically when
11575 * headphones are plugged in, but we have to mute/unmute the remaining
11576 * channels manually:
11577 * 0x15 - front left/front right
11578 * 0x18 - front center/ LFE
11579 */
11580 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11581 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11582 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11583 } else {
11584 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11585 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11586 }
11587 }
11588
11589 static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11590 const struct hda_fixup *fix, int action)
11591 {
11592 /* Pin 0x1b: shared headphones jack and surround speakers */
11593 if (!is_jack_detectable(codec, 0x1b))
11594 return;
11595
11596 switch (action) {
11597 case HDA_FIXUP_ACT_PRE_PROBE:
11598 snd_hda_jack_detect_enable_callback(codec, 0x1b,
11599 alc662_aspire_ethos_mute_speakers);
11600 /* subwoofer needs an extra GPIO setting to become audible */
11601 alc_setup_gpio(codec, 0x02);
11602 break;
11603 case HDA_FIXUP_ACT_INIT:
11604 /* Make sure to start in a correct state, i.e. if
11605 * headphones have been plugged in before powering up the system
11606 */
11607 alc662_aspire_ethos_mute_speakers(codec, NULL);
11608 break;
11609 }
11610 }
11611
11612 static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11613 const struct hda_fixup *fix, int action)
11614 {
11615 struct alc_spec *spec = codec->spec;
11616
11617 static const struct hda_pintbl pincfgs[] = {
11618 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11619 { 0x1b, 0x0181304f },
11620 { }
11621 };
11622
11623 switch (action) {
11624 case HDA_FIXUP_ACT_PRE_PROBE:
11625 spec->gen.mixer_nid = 0;
11626 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11627 snd_hda_apply_pincfgs(codec, pincfgs);
11628 break;
11629 case HDA_FIXUP_ACT_INIT:
11630 alc_write_coef_idx(codec, 0x19, 0xa054);
11631 break;
11632 }
11633 }
11634
11635 static void alc897_hp_automute_hook(struct hda_codec *codec,
11636 struct hda_jack_callback *jack)
11637 {
11638 struct alc_spec *spec = codec->spec;
11639 int vref;
11640
11641 snd_hda_gen_hp_automute(codec, jack);
11642 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11643 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11644 vref);
11645 }
11646
11647 static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11648 const struct hda_fixup *fix, int action)
11649 {
11650 struct alc_spec *spec = codec->spec;
11651 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11652 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11653 }
11654 }
11655
11656 static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11657 const struct hda_fixup *fix, int action)
11658 {
11659 struct alc_spec *spec = codec->spec;
11660
11661 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11662 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11663 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11664 }
11665 }
11666
11667 static const struct coef_fw alc668_coefs[] = {
11668 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
11669 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
11670 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
11671 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11672 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11673 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11674 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
11675 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
11676 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11677 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11678 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11679 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11680 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
11681 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11682 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
11683 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
11684 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11685 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
11686 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
11687 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
11688 {}
11689 };
11690
11691 static void alc668_restore_default_value(struct hda_codec *codec)
11692 {
11693 alc_process_coef_fw(codec, alc668_coefs);
11694 }
11695
11696 enum {
11697 ALC662_FIXUP_ASPIRE,
11698 ALC662_FIXUP_LED_GPIO1,
11699 ALC662_FIXUP_IDEAPAD,
11700 ALC272_FIXUP_MARIO,
11701 ALC662_FIXUP_CZC_ET26,
11702 ALC662_FIXUP_CZC_P10T,
11703 ALC662_FIXUP_SKU_IGNORE,
11704 ALC662_FIXUP_HP_RP5800,
11705 ALC662_FIXUP_ASUS_MODE1,
11706 ALC662_FIXUP_ASUS_MODE2,
11707 ALC662_FIXUP_ASUS_MODE3,
11708 ALC662_FIXUP_ASUS_MODE4,
11709 ALC662_FIXUP_ASUS_MODE5,
11710 ALC662_FIXUP_ASUS_MODE6,
11711 ALC662_FIXUP_ASUS_MODE7,
11712 ALC662_FIXUP_ASUS_MODE8,
11713 ALC662_FIXUP_NO_JACK_DETECT,
11714 ALC662_FIXUP_ZOTAC_Z68,
11715 ALC662_FIXUP_INV_DMIC,
11716 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
11717 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
11718 ALC662_FIXUP_HEADSET_MODE,
11719 ALC668_FIXUP_HEADSET_MODE,
11720 ALC662_FIXUP_BASS_MODE4_CHMAP,
11721 ALC662_FIXUP_BASS_16,
11722 ALC662_FIXUP_BASS_1A,
11723 ALC662_FIXUP_BASS_CHMAP,
11724 ALC668_FIXUP_AUTO_MUTE,
11725 ALC668_FIXUP_DELL_DISABLE_AAMIX,
11726 ALC668_FIXUP_DELL_XPS13,
11727 ALC662_FIXUP_ASUS_Nx50,
11728 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
11729 ALC668_FIXUP_ASUS_Nx51,
11730 ALC668_FIXUP_MIC_COEF,
11731 ALC668_FIXUP_ASUS_G751,
11732 ALC891_FIXUP_HEADSET_MODE,
11733 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11734 ALC662_FIXUP_ACER_VERITON,
11735 ALC892_FIXUP_ASROCK_MOBO,
11736 ALC662_FIXUP_USI_FUNC,
11737 ALC662_FIXUP_USI_HEADSET_MODE,
11738 ALC662_FIXUP_LENOVO_MULTI_CODECS,
11739 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
11740 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
11741 ALC671_FIXUP_HP_HEADSET_MIC2,
11742 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
11743 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
11744 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
11745 ALC668_FIXUP_HEADSET_MIC,
11746 ALC668_FIXUP_MIC_DET_COEF,
11747 ALC897_FIXUP_LENOVO_HEADSET_MIC,
11748 ALC897_FIXUP_HEADSET_MIC_PIN,
11749 ALC897_FIXUP_HP_HSMIC_VERB,
11750 ALC897_FIXUP_LENOVO_HEADSET_MODE,
11751 ALC897_FIXUP_HEADSET_MIC_PIN2,
11752 ALC897_FIXUP_UNIS_H3C_X500S,
11753 };
11754
11755 static const struct hda_fixup alc662_fixups[] = {
11756 [ALC662_FIXUP_ASPIRE] = {
11757 .type = HDA_FIXUP_PINS,
11758 .v.pins = (const struct hda_pintbl[]) {
11759 { 0x15, 0x99130112 }, /* subwoofer */
11760 { }
11761 }
11762 },
11763 [ALC662_FIXUP_LED_GPIO1] = {
11764 .type = HDA_FIXUP_FUNC,
11765 .v.func = alc662_fixup_led_gpio1,
11766 },
11767 [ALC662_FIXUP_IDEAPAD] = {
11768 .type = HDA_FIXUP_PINS,
11769 .v.pins = (const struct hda_pintbl[]) {
11770 { 0x17, 0x99130112 }, /* subwoofer */
11771 { }
11772 },
11773 .chained = true,
11774 .chain_id = ALC662_FIXUP_LED_GPIO1,
11775 },
11776 [ALC272_FIXUP_MARIO] = {
11777 .type = HDA_FIXUP_FUNC,
11778 .v.func = alc272_fixup_mario,
11779 },
11780 [ALC662_FIXUP_CZC_ET26] = {
11781 .type = HDA_FIXUP_PINS,
11782 .v.pins = (const struct hda_pintbl[]) {
11783 {0x12, 0x403cc000},
11784 {0x14, 0x90170110}, /* speaker */
11785 {0x15, 0x411111f0},
11786 {0x16, 0x411111f0},
11787 {0x18, 0x01a19030}, /* mic */
11788 {0x19, 0x90a7013f}, /* int-mic */
11789 {0x1a, 0x01014020},
11790 {0x1b, 0x0121401f},
11791 {0x1c, 0x411111f0},
11792 {0x1d, 0x411111f0},
11793 {0x1e, 0x40478e35},
11794 {}
11795 },
11796 .chained = true,
11797 .chain_id = ALC662_FIXUP_SKU_IGNORE
11798 },
11799 [ALC662_FIXUP_CZC_P10T] = {
11800 .type = HDA_FIXUP_VERBS,
11801 .v.verbs = (const struct hda_verb[]) {
11802 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
11803 {}
11804 }
11805 },
11806 [ALC662_FIXUP_SKU_IGNORE] = {
11807 .type = HDA_FIXUP_FUNC,
11808 .v.func = alc_fixup_sku_ignore,
11809 },
11810 [ALC662_FIXUP_HP_RP5800] = {
11811 .type = HDA_FIXUP_PINS,
11812 .v.pins = (const struct hda_pintbl[]) {
11813 { 0x14, 0x0221201f }, /* HP out */
11814 { }
11815 },
11816 .chained = true,
11817 .chain_id = ALC662_FIXUP_SKU_IGNORE
11818 },
11819 [ALC662_FIXUP_ASUS_MODE1] = {
11820 .type = HDA_FIXUP_PINS,
11821 .v.pins = (const struct hda_pintbl[]) {
11822 { 0x14, 0x99130110 }, /* speaker */
11823 { 0x18, 0x01a19c20 }, /* mic */
11824 { 0x19, 0x99a3092f }, /* int-mic */
11825 { 0x21, 0x0121401f }, /* HP out */
11826 { }
11827 },
11828 .chained = true,
11829 .chain_id = ALC662_FIXUP_SKU_IGNORE
11830 },
11831 [ALC662_FIXUP_ASUS_MODE2] = {
11832 .type = HDA_FIXUP_PINS,
11833 .v.pins = (const struct hda_pintbl[]) {
11834 { 0x14, 0x99130110 }, /* speaker */
11835 { 0x18, 0x01a19820 }, /* mic */
11836 { 0x19, 0x99a3092f }, /* int-mic */
11837 { 0x1b, 0x0121401f }, /* HP out */
11838 { }
11839 },
11840 .chained = true,
11841 .chain_id = ALC662_FIXUP_SKU_IGNORE
11842 },
11843 [ALC662_FIXUP_ASUS_MODE3] = {
11844 .type = HDA_FIXUP_PINS,
11845 .v.pins = (const struct hda_pintbl[]) {
11846 { 0x14, 0x99130110 }, /* speaker */
11847 { 0x15, 0x0121441f }, /* HP */
11848 { 0x18, 0x01a19840 }, /* mic */
11849 { 0x19, 0x99a3094f }, /* int-mic */
11850 { 0x21, 0x01211420 }, /* HP2 */
11851 { }
11852 },
11853 .chained = true,
11854 .chain_id = ALC662_FIXUP_SKU_IGNORE
11855 },
11856 [ALC662_FIXUP_ASUS_MODE4] = {
11857 .type = HDA_FIXUP_PINS,
11858 .v.pins = (const struct hda_pintbl[]) {
11859 { 0x14, 0x99130110 }, /* speaker */
11860 { 0x16, 0x99130111 }, /* speaker */
11861 { 0x18, 0x01a19840 }, /* mic */
11862 { 0x19, 0x99a3094f }, /* int-mic */
11863 { 0x21, 0x0121441f }, /* HP */
11864 { }
11865 },
11866 .chained = true,
11867 .chain_id = ALC662_FIXUP_SKU_IGNORE
11868 },
11869 [ALC662_FIXUP_ASUS_MODE5] = {
11870 .type = HDA_FIXUP_PINS,
11871 .v.pins = (const struct hda_pintbl[]) {
11872 { 0x14, 0x99130110 }, /* speaker */
11873 { 0x15, 0x0121441f }, /* HP */
11874 { 0x16, 0x99130111 }, /* speaker */
11875 { 0x18, 0x01a19840 }, /* mic */
11876 { 0x19, 0x99a3094f }, /* int-mic */
11877 { }
11878 },
11879 .chained = true,
11880 .chain_id = ALC662_FIXUP_SKU_IGNORE
11881 },
11882 [ALC662_FIXUP_ASUS_MODE6] = {
11883 .type = HDA_FIXUP_PINS,
11884 .v.pins = (const struct hda_pintbl[]) {
11885 { 0x14, 0x99130110 }, /* speaker */
11886 { 0x15, 0x01211420 }, /* HP2 */
11887 { 0x18, 0x01a19840 }, /* mic */
11888 { 0x19, 0x99a3094f }, /* int-mic */
11889 { 0x1b, 0x0121441f }, /* HP */
11890 { }
11891 },
11892 .chained = true,
11893 .chain_id = ALC662_FIXUP_SKU_IGNORE
11894 },
11895 [ALC662_FIXUP_ASUS_MODE7] = {
11896 .type = HDA_FIXUP_PINS,
11897 .v.pins = (const struct hda_pintbl[]) {
11898 { 0x14, 0x99130110 }, /* speaker */
11899 { 0x17, 0x99130111 }, /* speaker */
11900 { 0x18, 0x01a19840 }, /* mic */
11901 { 0x19, 0x99a3094f }, /* int-mic */
11902 { 0x1b, 0x01214020 }, /* HP */
11903 { 0x21, 0x0121401f }, /* HP */
11904 { }
11905 },
11906 .chained = true,
11907 .chain_id = ALC662_FIXUP_SKU_IGNORE
11908 },
11909 [ALC662_FIXUP_ASUS_MODE8] = {
11910 .type = HDA_FIXUP_PINS,
11911 .v.pins = (const struct hda_pintbl[]) {
11912 { 0x14, 0x99130110 }, /* speaker */
11913 { 0x12, 0x99a30970 }, /* int-mic */
11914 { 0x15, 0x01214020 }, /* HP */
11915 { 0x17, 0x99130111 }, /* speaker */
11916 { 0x18, 0x01a19840 }, /* mic */
11917 { 0x21, 0x0121401f }, /* HP */
11918 { }
11919 },
11920 .chained = true,
11921 .chain_id = ALC662_FIXUP_SKU_IGNORE
11922 },
11923 [ALC662_FIXUP_NO_JACK_DETECT] = {
11924 .type = HDA_FIXUP_FUNC,
11925 .v.func = alc_fixup_no_jack_detect,
11926 },
11927 [ALC662_FIXUP_ZOTAC_Z68] = {
11928 .type = HDA_FIXUP_PINS,
11929 .v.pins = (const struct hda_pintbl[]) {
11930 { 0x1b, 0x02214020 }, /* Front HP */
11931 { }
11932 }
11933 },
11934 [ALC662_FIXUP_INV_DMIC] = {
11935 .type = HDA_FIXUP_FUNC,
11936 .v.func = alc_fixup_inv_dmic,
11937 },
11938 [ALC668_FIXUP_DELL_XPS13] = {
11939 .type = HDA_FIXUP_FUNC,
11940 .v.func = alc_fixup_dell_xps13,
11941 .chained = true,
11942 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11943 },
11944 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
11945 .type = HDA_FIXUP_FUNC,
11946 .v.func = alc_fixup_disable_aamix,
11947 .chained = true,
11948 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11949 },
11950 [ALC668_FIXUP_AUTO_MUTE] = {
11951 .type = HDA_FIXUP_FUNC,
11952 .v.func = alc_fixup_auto_mute_via_amp,
11953 .chained = true,
11954 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11955 },
11956 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
11957 .type = HDA_FIXUP_PINS,
11958 .v.pins = (const struct hda_pintbl[]) {
11959 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11960 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
11961 { }
11962 },
11963 .chained = true,
11964 .chain_id = ALC662_FIXUP_HEADSET_MODE
11965 },
11966 [ALC662_FIXUP_HEADSET_MODE] = {
11967 .type = HDA_FIXUP_FUNC,
11968 .v.func = alc_fixup_headset_mode_alc662,
11969 },
11970 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
11971 .type = HDA_FIXUP_PINS,
11972 .v.pins = (const struct hda_pintbl[]) {
11973 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11974 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11975 { }
11976 },
11977 .chained = true,
11978 .chain_id = ALC668_FIXUP_HEADSET_MODE
11979 },
11980 [ALC668_FIXUP_HEADSET_MODE] = {
11981 .type = HDA_FIXUP_FUNC,
11982 .v.func = alc_fixup_headset_mode_alc668,
11983 },
11984 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
11985 .type = HDA_FIXUP_FUNC,
11986 .v.func = alc_fixup_bass_chmap,
11987 .chained = true,
11988 .chain_id = ALC662_FIXUP_ASUS_MODE4
11989 },
11990 [ALC662_FIXUP_BASS_16] = {
11991 .type = HDA_FIXUP_PINS,
11992 .v.pins = (const struct hda_pintbl[]) {
11993 {0x16, 0x80106111}, /* bass speaker */
11994 {}
11995 },
11996 .chained = true,
11997 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11998 },
11999 [ALC662_FIXUP_BASS_1A] = {
12000 .type = HDA_FIXUP_PINS,
12001 .v.pins = (const struct hda_pintbl[]) {
12002 {0x1a, 0x80106111}, /* bass speaker */
12003 {}
12004 },
12005 .chained = true,
12006 .chain_id = ALC662_FIXUP_BASS_CHMAP,
12007 },
12008 [ALC662_FIXUP_BASS_CHMAP] = {
12009 .type = HDA_FIXUP_FUNC,
12010 .v.func = alc_fixup_bass_chmap,
12011 },
12012 [ALC662_FIXUP_ASUS_Nx50] = {
12013 .type = HDA_FIXUP_FUNC,
12014 .v.func = alc_fixup_auto_mute_via_amp,
12015 .chained = true,
12016 .chain_id = ALC662_FIXUP_BASS_1A
12017 },
12018 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
12019 .type = HDA_FIXUP_FUNC,
12020 .v.func = alc_fixup_headset_mode_alc668,
12021 .chain_id = ALC662_FIXUP_BASS_CHMAP
12022 },
12023 [ALC668_FIXUP_ASUS_Nx51] = {
12024 .type = HDA_FIXUP_PINS,
12025 .v.pins = (const struct hda_pintbl[]) {
12026 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12027 { 0x1a, 0x90170151 }, /* bass speaker */
12028 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12029 {}
12030 },
12031 .chained = true,
12032 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
12033 },
12034 [ALC668_FIXUP_MIC_COEF] = {
12035 .type = HDA_FIXUP_VERBS,
12036 .v.verbs = (const struct hda_verb[]) {
12037 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
12038 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
12039 {}
12040 },
12041 },
12042 [ALC668_FIXUP_ASUS_G751] = {
12043 .type = HDA_FIXUP_PINS,
12044 .v.pins = (const struct hda_pintbl[]) {
12045 { 0x16, 0x0421101f }, /* HP */
12046 {}
12047 },
12048 .chained = true,
12049 .chain_id = ALC668_FIXUP_MIC_COEF
12050 },
12051 [ALC891_FIXUP_HEADSET_MODE] = {
12052 .type = HDA_FIXUP_FUNC,
12053 .v.func = alc_fixup_headset_mode,
12054 },
12055 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
12056 .type = HDA_FIXUP_PINS,
12057 .v.pins = (const struct hda_pintbl[]) {
12058 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12059 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12060 { }
12061 },
12062 .chained = true,
12063 .chain_id = ALC891_FIXUP_HEADSET_MODE
12064 },
12065 [ALC662_FIXUP_ACER_VERITON] = {
12066 .type = HDA_FIXUP_PINS,
12067 .v.pins = (const struct hda_pintbl[]) {
12068 { 0x15, 0x50170120 }, /* no internal speaker */
12069 { }
12070 }
12071 },
12072 [ALC892_FIXUP_ASROCK_MOBO] = {
12073 .type = HDA_FIXUP_PINS,
12074 .v.pins = (const struct hda_pintbl[]) {
12075 { 0x15, 0x40f000f0 }, /* disabled */
12076 { 0x16, 0x40f000f0 }, /* disabled */
12077 { }
12078 }
12079 },
12080 [ALC662_FIXUP_USI_FUNC] = {
12081 .type = HDA_FIXUP_FUNC,
12082 .v.func = alc662_fixup_usi_headset_mic,
12083 },
12084 [ALC662_FIXUP_USI_HEADSET_MODE] = {
12085 .type = HDA_FIXUP_PINS,
12086 .v.pins = (const struct hda_pintbl[]) {
12087 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
12088 { 0x18, 0x01a1903d },
12089 { }
12090 },
12091 .chained = true,
12092 .chain_id = ALC662_FIXUP_USI_FUNC
12093 },
12094 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
12095 .type = HDA_FIXUP_FUNC,
12096 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
12097 },
12098 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
12099 .type = HDA_FIXUP_FUNC,
12100 .v.func = alc662_fixup_aspire_ethos_hp,
12101 },
12102 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
12103 .type = HDA_FIXUP_PINS,
12104 .v.pins = (const struct hda_pintbl[]) {
12105 { 0x15, 0x92130110 }, /* front speakers */
12106 { 0x18, 0x99130111 }, /* center/subwoofer */
12107 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
12108 { }
12109 },
12110 .chained = true,
12111 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
12112 },
12113 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
12114 .type = HDA_FIXUP_FUNC,
12115 .v.func = alc671_fixup_hp_headset_mic2,
12116 },
12117 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
12118 .type = HDA_FIXUP_PINS,
12119 .v.pins = (const struct hda_pintbl[]) {
12120 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
12121 { }
12122 },
12123 .chained = true,
12124 .chain_id = ALC662_FIXUP_USI_FUNC
12125 },
12126 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
12127 .type = HDA_FIXUP_PINS,
12128 .v.pins = (const struct hda_pintbl[]) {
12129 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12130 { 0x1b, 0x0221144f },
12131 { }
12132 },
12133 .chained = true,
12134 .chain_id = ALC662_FIXUP_USI_FUNC
12135 },
12136 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
12137 .type = HDA_FIXUP_PINS,
12138 .v.pins = (const struct hda_pintbl[]) {
12139 { 0x1b, 0x04a1112c },
12140 { }
12141 },
12142 .chained = true,
12143 .chain_id = ALC668_FIXUP_HEADSET_MIC
12144 },
12145 [ALC668_FIXUP_HEADSET_MIC] = {
12146 .type = HDA_FIXUP_FUNC,
12147 .v.func = alc269_fixup_headset_mic,
12148 .chained = true,
12149 .chain_id = ALC668_FIXUP_MIC_DET_COEF
12150 },
12151 [ALC668_FIXUP_MIC_DET_COEF] = {
12152 .type = HDA_FIXUP_VERBS,
12153 .v.verbs = (const struct hda_verb[]) {
12154 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
12155 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
12156 {}
12157 },
12158 },
12159 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
12160 .type = HDA_FIXUP_FUNC,
12161 .v.func = alc897_fixup_lenovo_headset_mic,
12162 },
12163 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
12164 .type = HDA_FIXUP_PINS,
12165 .v.pins = (const struct hda_pintbl[]) {
12166 { 0x1a, 0x03a11050 },
12167 { }
12168 },
12169 .chained = true,
12170 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12171 },
12172 [ALC897_FIXUP_HP_HSMIC_VERB] = {
12173 .type = HDA_FIXUP_PINS,
12174 .v.pins = (const struct hda_pintbl[]) {
12175 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12176 { }
12177 },
12178 },
12179 [ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12180 .type = HDA_FIXUP_FUNC,
12181 .v.func = alc897_fixup_lenovo_headset_mode,
12182 },
12183 [ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12184 .type = HDA_FIXUP_PINS,
12185 .v.pins = (const struct hda_pintbl[]) {
12186 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12187 { }
12188 },
12189 .chained = true,
12190 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12191 },
12192 [ALC897_FIXUP_UNIS_H3C_X500S] = {
12193 .type = HDA_FIXUP_VERBS,
12194 .v.verbs = (const struct hda_verb[]) {
12195 { 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12196 {}
12197 },
12198 },
12199 };
12200
12201 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
12202 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
12203 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
12204 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
12205 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
12206 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
12207 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
12208 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
12209 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
12210 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
12211 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
12212 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
12213 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12214 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12215 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
12216 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
12217 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
12218 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12219 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12220 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12221 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12222 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12223 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
12224 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12225 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12226 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12227 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
12228 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
12229 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
12230 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
12231 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
12232 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
12233 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
12234 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
12235 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
12236 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12237 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
12238 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12239 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
12240 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
12241 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
12242 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
12243 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12244 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
12245 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
12246 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
12247 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
12248 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
12249 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
12250 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
12251 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12252 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12253 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12254 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
12255 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12256 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12257 SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN),
12258 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
12259 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
12260 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
12261 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
12262 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
12263 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
12264 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
12265 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
12266 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
12267
12268 #if 0
12269 /* Below is a quirk table taken from the old code.
12270 * Basically the device should work as is without the fixup table.
12271 * If BIOS doesn't give a proper info, enable the corresponding
12272 * fixup entry.
12273 */
12274 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12275 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12276 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12277 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12278 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12279 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12280 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12281 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12282 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12283 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12284 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12285 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12286 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12287 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12288 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12289 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12290 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12291 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12292 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12293 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12294 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12295 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12296 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12297 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12298 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12299 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12300 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12301 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12302 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12303 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12304 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12305 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12306 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12307 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12308 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12309 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12310 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12311 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12312 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12313 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12314 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12315 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12316 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12317 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12318 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12319 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12320 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12321 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12322 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12323 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12324 #endif
12325 {}
12326 };
12327
12328 static const struct hda_model_fixup alc662_fixup_models[] = {
12329 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12330 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
12331 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
12332 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
12333 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12334 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12335 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12336 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12337 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12338 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12339 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12340 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
12341 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
12342 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
12343 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
12344 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
12345 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12346 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12347 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12348 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12349 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12350 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12351 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12352 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
12353 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
12354 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12355 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12356 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12357 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12358 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
12359 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
12360 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
12361 {.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
12362 {}
12363 };
12364
12365 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
12366 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12367 {0x17, 0x02211010},
12368 {0x18, 0x01a19030},
12369 {0x1a, 0x01813040},
12370 {0x21, 0x01014020}),
12371 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12372 {0x16, 0x01813030},
12373 {0x17, 0x02211010},
12374 {0x18, 0x01a19040},
12375 {0x21, 0x01014020}),
12376 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
12377 {0x14, 0x01014010},
12378 {0x18, 0x01a19020},
12379 {0x1a, 0x0181302f},
12380 {0x1b, 0x0221401f}),
12381 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12382 {0x12, 0x99a30130},
12383 {0x14, 0x90170110},
12384 {0x15, 0x0321101f},
12385 {0x16, 0x03011020}),
12386 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12387 {0x12, 0x99a30140},
12388 {0x14, 0x90170110},
12389 {0x15, 0x0321101f},
12390 {0x16, 0x03011020}),
12391 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12392 {0x12, 0x99a30150},
12393 {0x14, 0x90170110},
12394 {0x15, 0x0321101f},
12395 {0x16, 0x03011020}),
12396 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12397 {0x14, 0x90170110},
12398 {0x15, 0x0321101f},
12399 {0x16, 0x03011020}),
12400 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12401 {0x12, 0x90a60130},
12402 {0x14, 0x90170110},
12403 {0x15, 0x0321101f}),
12404 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12405 {0x14, 0x01014010},
12406 {0x17, 0x90170150},
12407 {0x19, 0x02a11060},
12408 {0x1b, 0x01813030},
12409 {0x21, 0x02211020}),
12410 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12411 {0x14, 0x01014010},
12412 {0x18, 0x01a19040},
12413 {0x1b, 0x01813030},
12414 {0x21, 0x02211020}),
12415 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12416 {0x14, 0x01014020},
12417 {0x17, 0x90170110},
12418 {0x18, 0x01a19050},
12419 {0x1b, 0x01813040},
12420 {0x21, 0x02211030}),
12421 {}
12422 };
12423
12424 /*
12425 */
12426 static int patch_alc662(struct hda_codec *codec)
12427 {
12428 struct alc_spec *spec;
12429 int err;
12430
12431 err = alc_alloc_spec(codec, 0x0b);
12432 if (err < 0)
12433 return err;
12434
12435 spec = codec->spec;
12436
12437 spec->shutup = alc_eapd_shutup;
12438
12439 /* handle multiple HPs as is */
12440 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12441
12442 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12443
12444 switch (codec->core.vendor_id) {
12445 case 0x10ec0668:
12446 spec->init_hook = alc668_restore_default_value;
12447 break;
12448 }
12449
12450 alc_pre_init(codec);
12451
12452 snd_hda_pick_fixup(codec, alc662_fixup_models,
12453 alc662_fixup_tbl, alc662_fixups);
12454 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
12455 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
12456
12457 alc_auto_parse_customize_define(codec);
12458
12459 if (has_cdefine_beep(codec))
12460 spec->gen.beep_nid = 0x01;
12461
12462 if ((alc_get_coef0(codec) & (1 << 14)) &&
12463 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
12464 spec->cdefine.platform_type == 1) {
12465 err = alc_codec_rename(codec, "ALC272X");
12466 if (err < 0)
12467 goto error;
12468 }
12469
12470 /* automatic parse from the BIOS config */
12471 err = alc662_parse_auto_config(codec);
12472 if (err < 0)
12473 goto error;
12474
12475 if (!spec->gen.no_analog && spec->gen.beep_nid) {
12476 switch (codec->core.vendor_id) {
12477 case 0x10ec0662:
12478 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
12479 break;
12480 case 0x10ec0272:
12481 case 0x10ec0663:
12482 case 0x10ec0665:
12483 case 0x10ec0668:
12484 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
12485 break;
12486 case 0x10ec0273:
12487 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
12488 break;
12489 }
12490 if (err < 0)
12491 goto error;
12492 }
12493
12494 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
12495
12496 return 0;
12497
12498 error:
12499 alc_free(codec);
12500 return err;
12501 }
12502
12503 /*
12504 * ALC680 support
12505 */
12506
12507 static int alc680_parse_auto_config(struct hda_codec *codec)
12508 {
12509 return alc_parse_auto_config(codec, NULL, NULL);
12510 }
12511
12512 /*
12513 */
12514 static int patch_alc680(struct hda_codec *codec)
12515 {
12516 int err;
12517
12518 /* ALC680 has no aa-loopback mixer */
12519 err = alc_alloc_spec(codec, 0);
12520 if (err < 0)
12521 return err;
12522
12523 /* automatic parse from the BIOS config */
12524 err = alc680_parse_auto_config(codec);
12525 if (err < 0) {
12526 alc_free(codec);
12527 return err;
12528 }
12529
12530 return 0;
12531 }
12532
12533 /*
12534 * patch entries
12535 */
12536 static const struct hda_device_id snd_hda_id_realtek[] = {
12537 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
12538 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
12539 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
12540 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
12541 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
12542 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12543 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
12544 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
12545 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
12546 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
12547 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
12548 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12549 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
12550 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
12551 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12552 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12553 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12554 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12555 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12556 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12557 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
12558 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
12559 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12560 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12561 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12562 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12563 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12564 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
12565 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
12566 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
12567 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
12568 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
12569 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
12570 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12571 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12572 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
12573 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
12574 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
12575 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
12576 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
12577 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
12578 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
12579 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12580 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12581 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12582 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12583 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12584 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12585 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12586 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12587 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12588 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12589 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12590 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12591 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12592 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
12593 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12594 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12595 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
12596 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
12597 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
12598 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12599 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12600 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12601 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12602 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12603 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12604 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12605 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12606 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12607 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12608 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
12609 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
12610 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12611 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
12612 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
12613 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
12614 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
12615 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
12616 {} /* terminator */
12617 };
12618 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
12619
12620 MODULE_LICENSE("GPL");
12621 MODULE_DESCRIPTION("Realtek HD-audio codec");
12622
12623 static struct hda_codec_driver realtek_driver = {
12624 .id = snd_hda_id_realtek,
12625 };
12626
12627 module_hda_codec_driver(realtek_driver);