xref: /linux/sound/pci/hda/patch_realtek.c (revision 3339b99ef6fe38dac43b534cba3a8a0e29fb2eff)
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 	void (*power_hook)(struct hda_codec *codec);
113 	void (*shutup)(struct hda_codec *codec);
114 
115 	int init_amp;
116 	int codec_variant;	/* flag for other variants */
117 	unsigned int has_alc5505_dsp:1;
118 	unsigned int no_depop_delay:1;
119 	unsigned int done_hp_init:1;
120 	unsigned int no_shutup_pins:1;
121 	unsigned int ultra_low_power:1;
122 	unsigned int has_hs_key:1;
123 	unsigned int no_internal_mic_pin:1;
124 	unsigned int en_3kpull_low:1;
125 
126 	/* for PLL fix */
127 	hda_nid_t pll_nid;
128 	unsigned int pll_coef_idx, pll_coef_bit;
129 	unsigned int coef0;
130 	struct input_dev *kb_dev;
131 	u8 alc_mute_keycode_map[1];
132 
133 	/* component binding */
134 	struct hda_component comps[HDA_MAX_COMPONENTS];
135 };
136 
137 /*
138  * COEF access helper functions
139  */
140 
141 static void coef_mutex_lock(struct hda_codec *codec)
142 {
143 	struct alc_spec *spec = codec->spec;
144 
145 	snd_hda_power_up_pm(codec);
146 	mutex_lock(&spec->coef_mutex);
147 }
148 
149 static void coef_mutex_unlock(struct hda_codec *codec)
150 {
151 	struct alc_spec *spec = codec->spec;
152 
153 	mutex_unlock(&spec->coef_mutex);
154 	snd_hda_power_down_pm(codec);
155 }
156 
157 static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
158 				 unsigned int coef_idx)
159 {
160 	unsigned int val;
161 
162 	snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
163 	val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
164 	return val;
165 }
166 
167 static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
168 			       unsigned int coef_idx)
169 {
170 	unsigned int val;
171 
172 	coef_mutex_lock(codec);
173 	val = __alc_read_coefex_idx(codec, nid, coef_idx);
174 	coef_mutex_unlock(codec);
175 	return val;
176 }
177 
178 #define alc_read_coef_idx(codec, coef_idx) \
179 	alc_read_coefex_idx(codec, 0x20, coef_idx)
180 
181 static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
182 				   unsigned int coef_idx, unsigned int coef_val)
183 {
184 	snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
185 	snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
186 }
187 
188 static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
189 				 unsigned int coef_idx, unsigned int coef_val)
190 {
191 	coef_mutex_lock(codec);
192 	__alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
193 	coef_mutex_unlock(codec);
194 }
195 
196 #define alc_write_coef_idx(codec, coef_idx, coef_val) \
197 	alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
198 
199 static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
200 				    unsigned int coef_idx, unsigned int mask,
201 				    unsigned int bits_set)
202 {
203 	unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
204 
205 	if (val != -1)
206 		__alc_write_coefex_idx(codec, nid, coef_idx,
207 				       (val & ~mask) | bits_set);
208 }
209 
210 static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
211 				  unsigned int coef_idx, unsigned int mask,
212 				  unsigned int bits_set)
213 {
214 	coef_mutex_lock(codec);
215 	__alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
216 	coef_mutex_unlock(codec);
217 }
218 
219 #define alc_update_coef_idx(codec, coef_idx, mask, bits_set)	\
220 	alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
221 
222 /* a special bypass for COEF 0; read the cached value at the second time */
223 static unsigned int alc_get_coef0(struct hda_codec *codec)
224 {
225 	struct alc_spec *spec = codec->spec;
226 
227 	if (!spec->coef0)
228 		spec->coef0 = alc_read_coef_idx(codec, 0);
229 	return spec->coef0;
230 }
231 
232 /* coef writes/updates batch */
233 struct coef_fw {
234 	unsigned char nid;
235 	unsigned char idx;
236 	unsigned short mask;
237 	unsigned short val;
238 };
239 
240 #define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
241 	{ .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
242 #define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
243 #define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
244 #define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
245 
246 static void alc_process_coef_fw(struct hda_codec *codec,
247 				const struct coef_fw *fw)
248 {
249 	coef_mutex_lock(codec);
250 	for (; fw->nid; fw++) {
251 		if (fw->mask == (unsigned short)-1)
252 			__alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
253 		else
254 			__alc_update_coefex_idx(codec, fw->nid, fw->idx,
255 						fw->mask, fw->val);
256 	}
257 	coef_mutex_unlock(codec);
258 }
259 
260 /*
261  * GPIO setup tables, used in initialization
262  */
263 
264 /* Enable GPIO mask and set output */
265 static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
266 {
267 	struct alc_spec *spec = codec->spec;
268 
269 	spec->gpio_mask |= mask;
270 	spec->gpio_dir |= mask;
271 	spec->gpio_data |= mask;
272 }
273 
274 static void alc_write_gpio_data(struct hda_codec *codec)
275 {
276 	struct alc_spec *spec = codec->spec;
277 
278 	snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
279 			    spec->gpio_data);
280 }
281 
282 static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
283 				 bool on)
284 {
285 	struct alc_spec *spec = codec->spec;
286 	unsigned int oldval = spec->gpio_data;
287 
288 	if (on)
289 		spec->gpio_data |= mask;
290 	else
291 		spec->gpio_data &= ~mask;
292 	if (oldval != spec->gpio_data)
293 		alc_write_gpio_data(codec);
294 }
295 
296 static void alc_write_gpio(struct hda_codec *codec)
297 {
298 	struct alc_spec *spec = codec->spec;
299 
300 	if (!spec->gpio_mask)
301 		return;
302 
303 	snd_hda_codec_write(codec, codec->core.afg, 0,
304 			    AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
305 	snd_hda_codec_write(codec, codec->core.afg, 0,
306 			    AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
307 	if (spec->gpio_write_delay)
308 		msleep(1);
309 	alc_write_gpio_data(codec);
310 }
311 
312 static void alc_fixup_gpio(struct hda_codec *codec, int action,
313 			   unsigned int mask)
314 {
315 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
316 		alc_setup_gpio(codec, mask);
317 }
318 
319 static void alc_fixup_gpio1(struct hda_codec *codec,
320 			    const struct hda_fixup *fix, int action)
321 {
322 	alc_fixup_gpio(codec, action, 0x01);
323 }
324 
325 static void alc_fixup_gpio2(struct hda_codec *codec,
326 			    const struct hda_fixup *fix, int action)
327 {
328 	alc_fixup_gpio(codec, action, 0x02);
329 }
330 
331 static void alc_fixup_gpio3(struct hda_codec *codec,
332 			    const struct hda_fixup *fix, int action)
333 {
334 	alc_fixup_gpio(codec, action, 0x03);
335 }
336 
337 static void alc_fixup_gpio4(struct hda_codec *codec,
338 			    const struct hda_fixup *fix, int action)
339 {
340 	alc_fixup_gpio(codec, action, 0x04);
341 }
342 
343 static void alc_fixup_micmute_led(struct hda_codec *codec,
344 				  const struct hda_fixup *fix, int action)
345 {
346 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
347 		snd_hda_gen_add_micmute_led_cdev(codec, NULL);
348 }
349 
350 /*
351  * Fix hardware PLL issue
352  * On some codecs, the analog PLL gating control must be off while
353  * the default value is 1.
354  */
355 static void alc_fix_pll(struct hda_codec *codec)
356 {
357 	struct alc_spec *spec = codec->spec;
358 
359 	if (spec->pll_nid)
360 		alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
361 				      1 << spec->pll_coef_bit, 0);
362 }
363 
364 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
365 			     unsigned int coef_idx, unsigned int coef_bit)
366 {
367 	struct alc_spec *spec = codec->spec;
368 	spec->pll_nid = nid;
369 	spec->pll_coef_idx = coef_idx;
370 	spec->pll_coef_bit = coef_bit;
371 	alc_fix_pll(codec);
372 }
373 
374 /* update the master volume per volume-knob's unsol event */
375 static void alc_update_knob_master(struct hda_codec *codec,
376 				   struct hda_jack_callback *jack)
377 {
378 	unsigned int val;
379 	struct snd_kcontrol *kctl;
380 	struct snd_ctl_elem_value *uctl;
381 
382 	kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
383 	if (!kctl)
384 		return;
385 	uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
386 	if (!uctl)
387 		return;
388 	val = snd_hda_codec_read(codec, jack->nid, 0,
389 				 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
390 	val &= HDA_AMP_VOLMASK;
391 	uctl->value.integer.value[0] = val;
392 	uctl->value.integer.value[1] = val;
393 	kctl->put(kctl, uctl);
394 	kfree(uctl);
395 }
396 
397 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
398 {
399 	/* For some reason, the res given from ALC880 is broken.
400 	   Here we adjust it properly. */
401 	snd_hda_jack_unsol_event(codec, res >> 2);
402 }
403 
404 /* Change EAPD to verb control */
405 static void alc_fill_eapd_coef(struct hda_codec *codec)
406 {
407 	int coef;
408 
409 	coef = alc_get_coef0(codec);
410 
411 	switch (codec->core.vendor_id) {
412 	case 0x10ec0262:
413 		alc_update_coef_idx(codec, 0x7, 0, 1<<5);
414 		break;
415 	case 0x10ec0267:
416 	case 0x10ec0268:
417 		alc_update_coef_idx(codec, 0x7, 0, 1<<13);
418 		break;
419 	case 0x10ec0269:
420 		if ((coef & 0x00f0) == 0x0010)
421 			alc_update_coef_idx(codec, 0xd, 0, 1<<14);
422 		if ((coef & 0x00f0) == 0x0020)
423 			alc_update_coef_idx(codec, 0x4, 1<<15, 0);
424 		if ((coef & 0x00f0) == 0x0030)
425 			alc_update_coef_idx(codec, 0x10, 1<<9, 0);
426 		break;
427 	case 0x10ec0280:
428 	case 0x10ec0284:
429 	case 0x10ec0290:
430 	case 0x10ec0292:
431 		alc_update_coef_idx(codec, 0x4, 1<<15, 0);
432 		break;
433 	case 0x10ec0225:
434 	case 0x10ec0295:
435 	case 0x10ec0299:
436 		alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
437 		fallthrough;
438 	case 0x10ec0215:
439 	case 0x10ec0285:
440 	case 0x10ec0289:
441 		alc_update_coef_idx(codec, 0x36, 1<<13, 0);
442 		fallthrough;
443 	case 0x10ec0230:
444 	case 0x10ec0233:
445 	case 0x10ec0235:
446 	case 0x10ec0236:
447 	case 0x10ec0245:
448 	case 0x10ec0255:
449 	case 0x10ec0256:
450 	case 0x19e58326:
451 	case 0x10ec0257:
452 	case 0x10ec0282:
453 	case 0x10ec0283:
454 	case 0x10ec0286:
455 	case 0x10ec0288:
456 	case 0x10ec0298:
457 	case 0x10ec0300:
458 		alc_update_coef_idx(codec, 0x10, 1<<9, 0);
459 		break;
460 	case 0x10ec0275:
461 		alc_update_coef_idx(codec, 0xe, 0, 1<<0);
462 		break;
463 	case 0x10ec0287:
464 		alc_update_coef_idx(codec, 0x10, 1<<9, 0);
465 		alc_write_coef_idx(codec, 0x8, 0x4ab7);
466 		break;
467 	case 0x10ec0293:
468 		alc_update_coef_idx(codec, 0xa, 1<<13, 0);
469 		break;
470 	case 0x10ec0234:
471 	case 0x10ec0274:
472 	case 0x10ec0294:
473 	case 0x10ec0700:
474 	case 0x10ec0701:
475 	case 0x10ec0703:
476 	case 0x10ec0711:
477 		alc_update_coef_idx(codec, 0x10, 1<<15, 0);
478 		break;
479 	case 0x10ec0662:
480 		if ((coef & 0x00f0) == 0x0030)
481 			alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
482 		break;
483 	case 0x10ec0272:
484 	case 0x10ec0273:
485 	case 0x10ec0663:
486 	case 0x10ec0665:
487 	case 0x10ec0670:
488 	case 0x10ec0671:
489 	case 0x10ec0672:
490 		alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
491 		break;
492 	case 0x10ec0222:
493 	case 0x10ec0623:
494 		alc_update_coef_idx(codec, 0x19, 1<<13, 0);
495 		break;
496 	case 0x10ec0668:
497 		alc_update_coef_idx(codec, 0x7, 3<<13, 0);
498 		break;
499 	case 0x10ec0867:
500 		alc_update_coef_idx(codec, 0x4, 1<<10, 0);
501 		break;
502 	case 0x10ec0888:
503 		if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
504 			alc_update_coef_idx(codec, 0x7, 1<<5, 0);
505 		break;
506 	case 0x10ec0892:
507 	case 0x10ec0897:
508 		alc_update_coef_idx(codec, 0x7, 1<<5, 0);
509 		break;
510 	case 0x10ec0899:
511 	case 0x10ec0900:
512 	case 0x10ec0b00:
513 	case 0x10ec1168:
514 	case 0x10ec1220:
515 		alc_update_coef_idx(codec, 0x7, 1<<1, 0);
516 		break;
517 	}
518 }
519 
520 /* additional initialization for ALC888 variants */
521 static void alc888_coef_init(struct hda_codec *codec)
522 {
523 	switch (alc_get_coef0(codec) & 0x00f0) {
524 	/* alc888-VA */
525 	case 0x00:
526 	/* alc888-VB */
527 	case 0x10:
528 		alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
529 		break;
530 	}
531 }
532 
533 /* turn on/off EAPD control (only if available) */
534 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
535 {
536 	if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
537 		return;
538 	if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
539 		snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
540 				    on ? 2 : 0);
541 }
542 
543 /* turn on/off EAPD controls of the codec */
544 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
545 {
546 	/* We currently only handle front, HP */
547 	static const hda_nid_t pins[] = {
548 		0x0f, 0x10, 0x14, 0x15, 0x17, 0
549 	};
550 	const hda_nid_t *p;
551 	for (p = pins; *p; p++)
552 		set_eapd(codec, *p, on);
553 }
554 
555 static int find_ext_mic_pin(struct hda_codec *codec);
556 
557 static void alc_headset_mic_no_shutup(struct hda_codec *codec)
558 {
559 	const struct hda_pincfg *pin;
560 	int mic_pin = find_ext_mic_pin(codec);
561 	int i;
562 
563 	/* don't shut up pins when unloading the driver; otherwise it breaks
564 	 * the default pin setup at the next load of the driver
565 	 */
566 	if (codec->bus->shutdown)
567 		return;
568 
569 	snd_array_for_each(&codec->init_pins, i, pin) {
570 		/* use read here for syncing after issuing each verb */
571 		if (pin->nid != mic_pin)
572 			snd_hda_codec_read(codec, pin->nid, 0,
573 					AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
574 	}
575 
576 	codec->pins_shutup = 1;
577 }
578 
579 static void alc_shutup_pins(struct hda_codec *codec)
580 {
581 	struct alc_spec *spec = codec->spec;
582 
583 	switch (codec->core.vendor_id) {
584 	case 0x10ec0236:
585 	case 0x10ec0256:
586 	case 0x10ec0257:
587 	case 0x19e58326:
588 	case 0x10ec0283:
589 	case 0x10ec0285:
590 	case 0x10ec0286:
591 	case 0x10ec0287:
592 	case 0x10ec0288:
593 	case 0x10ec0295:
594 	case 0x10ec0298:
595 		alc_headset_mic_no_shutup(codec);
596 		break;
597 	default:
598 		if (!spec->no_shutup_pins)
599 			snd_hda_shutup_pins(codec);
600 		break;
601 	}
602 }
603 
604 /* generic shutup callback;
605  * just turning off EAPD and a little pause for avoiding pop-noise
606  */
607 static void alc_eapd_shutup(struct hda_codec *codec)
608 {
609 	struct alc_spec *spec = codec->spec;
610 
611 	alc_auto_setup_eapd(codec, false);
612 	if (!spec->no_depop_delay)
613 		msleep(200);
614 	alc_shutup_pins(codec);
615 }
616 
617 /* generic EAPD initialization */
618 static void alc_auto_init_amp(struct hda_codec *codec, int type)
619 {
620 	alc_auto_setup_eapd(codec, true);
621 	alc_write_gpio(codec);
622 	switch (type) {
623 	case ALC_INIT_DEFAULT:
624 		switch (codec->core.vendor_id) {
625 		case 0x10ec0260:
626 			alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
627 			break;
628 		case 0x10ec0880:
629 		case 0x10ec0882:
630 		case 0x10ec0883:
631 		case 0x10ec0885:
632 			alc_update_coef_idx(codec, 7, 0, 0x2030);
633 			break;
634 		case 0x10ec0888:
635 			alc888_coef_init(codec);
636 			break;
637 		}
638 		break;
639 	}
640 }
641 
642 /* get a primary headphone pin if available */
643 static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
644 {
645 	if (spec->gen.autocfg.hp_pins[0])
646 		return spec->gen.autocfg.hp_pins[0];
647 	if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
648 		return spec->gen.autocfg.line_out_pins[0];
649 	return 0;
650 }
651 
652 /*
653  * Realtek SSID verification
654  */
655 
656 /* Could be any non-zero and even value. When used as fixup, tells
657  * the driver to ignore any present sku defines.
658  */
659 #define ALC_FIXUP_SKU_IGNORE (2)
660 
661 static void alc_fixup_sku_ignore(struct hda_codec *codec,
662 				 const struct hda_fixup *fix, int action)
663 {
664 	struct alc_spec *spec = codec->spec;
665 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
666 		spec->cdefine.fixup = 1;
667 		spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
668 	}
669 }
670 
671 static void alc_fixup_no_depop_delay(struct hda_codec *codec,
672 				    const struct hda_fixup *fix, int action)
673 {
674 	struct alc_spec *spec = codec->spec;
675 
676 	if (action == HDA_FIXUP_ACT_PROBE) {
677 		spec->no_depop_delay = 1;
678 		codec->depop_delay = 0;
679 	}
680 }
681 
682 static int alc_auto_parse_customize_define(struct hda_codec *codec)
683 {
684 	unsigned int ass, tmp, i;
685 	unsigned nid = 0;
686 	struct alc_spec *spec = codec->spec;
687 
688 	spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
689 
690 	if (spec->cdefine.fixup) {
691 		ass = spec->cdefine.sku_cfg;
692 		if (ass == ALC_FIXUP_SKU_IGNORE)
693 			return -1;
694 		goto do_sku;
695 	}
696 
697 	if (!codec->bus->pci)
698 		return -1;
699 	ass = codec->core.subsystem_id & 0xffff;
700 	if (ass != codec->bus->pci->subsystem_device && (ass & 1))
701 		goto do_sku;
702 
703 	nid = 0x1d;
704 	if (codec->core.vendor_id == 0x10ec0260)
705 		nid = 0x17;
706 	ass = snd_hda_codec_get_pincfg(codec, nid);
707 
708 	if (!(ass & 1)) {
709 		codec_info(codec, "%s: SKU not ready 0x%08x\n",
710 			   codec->core.chip_name, ass);
711 		return -1;
712 	}
713 
714 	/* check sum */
715 	tmp = 0;
716 	for (i = 1; i < 16; i++) {
717 		if ((ass >> i) & 1)
718 			tmp++;
719 	}
720 	if (((ass >> 16) & 0xf) != tmp)
721 		return -1;
722 
723 	spec->cdefine.port_connectivity = ass >> 30;
724 	spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
725 	spec->cdefine.check_sum = (ass >> 16) & 0xf;
726 	spec->cdefine.customization = ass >> 8;
727 do_sku:
728 	spec->cdefine.sku_cfg = ass;
729 	spec->cdefine.external_amp = (ass & 0x38) >> 3;
730 	spec->cdefine.platform_type = (ass & 0x4) >> 2;
731 	spec->cdefine.swap = (ass & 0x2) >> 1;
732 	spec->cdefine.override = ass & 0x1;
733 
734 	codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
735 		   nid, spec->cdefine.sku_cfg);
736 	codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
737 		   spec->cdefine.port_connectivity);
738 	codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
739 	codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
740 	codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
741 	codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
742 	codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
743 	codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
744 	codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
745 
746 	return 0;
747 }
748 
749 /* return the position of NID in the list, or -1 if not found */
750 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
751 {
752 	int i;
753 	for (i = 0; i < nums; i++)
754 		if (list[i] == nid)
755 			return i;
756 	return -1;
757 }
758 /* return true if the given NID is found in the list */
759 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
760 {
761 	return find_idx_in_nid_list(nid, list, nums) >= 0;
762 }
763 
764 /* check subsystem ID and set up device-specific initialization;
765  * return 1 if initialized, 0 if invalid SSID
766  */
767 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
768  *	31 ~ 16 :	Manufacture ID
769  *	15 ~ 8	:	SKU ID
770  *	7  ~ 0	:	Assembly ID
771  *	port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
772  */
773 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
774 {
775 	unsigned int ass, tmp, i;
776 	unsigned nid;
777 	struct alc_spec *spec = codec->spec;
778 
779 	if (spec->cdefine.fixup) {
780 		ass = spec->cdefine.sku_cfg;
781 		if (ass == ALC_FIXUP_SKU_IGNORE)
782 			return 0;
783 		goto do_sku;
784 	}
785 
786 	ass = codec->core.subsystem_id & 0xffff;
787 	if (codec->bus->pci &&
788 	    ass != codec->bus->pci->subsystem_device && (ass & 1))
789 		goto do_sku;
790 
791 	/* invalid SSID, check the special NID pin defcfg instead */
792 	/*
793 	 * 31~30	: port connectivity
794 	 * 29~21	: reserve
795 	 * 20		: PCBEEP input
796 	 * 19~16	: Check sum (15:1)
797 	 * 15~1		: Custom
798 	 * 0		: override
799 	*/
800 	nid = 0x1d;
801 	if (codec->core.vendor_id == 0x10ec0260)
802 		nid = 0x17;
803 	ass = snd_hda_codec_get_pincfg(codec, nid);
804 	codec_dbg(codec,
805 		  "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
806 		   ass, nid);
807 	if (!(ass & 1))
808 		return 0;
809 	if ((ass >> 30) != 1)	/* no physical connection */
810 		return 0;
811 
812 	/* check sum */
813 	tmp = 0;
814 	for (i = 1; i < 16; i++) {
815 		if ((ass >> i) & 1)
816 			tmp++;
817 	}
818 	if (((ass >> 16) & 0xf) != tmp)
819 		return 0;
820 do_sku:
821 	codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
822 		   ass & 0xffff, codec->core.vendor_id);
823 	/*
824 	 * 0 : override
825 	 * 1 :	Swap Jack
826 	 * 2 : 0 --> Desktop, 1 --> Laptop
827 	 * 3~5 : External Amplifier control
828 	 * 7~6 : Reserved
829 	*/
830 	tmp = (ass & 0x38) >> 3;	/* external Amp control */
831 	if (spec->init_amp == ALC_INIT_UNDEFINED) {
832 		switch (tmp) {
833 		case 1:
834 			alc_setup_gpio(codec, 0x01);
835 			break;
836 		case 3:
837 			alc_setup_gpio(codec, 0x02);
838 			break;
839 		case 7:
840 			alc_setup_gpio(codec, 0x04);
841 			break;
842 		case 5:
843 		default:
844 			spec->init_amp = ALC_INIT_DEFAULT;
845 			break;
846 		}
847 	}
848 
849 	/* is laptop or Desktop and enable the function "Mute internal speaker
850 	 * when the external headphone out jack is plugged"
851 	 */
852 	if (!(ass & 0x8000))
853 		return 1;
854 	/*
855 	 * 10~8 : Jack location
856 	 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
857 	 * 14~13: Resvered
858 	 * 15   : 1 --> enable the function "Mute internal speaker
859 	 *	        when the external headphone out jack is plugged"
860 	 */
861 	if (!alc_get_hp_pin(spec)) {
862 		hda_nid_t nid;
863 		tmp = (ass >> 11) & 0x3;	/* HP to chassis */
864 		nid = ports[tmp];
865 		if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
866 				      spec->gen.autocfg.line_outs))
867 			return 1;
868 		spec->gen.autocfg.hp_pins[0] = nid;
869 	}
870 	return 1;
871 }
872 
873 /* Check the validity of ALC subsystem-id
874  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
875 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
876 {
877 	if (!alc_subsystem_id(codec, ports)) {
878 		struct alc_spec *spec = codec->spec;
879 		if (spec->init_amp == ALC_INIT_UNDEFINED) {
880 			codec_dbg(codec,
881 				  "realtek: Enable default setup for auto mode as fallback\n");
882 			spec->init_amp = ALC_INIT_DEFAULT;
883 		}
884 	}
885 }
886 
887 /*
888  */
889 
890 static void alc_fixup_inv_dmic(struct hda_codec *codec,
891 			       const struct hda_fixup *fix, int action)
892 {
893 	struct alc_spec *spec = codec->spec;
894 
895 	spec->gen.inv_dmic_split = 1;
896 }
897 
898 
899 static int alc_build_controls(struct hda_codec *codec)
900 {
901 	int err;
902 
903 	err = snd_hda_gen_build_controls(codec);
904 	if (err < 0)
905 		return err;
906 
907 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
908 	return 0;
909 }
910 
911 
912 /*
913  * Common callbacks
914  */
915 
916 static void alc_pre_init(struct hda_codec *codec)
917 {
918 	alc_fill_eapd_coef(codec);
919 }
920 
921 #define is_s3_resume(codec) \
922 	((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
923 #define is_s4_resume(codec) \
924 	((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
925 #define is_s4_suspend(codec) \
926 	((codec)->core.dev.power.power_state.event == PM_EVENT_FREEZE)
927 
928 static int alc_init(struct hda_codec *codec)
929 {
930 	struct alc_spec *spec = codec->spec;
931 
932 	/* hibernation resume needs the full chip initialization */
933 	if (is_s4_resume(codec))
934 		alc_pre_init(codec);
935 
936 	if (spec->init_hook)
937 		spec->init_hook(codec);
938 
939 	spec->gen.skip_verbs = 1; /* applied in below */
940 	snd_hda_gen_init(codec);
941 	alc_fix_pll(codec);
942 	alc_auto_init_amp(codec, spec->init_amp);
943 	snd_hda_apply_verbs(codec); /* apply verbs here after own init */
944 
945 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
946 
947 	return 0;
948 }
949 
950 #define alc_free	snd_hda_gen_free
951 
952 static inline void alc_shutup(struct hda_codec *codec)
953 {
954 	struct alc_spec *spec = codec->spec;
955 
956 	if (!snd_hda_get_bool_hint(codec, "shutup"))
957 		return; /* disabled explicitly by hints */
958 
959 	if (spec && spec->shutup)
960 		spec->shutup(codec);
961 	else
962 		alc_shutup_pins(codec);
963 }
964 
965 static void alc_power_eapd(struct hda_codec *codec)
966 {
967 	alc_auto_setup_eapd(codec, false);
968 }
969 
970 static int alc_suspend(struct hda_codec *codec)
971 {
972 	struct alc_spec *spec = codec->spec;
973 	alc_shutup(codec);
974 	if (spec && spec->power_hook)
975 		spec->power_hook(codec);
976 	return 0;
977 }
978 
979 static int alc_resume(struct hda_codec *codec)
980 {
981 	struct alc_spec *spec = codec->spec;
982 
983 	if (!spec->no_depop_delay)
984 		msleep(150); /* to avoid pop noise */
985 	codec->patch_ops.init(codec);
986 	snd_hda_regmap_sync(codec);
987 	hda_call_check_power_status(codec, 0x01);
988 	return 0;
989 }
990 
991 /*
992  */
993 static const struct hda_codec_ops alc_patch_ops = {
994 	.build_controls = alc_build_controls,
995 	.build_pcms = snd_hda_gen_build_pcms,
996 	.init = alc_init,
997 	.free = alc_free,
998 	.unsol_event = snd_hda_jack_unsol_event,
999 	.resume = alc_resume,
1000 	.suspend = alc_suspend,
1001 	.check_power_status = snd_hda_gen_check_power_status,
1002 };
1003 
1004 
1005 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
1006 
1007 /*
1008  * Rename codecs appropriately from COEF value or subvendor id
1009  */
1010 struct alc_codec_rename_table {
1011 	unsigned int vendor_id;
1012 	unsigned short coef_mask;
1013 	unsigned short coef_bits;
1014 	const char *name;
1015 };
1016 
1017 struct alc_codec_rename_pci_table {
1018 	unsigned int codec_vendor_id;
1019 	unsigned short pci_subvendor;
1020 	unsigned short pci_subdevice;
1021 	const char *name;
1022 };
1023 
1024 static const struct alc_codec_rename_table rename_tbl[] = {
1025 	{ 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
1026 	{ 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1027 	{ 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1028 	{ 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1029 	{ 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1030 	{ 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1031 	{ 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1032 	{ 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1033 	{ 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
1034 	{ 0x10ec0662, 0xffff, 0x4020, "ALC656" },
1035 	{ 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1036 	{ 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1037 	{ 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1038 	{ 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1039 	{ 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1040 	{ 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1041 	{ 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1042 	{ } /* terminator */
1043 };
1044 
1045 static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
1046 	{ 0x10ec0280, 0x1028, 0, "ALC3220" },
1047 	{ 0x10ec0282, 0x1028, 0, "ALC3221" },
1048 	{ 0x10ec0283, 0x1028, 0, "ALC3223" },
1049 	{ 0x10ec0288, 0x1028, 0, "ALC3263" },
1050 	{ 0x10ec0292, 0x1028, 0, "ALC3226" },
1051 	{ 0x10ec0293, 0x1028, 0, "ALC3235" },
1052 	{ 0x10ec0255, 0x1028, 0, "ALC3234" },
1053 	{ 0x10ec0668, 0x1028, 0, "ALC3661" },
1054 	{ 0x10ec0275, 0x1028, 0, "ALC3260" },
1055 	{ 0x10ec0899, 0x1028, 0, "ALC3861" },
1056 	{ 0x10ec0298, 0x1028, 0, "ALC3266" },
1057 	{ 0x10ec0236, 0x1028, 0, "ALC3204" },
1058 	{ 0x10ec0256, 0x1028, 0, "ALC3246" },
1059 	{ 0x10ec0225, 0x1028, 0, "ALC3253" },
1060 	{ 0x10ec0295, 0x1028, 0, "ALC3254" },
1061 	{ 0x10ec0299, 0x1028, 0, "ALC3271" },
1062 	{ 0x10ec0670, 0x1025, 0, "ALC669X" },
1063 	{ 0x10ec0676, 0x1025, 0, "ALC679X" },
1064 	{ 0x10ec0282, 0x1043, 0, "ALC3229" },
1065 	{ 0x10ec0233, 0x1043, 0, "ALC3236" },
1066 	{ 0x10ec0280, 0x103c, 0, "ALC3228" },
1067 	{ 0x10ec0282, 0x103c, 0, "ALC3227" },
1068 	{ 0x10ec0286, 0x103c, 0, "ALC3242" },
1069 	{ 0x10ec0290, 0x103c, 0, "ALC3241" },
1070 	{ 0x10ec0668, 0x103c, 0, "ALC3662" },
1071 	{ 0x10ec0283, 0x17aa, 0, "ALC3239" },
1072 	{ 0x10ec0292, 0x17aa, 0, "ALC3232" },
1073 	{ } /* terminator */
1074 };
1075 
1076 static int alc_codec_rename_from_preset(struct hda_codec *codec)
1077 {
1078 	const struct alc_codec_rename_table *p;
1079 	const struct alc_codec_rename_pci_table *q;
1080 
1081 	for (p = rename_tbl; p->vendor_id; p++) {
1082 		if (p->vendor_id != codec->core.vendor_id)
1083 			continue;
1084 		if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1085 			return alc_codec_rename(codec, p->name);
1086 	}
1087 
1088 	if (!codec->bus->pci)
1089 		return 0;
1090 	for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
1091 		if (q->codec_vendor_id != codec->core.vendor_id)
1092 			continue;
1093 		if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1094 			continue;
1095 		if (!q->pci_subdevice ||
1096 		    q->pci_subdevice == codec->bus->pci->subsystem_device)
1097 			return alc_codec_rename(codec, q->name);
1098 	}
1099 
1100 	return 0;
1101 }
1102 
1103 
1104 /*
1105  * Digital-beep handlers
1106  */
1107 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1108 
1109 /* additional beep mixers; private_value will be overwritten */
1110 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1111 	HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1112 	HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1113 };
1114 
1115 /* set up and create beep controls */
1116 static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1117 			int idx, int dir)
1118 {
1119 	struct snd_kcontrol_new *knew;
1120 	unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1121 	int i;
1122 
1123 	for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1124 		knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1125 					    &alc_beep_mixer[i]);
1126 		if (!knew)
1127 			return -ENOMEM;
1128 		knew->private_value = beep_amp;
1129 	}
1130 	return 0;
1131 }
1132 
1133 static const struct snd_pci_quirk beep_allow_list[] = {
1134 	SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1135 	SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1136 	SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
1137 	SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1138 	SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1139 	SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1140 	SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
1141 	SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1142 	SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
1143 	/* denylist -- no beep available */
1144 	SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1145 	SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1146 	{}
1147 };
1148 
1149 static inline int has_cdefine_beep(struct hda_codec *codec)
1150 {
1151 	struct alc_spec *spec = codec->spec;
1152 	const struct snd_pci_quirk *q;
1153 	q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1154 	if (q)
1155 		return q->value;
1156 	return spec->cdefine.enable_pcbeep;
1157 }
1158 #else
1159 #define set_beep_amp(spec, nid, idx, dir)	0
1160 #define has_cdefine_beep(codec)		0
1161 #endif
1162 
1163 /* parse the BIOS configuration and set up the alc_spec */
1164 /* return 1 if successful, 0 if the proper config is not found,
1165  * or a negative error code
1166  */
1167 static int alc_parse_auto_config(struct hda_codec *codec,
1168 				 const hda_nid_t *ignore_nids,
1169 				 const hda_nid_t *ssid_nids)
1170 {
1171 	struct alc_spec *spec = codec->spec;
1172 	struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1173 	int err;
1174 
1175 	err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1176 				       spec->parse_flags);
1177 	if (err < 0)
1178 		return err;
1179 
1180 	if (ssid_nids)
1181 		alc_ssid_check(codec, ssid_nids);
1182 
1183 	err = snd_hda_gen_parse_auto_config(codec, cfg);
1184 	if (err < 0)
1185 		return err;
1186 
1187 	return 1;
1188 }
1189 
1190 /* common preparation job for alc_spec */
1191 static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1192 {
1193 	struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1194 	int err;
1195 
1196 	if (!spec)
1197 		return -ENOMEM;
1198 	codec->spec = spec;
1199 	snd_hda_gen_spec_init(&spec->gen);
1200 	spec->gen.mixer_nid = mixer_nid;
1201 	spec->gen.own_eapd_ctl = 1;
1202 	codec->single_adc_amp = 1;
1203 	/* FIXME: do we need this for all Realtek codec models? */
1204 	codec->spdif_status_reset = 1;
1205 	codec->forced_resume = 1;
1206 	codec->patch_ops = alc_patch_ops;
1207 	mutex_init(&spec->coef_mutex);
1208 
1209 	err = alc_codec_rename_from_preset(codec);
1210 	if (err < 0) {
1211 		kfree(spec);
1212 		return err;
1213 	}
1214 	return 0;
1215 }
1216 
1217 static int alc880_parse_auto_config(struct hda_codec *codec)
1218 {
1219 	static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1220 	static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1221 	return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1222 }
1223 
1224 /*
1225  * ALC880 fix-ups
1226  */
1227 enum {
1228 	ALC880_FIXUP_GPIO1,
1229 	ALC880_FIXUP_GPIO2,
1230 	ALC880_FIXUP_MEDION_RIM,
1231 	ALC880_FIXUP_LG,
1232 	ALC880_FIXUP_LG_LW25,
1233 	ALC880_FIXUP_W810,
1234 	ALC880_FIXUP_EAPD_COEF,
1235 	ALC880_FIXUP_TCL_S700,
1236 	ALC880_FIXUP_VOL_KNOB,
1237 	ALC880_FIXUP_FUJITSU,
1238 	ALC880_FIXUP_F1734,
1239 	ALC880_FIXUP_UNIWILL,
1240 	ALC880_FIXUP_UNIWILL_DIG,
1241 	ALC880_FIXUP_Z71V,
1242 	ALC880_FIXUP_ASUS_W5A,
1243 	ALC880_FIXUP_3ST_BASE,
1244 	ALC880_FIXUP_3ST,
1245 	ALC880_FIXUP_3ST_DIG,
1246 	ALC880_FIXUP_5ST_BASE,
1247 	ALC880_FIXUP_5ST,
1248 	ALC880_FIXUP_5ST_DIG,
1249 	ALC880_FIXUP_6ST_BASE,
1250 	ALC880_FIXUP_6ST,
1251 	ALC880_FIXUP_6ST_DIG,
1252 	ALC880_FIXUP_6ST_AUTOMUTE,
1253 };
1254 
1255 /* enable the volume-knob widget support on NID 0x21 */
1256 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1257 				  const struct hda_fixup *fix, int action)
1258 {
1259 	if (action == HDA_FIXUP_ACT_PROBE)
1260 		snd_hda_jack_detect_enable_callback(codec, 0x21,
1261 						    alc_update_knob_master);
1262 }
1263 
1264 static const struct hda_fixup alc880_fixups[] = {
1265 	[ALC880_FIXUP_GPIO1] = {
1266 		.type = HDA_FIXUP_FUNC,
1267 		.v.func = alc_fixup_gpio1,
1268 	},
1269 	[ALC880_FIXUP_GPIO2] = {
1270 		.type = HDA_FIXUP_FUNC,
1271 		.v.func = alc_fixup_gpio2,
1272 	},
1273 	[ALC880_FIXUP_MEDION_RIM] = {
1274 		.type = HDA_FIXUP_VERBS,
1275 		.v.verbs = (const struct hda_verb[]) {
1276 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1277 			{ 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1278 			{ }
1279 		},
1280 		.chained = true,
1281 		.chain_id = ALC880_FIXUP_GPIO2,
1282 	},
1283 	[ALC880_FIXUP_LG] = {
1284 		.type = HDA_FIXUP_PINS,
1285 		.v.pins = (const struct hda_pintbl[]) {
1286 			/* disable bogus unused pins */
1287 			{ 0x16, 0x411111f0 },
1288 			{ 0x18, 0x411111f0 },
1289 			{ 0x1a, 0x411111f0 },
1290 			{ }
1291 		}
1292 	},
1293 	[ALC880_FIXUP_LG_LW25] = {
1294 		.type = HDA_FIXUP_PINS,
1295 		.v.pins = (const struct hda_pintbl[]) {
1296 			{ 0x1a, 0x0181344f }, /* line-in */
1297 			{ 0x1b, 0x0321403f }, /* headphone */
1298 			{ }
1299 		}
1300 	},
1301 	[ALC880_FIXUP_W810] = {
1302 		.type = HDA_FIXUP_PINS,
1303 		.v.pins = (const struct hda_pintbl[]) {
1304 			/* disable bogus unused pins */
1305 			{ 0x17, 0x411111f0 },
1306 			{ }
1307 		},
1308 		.chained = true,
1309 		.chain_id = ALC880_FIXUP_GPIO2,
1310 	},
1311 	[ALC880_FIXUP_EAPD_COEF] = {
1312 		.type = HDA_FIXUP_VERBS,
1313 		.v.verbs = (const struct hda_verb[]) {
1314 			/* change to EAPD mode */
1315 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1316 			{ 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
1317 			{}
1318 		},
1319 	},
1320 	[ALC880_FIXUP_TCL_S700] = {
1321 		.type = HDA_FIXUP_VERBS,
1322 		.v.verbs = (const struct hda_verb[]) {
1323 			/* change to EAPD mode */
1324 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1325 			{ 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
1326 			{}
1327 		},
1328 		.chained = true,
1329 		.chain_id = ALC880_FIXUP_GPIO2,
1330 	},
1331 	[ALC880_FIXUP_VOL_KNOB] = {
1332 		.type = HDA_FIXUP_FUNC,
1333 		.v.func = alc880_fixup_vol_knob,
1334 	},
1335 	[ALC880_FIXUP_FUJITSU] = {
1336 		/* override all pins as BIOS on old Amilo is broken */
1337 		.type = HDA_FIXUP_PINS,
1338 		.v.pins = (const struct hda_pintbl[]) {
1339 			{ 0x14, 0x0121401f }, /* HP */
1340 			{ 0x15, 0x99030120 }, /* speaker */
1341 			{ 0x16, 0x99030130 }, /* bass speaker */
1342 			{ 0x17, 0x411111f0 }, /* N/A */
1343 			{ 0x18, 0x411111f0 }, /* N/A */
1344 			{ 0x19, 0x01a19950 }, /* mic-in */
1345 			{ 0x1a, 0x411111f0 }, /* N/A */
1346 			{ 0x1b, 0x411111f0 }, /* N/A */
1347 			{ 0x1c, 0x411111f0 }, /* N/A */
1348 			{ 0x1d, 0x411111f0 }, /* N/A */
1349 			{ 0x1e, 0x01454140 }, /* SPDIF out */
1350 			{ }
1351 		},
1352 		.chained = true,
1353 		.chain_id = ALC880_FIXUP_VOL_KNOB,
1354 	},
1355 	[ALC880_FIXUP_F1734] = {
1356 		/* almost compatible with FUJITSU, but no bass and SPDIF */
1357 		.type = HDA_FIXUP_PINS,
1358 		.v.pins = (const struct hda_pintbl[]) {
1359 			{ 0x14, 0x0121401f }, /* HP */
1360 			{ 0x15, 0x99030120 }, /* speaker */
1361 			{ 0x16, 0x411111f0 }, /* N/A */
1362 			{ 0x17, 0x411111f0 }, /* N/A */
1363 			{ 0x18, 0x411111f0 }, /* N/A */
1364 			{ 0x19, 0x01a19950 }, /* mic-in */
1365 			{ 0x1a, 0x411111f0 }, /* N/A */
1366 			{ 0x1b, 0x411111f0 }, /* N/A */
1367 			{ 0x1c, 0x411111f0 }, /* N/A */
1368 			{ 0x1d, 0x411111f0 }, /* N/A */
1369 			{ 0x1e, 0x411111f0 }, /* N/A */
1370 			{ }
1371 		},
1372 		.chained = true,
1373 		.chain_id = ALC880_FIXUP_VOL_KNOB,
1374 	},
1375 	[ALC880_FIXUP_UNIWILL] = {
1376 		/* need to fix HP and speaker pins to be parsed correctly */
1377 		.type = HDA_FIXUP_PINS,
1378 		.v.pins = (const struct hda_pintbl[]) {
1379 			{ 0x14, 0x0121411f }, /* HP */
1380 			{ 0x15, 0x99030120 }, /* speaker */
1381 			{ 0x16, 0x99030130 }, /* bass speaker */
1382 			{ }
1383 		},
1384 	},
1385 	[ALC880_FIXUP_UNIWILL_DIG] = {
1386 		.type = HDA_FIXUP_PINS,
1387 		.v.pins = (const struct hda_pintbl[]) {
1388 			/* disable bogus unused pins */
1389 			{ 0x17, 0x411111f0 },
1390 			{ 0x19, 0x411111f0 },
1391 			{ 0x1b, 0x411111f0 },
1392 			{ 0x1f, 0x411111f0 },
1393 			{ }
1394 		}
1395 	},
1396 	[ALC880_FIXUP_Z71V] = {
1397 		.type = HDA_FIXUP_PINS,
1398 		.v.pins = (const struct hda_pintbl[]) {
1399 			/* set up the whole pins as BIOS is utterly broken */
1400 			{ 0x14, 0x99030120 }, /* speaker */
1401 			{ 0x15, 0x0121411f }, /* HP */
1402 			{ 0x16, 0x411111f0 }, /* N/A */
1403 			{ 0x17, 0x411111f0 }, /* N/A */
1404 			{ 0x18, 0x01a19950 }, /* mic-in */
1405 			{ 0x19, 0x411111f0 }, /* N/A */
1406 			{ 0x1a, 0x01813031 }, /* line-in */
1407 			{ 0x1b, 0x411111f0 }, /* N/A */
1408 			{ 0x1c, 0x411111f0 }, /* N/A */
1409 			{ 0x1d, 0x411111f0 }, /* N/A */
1410 			{ 0x1e, 0x0144111e }, /* SPDIF */
1411 			{ }
1412 		}
1413 	},
1414 	[ALC880_FIXUP_ASUS_W5A] = {
1415 		.type = HDA_FIXUP_PINS,
1416 		.v.pins = (const struct hda_pintbl[]) {
1417 			/* set up the whole pins as BIOS is utterly broken */
1418 			{ 0x14, 0x0121411f }, /* HP */
1419 			{ 0x15, 0x411111f0 }, /* N/A */
1420 			{ 0x16, 0x411111f0 }, /* N/A */
1421 			{ 0x17, 0x411111f0 }, /* N/A */
1422 			{ 0x18, 0x90a60160 }, /* mic */
1423 			{ 0x19, 0x411111f0 }, /* N/A */
1424 			{ 0x1a, 0x411111f0 }, /* N/A */
1425 			{ 0x1b, 0x411111f0 }, /* N/A */
1426 			{ 0x1c, 0x411111f0 }, /* N/A */
1427 			{ 0x1d, 0x411111f0 }, /* N/A */
1428 			{ 0x1e, 0xb743111e }, /* SPDIF out */
1429 			{ }
1430 		},
1431 		.chained = true,
1432 		.chain_id = ALC880_FIXUP_GPIO1,
1433 	},
1434 	[ALC880_FIXUP_3ST_BASE] = {
1435 		.type = HDA_FIXUP_PINS,
1436 		.v.pins = (const struct hda_pintbl[]) {
1437 			{ 0x14, 0x01014010 }, /* line-out */
1438 			{ 0x15, 0x411111f0 }, /* N/A */
1439 			{ 0x16, 0x411111f0 }, /* N/A */
1440 			{ 0x17, 0x411111f0 }, /* N/A */
1441 			{ 0x18, 0x01a19c30 }, /* mic-in */
1442 			{ 0x19, 0x0121411f }, /* HP */
1443 			{ 0x1a, 0x01813031 }, /* line-in */
1444 			{ 0x1b, 0x02a19c40 }, /* front-mic */
1445 			{ 0x1c, 0x411111f0 }, /* N/A */
1446 			{ 0x1d, 0x411111f0 }, /* N/A */
1447 			/* 0x1e is filled in below */
1448 			{ 0x1f, 0x411111f0 }, /* N/A */
1449 			{ }
1450 		}
1451 	},
1452 	[ALC880_FIXUP_3ST] = {
1453 		.type = HDA_FIXUP_PINS,
1454 		.v.pins = (const struct hda_pintbl[]) {
1455 			{ 0x1e, 0x411111f0 }, /* N/A */
1456 			{ }
1457 		},
1458 		.chained = true,
1459 		.chain_id = ALC880_FIXUP_3ST_BASE,
1460 	},
1461 	[ALC880_FIXUP_3ST_DIG] = {
1462 		.type = HDA_FIXUP_PINS,
1463 		.v.pins = (const struct hda_pintbl[]) {
1464 			{ 0x1e, 0x0144111e }, /* SPDIF */
1465 			{ }
1466 		},
1467 		.chained = true,
1468 		.chain_id = ALC880_FIXUP_3ST_BASE,
1469 	},
1470 	[ALC880_FIXUP_5ST_BASE] = {
1471 		.type = HDA_FIXUP_PINS,
1472 		.v.pins = (const struct hda_pintbl[]) {
1473 			{ 0x14, 0x01014010 }, /* front */
1474 			{ 0x15, 0x411111f0 }, /* N/A */
1475 			{ 0x16, 0x01011411 }, /* CLFE */
1476 			{ 0x17, 0x01016412 }, /* surr */
1477 			{ 0x18, 0x01a19c30 }, /* mic-in */
1478 			{ 0x19, 0x0121411f }, /* HP */
1479 			{ 0x1a, 0x01813031 }, /* line-in */
1480 			{ 0x1b, 0x02a19c40 }, /* front-mic */
1481 			{ 0x1c, 0x411111f0 }, /* N/A */
1482 			{ 0x1d, 0x411111f0 }, /* N/A */
1483 			/* 0x1e is filled in below */
1484 			{ 0x1f, 0x411111f0 }, /* N/A */
1485 			{ }
1486 		}
1487 	},
1488 	[ALC880_FIXUP_5ST] = {
1489 		.type = HDA_FIXUP_PINS,
1490 		.v.pins = (const struct hda_pintbl[]) {
1491 			{ 0x1e, 0x411111f0 }, /* N/A */
1492 			{ }
1493 		},
1494 		.chained = true,
1495 		.chain_id = ALC880_FIXUP_5ST_BASE,
1496 	},
1497 	[ALC880_FIXUP_5ST_DIG] = {
1498 		.type = HDA_FIXUP_PINS,
1499 		.v.pins = (const struct hda_pintbl[]) {
1500 			{ 0x1e, 0x0144111e }, /* SPDIF */
1501 			{ }
1502 		},
1503 		.chained = true,
1504 		.chain_id = ALC880_FIXUP_5ST_BASE,
1505 	},
1506 	[ALC880_FIXUP_6ST_BASE] = {
1507 		.type = HDA_FIXUP_PINS,
1508 		.v.pins = (const struct hda_pintbl[]) {
1509 			{ 0x14, 0x01014010 }, /* front */
1510 			{ 0x15, 0x01016412 }, /* surr */
1511 			{ 0x16, 0x01011411 }, /* CLFE */
1512 			{ 0x17, 0x01012414 }, /* side */
1513 			{ 0x18, 0x01a19c30 }, /* mic-in */
1514 			{ 0x19, 0x02a19c40 }, /* front-mic */
1515 			{ 0x1a, 0x01813031 }, /* line-in */
1516 			{ 0x1b, 0x0121411f }, /* HP */
1517 			{ 0x1c, 0x411111f0 }, /* N/A */
1518 			{ 0x1d, 0x411111f0 }, /* N/A */
1519 			/* 0x1e is filled in below */
1520 			{ 0x1f, 0x411111f0 }, /* N/A */
1521 			{ }
1522 		}
1523 	},
1524 	[ALC880_FIXUP_6ST] = {
1525 		.type = HDA_FIXUP_PINS,
1526 		.v.pins = (const struct hda_pintbl[]) {
1527 			{ 0x1e, 0x411111f0 }, /* N/A */
1528 			{ }
1529 		},
1530 		.chained = true,
1531 		.chain_id = ALC880_FIXUP_6ST_BASE,
1532 	},
1533 	[ALC880_FIXUP_6ST_DIG] = {
1534 		.type = HDA_FIXUP_PINS,
1535 		.v.pins = (const struct hda_pintbl[]) {
1536 			{ 0x1e, 0x0144111e }, /* SPDIF */
1537 			{ }
1538 		},
1539 		.chained = true,
1540 		.chain_id = ALC880_FIXUP_6ST_BASE,
1541 	},
1542 	[ALC880_FIXUP_6ST_AUTOMUTE] = {
1543 		.type = HDA_FIXUP_PINS,
1544 		.v.pins = (const struct hda_pintbl[]) {
1545 			{ 0x1b, 0x0121401f }, /* HP with jack detect */
1546 			{ }
1547 		},
1548 		.chained_before = true,
1549 		.chain_id = ALC880_FIXUP_6ST_BASE,
1550 	},
1551 };
1552 
1553 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1554 	SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1555 	SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1556 	SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1557 	SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1558 	SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1559 	SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1560 	SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1561 	SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1562 	SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1563 	SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1564 	SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1565 	SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1566 	SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1567 	SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1568 	SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1569 	SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1570 	SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1571 	SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
1572 	SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1573 	SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1574 	SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
1575 	SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1576 	SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
1577 
1578 	/* Below is the copied entries from alc880_quirks.c.
1579 	 * It's not quite sure whether BIOS sets the correct pin-config table
1580 	 * on these machines, thus they are kept to be compatible with
1581 	 * the old static quirks.  Once when it's confirmed to work without
1582 	 * these overrides, it'd be better to remove.
1583 	 */
1584 	SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1585 	SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1586 	SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1587 	SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1588 	SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1589 	SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1590 	SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1591 	SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1592 	SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1593 	SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1594 	SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1595 	SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1596 	SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1597 	SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1598 	SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1599 	SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1600 	SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1601 	SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1602 	SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1603 	SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1604 	SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1605 	SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1606 	SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1607 	SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 	SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1609 	SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1610 	SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1611 	SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1612 	SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1613 	SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1614 	SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1615 	SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1616 	SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1617 	/* default Intel */
1618 	SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1619 	SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1620 	SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1621 	{}
1622 };
1623 
1624 static const struct hda_model_fixup alc880_fixup_models[] = {
1625 	{.id = ALC880_FIXUP_3ST, .name = "3stack"},
1626 	{.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1627 	{.id = ALC880_FIXUP_5ST, .name = "5stack"},
1628 	{.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1629 	{.id = ALC880_FIXUP_6ST, .name = "6stack"},
1630 	{.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
1631 	{.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1632 	{}
1633 };
1634 
1635 
1636 /*
1637  * OK, here we have finally the patch for ALC880
1638  */
1639 static int patch_alc880(struct hda_codec *codec)
1640 {
1641 	struct alc_spec *spec;
1642 	int err;
1643 
1644 	err = alc_alloc_spec(codec, 0x0b);
1645 	if (err < 0)
1646 		return err;
1647 
1648 	spec = codec->spec;
1649 	spec->gen.need_dac_fix = 1;
1650 	spec->gen.beep_nid = 0x01;
1651 
1652 	codec->patch_ops.unsol_event = alc880_unsol_event;
1653 
1654 	alc_pre_init(codec);
1655 
1656 	snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1657 		       alc880_fixups);
1658 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1659 
1660 	/* automatic parse from the BIOS config */
1661 	err = alc880_parse_auto_config(codec);
1662 	if (err < 0)
1663 		goto error;
1664 
1665 	if (!spec->gen.no_analog) {
1666 		err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1667 		if (err < 0)
1668 			goto error;
1669 	}
1670 
1671 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1672 
1673 	return 0;
1674 
1675  error:
1676 	alc_free(codec);
1677 	return err;
1678 }
1679 
1680 
1681 /*
1682  * ALC260 support
1683  */
1684 static int alc260_parse_auto_config(struct hda_codec *codec)
1685 {
1686 	static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1687 	static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1688 	return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1689 }
1690 
1691 /*
1692  * Pin config fixes
1693  */
1694 enum {
1695 	ALC260_FIXUP_HP_DC5750,
1696 	ALC260_FIXUP_HP_PIN_0F,
1697 	ALC260_FIXUP_COEF,
1698 	ALC260_FIXUP_GPIO1,
1699 	ALC260_FIXUP_GPIO1_TOGGLE,
1700 	ALC260_FIXUP_REPLACER,
1701 	ALC260_FIXUP_HP_B1900,
1702 	ALC260_FIXUP_KN1,
1703 	ALC260_FIXUP_FSC_S7020,
1704 	ALC260_FIXUP_FSC_S7020_JWSE,
1705 	ALC260_FIXUP_VAIO_PINS,
1706 };
1707 
1708 static void alc260_gpio1_automute(struct hda_codec *codec)
1709 {
1710 	struct alc_spec *spec = codec->spec;
1711 
1712 	alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
1713 }
1714 
1715 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1716 				      const struct hda_fixup *fix, int action)
1717 {
1718 	struct alc_spec *spec = codec->spec;
1719 	if (action == HDA_FIXUP_ACT_PROBE) {
1720 		/* although the machine has only one output pin, we need to
1721 		 * toggle GPIO1 according to the jack state
1722 		 */
1723 		spec->gen.automute_hook = alc260_gpio1_automute;
1724 		spec->gen.detect_hp = 1;
1725 		spec->gen.automute_speaker = 1;
1726 		spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1727 		snd_hda_jack_detect_enable_callback(codec, 0x0f,
1728 						    snd_hda_gen_hp_automute);
1729 		alc_setup_gpio(codec, 0x01);
1730 	}
1731 }
1732 
1733 static void alc260_fixup_kn1(struct hda_codec *codec,
1734 			     const struct hda_fixup *fix, int action)
1735 {
1736 	struct alc_spec *spec = codec->spec;
1737 	static const struct hda_pintbl pincfgs[] = {
1738 		{ 0x0f, 0x02214000 }, /* HP/speaker */
1739 		{ 0x12, 0x90a60160 }, /* int mic */
1740 		{ 0x13, 0x02a19000 }, /* ext mic */
1741 		{ 0x18, 0x01446000 }, /* SPDIF out */
1742 		/* disable bogus I/O pins */
1743 		{ 0x10, 0x411111f0 },
1744 		{ 0x11, 0x411111f0 },
1745 		{ 0x14, 0x411111f0 },
1746 		{ 0x15, 0x411111f0 },
1747 		{ 0x16, 0x411111f0 },
1748 		{ 0x17, 0x411111f0 },
1749 		{ 0x19, 0x411111f0 },
1750 		{ }
1751 	};
1752 
1753 	switch (action) {
1754 	case HDA_FIXUP_ACT_PRE_PROBE:
1755 		snd_hda_apply_pincfgs(codec, pincfgs);
1756 		spec->init_amp = ALC_INIT_NONE;
1757 		break;
1758 	}
1759 }
1760 
1761 static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1762 				   const struct hda_fixup *fix, int action)
1763 {
1764 	struct alc_spec *spec = codec->spec;
1765 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
1766 		spec->init_amp = ALC_INIT_NONE;
1767 }
1768 
1769 static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1770 				   const struct hda_fixup *fix, int action)
1771 {
1772 	struct alc_spec *spec = codec->spec;
1773 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1774 		spec->gen.add_jack_modes = 1;
1775 		spec->gen.hp_mic = 1;
1776 	}
1777 }
1778 
1779 static const struct hda_fixup alc260_fixups[] = {
1780 	[ALC260_FIXUP_HP_DC5750] = {
1781 		.type = HDA_FIXUP_PINS,
1782 		.v.pins = (const struct hda_pintbl[]) {
1783 			{ 0x11, 0x90130110 }, /* speaker */
1784 			{ }
1785 		}
1786 	},
1787 	[ALC260_FIXUP_HP_PIN_0F] = {
1788 		.type = HDA_FIXUP_PINS,
1789 		.v.pins = (const struct hda_pintbl[]) {
1790 			{ 0x0f, 0x01214000 }, /* HP */
1791 			{ }
1792 		}
1793 	},
1794 	[ALC260_FIXUP_COEF] = {
1795 		.type = HDA_FIXUP_VERBS,
1796 		.v.verbs = (const struct hda_verb[]) {
1797 			{ 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1798 			{ 0x1a, AC_VERB_SET_PROC_COEF,  0x3040 },
1799 			{ }
1800 		},
1801 	},
1802 	[ALC260_FIXUP_GPIO1] = {
1803 		.type = HDA_FIXUP_FUNC,
1804 		.v.func = alc_fixup_gpio1,
1805 	},
1806 	[ALC260_FIXUP_GPIO1_TOGGLE] = {
1807 		.type = HDA_FIXUP_FUNC,
1808 		.v.func = alc260_fixup_gpio1_toggle,
1809 		.chained = true,
1810 		.chain_id = ALC260_FIXUP_HP_PIN_0F,
1811 	},
1812 	[ALC260_FIXUP_REPLACER] = {
1813 		.type = HDA_FIXUP_VERBS,
1814 		.v.verbs = (const struct hda_verb[]) {
1815 			{ 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1816 			{ 0x1a, AC_VERB_SET_PROC_COEF,  0x3050 },
1817 			{ }
1818 		},
1819 		.chained = true,
1820 		.chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1821 	},
1822 	[ALC260_FIXUP_HP_B1900] = {
1823 		.type = HDA_FIXUP_FUNC,
1824 		.v.func = alc260_fixup_gpio1_toggle,
1825 		.chained = true,
1826 		.chain_id = ALC260_FIXUP_COEF,
1827 	},
1828 	[ALC260_FIXUP_KN1] = {
1829 		.type = HDA_FIXUP_FUNC,
1830 		.v.func = alc260_fixup_kn1,
1831 	},
1832 	[ALC260_FIXUP_FSC_S7020] = {
1833 		.type = HDA_FIXUP_FUNC,
1834 		.v.func = alc260_fixup_fsc_s7020,
1835 	},
1836 	[ALC260_FIXUP_FSC_S7020_JWSE] = {
1837 		.type = HDA_FIXUP_FUNC,
1838 		.v.func = alc260_fixup_fsc_s7020_jwse,
1839 		.chained = true,
1840 		.chain_id = ALC260_FIXUP_FSC_S7020,
1841 	},
1842 	[ALC260_FIXUP_VAIO_PINS] = {
1843 		.type = HDA_FIXUP_PINS,
1844 		.v.pins = (const struct hda_pintbl[]) {
1845 			/* Pin configs are missing completely on some VAIOs */
1846 			{ 0x0f, 0x01211020 },
1847 			{ 0x10, 0x0001003f },
1848 			{ 0x11, 0x411111f0 },
1849 			{ 0x12, 0x01a15930 },
1850 			{ 0x13, 0x411111f0 },
1851 			{ 0x14, 0x411111f0 },
1852 			{ 0x15, 0x411111f0 },
1853 			{ 0x16, 0x411111f0 },
1854 			{ 0x17, 0x411111f0 },
1855 			{ 0x18, 0x411111f0 },
1856 			{ 0x19, 0x411111f0 },
1857 			{ }
1858 		}
1859 	},
1860 };
1861 
1862 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1863 	SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1864 	SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1865 	SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1866 	SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1867 	SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1868 	SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1869 	SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1870 	SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1871 	SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1872 	SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1873 	SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1874 	SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1875 	{}
1876 };
1877 
1878 static const struct hda_model_fixup alc260_fixup_models[] = {
1879 	{.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1880 	{.id = ALC260_FIXUP_COEF, .name = "coef"},
1881 	{.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1882 	{.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1883 	{}
1884 };
1885 
1886 /*
1887  */
1888 static int patch_alc260(struct hda_codec *codec)
1889 {
1890 	struct alc_spec *spec;
1891 	int err;
1892 
1893 	err = alc_alloc_spec(codec, 0x07);
1894 	if (err < 0)
1895 		return err;
1896 
1897 	spec = codec->spec;
1898 	/* as quite a few machines require HP amp for speaker outputs,
1899 	 * it's easier to enable it unconditionally; even if it's unneeded,
1900 	 * it's almost harmless.
1901 	 */
1902 	spec->gen.prefer_hp_amp = 1;
1903 	spec->gen.beep_nid = 0x01;
1904 
1905 	spec->shutup = alc_eapd_shutup;
1906 
1907 	alc_pre_init(codec);
1908 
1909 	snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1910 			   alc260_fixups);
1911 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1912 
1913 	/* automatic parse from the BIOS config */
1914 	err = alc260_parse_auto_config(codec);
1915 	if (err < 0)
1916 		goto error;
1917 
1918 	if (!spec->gen.no_analog) {
1919 		err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1920 		if (err < 0)
1921 			goto error;
1922 	}
1923 
1924 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1925 
1926 	return 0;
1927 
1928  error:
1929 	alc_free(codec);
1930 	return err;
1931 }
1932 
1933 
1934 /*
1935  * ALC882/883/885/888/889 support
1936  *
1937  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1938  * configuration.  Each pin widget can choose any input DACs and a mixer.
1939  * Each ADC is connected from a mixer of all inputs.  This makes possible
1940  * 6-channel independent captures.
1941  *
1942  * In addition, an independent DAC for the multi-playback (not used in this
1943  * driver yet).
1944  */
1945 
1946 /*
1947  * Pin config fixes
1948  */
1949 enum {
1950 	ALC882_FIXUP_ABIT_AW9D_MAX,
1951 	ALC882_FIXUP_LENOVO_Y530,
1952 	ALC882_FIXUP_PB_M5210,
1953 	ALC882_FIXUP_ACER_ASPIRE_7736,
1954 	ALC882_FIXUP_ASUS_W90V,
1955 	ALC889_FIXUP_CD,
1956 	ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1957 	ALC889_FIXUP_VAIO_TT,
1958 	ALC888_FIXUP_EEE1601,
1959 	ALC886_FIXUP_EAPD,
1960 	ALC882_FIXUP_EAPD,
1961 	ALC883_FIXUP_EAPD,
1962 	ALC883_FIXUP_ACER_EAPD,
1963 	ALC882_FIXUP_GPIO1,
1964 	ALC882_FIXUP_GPIO2,
1965 	ALC882_FIXUP_GPIO3,
1966 	ALC889_FIXUP_COEF,
1967 	ALC882_FIXUP_ASUS_W2JC,
1968 	ALC882_FIXUP_ACER_ASPIRE_4930G,
1969 	ALC882_FIXUP_ACER_ASPIRE_8930G,
1970 	ALC882_FIXUP_ASPIRE_8930G_VERBS,
1971 	ALC885_FIXUP_MACPRO_GPIO,
1972 	ALC889_FIXUP_DAC_ROUTE,
1973 	ALC889_FIXUP_MBP_VREF,
1974 	ALC889_FIXUP_IMAC91_VREF,
1975 	ALC889_FIXUP_MBA11_VREF,
1976 	ALC889_FIXUP_MBA21_VREF,
1977 	ALC889_FIXUP_MP11_VREF,
1978 	ALC889_FIXUP_MP41_VREF,
1979 	ALC882_FIXUP_INV_DMIC,
1980 	ALC882_FIXUP_NO_PRIMARY_HP,
1981 	ALC887_FIXUP_ASUS_BASS,
1982 	ALC887_FIXUP_BASS_CHMAP,
1983 	ALC1220_FIXUP_GB_DUAL_CODECS,
1984 	ALC1220_FIXUP_GB_X570,
1985 	ALC1220_FIXUP_CLEVO_P950,
1986 	ALC1220_FIXUP_CLEVO_PB51ED,
1987 	ALC1220_FIXUP_CLEVO_PB51ED_PINS,
1988 	ALC887_FIXUP_ASUS_AUDIO,
1989 	ALC887_FIXUP_ASUS_HMIC,
1990 	ALCS1200A_FIXUP_MIC_VREF,
1991 	ALC888VD_FIXUP_MIC_100VREF,
1992 };
1993 
1994 static void alc889_fixup_coef(struct hda_codec *codec,
1995 			      const struct hda_fixup *fix, int action)
1996 {
1997 	if (action != HDA_FIXUP_ACT_INIT)
1998 		return;
1999 	alc_update_coef_idx(codec, 7, 0, 0x2030);
2000 }
2001 
2002 /* set up GPIO at initialization */
2003 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
2004 				     const struct hda_fixup *fix, int action)
2005 {
2006 	struct alc_spec *spec = codec->spec;
2007 
2008 	spec->gpio_write_delay = true;
2009 	alc_fixup_gpio3(codec, fix, action);
2010 }
2011 
2012 /* Fix the connection of some pins for ALC889:
2013  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2014  * work correctly (bko#42740)
2015  */
2016 static void alc889_fixup_dac_route(struct hda_codec *codec,
2017 				   const struct hda_fixup *fix, int action)
2018 {
2019 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2020 		/* fake the connections during parsing the tree */
2021 		static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2022 		static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2023 		snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2024 		snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2025 		snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2026 		snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
2027 	} else if (action == HDA_FIXUP_ACT_PROBE) {
2028 		/* restore the connections */
2029 		static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2030 		snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2031 		snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2032 		snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2033 		snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
2034 	}
2035 }
2036 
2037 /* Set VREF on HP pin */
2038 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
2039 				  const struct hda_fixup *fix, int action)
2040 {
2041 	static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
2042 	struct alc_spec *spec = codec->spec;
2043 	int i;
2044 
2045 	if (action != HDA_FIXUP_ACT_INIT)
2046 		return;
2047 	for (i = 0; i < ARRAY_SIZE(nids); i++) {
2048 		unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2049 		if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2050 			continue;
2051 		val = snd_hda_codec_get_pin_target(codec, nids[i]);
2052 		val |= AC_PINCTL_VREF_80;
2053 		snd_hda_set_pin_ctl(codec, nids[i], val);
2054 		spec->gen.keep_vref_in_automute = 1;
2055 		break;
2056 	}
2057 }
2058 
2059 static void alc889_fixup_mac_pins(struct hda_codec *codec,
2060 				  const hda_nid_t *nids, int num_nids)
2061 {
2062 	struct alc_spec *spec = codec->spec;
2063 	int i;
2064 
2065 	for (i = 0; i < num_nids; i++) {
2066 		unsigned int val;
2067 		val = snd_hda_codec_get_pin_target(codec, nids[i]);
2068 		val |= AC_PINCTL_VREF_50;
2069 		snd_hda_set_pin_ctl(codec, nids[i], val);
2070 	}
2071 	spec->gen.keep_vref_in_automute = 1;
2072 }
2073 
2074 /* Set VREF on speaker pins on imac91 */
2075 static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2076 				     const struct hda_fixup *fix, int action)
2077 {
2078 	static const hda_nid_t nids[] = { 0x18, 0x1a };
2079 
2080 	if (action == HDA_FIXUP_ACT_INIT)
2081 		alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2082 }
2083 
2084 /* Set VREF on speaker pins on mba11 */
2085 static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2086 				    const struct hda_fixup *fix, int action)
2087 {
2088 	static const hda_nid_t nids[] = { 0x18 };
2089 
2090 	if (action == HDA_FIXUP_ACT_INIT)
2091 		alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2092 }
2093 
2094 /* Set VREF on speaker pins on mba21 */
2095 static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2096 				    const struct hda_fixup *fix, int action)
2097 {
2098 	static const hda_nid_t nids[] = { 0x18, 0x19 };
2099 
2100 	if (action == HDA_FIXUP_ACT_INIT)
2101 		alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2102 }
2103 
2104 /* Don't take HP output as primary
2105  * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2106  * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
2107  */
2108 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
2109 				       const struct hda_fixup *fix, int action)
2110 {
2111 	struct alc_spec *spec = codec->spec;
2112 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
2113 		spec->gen.no_primary_hp = 1;
2114 		spec->gen.no_multi_io = 1;
2115 	}
2116 }
2117 
2118 static void alc_fixup_bass_chmap(struct hda_codec *codec,
2119 				 const struct hda_fixup *fix, int action);
2120 
2121 /* For dual-codec configuration, we need to disable some features to avoid
2122  * conflicts of kctls and PCM streams
2123  */
2124 static void alc_fixup_dual_codecs(struct hda_codec *codec,
2125 				  const struct hda_fixup *fix, int action)
2126 {
2127 	struct alc_spec *spec = codec->spec;
2128 
2129 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
2130 		return;
2131 	/* disable vmaster */
2132 	spec->gen.suppress_vmaster = 1;
2133 	/* auto-mute and auto-mic switch don't work with multiple codecs */
2134 	spec->gen.suppress_auto_mute = 1;
2135 	spec->gen.suppress_auto_mic = 1;
2136 	/* disable aamix as well */
2137 	spec->gen.mixer_nid = 0;
2138 	/* add location prefix to avoid conflicts */
2139 	codec->force_pin_prefix = 1;
2140 }
2141 
2142 static void rename_ctl(struct hda_codec *codec, const char *oldname,
2143 		       const char *newname)
2144 {
2145 	struct snd_kcontrol *kctl;
2146 
2147 	kctl = snd_hda_find_mixer_ctl(codec, oldname);
2148 	if (kctl)
2149 		snd_ctl_rename(codec->card, kctl, newname);
2150 }
2151 
2152 static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2153 					 const struct hda_fixup *fix,
2154 					 int action)
2155 {
2156 	alc_fixup_dual_codecs(codec, fix, action);
2157 	switch (action) {
2158 	case HDA_FIXUP_ACT_PRE_PROBE:
2159 		/* override card longname to provide a unique UCM profile */
2160 		strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2161 		break;
2162 	case HDA_FIXUP_ACT_BUILD:
2163 		/* rename Capture controls depending on the codec */
2164 		rename_ctl(codec, "Capture Volume",
2165 			   codec->addr == 0 ?
2166 			   "Rear-Panel Capture Volume" :
2167 			   "Front-Panel Capture Volume");
2168 		rename_ctl(codec, "Capture Switch",
2169 			   codec->addr == 0 ?
2170 			   "Rear-Panel Capture Switch" :
2171 			   "Front-Panel Capture Switch");
2172 		break;
2173 	}
2174 }
2175 
2176 static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2177 				     const struct hda_fixup *fix,
2178 				     int action)
2179 {
2180 	static const hda_nid_t conn1[] = { 0x0c };
2181 	static const struct coef_fw gb_x570_coefs[] = {
2182 		WRITE_COEF(0x07, 0x03c0),
2183 		WRITE_COEF(0x1a, 0x01c1),
2184 		WRITE_COEF(0x1b, 0x0202),
2185 		WRITE_COEF(0x43, 0x3005),
2186 		{}
2187 	};
2188 
2189 	switch (action) {
2190 	case HDA_FIXUP_ACT_PRE_PROBE:
2191 		snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2192 		snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2193 		break;
2194 	case HDA_FIXUP_ACT_INIT:
2195 		alc_process_coef_fw(codec, gb_x570_coefs);
2196 		break;
2197 	}
2198 }
2199 
2200 static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2201 				     const struct hda_fixup *fix,
2202 				     int action)
2203 {
2204 	static const hda_nid_t conn1[] = { 0x0c };
2205 
2206 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
2207 		return;
2208 
2209 	alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2210 	/* We therefore want to make sure 0x14 (front headphone) and
2211 	 * 0x1b (speakers) use the stereo DAC 0x02
2212 	 */
2213 	snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2214 	snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2215 }
2216 
2217 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2218 				const struct hda_fixup *fix, int action);
2219 
2220 static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
2221 				     const struct hda_fixup *fix,
2222 				     int action)
2223 {
2224 	alc1220_fixup_clevo_p950(codec, fix, action);
2225 	alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2226 }
2227 
2228 static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2229 					 struct hda_jack_callback *jack)
2230 {
2231 	struct alc_spec *spec = codec->spec;
2232 	unsigned int vref;
2233 
2234 	snd_hda_gen_hp_automute(codec, jack);
2235 
2236 	if (spec->gen.hp_jack_present)
2237 		vref = AC_PINCTL_VREF_80;
2238 	else
2239 		vref = AC_PINCTL_VREF_HIZ;
2240 	snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2241 }
2242 
2243 static void alc887_fixup_asus_jack(struct hda_codec *codec,
2244 				     const struct hda_fixup *fix, int action)
2245 {
2246 	struct alc_spec *spec = codec->spec;
2247 	if (action != HDA_FIXUP_ACT_PROBE)
2248 		return;
2249 	snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2250 	spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2251 }
2252 
2253 static const struct hda_fixup alc882_fixups[] = {
2254 	[ALC882_FIXUP_ABIT_AW9D_MAX] = {
2255 		.type = HDA_FIXUP_PINS,
2256 		.v.pins = (const struct hda_pintbl[]) {
2257 			{ 0x15, 0x01080104 }, /* side */
2258 			{ 0x16, 0x01011012 }, /* rear */
2259 			{ 0x17, 0x01016011 }, /* clfe */
2260 			{ }
2261 		}
2262 	},
2263 	[ALC882_FIXUP_LENOVO_Y530] = {
2264 		.type = HDA_FIXUP_PINS,
2265 		.v.pins = (const struct hda_pintbl[]) {
2266 			{ 0x15, 0x99130112 }, /* rear int speakers */
2267 			{ 0x16, 0x99130111 }, /* subwoofer */
2268 			{ }
2269 		}
2270 	},
2271 	[ALC882_FIXUP_PB_M5210] = {
2272 		.type = HDA_FIXUP_PINCTLS,
2273 		.v.pins = (const struct hda_pintbl[]) {
2274 			{ 0x19, PIN_VREF50 },
2275 			{}
2276 		}
2277 	},
2278 	[ALC882_FIXUP_ACER_ASPIRE_7736] = {
2279 		.type = HDA_FIXUP_FUNC,
2280 		.v.func = alc_fixup_sku_ignore,
2281 	},
2282 	[ALC882_FIXUP_ASUS_W90V] = {
2283 		.type = HDA_FIXUP_PINS,
2284 		.v.pins = (const struct hda_pintbl[]) {
2285 			{ 0x16, 0x99130110 }, /* fix sequence for CLFE */
2286 			{ }
2287 		}
2288 	},
2289 	[ALC889_FIXUP_CD] = {
2290 		.type = HDA_FIXUP_PINS,
2291 		.v.pins = (const struct hda_pintbl[]) {
2292 			{ 0x1c, 0x993301f0 }, /* CD */
2293 			{ }
2294 		}
2295 	},
2296 	[ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2297 		.type = HDA_FIXUP_PINS,
2298 		.v.pins = (const struct hda_pintbl[]) {
2299 			{ 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2300 			{ }
2301 		},
2302 		.chained = true,
2303 		.chain_id = ALC889_FIXUP_CD,
2304 	},
2305 	[ALC889_FIXUP_VAIO_TT] = {
2306 		.type = HDA_FIXUP_PINS,
2307 		.v.pins = (const struct hda_pintbl[]) {
2308 			{ 0x17, 0x90170111 }, /* hidden surround speaker */
2309 			{ }
2310 		}
2311 	},
2312 	[ALC888_FIXUP_EEE1601] = {
2313 		.type = HDA_FIXUP_VERBS,
2314 		.v.verbs = (const struct hda_verb[]) {
2315 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2316 			{ 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
2317 			{ }
2318 		}
2319 	},
2320 	[ALC886_FIXUP_EAPD] = {
2321 		.type = HDA_FIXUP_VERBS,
2322 		.v.verbs = (const struct hda_verb[]) {
2323 			/* change to EAPD mode */
2324 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2325 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2326 			{ }
2327 		}
2328 	},
2329 	[ALC882_FIXUP_EAPD] = {
2330 		.type = HDA_FIXUP_VERBS,
2331 		.v.verbs = (const struct hda_verb[]) {
2332 			/* change to EAPD mode */
2333 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2334 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2335 			{ }
2336 		}
2337 	},
2338 	[ALC883_FIXUP_EAPD] = {
2339 		.type = HDA_FIXUP_VERBS,
2340 		.v.verbs = (const struct hda_verb[]) {
2341 			/* change to EAPD mode */
2342 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2343 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2344 			{ }
2345 		}
2346 	},
2347 	[ALC883_FIXUP_ACER_EAPD] = {
2348 		.type = HDA_FIXUP_VERBS,
2349 		.v.verbs = (const struct hda_verb[]) {
2350 			/* eanable EAPD on Acer laptops */
2351 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2352 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2353 			{ }
2354 		}
2355 	},
2356 	[ALC882_FIXUP_GPIO1] = {
2357 		.type = HDA_FIXUP_FUNC,
2358 		.v.func = alc_fixup_gpio1,
2359 	},
2360 	[ALC882_FIXUP_GPIO2] = {
2361 		.type = HDA_FIXUP_FUNC,
2362 		.v.func = alc_fixup_gpio2,
2363 	},
2364 	[ALC882_FIXUP_GPIO3] = {
2365 		.type = HDA_FIXUP_FUNC,
2366 		.v.func = alc_fixup_gpio3,
2367 	},
2368 	[ALC882_FIXUP_ASUS_W2JC] = {
2369 		.type = HDA_FIXUP_FUNC,
2370 		.v.func = alc_fixup_gpio1,
2371 		.chained = true,
2372 		.chain_id = ALC882_FIXUP_EAPD,
2373 	},
2374 	[ALC889_FIXUP_COEF] = {
2375 		.type = HDA_FIXUP_FUNC,
2376 		.v.func = alc889_fixup_coef,
2377 	},
2378 	[ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2379 		.type = HDA_FIXUP_PINS,
2380 		.v.pins = (const struct hda_pintbl[]) {
2381 			{ 0x16, 0x99130111 }, /* CLFE speaker */
2382 			{ 0x17, 0x99130112 }, /* surround speaker */
2383 			{ }
2384 		},
2385 		.chained = true,
2386 		.chain_id = ALC882_FIXUP_GPIO1,
2387 	},
2388 	[ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2389 		.type = HDA_FIXUP_PINS,
2390 		.v.pins = (const struct hda_pintbl[]) {
2391 			{ 0x16, 0x99130111 }, /* CLFE speaker */
2392 			{ 0x1b, 0x99130112 }, /* surround speaker */
2393 			{ }
2394 		},
2395 		.chained = true,
2396 		.chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2397 	},
2398 	[ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2399 		/* additional init verbs for Acer Aspire 8930G */
2400 		.type = HDA_FIXUP_VERBS,
2401 		.v.verbs = (const struct hda_verb[]) {
2402 			/* Enable all DACs */
2403 			/* DAC DISABLE/MUTE 1? */
2404 			/*  setting bits 1-5 disables DAC nids 0x02-0x06
2405 			 *  apparently. Init=0x38 */
2406 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2407 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2408 			/* DAC DISABLE/MUTE 2? */
2409 			/*  some bit here disables the other DACs.
2410 			 *  Init=0x4900 */
2411 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2412 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2413 			/* DMIC fix
2414 			 * This laptop has a stereo digital microphone.
2415 			 * The mics are only 1cm apart which makes the stereo
2416 			 * useless. However, either the mic or the ALC889
2417 			 * makes the signal become a difference/sum signal
2418 			 * instead of standard stereo, which is annoying.
2419 			 * So instead we flip this bit which makes the
2420 			 * codec replicate the sum signal to both channels,
2421 			 * turning it into a normal mono mic.
2422 			 */
2423 			/* DMIC_CONTROL? Init value = 0x0001 */
2424 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2425 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2426 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2427 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2428 			{ }
2429 		},
2430 		.chained = true,
2431 		.chain_id = ALC882_FIXUP_GPIO1,
2432 	},
2433 	[ALC885_FIXUP_MACPRO_GPIO] = {
2434 		.type = HDA_FIXUP_FUNC,
2435 		.v.func = alc885_fixup_macpro_gpio,
2436 	},
2437 	[ALC889_FIXUP_DAC_ROUTE] = {
2438 		.type = HDA_FIXUP_FUNC,
2439 		.v.func = alc889_fixup_dac_route,
2440 	},
2441 	[ALC889_FIXUP_MBP_VREF] = {
2442 		.type = HDA_FIXUP_FUNC,
2443 		.v.func = alc889_fixup_mbp_vref,
2444 		.chained = true,
2445 		.chain_id = ALC882_FIXUP_GPIO1,
2446 	},
2447 	[ALC889_FIXUP_IMAC91_VREF] = {
2448 		.type = HDA_FIXUP_FUNC,
2449 		.v.func = alc889_fixup_imac91_vref,
2450 		.chained = true,
2451 		.chain_id = ALC882_FIXUP_GPIO1,
2452 	},
2453 	[ALC889_FIXUP_MBA11_VREF] = {
2454 		.type = HDA_FIXUP_FUNC,
2455 		.v.func = alc889_fixup_mba11_vref,
2456 		.chained = true,
2457 		.chain_id = ALC889_FIXUP_MBP_VREF,
2458 	},
2459 	[ALC889_FIXUP_MBA21_VREF] = {
2460 		.type = HDA_FIXUP_FUNC,
2461 		.v.func = alc889_fixup_mba21_vref,
2462 		.chained = true,
2463 		.chain_id = ALC889_FIXUP_MBP_VREF,
2464 	},
2465 	[ALC889_FIXUP_MP11_VREF] = {
2466 		.type = HDA_FIXUP_FUNC,
2467 		.v.func = alc889_fixup_mba11_vref,
2468 		.chained = true,
2469 		.chain_id = ALC885_FIXUP_MACPRO_GPIO,
2470 	},
2471 	[ALC889_FIXUP_MP41_VREF] = {
2472 		.type = HDA_FIXUP_FUNC,
2473 		.v.func = alc889_fixup_mbp_vref,
2474 		.chained = true,
2475 		.chain_id = ALC885_FIXUP_MACPRO_GPIO,
2476 	},
2477 	[ALC882_FIXUP_INV_DMIC] = {
2478 		.type = HDA_FIXUP_FUNC,
2479 		.v.func = alc_fixup_inv_dmic,
2480 	},
2481 	[ALC882_FIXUP_NO_PRIMARY_HP] = {
2482 		.type = HDA_FIXUP_FUNC,
2483 		.v.func = alc882_fixup_no_primary_hp,
2484 	},
2485 	[ALC887_FIXUP_ASUS_BASS] = {
2486 		.type = HDA_FIXUP_PINS,
2487 		.v.pins = (const struct hda_pintbl[]) {
2488 			{0x16, 0x99130130}, /* bass speaker */
2489 			{}
2490 		},
2491 		.chained = true,
2492 		.chain_id = ALC887_FIXUP_BASS_CHMAP,
2493 	},
2494 	[ALC887_FIXUP_BASS_CHMAP] = {
2495 		.type = HDA_FIXUP_FUNC,
2496 		.v.func = alc_fixup_bass_chmap,
2497 	},
2498 	[ALC1220_FIXUP_GB_DUAL_CODECS] = {
2499 		.type = HDA_FIXUP_FUNC,
2500 		.v.func = alc1220_fixup_gb_dual_codecs,
2501 	},
2502 	[ALC1220_FIXUP_GB_X570] = {
2503 		.type = HDA_FIXUP_FUNC,
2504 		.v.func = alc1220_fixup_gb_x570,
2505 	},
2506 	[ALC1220_FIXUP_CLEVO_P950] = {
2507 		.type = HDA_FIXUP_FUNC,
2508 		.v.func = alc1220_fixup_clevo_p950,
2509 	},
2510 	[ALC1220_FIXUP_CLEVO_PB51ED] = {
2511 		.type = HDA_FIXUP_FUNC,
2512 		.v.func = alc1220_fixup_clevo_pb51ed,
2513 	},
2514 	[ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
2515 		.type = HDA_FIXUP_PINS,
2516 		.v.pins = (const struct hda_pintbl[]) {
2517 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2518 			{}
2519 		},
2520 		.chained = true,
2521 		.chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
2522 	},
2523 	[ALC887_FIXUP_ASUS_AUDIO] = {
2524 		.type = HDA_FIXUP_PINS,
2525 		.v.pins = (const struct hda_pintbl[]) {
2526 			{ 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2527 			{ 0x19, 0x22219420 },
2528 			{}
2529 		},
2530 	},
2531 	[ALC887_FIXUP_ASUS_HMIC] = {
2532 		.type = HDA_FIXUP_FUNC,
2533 		.v.func = alc887_fixup_asus_jack,
2534 		.chained = true,
2535 		.chain_id = ALC887_FIXUP_ASUS_AUDIO,
2536 	},
2537 	[ALCS1200A_FIXUP_MIC_VREF] = {
2538 		.type = HDA_FIXUP_PINCTLS,
2539 		.v.pins = (const struct hda_pintbl[]) {
2540 			{ 0x18, PIN_VREF50 }, /* rear mic */
2541 			{ 0x19, PIN_VREF50 }, /* front mic */
2542 			{}
2543 		}
2544 	},
2545 	[ALC888VD_FIXUP_MIC_100VREF] = {
2546 		.type = HDA_FIXUP_PINCTLS,
2547 		.v.pins = (const struct hda_pintbl[]) {
2548 			{ 0x18, PIN_VREF100 }, /* headset mic */
2549 			{}
2550 		}
2551 	},
2552 };
2553 
2554 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2555 	SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2556 	SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2557 	SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2558 	SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2559 	SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2560 	SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2561 	SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2562 	SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2563 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2564 	SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2565 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2566 	SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2567 		      ALC882_FIXUP_ACER_ASPIRE_8930G),
2568 	SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2569 		      ALC882_FIXUP_ACER_ASPIRE_8930G),
2570 	SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2571 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2572 	SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2573 	SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2574 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2575 	SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2576 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2577 	SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2578 		      ALC882_FIXUP_ACER_ASPIRE_4930G),
2579 	SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2580 	SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2581 	SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2582 	SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2583 	SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2584 	SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2585 	SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
2586 	SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2587 	SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2588 	SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2589 	SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
2590 	SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2591 	SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2592 	SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2593 	SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2594 	SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2595 
2596 	/* All Apple entries are in codec SSIDs */
2597 	SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2598 	SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2599 	SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2600 	SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2601 	SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2602 	SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2603 	SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2604 	SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2605 	SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2606 	SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2607 	SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
2608 	SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2609 	SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2610 	SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2611 	SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2612 	SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2613 	SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2614 	SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2615 	SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2616 	SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2617 	SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2618 	SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2619 
2620 	SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2621 	SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF),
2622 	SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
2623 	SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2624 	SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2625 	SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
2626 	SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
2627 	SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
2628 	SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
2629 	SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
2630 	SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
2631 	SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
2632 	SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
2633 	SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
2634 	SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2635 	SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
2636 	SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2637 	SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2638 	SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2639 	SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2640 	SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2641 	SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 	SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2643 	SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2644 	SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2645 	SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2646 	SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2647 	SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2648 	SND_PCI_QUIRK(0x1558, 0x66a6, "Clevo PE60SN[CDE]-[GS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2649 	SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2650 	SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2651 	SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2652 	SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2653 	SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2654 	SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2655 	SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2656 	SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
2657 	SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
2658 	SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
2659 	SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
2660 	SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2661 	SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
2662 	SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2663 	SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2664 	SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2665 	SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
2666 	SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2667 	SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2668 	SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
2669 	SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2670 	SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2671 	SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2672 	SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2673 	SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2674 	{}
2675 };
2676 
2677 static const struct hda_model_fixup alc882_fixup_models[] = {
2678 	{.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2679 	{.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2680 	{.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2681 	{.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2682 	{.id = ALC889_FIXUP_CD, .name = "cd"},
2683 	{.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2684 	{.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2685 	{.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2686 	{.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2687 	{.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2688 	{.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2689 	{.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2690 	{.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2691 	{.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2692 	{.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
2693 	{.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2694 	{.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2695 	{.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2696 	{.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2697 	{.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2698 	{.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2699 	{.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2700 	{.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2701 	{.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2702 	{.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2703 	{.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
2704 	{.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2705 	{.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2706 	{.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
2707 	{.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2708 	{.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
2709 	{.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
2710 	{}
2711 };
2712 
2713 static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2714 	SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2715 		{0x14, 0x01014010},
2716 		{0x15, 0x01011012},
2717 		{0x16, 0x01016011},
2718 		{0x18, 0x01a19040},
2719 		{0x19, 0x02a19050},
2720 		{0x1a, 0x0181304f},
2721 		{0x1b, 0x0221401f},
2722 		{0x1e, 0x01456130}),
2723 	SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2724 		{0x14, 0x01015010},
2725 		{0x15, 0x01011012},
2726 		{0x16, 0x01011011},
2727 		{0x18, 0x01a11040},
2728 		{0x19, 0x02a19050},
2729 		{0x1a, 0x0181104f},
2730 		{0x1b, 0x0221401f},
2731 		{0x1e, 0x01451130}),
2732 	{}
2733 };
2734 
2735 /*
2736  * BIOS auto configuration
2737  */
2738 /* almost identical with ALC880 parser... */
2739 static int alc882_parse_auto_config(struct hda_codec *codec)
2740 {
2741 	static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2742 	static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2743 	return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2744 }
2745 
2746 /*
2747  */
2748 static int patch_alc882(struct hda_codec *codec)
2749 {
2750 	struct alc_spec *spec;
2751 	int err;
2752 
2753 	err = alc_alloc_spec(codec, 0x0b);
2754 	if (err < 0)
2755 		return err;
2756 
2757 	spec = codec->spec;
2758 
2759 	switch (codec->core.vendor_id) {
2760 	case 0x10ec0882:
2761 	case 0x10ec0885:
2762 	case 0x10ec0900:
2763 	case 0x10ec0b00:
2764 	case 0x10ec1220:
2765 		break;
2766 	default:
2767 		/* ALC883 and variants */
2768 		alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2769 		break;
2770 	}
2771 
2772 	alc_pre_init(codec);
2773 
2774 	snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2775 		       alc882_fixups);
2776 	snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
2777 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2778 
2779 	alc_auto_parse_customize_define(codec);
2780 
2781 	if (has_cdefine_beep(codec))
2782 		spec->gen.beep_nid = 0x01;
2783 
2784 	/* automatic parse from the BIOS config */
2785 	err = alc882_parse_auto_config(codec);
2786 	if (err < 0)
2787 		goto error;
2788 
2789 	if (!spec->gen.no_analog && spec->gen.beep_nid) {
2790 		err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2791 		if (err < 0)
2792 			goto error;
2793 	}
2794 
2795 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2796 
2797 	return 0;
2798 
2799  error:
2800 	alc_free(codec);
2801 	return err;
2802 }
2803 
2804 
2805 /*
2806  * ALC262 support
2807  */
2808 static int alc262_parse_auto_config(struct hda_codec *codec)
2809 {
2810 	static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2811 	static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2812 	return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2813 }
2814 
2815 /*
2816  * Pin config fixes
2817  */
2818 enum {
2819 	ALC262_FIXUP_FSC_H270,
2820 	ALC262_FIXUP_FSC_S7110,
2821 	ALC262_FIXUP_HP_Z200,
2822 	ALC262_FIXUP_TYAN,
2823 	ALC262_FIXUP_LENOVO_3000,
2824 	ALC262_FIXUP_BENQ,
2825 	ALC262_FIXUP_BENQ_T31,
2826 	ALC262_FIXUP_INV_DMIC,
2827 	ALC262_FIXUP_INTEL_BAYLEYBAY,
2828 };
2829 
2830 static const struct hda_fixup alc262_fixups[] = {
2831 	[ALC262_FIXUP_FSC_H270] = {
2832 		.type = HDA_FIXUP_PINS,
2833 		.v.pins = (const struct hda_pintbl[]) {
2834 			{ 0x14, 0x99130110 }, /* speaker */
2835 			{ 0x15, 0x0221142f }, /* front HP */
2836 			{ 0x1b, 0x0121141f }, /* rear HP */
2837 			{ }
2838 		}
2839 	},
2840 	[ALC262_FIXUP_FSC_S7110] = {
2841 		.type = HDA_FIXUP_PINS,
2842 		.v.pins = (const struct hda_pintbl[]) {
2843 			{ 0x15, 0x90170110 }, /* speaker */
2844 			{ }
2845 		},
2846 		.chained = true,
2847 		.chain_id = ALC262_FIXUP_BENQ,
2848 	},
2849 	[ALC262_FIXUP_HP_Z200] = {
2850 		.type = HDA_FIXUP_PINS,
2851 		.v.pins = (const struct hda_pintbl[]) {
2852 			{ 0x16, 0x99130120 }, /* internal speaker */
2853 			{ }
2854 		}
2855 	},
2856 	[ALC262_FIXUP_TYAN] = {
2857 		.type = HDA_FIXUP_PINS,
2858 		.v.pins = (const struct hda_pintbl[]) {
2859 			{ 0x14, 0x1993e1f0 }, /* int AUX */
2860 			{ }
2861 		}
2862 	},
2863 	[ALC262_FIXUP_LENOVO_3000] = {
2864 		.type = HDA_FIXUP_PINCTLS,
2865 		.v.pins = (const struct hda_pintbl[]) {
2866 			{ 0x19, PIN_VREF50 },
2867 			{}
2868 		},
2869 		.chained = true,
2870 		.chain_id = ALC262_FIXUP_BENQ,
2871 	},
2872 	[ALC262_FIXUP_BENQ] = {
2873 		.type = HDA_FIXUP_VERBS,
2874 		.v.verbs = (const struct hda_verb[]) {
2875 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2876 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2877 			{}
2878 		}
2879 	},
2880 	[ALC262_FIXUP_BENQ_T31] = {
2881 		.type = HDA_FIXUP_VERBS,
2882 		.v.verbs = (const struct hda_verb[]) {
2883 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2884 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2885 			{}
2886 		}
2887 	},
2888 	[ALC262_FIXUP_INV_DMIC] = {
2889 		.type = HDA_FIXUP_FUNC,
2890 		.v.func = alc_fixup_inv_dmic,
2891 	},
2892 	[ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2893 		.type = HDA_FIXUP_FUNC,
2894 		.v.func = alc_fixup_no_depop_delay,
2895 	},
2896 };
2897 
2898 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2899 	SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2900 	SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2901 	SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2902 	SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2903 	SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
2904 	SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2905 	SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2906 	SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2907 	SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2908 	SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2909 	{}
2910 };
2911 
2912 static const struct hda_model_fixup alc262_fixup_models[] = {
2913 	{.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2914 	{.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2915 	{.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2916 	{.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2917 	{.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2918 	{.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2919 	{.id = ALC262_FIXUP_BENQ, .name = "benq"},
2920 	{.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2921 	{.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
2922 	{}
2923 };
2924 
2925 /*
2926  */
2927 static int patch_alc262(struct hda_codec *codec)
2928 {
2929 	struct alc_spec *spec;
2930 	int err;
2931 
2932 	err = alc_alloc_spec(codec, 0x0b);
2933 	if (err < 0)
2934 		return err;
2935 
2936 	spec = codec->spec;
2937 	spec->gen.shared_mic_vref_pin = 0x18;
2938 
2939 	spec->shutup = alc_eapd_shutup;
2940 
2941 #if 0
2942 	/* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
2943 	 * under-run
2944 	 */
2945 	alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2946 #endif
2947 	alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2948 
2949 	alc_pre_init(codec);
2950 
2951 	snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2952 		       alc262_fixups);
2953 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2954 
2955 	alc_auto_parse_customize_define(codec);
2956 
2957 	if (has_cdefine_beep(codec))
2958 		spec->gen.beep_nid = 0x01;
2959 
2960 	/* automatic parse from the BIOS config */
2961 	err = alc262_parse_auto_config(codec);
2962 	if (err < 0)
2963 		goto error;
2964 
2965 	if (!spec->gen.no_analog && spec->gen.beep_nid) {
2966 		err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2967 		if (err < 0)
2968 			goto error;
2969 	}
2970 
2971 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2972 
2973 	return 0;
2974 
2975  error:
2976 	alc_free(codec);
2977 	return err;
2978 }
2979 
2980 /*
2981  *  ALC268
2982  */
2983 /* bind Beep switches of both NID 0x0f and 0x10 */
2984 static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2985 				  struct snd_ctl_elem_value *ucontrol)
2986 {
2987 	struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2988 	unsigned long pval;
2989 	int err;
2990 
2991 	mutex_lock(&codec->control_mutex);
2992 	pval = kcontrol->private_value;
2993 	kcontrol->private_value = (pval & ~0xff) | 0x0f;
2994 	err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2995 	if (err >= 0) {
2996 		kcontrol->private_value = (pval & ~0xff) | 0x10;
2997 		err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2998 	}
2999 	kcontrol->private_value = pval;
3000 	mutex_unlock(&codec->control_mutex);
3001 	return err;
3002 }
3003 
3004 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
3005 	HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
3006 	{
3007 		.iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3008 		.name = "Beep Playback Switch",
3009 		.subdevice = HDA_SUBDEV_AMP_FLAG,
3010 		.info = snd_hda_mixer_amp_switch_info,
3011 		.get = snd_hda_mixer_amp_switch_get,
3012 		.put = alc268_beep_switch_put,
3013 		.private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3014 	},
3015 };
3016 
3017 /* set PCBEEP vol = 0, mute connections */
3018 static const struct hda_verb alc268_beep_init_verbs[] = {
3019 	{0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3020 	{0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3021 	{0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3022 	{ }
3023 };
3024 
3025 enum {
3026 	ALC268_FIXUP_INV_DMIC,
3027 	ALC268_FIXUP_HP_EAPD,
3028 	ALC268_FIXUP_SPDIF,
3029 };
3030 
3031 static const struct hda_fixup alc268_fixups[] = {
3032 	[ALC268_FIXUP_INV_DMIC] = {
3033 		.type = HDA_FIXUP_FUNC,
3034 		.v.func = alc_fixup_inv_dmic,
3035 	},
3036 	[ALC268_FIXUP_HP_EAPD] = {
3037 		.type = HDA_FIXUP_VERBS,
3038 		.v.verbs = (const struct hda_verb[]) {
3039 			{0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3040 			{}
3041 		}
3042 	},
3043 	[ALC268_FIXUP_SPDIF] = {
3044 		.type = HDA_FIXUP_PINS,
3045 		.v.pins = (const struct hda_pintbl[]) {
3046 			{ 0x1e, 0x014b1180 }, /* enable SPDIF out */
3047 			{}
3048 		}
3049 	},
3050 };
3051 
3052 static const struct hda_model_fixup alc268_fixup_models[] = {
3053 	{.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
3054 	{.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
3055 	{.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
3056 	{}
3057 };
3058 
3059 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
3060 	SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
3061 	SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
3062 	/* below is codec SSID since multiple Toshiba laptops have the
3063 	 * same PCI SSID 1179:ff00
3064 	 */
3065 	SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
3066 	{}
3067 };
3068 
3069 /*
3070  * BIOS auto configuration
3071  */
3072 static int alc268_parse_auto_config(struct hda_codec *codec)
3073 {
3074 	static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3075 	return alc_parse_auto_config(codec, NULL, alc268_ssids);
3076 }
3077 
3078 /*
3079  */
3080 static int patch_alc268(struct hda_codec *codec)
3081 {
3082 	struct alc_spec *spec;
3083 	int i, err;
3084 
3085 	/* ALC268 has no aa-loopback mixer */
3086 	err = alc_alloc_spec(codec, 0);
3087 	if (err < 0)
3088 		return err;
3089 
3090 	spec = codec->spec;
3091 	if (has_cdefine_beep(codec))
3092 		spec->gen.beep_nid = 0x01;
3093 
3094 	spec->shutup = alc_eapd_shutup;
3095 
3096 	alc_pre_init(codec);
3097 
3098 	snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3099 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3100 
3101 	/* automatic parse from the BIOS config */
3102 	err = alc268_parse_auto_config(codec);
3103 	if (err < 0)
3104 		goto error;
3105 
3106 	if (err > 0 && !spec->gen.no_analog &&
3107 	    spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3108 		for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3109 			if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3110 						  &alc268_beep_mixer[i])) {
3111 				err = -ENOMEM;
3112 				goto error;
3113 			}
3114 		}
3115 		snd_hda_add_verbs(codec, alc268_beep_init_verbs);
3116 		if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3117 			/* override the amp caps for beep generator */
3118 			snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3119 					  (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3120 					  (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3121 					  (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3122 					  (0 << AC_AMPCAP_MUTE_SHIFT));
3123 	}
3124 
3125 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
3126 
3127 	return 0;
3128 
3129  error:
3130 	alc_free(codec);
3131 	return err;
3132 }
3133 
3134 /*
3135  * ALC269
3136  */
3137 
3138 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
3139 	.rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3140 };
3141 
3142 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
3143 	.rates = SNDRV_PCM_RATE_44100, /* fixed rate */
3144 };
3145 
3146 /* different alc269-variants */
3147 enum {
3148 	ALC269_TYPE_ALC269VA,
3149 	ALC269_TYPE_ALC269VB,
3150 	ALC269_TYPE_ALC269VC,
3151 	ALC269_TYPE_ALC269VD,
3152 	ALC269_TYPE_ALC280,
3153 	ALC269_TYPE_ALC282,
3154 	ALC269_TYPE_ALC283,
3155 	ALC269_TYPE_ALC284,
3156 	ALC269_TYPE_ALC293,
3157 	ALC269_TYPE_ALC286,
3158 	ALC269_TYPE_ALC298,
3159 	ALC269_TYPE_ALC255,
3160 	ALC269_TYPE_ALC256,
3161 	ALC269_TYPE_ALC257,
3162 	ALC269_TYPE_ALC215,
3163 	ALC269_TYPE_ALC225,
3164 	ALC269_TYPE_ALC245,
3165 	ALC269_TYPE_ALC287,
3166 	ALC269_TYPE_ALC294,
3167 	ALC269_TYPE_ALC300,
3168 	ALC269_TYPE_ALC623,
3169 	ALC269_TYPE_ALC700,
3170 };
3171 
3172 /*
3173  * BIOS auto configuration
3174  */
3175 static int alc269_parse_auto_config(struct hda_codec *codec)
3176 {
3177 	static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3178 	static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3179 	static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3180 	struct alc_spec *spec = codec->spec;
3181 	const hda_nid_t *ssids;
3182 
3183 	switch (spec->codec_variant) {
3184 	case ALC269_TYPE_ALC269VA:
3185 	case ALC269_TYPE_ALC269VC:
3186 	case ALC269_TYPE_ALC280:
3187 	case ALC269_TYPE_ALC284:
3188 	case ALC269_TYPE_ALC293:
3189 		ssids = alc269va_ssids;
3190 		break;
3191 	case ALC269_TYPE_ALC269VB:
3192 	case ALC269_TYPE_ALC269VD:
3193 	case ALC269_TYPE_ALC282:
3194 	case ALC269_TYPE_ALC283:
3195 	case ALC269_TYPE_ALC286:
3196 	case ALC269_TYPE_ALC298:
3197 	case ALC269_TYPE_ALC255:
3198 	case ALC269_TYPE_ALC256:
3199 	case ALC269_TYPE_ALC257:
3200 	case ALC269_TYPE_ALC215:
3201 	case ALC269_TYPE_ALC225:
3202 	case ALC269_TYPE_ALC245:
3203 	case ALC269_TYPE_ALC287:
3204 	case ALC269_TYPE_ALC294:
3205 	case ALC269_TYPE_ALC300:
3206 	case ALC269_TYPE_ALC623:
3207 	case ALC269_TYPE_ALC700:
3208 		ssids = alc269_ssids;
3209 		break;
3210 	default:
3211 		ssids = alc269_ssids;
3212 		break;
3213 	}
3214 
3215 	return alc_parse_auto_config(codec, alc269_ignore, ssids);
3216 }
3217 
3218 static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3219 	{ SND_JACK_BTN_0, KEY_PLAYPAUSE },
3220 	{ SND_JACK_BTN_1, KEY_VOICECOMMAND },
3221 	{ SND_JACK_BTN_2, KEY_VOLUMEUP },
3222 	{ SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3223 	{}
3224 };
3225 
3226 static void alc_headset_btn_callback(struct hda_codec *codec,
3227 				     struct hda_jack_callback *jack)
3228 {
3229 	int report = 0;
3230 
3231 	if (jack->unsol_res & (7 << 13))
3232 		report |= SND_JACK_BTN_0;
3233 
3234 	if (jack->unsol_res  & (1 << 16 | 3 << 8))
3235 		report |= SND_JACK_BTN_1;
3236 
3237 	/* Volume up key */
3238 	if (jack->unsol_res & (7 << 23))
3239 		report |= SND_JACK_BTN_2;
3240 
3241 	/* Volume down key */
3242 	if (jack->unsol_res & (7 << 10))
3243 		report |= SND_JACK_BTN_3;
3244 
3245 	snd_hda_jack_set_button_state(codec, jack->nid, report);
3246 }
3247 
3248 static void alc_disable_headset_jack_key(struct hda_codec *codec)
3249 {
3250 	struct alc_spec *spec = codec->spec;
3251 
3252 	if (!spec->has_hs_key)
3253 		return;
3254 
3255 	switch (codec->core.vendor_id) {
3256 	case 0x10ec0215:
3257 	case 0x10ec0225:
3258 	case 0x10ec0285:
3259 	case 0x10ec0287:
3260 	case 0x10ec0295:
3261 	case 0x10ec0289:
3262 	case 0x10ec0299:
3263 		alc_write_coef_idx(codec, 0x48, 0x0);
3264 		alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3265 		alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3266 		break;
3267 	case 0x10ec0230:
3268 	case 0x10ec0236:
3269 	case 0x10ec0256:
3270 	case 0x10ec0257:
3271 	case 0x19e58326:
3272 		alc_write_coef_idx(codec, 0x48, 0x0);
3273 		alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3274 		break;
3275 	}
3276 }
3277 
3278 static void alc_enable_headset_jack_key(struct hda_codec *codec)
3279 {
3280 	struct alc_spec *spec = codec->spec;
3281 
3282 	if (!spec->has_hs_key)
3283 		return;
3284 
3285 	switch (codec->core.vendor_id) {
3286 	case 0x10ec0215:
3287 	case 0x10ec0225:
3288 	case 0x10ec0285:
3289 	case 0x10ec0287:
3290 	case 0x10ec0295:
3291 	case 0x10ec0289:
3292 	case 0x10ec0299:
3293 		alc_write_coef_idx(codec, 0x48, 0xd011);
3294 		alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3295 		alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3296 		break;
3297 	case 0x10ec0230:
3298 	case 0x10ec0236:
3299 	case 0x10ec0256:
3300 	case 0x10ec0257:
3301 	case 0x19e58326:
3302 		alc_write_coef_idx(codec, 0x48, 0xd011);
3303 		alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3304 		break;
3305 	}
3306 }
3307 
3308 static void alc_fixup_headset_jack(struct hda_codec *codec,
3309 				    const struct hda_fixup *fix, int action)
3310 {
3311 	struct alc_spec *spec = codec->spec;
3312 	hda_nid_t hp_pin;
3313 
3314 	switch (action) {
3315 	case HDA_FIXUP_ACT_PRE_PROBE:
3316 		spec->has_hs_key = 1;
3317 		snd_hda_jack_detect_enable_callback(codec, 0x55,
3318 						    alc_headset_btn_callback);
3319 		break;
3320 	case HDA_FIXUP_ACT_BUILD:
3321 		hp_pin = alc_get_hp_pin(spec);
3322 		if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3323 							alc_headset_btn_keymap,
3324 							hp_pin))
3325 			snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3326 					      false, SND_JACK_HEADSET,
3327 					      alc_headset_btn_keymap);
3328 
3329 		alc_enable_headset_jack_key(codec);
3330 		break;
3331 	}
3332 }
3333 
3334 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
3335 {
3336 	alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
3337 }
3338 
3339 static void alc269_shutup(struct hda_codec *codec)
3340 {
3341 	struct alc_spec *spec = codec->spec;
3342 
3343 	if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3344 		alc269vb_toggle_power_output(codec, 0);
3345 	if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3346 			(alc_get_coef0(codec) & 0x00ff) == 0x018) {
3347 		msleep(150);
3348 	}
3349 	alc_shutup_pins(codec);
3350 }
3351 
3352 static const struct coef_fw alc282_coefs[] = {
3353 	WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3354 	UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3355 	WRITE_COEF(0x07, 0x0200), /* DMIC control */
3356 	UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3357 	UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3358 	WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3359 	WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3360 	WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3361 	UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3362 	UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3363 	WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3364 	UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3365 	WRITE_COEF(0x34, 0xa0c0), /* ANC */
3366 	UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3367 	UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3368 	UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3369 	WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3370 	WRITE_COEF(0x63, 0x2902), /* PLL */
3371 	WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3372 	WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3373 	WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3374 	WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3375 	UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3376 	WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3377 	UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3378 	WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3379 	WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3380 	UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3381 	WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3382 	{}
3383 };
3384 
3385 static void alc282_restore_default_value(struct hda_codec *codec)
3386 {
3387 	alc_process_coef_fw(codec, alc282_coefs);
3388 }
3389 
3390 static void alc282_init(struct hda_codec *codec)
3391 {
3392 	struct alc_spec *spec = codec->spec;
3393 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3394 	bool hp_pin_sense;
3395 	int coef78;
3396 
3397 	alc282_restore_default_value(codec);
3398 
3399 	if (!hp_pin)
3400 		return;
3401 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3402 	coef78 = alc_read_coef_idx(codec, 0x78);
3403 
3404 	/* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3405 	/* Headphone capless set to high power mode */
3406 	alc_write_coef_idx(codec, 0x78, 0x9004);
3407 
3408 	if (hp_pin_sense)
3409 		msleep(2);
3410 
3411 	snd_hda_codec_write(codec, hp_pin, 0,
3412 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3413 
3414 	if (hp_pin_sense)
3415 		msleep(85);
3416 
3417 	snd_hda_codec_write(codec, hp_pin, 0,
3418 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3419 
3420 	if (hp_pin_sense)
3421 		msleep(100);
3422 
3423 	/* Headphone capless set to normal mode */
3424 	alc_write_coef_idx(codec, 0x78, coef78);
3425 }
3426 
3427 static void alc282_shutup(struct hda_codec *codec)
3428 {
3429 	struct alc_spec *spec = codec->spec;
3430 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3431 	bool hp_pin_sense;
3432 	int coef78;
3433 
3434 	if (!hp_pin) {
3435 		alc269_shutup(codec);
3436 		return;
3437 	}
3438 
3439 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3440 	coef78 = alc_read_coef_idx(codec, 0x78);
3441 	alc_write_coef_idx(codec, 0x78, 0x9004);
3442 
3443 	if (hp_pin_sense)
3444 		msleep(2);
3445 
3446 	snd_hda_codec_write(codec, hp_pin, 0,
3447 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3448 
3449 	if (hp_pin_sense)
3450 		msleep(85);
3451 
3452 	if (!spec->no_shutup_pins)
3453 		snd_hda_codec_write(codec, hp_pin, 0,
3454 				    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3455 
3456 	if (hp_pin_sense)
3457 		msleep(100);
3458 
3459 	alc_auto_setup_eapd(codec, false);
3460 	alc_shutup_pins(codec);
3461 	alc_write_coef_idx(codec, 0x78, coef78);
3462 }
3463 
3464 static const struct coef_fw alc283_coefs[] = {
3465 	WRITE_COEF(0x03, 0x0002), /* Power Down Control */
3466 	UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
3467 	WRITE_COEF(0x07, 0x0200), /* DMIC control */
3468 	UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3469 	UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3470 	WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3471 	WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3472 	WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3473 	UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3474 	UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3475 	WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3476 	UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3477 	WRITE_COEF(0x22, 0xa0c0), /* ANC */
3478 	UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3479 	UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3480 	UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3481 	WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3482 	WRITE_COEF(0x2e, 0x2902), /* PLL */
3483 	WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3484 	WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3485 	WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3486 	WRITE_COEF(0x36, 0x0), /* capless control 5 */
3487 	UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3488 	WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3489 	UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3490 	WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3491 	WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3492 	UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3493 	WRITE_COEF(0x49, 0x0), /* test mode */
3494 	UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3495 	UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3496 	WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
3497 	UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
3498 	{}
3499 };
3500 
3501 static void alc283_restore_default_value(struct hda_codec *codec)
3502 {
3503 	alc_process_coef_fw(codec, alc283_coefs);
3504 }
3505 
3506 static void alc283_init(struct hda_codec *codec)
3507 {
3508 	struct alc_spec *spec = codec->spec;
3509 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3510 	bool hp_pin_sense;
3511 
3512 	alc283_restore_default_value(codec);
3513 
3514 	if (!hp_pin)
3515 		return;
3516 
3517 	msleep(30);
3518 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3519 
3520 	/* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3521 	/* Headphone capless set to high power mode */
3522 	alc_write_coef_idx(codec, 0x43, 0x9004);
3523 
3524 	snd_hda_codec_write(codec, hp_pin, 0,
3525 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3526 
3527 	if (hp_pin_sense)
3528 		msleep(85);
3529 
3530 	snd_hda_codec_write(codec, hp_pin, 0,
3531 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3532 
3533 	if (hp_pin_sense)
3534 		msleep(85);
3535 	/* Index 0x46 Combo jack auto switch control 2 */
3536 	/* 3k pull low control for Headset jack. */
3537 	alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3538 	/* Headphone capless set to normal mode */
3539 	alc_write_coef_idx(codec, 0x43, 0x9614);
3540 }
3541 
3542 static void alc283_shutup(struct hda_codec *codec)
3543 {
3544 	struct alc_spec *spec = codec->spec;
3545 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3546 	bool hp_pin_sense;
3547 
3548 	if (!hp_pin) {
3549 		alc269_shutup(codec);
3550 		return;
3551 	}
3552 
3553 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3554 
3555 	alc_write_coef_idx(codec, 0x43, 0x9004);
3556 
3557 	/*depop hp during suspend*/
3558 	alc_write_coef_idx(codec, 0x06, 0x2100);
3559 
3560 	snd_hda_codec_write(codec, hp_pin, 0,
3561 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3562 
3563 	if (hp_pin_sense)
3564 		msleep(100);
3565 
3566 	if (!spec->no_shutup_pins)
3567 		snd_hda_codec_write(codec, hp_pin, 0,
3568 				    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3569 
3570 	alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3571 
3572 	if (hp_pin_sense)
3573 		msleep(100);
3574 	alc_auto_setup_eapd(codec, false);
3575 	alc_shutup_pins(codec);
3576 	alc_write_coef_idx(codec, 0x43, 0x9614);
3577 }
3578 
3579 static void alc256_init(struct hda_codec *codec)
3580 {
3581 	struct alc_spec *spec = codec->spec;
3582 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3583 	bool hp_pin_sense;
3584 
3585 	if (spec->ultra_low_power) {
3586 		alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3587 		alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3588 		alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3589 		alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3590 		alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3591 		msleep(30);
3592 	}
3593 
3594 	if (!hp_pin)
3595 		hp_pin = 0x21;
3596 
3597 	msleep(30);
3598 
3599 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3600 
3601 	if (hp_pin_sense)
3602 		msleep(2);
3603 
3604 	alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3605 
3606 	snd_hda_codec_write(codec, hp_pin, 0,
3607 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3608 
3609 	if (hp_pin_sense || spec->ultra_low_power)
3610 		msleep(85);
3611 
3612 	snd_hda_codec_write(codec, hp_pin, 0,
3613 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3614 
3615 	if (hp_pin_sense || spec->ultra_low_power)
3616 		msleep(100);
3617 
3618 	alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3619 	alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3620 	alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3621 	alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
3622 	/*
3623 	 * Expose headphone mic (or possibly Line In on some machines) instead
3624 	 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3625 	 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3626 	 * this register.
3627 	 */
3628 	alc_write_coef_idx(codec, 0x36, 0x5757);
3629 }
3630 
3631 static void alc256_shutup(struct hda_codec *codec)
3632 {
3633 	struct alc_spec *spec = codec->spec;
3634 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3635 	bool hp_pin_sense;
3636 
3637 	if (!hp_pin)
3638 		hp_pin = 0x21;
3639 
3640 	alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3641 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3642 
3643 	if (hp_pin_sense)
3644 		msleep(2);
3645 
3646 	snd_hda_codec_write(codec, hp_pin, 0,
3647 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3648 
3649 	if (hp_pin_sense || spec->ultra_low_power)
3650 		msleep(85);
3651 
3652 	/* 3k pull low control for Headset jack. */
3653 	/* NOTE: call this before clearing the pin, otherwise codec stalls */
3654 	/* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3655 	 * when booting with headset plugged. So skip setting it for the codec alc257
3656 	 */
3657 	if (spec->en_3kpull_low)
3658 		alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3659 
3660 	if (!spec->no_shutup_pins)
3661 		snd_hda_codec_write(codec, hp_pin, 0,
3662 				    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3663 
3664 	if (hp_pin_sense || spec->ultra_low_power)
3665 		msleep(100);
3666 
3667 	alc_auto_setup_eapd(codec, false);
3668 	alc_shutup_pins(codec);
3669 	if (spec->ultra_low_power) {
3670 		msleep(50);
3671 		alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3672 		alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3673 		alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3674 		alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3675 		alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3676 		msleep(30);
3677 	}
3678 }
3679 
3680 static void alc285_hp_init(struct hda_codec *codec)
3681 {
3682 	struct alc_spec *spec = codec->spec;
3683 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3684 	int i, val;
3685 	int coef38, coef0d, coef36;
3686 
3687 	alc_write_coefex_idx(codec, 0x58, 0x00, 0x1888); /* write default value */
3688 	alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3689 	coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3690 	coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3691 	coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3692 	alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3693 	alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3694 
3695 	alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3696 
3697 	if (hp_pin)
3698 		snd_hda_codec_write(codec, hp_pin, 0,
3699 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3700 
3701 	msleep(130);
3702 	alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3703 	alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3704 
3705 	if (hp_pin)
3706 		snd_hda_codec_write(codec, hp_pin, 0,
3707 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3708 	msleep(10);
3709 	alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3710 	alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3711 	alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3712 	alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3713 
3714 	alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3715 	val = alc_read_coefex_idx(codec, 0x58, 0x00);
3716 	for (i = 0; i < 20 && val & 0x8000; i++) {
3717 		msleep(50);
3718 		val = alc_read_coefex_idx(codec, 0x58, 0x00);
3719 	} /* Wait for depop procedure finish  */
3720 
3721 	alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3722 	alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3723 	alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3724 	alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3725 
3726 	msleep(50);
3727 	alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3728 }
3729 
3730 static void alc225_init(struct hda_codec *codec)
3731 {
3732 	struct alc_spec *spec = codec->spec;
3733 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3734 	bool hp1_pin_sense, hp2_pin_sense;
3735 
3736 	if (spec->ultra_low_power) {
3737 		alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3738 		alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3739 		alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3740 		msleep(30);
3741 	}
3742 
3743 	if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3744 		spec->codec_variant != ALC269_TYPE_ALC245)
3745 		/* required only at boot or S3 and S4 resume time */
3746 		if (!spec->done_hp_init ||
3747 			is_s3_resume(codec) ||
3748 			is_s4_resume(codec)) {
3749 			alc285_hp_init(codec);
3750 			spec->done_hp_init = true;
3751 		}
3752 
3753 	if (!hp_pin)
3754 		hp_pin = 0x21;
3755 	msleep(30);
3756 
3757 	hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3758 	hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3759 
3760 	if (hp1_pin_sense || hp2_pin_sense)
3761 		msleep(2);
3762 
3763 	alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3764 
3765 	if (hp1_pin_sense || spec->ultra_low_power)
3766 		snd_hda_codec_write(codec, hp_pin, 0,
3767 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3768 	if (hp2_pin_sense)
3769 		snd_hda_codec_write(codec, 0x16, 0,
3770 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3771 
3772 	if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3773 		msleep(85);
3774 
3775 	if (hp1_pin_sense || spec->ultra_low_power)
3776 		snd_hda_codec_write(codec, hp_pin, 0,
3777 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3778 	if (hp2_pin_sense)
3779 		snd_hda_codec_write(codec, 0x16, 0,
3780 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3781 
3782 	if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3783 		msleep(100);
3784 
3785 	alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3786 	alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3787 }
3788 
3789 static void alc225_shutup(struct hda_codec *codec)
3790 {
3791 	struct alc_spec *spec = codec->spec;
3792 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3793 	bool hp1_pin_sense, hp2_pin_sense;
3794 
3795 	if (!hp_pin)
3796 		hp_pin = 0x21;
3797 
3798 	alc_disable_headset_jack_key(codec);
3799 	/* 3k pull low control for Headset jack. */
3800 	alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3801 
3802 	hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3803 	hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3804 
3805 	if (hp1_pin_sense || hp2_pin_sense)
3806 		msleep(2);
3807 
3808 	if (hp1_pin_sense || spec->ultra_low_power)
3809 		snd_hda_codec_write(codec, hp_pin, 0,
3810 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3811 	if (hp2_pin_sense)
3812 		snd_hda_codec_write(codec, 0x16, 0,
3813 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3814 
3815 	if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3816 		msleep(85);
3817 
3818 	if (hp1_pin_sense || spec->ultra_low_power)
3819 		snd_hda_codec_write(codec, hp_pin, 0,
3820 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3821 	if (hp2_pin_sense)
3822 		snd_hda_codec_write(codec, 0x16, 0,
3823 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3824 
3825 	if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
3826 		msleep(100);
3827 
3828 	alc_auto_setup_eapd(codec, false);
3829 	alc_shutup_pins(codec);
3830 	if (spec->ultra_low_power) {
3831 		msleep(50);
3832 		alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3833 		alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3834 		alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3835 		alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3836 		msleep(30);
3837 	}
3838 
3839 	alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3840 	alc_enable_headset_jack_key(codec);
3841 }
3842 
3843 static void alc_default_init(struct hda_codec *codec)
3844 {
3845 	struct alc_spec *spec = codec->spec;
3846 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3847 	bool hp_pin_sense;
3848 
3849 	if (!hp_pin)
3850 		return;
3851 
3852 	msleep(30);
3853 
3854 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3855 
3856 	if (hp_pin_sense)
3857 		msleep(2);
3858 
3859 	snd_hda_codec_write(codec, hp_pin, 0,
3860 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3861 
3862 	if (hp_pin_sense)
3863 		msleep(85);
3864 
3865 	snd_hda_codec_write(codec, hp_pin, 0,
3866 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3867 
3868 	if (hp_pin_sense)
3869 		msleep(100);
3870 }
3871 
3872 static void alc_default_shutup(struct hda_codec *codec)
3873 {
3874 	struct alc_spec *spec = codec->spec;
3875 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3876 	bool hp_pin_sense;
3877 
3878 	if (!hp_pin) {
3879 		alc269_shutup(codec);
3880 		return;
3881 	}
3882 
3883 	hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3884 
3885 	if (hp_pin_sense)
3886 		msleep(2);
3887 
3888 	snd_hda_codec_write(codec, hp_pin, 0,
3889 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3890 
3891 	if (hp_pin_sense)
3892 		msleep(85);
3893 
3894 	if (!spec->no_shutup_pins)
3895 		snd_hda_codec_write(codec, hp_pin, 0,
3896 				    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3897 
3898 	if (hp_pin_sense)
3899 		msleep(100);
3900 
3901 	alc_auto_setup_eapd(codec, false);
3902 	alc_shutup_pins(codec);
3903 }
3904 
3905 static void alc294_hp_init(struct hda_codec *codec)
3906 {
3907 	struct alc_spec *spec = codec->spec;
3908 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
3909 	int i, val;
3910 
3911 	if (!hp_pin)
3912 		return;
3913 
3914 	snd_hda_codec_write(codec, hp_pin, 0,
3915 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3916 
3917 	msleep(100);
3918 
3919 	if (!spec->no_shutup_pins)
3920 		snd_hda_codec_write(codec, hp_pin, 0,
3921 				    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3922 
3923 	alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3924 	alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3925 
3926 	/* Wait for depop procedure finish  */
3927 	val = alc_read_coefex_idx(codec, 0x58, 0x01);
3928 	for (i = 0; i < 20 && val & 0x0080; i++) {
3929 		msleep(50);
3930 		val = alc_read_coefex_idx(codec, 0x58, 0x01);
3931 	}
3932 	/* Set HP depop to auto mode */
3933 	alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3934 	msleep(50);
3935 }
3936 
3937 static void alc294_init(struct hda_codec *codec)
3938 {
3939 	struct alc_spec *spec = codec->spec;
3940 
3941 	/* required only at boot or S4 resume time */
3942 	if (!spec->done_hp_init ||
3943 	    codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
3944 		alc294_hp_init(codec);
3945 		spec->done_hp_init = true;
3946 	}
3947 	alc_default_init(codec);
3948 }
3949 
3950 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3951 			     unsigned int val)
3952 {
3953 	snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3954 	snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3955 	snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3956 }
3957 
3958 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3959 {
3960 	unsigned int val;
3961 
3962 	snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3963 	val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3964 		& 0xffff;
3965 	val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3966 		<< 16;
3967 	return val;
3968 }
3969 
3970 static void alc5505_dsp_halt(struct hda_codec *codec)
3971 {
3972 	unsigned int val;
3973 
3974 	alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3975 	alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3976 	alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3977 	alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3978 	alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3979 	alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3980 	alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3981 	val = alc5505_coef_get(codec, 0x6220);
3982 	alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3983 }
3984 
3985 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3986 {
3987 	alc5505_coef_set(codec, 0x61b8, 0x04133302);
3988 	alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3989 	alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3990 	alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3991 	alc5505_coef_set(codec, 0x6220, 0x2002010f);
3992 	alc5505_coef_set(codec, 0x880c, 0x00000004);
3993 }
3994 
3995 static void alc5505_dsp_init(struct hda_codec *codec)
3996 {
3997 	unsigned int val;
3998 
3999 	alc5505_dsp_halt(codec);
4000 	alc5505_dsp_back_from_halt(codec);
4001 	alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
4002 	alc5505_coef_set(codec, 0x61b0, 0x5b16);
4003 	alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
4004 	alc5505_coef_set(codec, 0x61b4, 0x04132b02);
4005 	alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
4006 	alc5505_coef_set(codec, 0x61b8, 0x041f3302);
4007 	snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
4008 	alc5505_coef_set(codec, 0x61b8, 0x041b3302);
4009 	alc5505_coef_set(codec, 0x61b8, 0x04173302);
4010 	alc5505_coef_set(codec, 0x61b8, 0x04163302);
4011 	alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
4012 	alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
4013 	alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4014 
4015 	val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4016 	if (val <= 3)
4017 		alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4018 	else
4019 		alc5505_coef_set(codec, 0x6220, 0x6002018f);
4020 
4021 	alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4022 	alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4023 	alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4024 	alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4025 	alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4026 	alc5505_coef_set(codec, 0x880c, 0x00000003);
4027 	alc5505_coef_set(codec, 0x880c, 0x00000010);
4028 
4029 #ifdef HALT_REALTEK_ALC5505
4030 	alc5505_dsp_halt(codec);
4031 #endif
4032 }
4033 
4034 #ifdef HALT_REALTEK_ALC5505
4035 #define alc5505_dsp_suspend(codec)	do { } while (0) /* NOP */
4036 #define alc5505_dsp_resume(codec)	do { } while (0) /* NOP */
4037 #else
4038 #define alc5505_dsp_suspend(codec)	alc5505_dsp_halt(codec)
4039 #define alc5505_dsp_resume(codec)	alc5505_dsp_back_from_halt(codec)
4040 #endif
4041 
4042 static int alc269_suspend(struct hda_codec *codec)
4043 {
4044 	struct alc_spec *spec = codec->spec;
4045 
4046 	if (spec->has_alc5505_dsp)
4047 		alc5505_dsp_suspend(codec);
4048 
4049 	return alc_suspend(codec);
4050 }
4051 
4052 static int alc269_resume(struct hda_codec *codec)
4053 {
4054 	struct alc_spec *spec = codec->spec;
4055 
4056 	if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4057 		alc269vb_toggle_power_output(codec, 0);
4058 	if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4059 			(alc_get_coef0(codec) & 0x00ff) == 0x018) {
4060 		msleep(150);
4061 	}
4062 
4063 	codec->patch_ops.init(codec);
4064 
4065 	if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4066 		alc269vb_toggle_power_output(codec, 1);
4067 	if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
4068 			(alc_get_coef0(codec) & 0x00ff) == 0x017) {
4069 		msleep(200);
4070 	}
4071 
4072 	snd_hda_regmap_sync(codec);
4073 	hda_call_check_power_status(codec, 0x01);
4074 
4075 	/* on some machine, the BIOS will clear the codec gpio data when enter
4076 	 * suspend, and won't restore the data after resume, so we restore it
4077 	 * in the driver.
4078 	 */
4079 	if (spec->gpio_data)
4080 		alc_write_gpio_data(codec);
4081 
4082 	if (spec->has_alc5505_dsp)
4083 		alc5505_dsp_resume(codec);
4084 
4085 	return 0;
4086 }
4087 
4088 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
4089 						 const struct hda_fixup *fix, int action)
4090 {
4091 	struct alc_spec *spec = codec->spec;
4092 
4093 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
4094 		spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4095 }
4096 
4097 static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4098 						 const struct hda_fixup *fix,
4099 						 int action)
4100 {
4101 	unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4102 	unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4103 
4104 	if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4105 		snd_hda_codec_set_pincfg(codec, 0x19,
4106 			(cfg_headphone & ~AC_DEFCFG_DEVICE) |
4107 			(AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4108 }
4109 
4110 static void alc269_fixup_hweq(struct hda_codec *codec,
4111 			       const struct hda_fixup *fix, int action)
4112 {
4113 	if (action == HDA_FIXUP_ACT_INIT)
4114 		alc_update_coef_idx(codec, 0x1e, 0, 0x80);
4115 }
4116 
4117 static void alc269_fixup_headset_mic(struct hda_codec *codec,
4118 				       const struct hda_fixup *fix, int action)
4119 {
4120 	struct alc_spec *spec = codec->spec;
4121 
4122 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
4123 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4124 }
4125 
4126 static void alc271_fixup_dmic(struct hda_codec *codec,
4127 			      const struct hda_fixup *fix, int action)
4128 {
4129 	static const struct hda_verb verbs[] = {
4130 		{0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4131 		{0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4132 		{}
4133 	};
4134 	unsigned int cfg;
4135 
4136 	if (strcmp(codec->core.chip_name, "ALC271X") &&
4137 	    strcmp(codec->core.chip_name, "ALC269VB"))
4138 		return;
4139 	cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4140 	if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4141 		snd_hda_sequence_write(codec, verbs);
4142 }
4143 
4144 /* Fix the speaker amp after resume, etc */
4145 static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4146 					  const struct hda_fixup *fix,
4147 					  int action)
4148 {
4149 	if (action == HDA_FIXUP_ACT_INIT)
4150 		alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4151 }
4152 
4153 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4154 				 const struct hda_fixup *fix, int action)
4155 {
4156 	struct alc_spec *spec = codec->spec;
4157 
4158 	if (action != HDA_FIXUP_ACT_PROBE)
4159 		return;
4160 
4161 	/* Due to a hardware problem on Lenovo Ideadpad, we need to
4162 	 * fix the sample rate of analog I/O to 44.1kHz
4163 	 */
4164 	spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4165 	spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
4166 }
4167 
4168 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4169 				     const struct hda_fixup *fix, int action)
4170 {
4171 	/* The digital-mic unit sends PDM (differential signal) instead of
4172 	 * the standard PCM, thus you can't record a valid mono stream as is.
4173 	 * Below is a workaround specific to ALC269 to control the dmic
4174 	 * signal source as mono.
4175 	 */
4176 	if (action == HDA_FIXUP_ACT_INIT)
4177 		alc_update_coef_idx(codec, 0x07, 0, 0x80);
4178 }
4179 
4180 static void alc269_quanta_automute(struct hda_codec *codec)
4181 {
4182 	snd_hda_gen_update_outputs(codec);
4183 
4184 	alc_write_coef_idx(codec, 0x0c, 0x680);
4185 	alc_write_coef_idx(codec, 0x0c, 0x480);
4186 }
4187 
4188 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4189 				     const struct hda_fixup *fix, int action)
4190 {
4191 	struct alc_spec *spec = codec->spec;
4192 	if (action != HDA_FIXUP_ACT_PROBE)
4193 		return;
4194 	spec->gen.automute_hook = alc269_quanta_automute;
4195 }
4196 
4197 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
4198 					 struct hda_jack_callback *jack)
4199 {
4200 	struct alc_spec *spec = codec->spec;
4201 	int vref;
4202 	msleep(200);
4203 	snd_hda_gen_hp_automute(codec, jack);
4204 
4205 	vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4206 	msleep(100);
4207 	snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4208 			    vref);
4209 	msleep(500);
4210 	snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4211 			    vref);
4212 }
4213 
4214 /*
4215  * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4216  */
4217 struct hda_alc298_mbxinit {
4218 	unsigned char value_0x23;
4219 	unsigned char value_0x25;
4220 };
4221 
4222 static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4223 					 const struct hda_alc298_mbxinit *initval,
4224 					 bool first)
4225 {
4226 	snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4227 	alc_write_coef_idx(codec, 0x26, 0xb000);
4228 
4229 	if (first)
4230 		snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4231 
4232 	snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4233 	alc_write_coef_idx(codec, 0x26, 0xf000);
4234 	alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4235 
4236 	if (initval->value_0x23 != 0x1e)
4237 		alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4238 
4239 	snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4240 	snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4241 }
4242 
4243 static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4244 					   const struct hda_fixup *fix,
4245 					   int action)
4246 {
4247 	/* Initialization magic */
4248 	static const struct hda_alc298_mbxinit dac_init[] = {
4249 		{0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4250 		{0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4251 		{0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4252 		{0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4253 		{0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4254 		{0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4255 		{0x2f, 0x00},
4256 		{0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4257 		{0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4258 		{0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4259 		{}
4260 	};
4261 	const struct hda_alc298_mbxinit *seq;
4262 
4263 	if (action != HDA_FIXUP_ACT_INIT)
4264 		return;
4265 
4266 	/* Start */
4267 	snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4268 	snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4269 	alc_write_coef_idx(codec, 0x26, 0xf000);
4270 	alc_write_coef_idx(codec, 0x22, 0x31);
4271 	alc_write_coef_idx(codec, 0x23, 0x0b);
4272 	alc_write_coef_idx(codec, 0x25, 0x00);
4273 	snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4274 	snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4275 
4276 	for (seq = dac_init; seq->value_0x23; seq++)
4277 		alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4278 }
4279 
4280 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4281 				     const struct hda_fixup *fix, int action)
4282 {
4283 	struct alc_spec *spec = codec->spec;
4284 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4285 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4286 		spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4287 	}
4288 }
4289 
4290 static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4291 				bool polarity, bool on)
4292 {
4293 	unsigned int pinval;
4294 
4295 	if (!pin)
4296 		return;
4297 	if (polarity)
4298 		on = !on;
4299 	pinval = snd_hda_codec_get_pin_target(codec, pin);
4300 	pinval &= ~AC_PINCTL_VREFEN;
4301 	pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4302 	/* temporarily power up/down for setting VREF */
4303 	snd_hda_power_up_pm(codec);
4304 	snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4305 	snd_hda_power_down_pm(codec);
4306 }
4307 
4308 /* update mute-LED according to the speaker mute state via mic VREF pin */
4309 static int vref_mute_led_set(struct led_classdev *led_cdev,
4310 			     enum led_brightness brightness)
4311 {
4312 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4313 	struct alc_spec *spec = codec->spec;
4314 
4315 	alc_update_vref_led(codec, spec->mute_led_nid,
4316 			    spec->mute_led_polarity, brightness);
4317 	return 0;
4318 }
4319 
4320 /* Make sure the led works even in runtime suspend */
4321 static unsigned int led_power_filter(struct hda_codec *codec,
4322 						  hda_nid_t nid,
4323 						  unsigned int power_state)
4324 {
4325 	struct alc_spec *spec = codec->spec;
4326 
4327 	if (power_state != AC_PWRST_D3 || nid == 0 ||
4328 	    (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
4329 		return power_state;
4330 
4331 	/* Set pin ctl again, it might have just been set to 0 */
4332 	snd_hda_set_pin_ctl(codec, nid,
4333 			    snd_hda_codec_get_pin_target(codec, nid));
4334 
4335 	return snd_hda_gen_path_power_filter(codec, nid, power_state);
4336 }
4337 
4338 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4339 				     const struct hda_fixup *fix, int action)
4340 {
4341 	struct alc_spec *spec = codec->spec;
4342 	const struct dmi_device *dev = NULL;
4343 
4344 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
4345 		return;
4346 
4347 	while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4348 		int pol, pin;
4349 		if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4350 			continue;
4351 		if (pin < 0x0a || pin >= 0x10)
4352 			break;
4353 		spec->mute_led_polarity = pol;
4354 		spec->mute_led_nid = pin - 0x0a + 0x18;
4355 		snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4356 		codec->power_filter = led_power_filter;
4357 		codec_dbg(codec,
4358 			  "Detected mute LED for %x:%d\n", spec->mute_led_nid,
4359 			   spec->mute_led_polarity);
4360 		break;
4361 	}
4362 }
4363 
4364 static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4365 					  const struct hda_fixup *fix,
4366 					  int action, hda_nid_t pin)
4367 {
4368 	struct alc_spec *spec = codec->spec;
4369 
4370 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4371 		spec->mute_led_polarity = 0;
4372 		spec->mute_led_nid = pin;
4373 		snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
4374 		codec->power_filter = led_power_filter;
4375 	}
4376 }
4377 
4378 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4379 				const struct hda_fixup *fix, int action)
4380 {
4381 	alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4382 }
4383 
4384 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4385 				const struct hda_fixup *fix, int action)
4386 {
4387 	alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
4388 }
4389 
4390 static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4391 				const struct hda_fixup *fix, int action)
4392 {
4393 	alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
4394 }
4395 
4396 /* update LED status via GPIO */
4397 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
4398 				int polarity, bool enabled)
4399 {
4400 	if (polarity)
4401 		enabled = !enabled;
4402 	alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
4403 }
4404 
4405 /* turn on/off mute LED via GPIO per vmaster hook */
4406 static int gpio_mute_led_set(struct led_classdev *led_cdev,
4407 			     enum led_brightness brightness)
4408 {
4409 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4410 	struct alc_spec *spec = codec->spec;
4411 
4412 	alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
4413 			    spec->mute_led_polarity, !brightness);
4414 	return 0;
4415 }
4416 
4417 /* turn on/off mic-mute LED via GPIO per capture hook */
4418 static int micmute_led_set(struct led_classdev *led_cdev,
4419 			   enum led_brightness brightness)
4420 {
4421 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4422 	struct alc_spec *spec = codec->spec;
4423 
4424 	alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
4425 			    spec->micmute_led_polarity, !brightness);
4426 	return 0;
4427 }
4428 
4429 /* setup mute and mic-mute GPIO bits, add hooks appropriately */
4430 static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4431 				  int action,
4432 				  unsigned int mute_mask,
4433 				  unsigned int micmute_mask)
4434 {
4435 	struct alc_spec *spec = codec->spec;
4436 
4437 	alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4438 
4439 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
4440 		return;
4441 	if (mute_mask) {
4442 		spec->gpio_mute_led_mask = mute_mask;
4443 		snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
4444 	}
4445 	if (micmute_mask) {
4446 		spec->gpio_mic_led_mask = micmute_mask;
4447 		snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
4448 	}
4449 }
4450 
4451 static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4452 				const struct hda_fixup *fix, int action)
4453 {
4454 	alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4455 }
4456 
4457 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
4458 				const struct hda_fixup *fix, int action)
4459 {
4460 	alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4461 }
4462 
4463 static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4464 				const struct hda_fixup *fix, int action)
4465 {
4466 	alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
4467 }
4468 
4469 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4470 				const struct hda_fixup *fix, int action)
4471 {
4472 	alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
4473 }
4474 
4475 static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4476 				const struct hda_fixup *fix, int action)
4477 {
4478 	alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4479 }
4480 
4481 static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4482 				const struct hda_fixup *fix, int action)
4483 {
4484 	struct alc_spec *spec = codec->spec;
4485 
4486 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
4487 		spec->micmute_led_polarity = 1;
4488 	alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4489 }
4490 
4491 /* turn on/off mic-mute LED per capture hook via VREF change */
4492 static int vref_micmute_led_set(struct led_classdev *led_cdev,
4493 				enum led_brightness brightness)
4494 {
4495 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4496 	struct alc_spec *spec = codec->spec;
4497 
4498 	alc_update_vref_led(codec, spec->cap_mute_led_nid,
4499 			    spec->micmute_led_polarity, brightness);
4500 	return 0;
4501 }
4502 
4503 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4504 				const struct hda_fixup *fix, int action)
4505 {
4506 	struct alc_spec *spec = codec->spec;
4507 
4508 	alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4509 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4510 		/* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4511 		 * enable headphone amp
4512 		 */
4513 		spec->gpio_mask |= 0x10;
4514 		spec->gpio_dir |= 0x10;
4515 		spec->cap_mute_led_nid = 0x18;
4516 		snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4517 		codec->power_filter = led_power_filter;
4518 	}
4519 }
4520 
4521 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4522 				   const struct hda_fixup *fix, int action)
4523 {
4524 	struct alc_spec *spec = codec->spec;
4525 
4526 	alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
4527 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4528 		spec->cap_mute_led_nid = 0x18;
4529 		snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4530 		codec->power_filter = led_power_filter;
4531 	}
4532 }
4533 
4534 /* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4535  * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4536  */
4537 static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4538 				     const struct hda_fixup *fix, int action)
4539 {
4540 	struct alc_spec *spec = codec->spec;
4541 
4542 	switch (action) {
4543 	case HDA_FIXUP_ACT_PRE_PROBE:
4544 		spec->gpio_mask |= 0x01;
4545 		spec->gpio_dir |= 0x01;
4546 		break;
4547 	case HDA_FIXUP_ACT_INIT:
4548 		/* need to toggle GPIO to enable the amp */
4549 		alc_update_gpio_data(codec, 0x01, true);
4550 		msleep(100);
4551 		alc_update_gpio_data(codec, 0x01, false);
4552 		break;
4553 	}
4554 }
4555 
4556 /* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4557 static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4558 				    struct hda_codec *codec,
4559 				    struct snd_pcm_substream *substream,
4560 				    int action)
4561 {
4562 	switch (action) {
4563 	case HDA_GEN_PCM_ACT_PREPARE:
4564 		alc_update_gpio_data(codec, 0x04, true);
4565 		break;
4566 	case HDA_GEN_PCM_ACT_CLEANUP:
4567 		alc_update_gpio_data(codec, 0x04, false);
4568 		break;
4569 	}
4570 }
4571 
4572 static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4573 				      const struct hda_fixup *fix,
4574 				      int action)
4575 {
4576 	struct alc_spec *spec = codec->spec;
4577 
4578 	if (action == HDA_FIXUP_ACT_PROBE) {
4579 		spec->gpio_mask |= 0x04;
4580 		spec->gpio_dir |= 0x04;
4581 		spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4582 	}
4583 }
4584 
4585 static void alc_update_coef_led(struct hda_codec *codec,
4586 				struct alc_coef_led *led,
4587 				bool polarity, bool on)
4588 {
4589 	if (polarity)
4590 		on = !on;
4591 	/* temporarily power up/down for setting COEF bit */
4592 	alc_update_coef_idx(codec, led->idx, led->mask,
4593 			    on ? led->on : led->off);
4594 }
4595 
4596 /* update mute-LED according to the speaker mute state via COEF bit */
4597 static int coef_mute_led_set(struct led_classdev *led_cdev,
4598 			     enum led_brightness brightness)
4599 {
4600 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4601 	struct alc_spec *spec = codec->spec;
4602 
4603 	alc_update_coef_led(codec, &spec->mute_led_coef,
4604 			    spec->mute_led_polarity, brightness);
4605 	return 0;
4606 }
4607 
4608 static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4609 					  const struct hda_fixup *fix,
4610 					  int action)
4611 {
4612 	struct alc_spec *spec = codec->spec;
4613 
4614 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4615 		spec->mute_led_polarity = 0;
4616 		spec->mute_led_coef.idx = 0x0b;
4617 		spec->mute_led_coef.mask = 1 << 3;
4618 		spec->mute_led_coef.on = 1 << 3;
4619 		spec->mute_led_coef.off = 0;
4620 		snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4621 	}
4622 }
4623 
4624 static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4625 					  const struct hda_fixup *fix,
4626 					  int action)
4627 {
4628 	struct alc_spec *spec = codec->spec;
4629 
4630 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4631 		spec->mute_led_polarity = 0;
4632 		spec->mute_led_coef.idx = 0x34;
4633 		spec->mute_led_coef.mask = 1 << 5;
4634 		spec->mute_led_coef.on = 0;
4635 		spec->mute_led_coef.off = 1 << 5;
4636 		snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4637 	}
4638 }
4639 
4640 static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4641 					  const struct hda_fixup *fix, int action)
4642 {
4643 	struct alc_spec *spec = codec->spec;
4644 
4645 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4646 		spec->mute_led_polarity = 0;
4647 		spec->mute_led_coef.idx = 0x07;
4648 		spec->mute_led_coef.mask = 1;
4649 		spec->mute_led_coef.on = 1;
4650 		spec->mute_led_coef.off = 0;
4651 		snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4652 	}
4653 }
4654 
4655 static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4656 					  const struct hda_fixup *fix,
4657 					  int action)
4658 {
4659 	struct alc_spec *spec = codec->spec;
4660 
4661 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4662 		spec->mute_led_polarity = 0;
4663 		spec->mute_led_coef.idx = 0x0b;
4664 		spec->mute_led_coef.mask = 3 << 2;
4665 		spec->mute_led_coef.on = 2 << 2;
4666 		spec->mute_led_coef.off = 1 << 2;
4667 		snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4668 	}
4669 }
4670 
4671 /* turn on/off mic-mute LED per capture hook by coef bit */
4672 static int coef_micmute_led_set(struct led_classdev *led_cdev,
4673 				enum led_brightness brightness)
4674 {
4675 	struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4676 	struct alc_spec *spec = codec->spec;
4677 
4678 	alc_update_coef_led(codec, &spec->mic_led_coef,
4679 			    spec->micmute_led_polarity, brightness);
4680 	return 0;
4681 }
4682 
4683 static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4684 				const struct hda_fixup *fix, int action)
4685 {
4686 	struct alc_spec *spec = codec->spec;
4687 
4688 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4689 		spec->mic_led_coef.idx = 0x19;
4690 		spec->mic_led_coef.mask = 1 << 13;
4691 		spec->mic_led_coef.on = 1 << 13;
4692 		spec->mic_led_coef.off = 0;
4693 		snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4694 	}
4695 }
4696 
4697 static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4698 				const struct hda_fixup *fix, int action)
4699 {
4700 	struct alc_spec *spec = codec->spec;
4701 
4702 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
4703 		spec->micmute_led_polarity = 1;
4704 	alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4705 }
4706 
4707 static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4708 				const struct hda_fixup *fix, int action)
4709 {
4710 	struct alc_spec *spec = codec->spec;
4711 
4712 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4713 		spec->mic_led_coef.idx = 0x35;
4714 		spec->mic_led_coef.mask = 3 << 2;
4715 		spec->mic_led_coef.on = 2 << 2;
4716 		spec->mic_led_coef.off = 1 << 2;
4717 		snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
4718 	}
4719 }
4720 
4721 static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4722 				const struct hda_fixup *fix, int action)
4723 {
4724 	alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4725 	alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4726 }
4727 
4728 static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4729 				const struct hda_fixup *fix, int action)
4730 {
4731 	alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4732 	alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4733 }
4734 
4735 static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4736 				const struct hda_fixup *fix, int action)
4737 {
4738 	alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4739 	alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4740 }
4741 
4742 static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4743 				const struct hda_fixup *fix, int action)
4744 {
4745 	struct alc_spec *spec = codec->spec;
4746 
4747 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4748 		spec->cap_mute_led_nid = 0x1a;
4749 		snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4750 		codec->power_filter = led_power_filter;
4751 	}
4752 }
4753 
4754 static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4755 				const struct hda_fixup *fix, int action)
4756 {
4757 	alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4758 	alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4759 }
4760 
4761 static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4762 						  const unsigned short coefs[2])
4763 {
4764 	alc_write_coef_idx(codec, 0x23, coefs[0]);
4765 	alc_write_coef_idx(codec, 0x25, coefs[1]);
4766 	alc_write_coef_idx(codec, 0x26, 0xb011);
4767 }
4768 
4769 struct alc298_samsung_amp_desc {
4770 	unsigned char nid;
4771 	unsigned short init_seq[2][2];
4772 };
4773 
4774 static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4775 				     const struct hda_fixup *fix, int action)
4776 {
4777 	int i, j;
4778 	static const unsigned short init_seq[][2] = {
4779 		{ 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4780 		{ 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4781 		{ 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4782 		{ 0x41, 0x07 }, { 0x400, 0x1 }
4783 	};
4784 	static const struct alc298_samsung_amp_desc amps[] = {
4785 		{ 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4786 		{ 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4787 	};
4788 
4789 	if (action != HDA_FIXUP_ACT_INIT)
4790 		return;
4791 
4792 	for (i = 0; i < ARRAY_SIZE(amps); i++) {
4793 		alc_write_coef_idx(codec, 0x22, amps[i].nid);
4794 
4795 		for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4796 			alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4797 
4798 		for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4799 			alc298_samsung_write_coef_pack(codec, init_seq[j]);
4800 	}
4801 }
4802 
4803 #if IS_REACHABLE(CONFIG_INPUT)
4804 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4805 				   struct hda_jack_callback *event)
4806 {
4807 	struct alc_spec *spec = codec->spec;
4808 
4809 	/* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4810 	   send both key on and key off event for every interrupt. */
4811 	input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
4812 	input_sync(spec->kb_dev);
4813 	input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
4814 	input_sync(spec->kb_dev);
4815 }
4816 
4817 static int alc_register_micmute_input_device(struct hda_codec *codec)
4818 {
4819 	struct alc_spec *spec = codec->spec;
4820 	int i;
4821 
4822 	spec->kb_dev = input_allocate_device();
4823 	if (!spec->kb_dev) {
4824 		codec_err(codec, "Out of memory (input_allocate_device)\n");
4825 		return -ENOMEM;
4826 	}
4827 
4828 	spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4829 
4830 	spec->kb_dev->name = "Microphone Mute Button";
4831 	spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
4832 	spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4833 	spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4834 	spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4835 	for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4836 		set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
4837 
4838 	if (input_register_device(spec->kb_dev)) {
4839 		codec_err(codec, "input_register_device failed\n");
4840 		input_free_device(spec->kb_dev);
4841 		spec->kb_dev = NULL;
4842 		return -ENOMEM;
4843 	}
4844 
4845 	return 0;
4846 }
4847 
4848 /* GPIO1 = set according to SKU external amp
4849  * GPIO2 = mic mute hotkey
4850  * GPIO3 = mute LED
4851  * GPIO4 = mic mute LED
4852  */
4853 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4854 					     const struct hda_fixup *fix, int action)
4855 {
4856 	struct alc_spec *spec = codec->spec;
4857 
4858 	alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4859 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4860 		spec->init_amp = ALC_INIT_DEFAULT;
4861 		if (alc_register_micmute_input_device(codec) != 0)
4862 			return;
4863 
4864 		spec->gpio_mask |= 0x06;
4865 		spec->gpio_dir |= 0x02;
4866 		spec->gpio_data |= 0x02;
4867 		snd_hda_codec_write_cache(codec, codec->core.afg, 0,
4868 					  AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
4869 		snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
4870 						    gpio2_mic_hotkey_event);
4871 		return;
4872 	}
4873 
4874 	if (!spec->kb_dev)
4875 		return;
4876 
4877 	switch (action) {
4878 	case HDA_FIXUP_ACT_FREE:
4879 		input_unregister_device(spec->kb_dev);
4880 		spec->kb_dev = NULL;
4881 	}
4882 }
4883 
4884 /* Line2 = mic mute hotkey
4885  * GPIO2 = mic mute LED
4886  */
4887 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4888 					     const struct hda_fixup *fix, int action)
4889 {
4890 	struct alc_spec *spec = codec->spec;
4891 
4892 	alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4893 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4894 		spec->init_amp = ALC_INIT_DEFAULT;
4895 		if (alc_register_micmute_input_device(codec) != 0)
4896 			return;
4897 
4898 		snd_hda_jack_detect_enable_callback(codec, 0x1b,
4899 						    gpio2_mic_hotkey_event);
4900 		return;
4901 	}
4902 
4903 	if (!spec->kb_dev)
4904 		return;
4905 
4906 	switch (action) {
4907 	case HDA_FIXUP_ACT_FREE:
4908 		input_unregister_device(spec->kb_dev);
4909 		spec->kb_dev = NULL;
4910 	}
4911 }
4912 #else /* INPUT */
4913 #define alc280_fixup_hp_gpio2_mic_hotkey	NULL
4914 #define alc233_fixup_lenovo_line2_mic_hotkey	NULL
4915 #endif /* INPUT */
4916 
4917 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4918 				const struct hda_fixup *fix, int action)
4919 {
4920 	struct alc_spec *spec = codec->spec;
4921 
4922 	alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
4923 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4924 		spec->cap_mute_led_nid = 0x18;
4925 		snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4926 	}
4927 }
4928 
4929 static const struct coef_fw alc225_pre_hsmode[] = {
4930 	UPDATE_COEF(0x4a, 1<<8, 0),
4931 	UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4932 	UPDATE_COEF(0x63, 3<<14, 3<<14),
4933 	UPDATE_COEF(0x4a, 3<<4, 2<<4),
4934 	UPDATE_COEF(0x4a, 3<<10, 3<<10),
4935 	UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4936 	UPDATE_COEF(0x4a, 3<<10, 0),
4937 	{}
4938 };
4939 
4940 static void alc_headset_mode_unplugged(struct hda_codec *codec)
4941 {
4942 	struct alc_spec *spec = codec->spec;
4943 	static const struct coef_fw coef0255[] = {
4944 		WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
4945 		WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4946 		UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4947 		WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4948 		WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4949 		{}
4950 	};
4951 	static const struct coef_fw coef0256[] = {
4952 		WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4953 		WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4954 		WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4955 		WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4956 		UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4957 		{}
4958 	};
4959 	static const struct coef_fw coef0233[] = {
4960 		WRITE_COEF(0x1b, 0x0c0b),
4961 		WRITE_COEF(0x45, 0xc429),
4962 		UPDATE_COEF(0x35, 0x4000, 0),
4963 		WRITE_COEF(0x06, 0x2104),
4964 		WRITE_COEF(0x1a, 0x0001),
4965 		WRITE_COEF(0x26, 0x0004),
4966 		WRITE_COEF(0x32, 0x42a3),
4967 		{}
4968 	};
4969 	static const struct coef_fw coef0288[] = {
4970 		UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4971 		UPDATE_COEF(0x50, 0x2000, 0x2000),
4972 		UPDATE_COEF(0x56, 0x0006, 0x0006),
4973 		UPDATE_COEF(0x66, 0x0008, 0),
4974 		UPDATE_COEF(0x67, 0x2000, 0),
4975 		{}
4976 	};
4977 	static const struct coef_fw coef0298[] = {
4978 		UPDATE_COEF(0x19, 0x1300, 0x0300),
4979 		{}
4980 	};
4981 	static const struct coef_fw coef0292[] = {
4982 		WRITE_COEF(0x76, 0x000e),
4983 		WRITE_COEF(0x6c, 0x2400),
4984 		WRITE_COEF(0x18, 0x7308),
4985 		WRITE_COEF(0x6b, 0xc429),
4986 		{}
4987 	};
4988 	static const struct coef_fw coef0293[] = {
4989 		UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4990 		UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4991 		UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4992 		UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4993 		WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4994 		UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4995 		{}
4996 	};
4997 	static const struct coef_fw coef0668[] = {
4998 		WRITE_COEF(0x15, 0x0d40),
4999 		WRITE_COEF(0xb7, 0x802b),
5000 		{}
5001 	};
5002 	static const struct coef_fw coef0225[] = {
5003 		UPDATE_COEF(0x63, 3<<14, 0),
5004 		{}
5005 	};
5006 	static const struct coef_fw coef0274[] = {
5007 		UPDATE_COEF(0x4a, 0x0100, 0),
5008 		UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5009 		UPDATE_COEF(0x6b, 0xf000, 0x5000),
5010 		UPDATE_COEF(0x4a, 0x0010, 0),
5011 		UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5012 		WRITE_COEF(0x45, 0x5289),
5013 		UPDATE_COEF(0x4a, 0x0c00, 0),
5014 		{}
5015 	};
5016 
5017 	if (spec->no_internal_mic_pin) {
5018 		alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5019 		return;
5020 	}
5021 
5022 	switch (codec->core.vendor_id) {
5023 	case 0x10ec0255:
5024 		alc_process_coef_fw(codec, coef0255);
5025 		break;
5026 	case 0x10ec0230:
5027 	case 0x10ec0236:
5028 	case 0x10ec0256:
5029 	case 0x19e58326:
5030 		alc_process_coef_fw(codec, coef0256);
5031 		break;
5032 	case 0x10ec0234:
5033 	case 0x10ec0274:
5034 	case 0x10ec0294:
5035 		alc_process_coef_fw(codec, coef0274);
5036 		break;
5037 	case 0x10ec0233:
5038 	case 0x10ec0283:
5039 		alc_process_coef_fw(codec, coef0233);
5040 		break;
5041 	case 0x10ec0286:
5042 	case 0x10ec0288:
5043 		alc_process_coef_fw(codec, coef0288);
5044 		break;
5045 	case 0x10ec0298:
5046 		alc_process_coef_fw(codec, coef0298);
5047 		alc_process_coef_fw(codec, coef0288);
5048 		break;
5049 	case 0x10ec0292:
5050 		alc_process_coef_fw(codec, coef0292);
5051 		break;
5052 	case 0x10ec0293:
5053 		alc_process_coef_fw(codec, coef0293);
5054 		break;
5055 	case 0x10ec0668:
5056 		alc_process_coef_fw(codec, coef0668);
5057 		break;
5058 	case 0x10ec0215:
5059 	case 0x10ec0225:
5060 	case 0x10ec0285:
5061 	case 0x10ec0295:
5062 	case 0x10ec0289:
5063 	case 0x10ec0299:
5064 		alc_process_coef_fw(codec, alc225_pre_hsmode);
5065 		alc_process_coef_fw(codec, coef0225);
5066 		break;
5067 	case 0x10ec0867:
5068 		alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5069 		break;
5070 	}
5071 	codec_dbg(codec, "Headset jack set to unplugged mode.\n");
5072 }
5073 
5074 
5075 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5076 				    hda_nid_t mic_pin)
5077 {
5078 	static const struct coef_fw coef0255[] = {
5079 		WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5080 		WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5081 		{}
5082 	};
5083 	static const struct coef_fw coef0256[] = {
5084 		UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5085 		WRITE_COEFEX(0x57, 0x03, 0x09a3),
5086 		WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5087 		{}
5088 	};
5089 	static const struct coef_fw coef0233[] = {
5090 		UPDATE_COEF(0x35, 0, 1<<14),
5091 		WRITE_COEF(0x06, 0x2100),
5092 		WRITE_COEF(0x1a, 0x0021),
5093 		WRITE_COEF(0x26, 0x008c),
5094 		{}
5095 	};
5096 	static const struct coef_fw coef0288[] = {
5097 		UPDATE_COEF(0x4f, 0x00c0, 0),
5098 		UPDATE_COEF(0x50, 0x2000, 0),
5099 		UPDATE_COEF(0x56, 0x0006, 0),
5100 		UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5101 		UPDATE_COEF(0x66, 0x0008, 0x0008),
5102 		UPDATE_COEF(0x67, 0x2000, 0x2000),
5103 		{}
5104 	};
5105 	static const struct coef_fw coef0292[] = {
5106 		WRITE_COEF(0x19, 0xa208),
5107 		WRITE_COEF(0x2e, 0xacf0),
5108 		{}
5109 	};
5110 	static const struct coef_fw coef0293[] = {
5111 		UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5112 		UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5113 		UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5114 		{}
5115 	};
5116 	static const struct coef_fw coef0688[] = {
5117 		WRITE_COEF(0xb7, 0x802b),
5118 		WRITE_COEF(0xb5, 0x1040),
5119 		UPDATE_COEF(0xc3, 0, 1<<12),
5120 		{}
5121 	};
5122 	static const struct coef_fw coef0225[] = {
5123 		UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5124 		UPDATE_COEF(0x4a, 3<<4, 2<<4),
5125 		UPDATE_COEF(0x63, 3<<14, 0),
5126 		{}
5127 	};
5128 	static const struct coef_fw coef0274[] = {
5129 		UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5130 		UPDATE_COEF(0x4a, 0x0010, 0),
5131 		UPDATE_COEF(0x6b, 0xf000, 0),
5132 		{}
5133 	};
5134 
5135 	switch (codec->core.vendor_id) {
5136 	case 0x10ec0255:
5137 		alc_write_coef_idx(codec, 0x45, 0xc489);
5138 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5139 		alc_process_coef_fw(codec, coef0255);
5140 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5141 		break;
5142 	case 0x10ec0230:
5143 	case 0x10ec0236:
5144 	case 0x10ec0256:
5145 	case 0x19e58326:
5146 		alc_write_coef_idx(codec, 0x45, 0xc489);
5147 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5148 		alc_process_coef_fw(codec, coef0256);
5149 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5150 		break;
5151 	case 0x10ec0234:
5152 	case 0x10ec0274:
5153 	case 0x10ec0294:
5154 		alc_write_coef_idx(codec, 0x45, 0x4689);
5155 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5156 		alc_process_coef_fw(codec, coef0274);
5157 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5158 		break;
5159 	case 0x10ec0233:
5160 	case 0x10ec0283:
5161 		alc_write_coef_idx(codec, 0x45, 0xc429);
5162 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5163 		alc_process_coef_fw(codec, coef0233);
5164 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5165 		break;
5166 	case 0x10ec0286:
5167 	case 0x10ec0288:
5168 	case 0x10ec0298:
5169 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5170 		alc_process_coef_fw(codec, coef0288);
5171 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5172 		break;
5173 	case 0x10ec0292:
5174 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5175 		alc_process_coef_fw(codec, coef0292);
5176 		break;
5177 	case 0x10ec0293:
5178 		/* Set to TRS mode */
5179 		alc_write_coef_idx(codec, 0x45, 0xc429);
5180 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5181 		alc_process_coef_fw(codec, coef0293);
5182 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5183 		break;
5184 	case 0x10ec0867:
5185 		alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
5186 		fallthrough;
5187 	case 0x10ec0221:
5188 	case 0x10ec0662:
5189 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5190 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5191 		break;
5192 	case 0x10ec0668:
5193 		alc_write_coef_idx(codec, 0x11, 0x0001);
5194 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5195 		alc_process_coef_fw(codec, coef0688);
5196 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5197 		break;
5198 	case 0x10ec0215:
5199 	case 0x10ec0225:
5200 	case 0x10ec0285:
5201 	case 0x10ec0295:
5202 	case 0x10ec0289:
5203 	case 0x10ec0299:
5204 		alc_process_coef_fw(codec, alc225_pre_hsmode);
5205 		alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5206 		snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5207 		alc_process_coef_fw(codec, coef0225);
5208 		snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5209 		break;
5210 	}
5211 	codec_dbg(codec, "Headset jack set to mic-in mode.\n");
5212 }
5213 
5214 static void alc_headset_mode_default(struct hda_codec *codec)
5215 {
5216 	static const struct coef_fw coef0225[] = {
5217 		UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5218 		UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5219 		UPDATE_COEF(0x49, 3<<8, 0<<8),
5220 		UPDATE_COEF(0x4a, 3<<4, 3<<4),
5221 		UPDATE_COEF(0x63, 3<<14, 0),
5222 		UPDATE_COEF(0x67, 0xf000, 0x3000),
5223 		{}
5224 	};
5225 	static const struct coef_fw coef0255[] = {
5226 		WRITE_COEF(0x45, 0xc089),
5227 		WRITE_COEF(0x45, 0xc489),
5228 		WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5229 		WRITE_COEF(0x49, 0x0049),
5230 		{}
5231 	};
5232 	static const struct coef_fw coef0256[] = {
5233 		WRITE_COEF(0x45, 0xc489),
5234 		WRITE_COEFEX(0x57, 0x03, 0x0da3),
5235 		WRITE_COEF(0x49, 0x0049),
5236 		UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5237 		WRITE_COEF(0x06, 0x6100),
5238 		{}
5239 	};
5240 	static const struct coef_fw coef0233[] = {
5241 		WRITE_COEF(0x06, 0x2100),
5242 		WRITE_COEF(0x32, 0x4ea3),
5243 		{}
5244 	};
5245 	static const struct coef_fw coef0288[] = {
5246 		UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5247 		UPDATE_COEF(0x50, 0x2000, 0x2000),
5248 		UPDATE_COEF(0x56, 0x0006, 0x0006),
5249 		UPDATE_COEF(0x66, 0x0008, 0),
5250 		UPDATE_COEF(0x67, 0x2000, 0),
5251 		{}
5252 	};
5253 	static const struct coef_fw coef0292[] = {
5254 		WRITE_COEF(0x76, 0x000e),
5255 		WRITE_COEF(0x6c, 0x2400),
5256 		WRITE_COEF(0x6b, 0xc429),
5257 		WRITE_COEF(0x18, 0x7308),
5258 		{}
5259 	};
5260 	static const struct coef_fw coef0293[] = {
5261 		UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5262 		WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5263 		UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5264 		{}
5265 	};
5266 	static const struct coef_fw coef0688[] = {
5267 		WRITE_COEF(0x11, 0x0041),
5268 		WRITE_COEF(0x15, 0x0d40),
5269 		WRITE_COEF(0xb7, 0x802b),
5270 		{}
5271 	};
5272 	static const struct coef_fw coef0274[] = {
5273 		WRITE_COEF(0x45, 0x4289),
5274 		UPDATE_COEF(0x4a, 0x0010, 0x0010),
5275 		UPDATE_COEF(0x6b, 0x0f00, 0),
5276 		UPDATE_COEF(0x49, 0x0300, 0x0300),
5277 		{}
5278 	};
5279 
5280 	switch (codec->core.vendor_id) {
5281 	case 0x10ec0215:
5282 	case 0x10ec0225:
5283 	case 0x10ec0285:
5284 	case 0x10ec0295:
5285 	case 0x10ec0289:
5286 	case 0x10ec0299:
5287 		alc_process_coef_fw(codec, alc225_pre_hsmode);
5288 		alc_process_coef_fw(codec, coef0225);
5289 		break;
5290 	case 0x10ec0255:
5291 		alc_process_coef_fw(codec, coef0255);
5292 		break;
5293 	case 0x10ec0230:
5294 	case 0x10ec0236:
5295 	case 0x10ec0256:
5296 	case 0x19e58326:
5297 		alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5298 		alc_write_coef_idx(codec, 0x45, 0xc089);
5299 		msleep(50);
5300 		alc_process_coef_fw(codec, coef0256);
5301 		break;
5302 	case 0x10ec0234:
5303 	case 0x10ec0274:
5304 	case 0x10ec0294:
5305 		alc_process_coef_fw(codec, coef0274);
5306 		break;
5307 	case 0x10ec0233:
5308 	case 0x10ec0283:
5309 		alc_process_coef_fw(codec, coef0233);
5310 		break;
5311 	case 0x10ec0286:
5312 	case 0x10ec0288:
5313 	case 0x10ec0298:
5314 		alc_process_coef_fw(codec, coef0288);
5315 		break;
5316 	case 0x10ec0292:
5317 		alc_process_coef_fw(codec, coef0292);
5318 		break;
5319 	case 0x10ec0293:
5320 		alc_process_coef_fw(codec, coef0293);
5321 		break;
5322 	case 0x10ec0668:
5323 		alc_process_coef_fw(codec, coef0688);
5324 		break;
5325 	case 0x10ec0867:
5326 		alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5327 		break;
5328 	}
5329 	codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
5330 }
5331 
5332 /* Iphone type */
5333 static void alc_headset_mode_ctia(struct hda_codec *codec)
5334 {
5335 	int val;
5336 
5337 	static const struct coef_fw coef0255[] = {
5338 		WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5339 		WRITE_COEF(0x1b, 0x0c2b),
5340 		WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5341 		{}
5342 	};
5343 	static const struct coef_fw coef0256[] = {
5344 		WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5345 		WRITE_COEF(0x1b, 0x0e6b),
5346 		{}
5347 	};
5348 	static const struct coef_fw coef0233[] = {
5349 		WRITE_COEF(0x45, 0xd429),
5350 		WRITE_COEF(0x1b, 0x0c2b),
5351 		WRITE_COEF(0x32, 0x4ea3),
5352 		{}
5353 	};
5354 	static const struct coef_fw coef0288[] = {
5355 		UPDATE_COEF(0x50, 0x2000, 0x2000),
5356 		UPDATE_COEF(0x56, 0x0006, 0x0006),
5357 		UPDATE_COEF(0x66, 0x0008, 0),
5358 		UPDATE_COEF(0x67, 0x2000, 0),
5359 		{}
5360 	};
5361 	static const struct coef_fw coef0292[] = {
5362 		WRITE_COEF(0x6b, 0xd429),
5363 		WRITE_COEF(0x76, 0x0008),
5364 		WRITE_COEF(0x18, 0x7388),
5365 		{}
5366 	};
5367 	static const struct coef_fw coef0293[] = {
5368 		WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5369 		UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5370 		{}
5371 	};
5372 	static const struct coef_fw coef0688[] = {
5373 		WRITE_COEF(0x11, 0x0001),
5374 		WRITE_COEF(0x15, 0x0d60),
5375 		WRITE_COEF(0xc3, 0x0000),
5376 		{}
5377 	};
5378 	static const struct coef_fw coef0225_1[] = {
5379 		UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5380 		UPDATE_COEF(0x63, 3<<14, 2<<14),
5381 		{}
5382 	};
5383 	static const struct coef_fw coef0225_2[] = {
5384 		UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5385 		UPDATE_COEF(0x63, 3<<14, 1<<14),
5386 		{}
5387 	};
5388 
5389 	switch (codec->core.vendor_id) {
5390 	case 0x10ec0255:
5391 		alc_process_coef_fw(codec, coef0255);
5392 		break;
5393 	case 0x10ec0230:
5394 	case 0x10ec0236:
5395 	case 0x10ec0256:
5396 	case 0x19e58326:
5397 		alc_process_coef_fw(codec, coef0256);
5398 		break;
5399 	case 0x10ec0234:
5400 	case 0x10ec0274:
5401 	case 0x10ec0294:
5402 		alc_write_coef_idx(codec, 0x45, 0xd689);
5403 		break;
5404 	case 0x10ec0233:
5405 	case 0x10ec0283:
5406 		alc_process_coef_fw(codec, coef0233);
5407 		break;
5408 	case 0x10ec0298:
5409 		val = alc_read_coef_idx(codec, 0x50);
5410 		if (val & (1 << 12)) {
5411 			alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5412 			alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5413 			msleep(300);
5414 		} else {
5415 			alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5416 			alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5417 			msleep(300);
5418 		}
5419 		break;
5420 	case 0x10ec0286:
5421 	case 0x10ec0288:
5422 		alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5423 		msleep(300);
5424 		alc_process_coef_fw(codec, coef0288);
5425 		break;
5426 	case 0x10ec0292:
5427 		alc_process_coef_fw(codec, coef0292);
5428 		break;
5429 	case 0x10ec0293:
5430 		alc_process_coef_fw(codec, coef0293);
5431 		break;
5432 	case 0x10ec0668:
5433 		alc_process_coef_fw(codec, coef0688);
5434 		break;
5435 	case 0x10ec0215:
5436 	case 0x10ec0225:
5437 	case 0x10ec0285:
5438 	case 0x10ec0295:
5439 	case 0x10ec0289:
5440 	case 0x10ec0299:
5441 		val = alc_read_coef_idx(codec, 0x45);
5442 		if (val & (1 << 9))
5443 			alc_process_coef_fw(codec, coef0225_2);
5444 		else
5445 			alc_process_coef_fw(codec, coef0225_1);
5446 		break;
5447 	case 0x10ec0867:
5448 		alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5449 		break;
5450 	}
5451 	codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
5452 }
5453 
5454 /* Nokia type */
5455 static void alc_headset_mode_omtp(struct hda_codec *codec)
5456 {
5457 	static const struct coef_fw coef0255[] = {
5458 		WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5459 		WRITE_COEF(0x1b, 0x0c2b),
5460 		WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5461 		{}
5462 	};
5463 	static const struct coef_fw coef0256[] = {
5464 		WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5465 		WRITE_COEF(0x1b, 0x0e6b),
5466 		{}
5467 	};
5468 	static const struct coef_fw coef0233[] = {
5469 		WRITE_COEF(0x45, 0xe429),
5470 		WRITE_COEF(0x1b, 0x0c2b),
5471 		WRITE_COEF(0x32, 0x4ea3),
5472 		{}
5473 	};
5474 	static const struct coef_fw coef0288[] = {
5475 		UPDATE_COEF(0x50, 0x2000, 0x2000),
5476 		UPDATE_COEF(0x56, 0x0006, 0x0006),
5477 		UPDATE_COEF(0x66, 0x0008, 0),
5478 		UPDATE_COEF(0x67, 0x2000, 0),
5479 		{}
5480 	};
5481 	static const struct coef_fw coef0292[] = {
5482 		WRITE_COEF(0x6b, 0xe429),
5483 		WRITE_COEF(0x76, 0x0008),
5484 		WRITE_COEF(0x18, 0x7388),
5485 		{}
5486 	};
5487 	static const struct coef_fw coef0293[] = {
5488 		WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5489 		UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5490 		{}
5491 	};
5492 	static const struct coef_fw coef0688[] = {
5493 		WRITE_COEF(0x11, 0x0001),
5494 		WRITE_COEF(0x15, 0x0d50),
5495 		WRITE_COEF(0xc3, 0x0000),
5496 		{}
5497 	};
5498 	static const struct coef_fw coef0225[] = {
5499 		UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5500 		UPDATE_COEF(0x63, 3<<14, 2<<14),
5501 		{}
5502 	};
5503 
5504 	switch (codec->core.vendor_id) {
5505 	case 0x10ec0255:
5506 		alc_process_coef_fw(codec, coef0255);
5507 		break;
5508 	case 0x10ec0230:
5509 	case 0x10ec0236:
5510 	case 0x10ec0256:
5511 	case 0x19e58326:
5512 		alc_process_coef_fw(codec, coef0256);
5513 		break;
5514 	case 0x10ec0234:
5515 	case 0x10ec0274:
5516 	case 0x10ec0294:
5517 		alc_write_coef_idx(codec, 0x45, 0xe689);
5518 		break;
5519 	case 0x10ec0233:
5520 	case 0x10ec0283:
5521 		alc_process_coef_fw(codec, coef0233);
5522 		break;
5523 	case 0x10ec0298:
5524 		alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
5525 		alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5526 		msleep(300);
5527 		break;
5528 	case 0x10ec0286:
5529 	case 0x10ec0288:
5530 		alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5531 		msleep(300);
5532 		alc_process_coef_fw(codec, coef0288);
5533 		break;
5534 	case 0x10ec0292:
5535 		alc_process_coef_fw(codec, coef0292);
5536 		break;
5537 	case 0x10ec0293:
5538 		alc_process_coef_fw(codec, coef0293);
5539 		break;
5540 	case 0x10ec0668:
5541 		alc_process_coef_fw(codec, coef0688);
5542 		break;
5543 	case 0x10ec0215:
5544 	case 0x10ec0225:
5545 	case 0x10ec0285:
5546 	case 0x10ec0295:
5547 	case 0x10ec0289:
5548 	case 0x10ec0299:
5549 		alc_process_coef_fw(codec, coef0225);
5550 		break;
5551 	}
5552 	codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
5553 }
5554 
5555 static void alc_determine_headset_type(struct hda_codec *codec)
5556 {
5557 	int val;
5558 	bool is_ctia = false;
5559 	struct alc_spec *spec = codec->spec;
5560 	static const struct coef_fw coef0255[] = {
5561 		WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5562 		WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5563  conteol) */
5564 		{}
5565 	};
5566 	static const struct coef_fw coef0288[] = {
5567 		UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5568 		{}
5569 	};
5570 	static const struct coef_fw coef0298[] = {
5571 		UPDATE_COEF(0x50, 0x2000, 0x2000),
5572 		UPDATE_COEF(0x56, 0x0006, 0x0006),
5573 		UPDATE_COEF(0x66, 0x0008, 0),
5574 		UPDATE_COEF(0x67, 0x2000, 0),
5575 		UPDATE_COEF(0x19, 0x1300, 0x1300),
5576 		{}
5577 	};
5578 	static const struct coef_fw coef0293[] = {
5579 		UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5580 		WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5581 		{}
5582 	};
5583 	static const struct coef_fw coef0688[] = {
5584 		WRITE_COEF(0x11, 0x0001),
5585 		WRITE_COEF(0xb7, 0x802b),
5586 		WRITE_COEF(0x15, 0x0d60),
5587 		WRITE_COEF(0xc3, 0x0c00),
5588 		{}
5589 	};
5590 	static const struct coef_fw coef0274[] = {
5591 		UPDATE_COEF(0x4a, 0x0010, 0),
5592 		UPDATE_COEF(0x4a, 0x8000, 0),
5593 		WRITE_COEF(0x45, 0xd289),
5594 		UPDATE_COEF(0x49, 0x0300, 0x0300),
5595 		{}
5596 	};
5597 
5598 	if (spec->no_internal_mic_pin) {
5599 		alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5600 		return;
5601 	}
5602 
5603 	switch (codec->core.vendor_id) {
5604 	case 0x10ec0255:
5605 		alc_process_coef_fw(codec, coef0255);
5606 		msleep(300);
5607 		val = alc_read_coef_idx(codec, 0x46);
5608 		is_ctia = (val & 0x0070) == 0x0070;
5609 		break;
5610 	case 0x10ec0230:
5611 	case 0x10ec0236:
5612 	case 0x10ec0256:
5613 	case 0x19e58326:
5614 		alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5615 		alc_write_coef_idx(codec, 0x06, 0x6104);
5616 		alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5617 
5618 		snd_hda_codec_write(codec, 0x21, 0,
5619 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5620 		msleep(80);
5621 		snd_hda_codec_write(codec, 0x21, 0,
5622 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5623 
5624 		alc_process_coef_fw(codec, coef0255);
5625 		msleep(300);
5626 		val = alc_read_coef_idx(codec, 0x46);
5627 		is_ctia = (val & 0x0070) == 0x0070;
5628 
5629 		alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5630 		alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5631 
5632 		snd_hda_codec_write(codec, 0x21, 0,
5633 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5634 		msleep(80);
5635 		snd_hda_codec_write(codec, 0x21, 0,
5636 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5637 		break;
5638 	case 0x10ec0234:
5639 	case 0x10ec0274:
5640 	case 0x10ec0294:
5641 		alc_process_coef_fw(codec, coef0274);
5642 		msleep(850);
5643 		val = alc_read_coef_idx(codec, 0x46);
5644 		is_ctia = (val & 0x00f0) == 0x00f0;
5645 		break;
5646 	case 0x10ec0233:
5647 	case 0x10ec0283:
5648 		alc_write_coef_idx(codec, 0x45, 0xd029);
5649 		msleep(300);
5650 		val = alc_read_coef_idx(codec, 0x46);
5651 		is_ctia = (val & 0x0070) == 0x0070;
5652 		break;
5653 	case 0x10ec0298:
5654 		snd_hda_codec_write(codec, 0x21, 0,
5655 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5656 		msleep(100);
5657 		snd_hda_codec_write(codec, 0x21, 0,
5658 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5659 		msleep(200);
5660 
5661 		val = alc_read_coef_idx(codec, 0x50);
5662 		if (val & (1 << 12)) {
5663 			alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5664 			alc_process_coef_fw(codec, coef0288);
5665 			msleep(350);
5666 			val = alc_read_coef_idx(codec, 0x50);
5667 			is_ctia = (val & 0x0070) == 0x0070;
5668 		} else {
5669 			alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5670 			alc_process_coef_fw(codec, coef0288);
5671 			msleep(350);
5672 			val = alc_read_coef_idx(codec, 0x50);
5673 			is_ctia = (val & 0x0070) == 0x0070;
5674 		}
5675 		alc_process_coef_fw(codec, coef0298);
5676 		snd_hda_codec_write(codec, 0x21, 0,
5677 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5678 		msleep(75);
5679 		snd_hda_codec_write(codec, 0x21, 0,
5680 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5681 		break;
5682 	case 0x10ec0286:
5683 	case 0x10ec0288:
5684 		alc_process_coef_fw(codec, coef0288);
5685 		msleep(350);
5686 		val = alc_read_coef_idx(codec, 0x50);
5687 		is_ctia = (val & 0x0070) == 0x0070;
5688 		break;
5689 	case 0x10ec0292:
5690 		alc_write_coef_idx(codec, 0x6b, 0xd429);
5691 		msleep(300);
5692 		val = alc_read_coef_idx(codec, 0x6c);
5693 		is_ctia = (val & 0x001c) == 0x001c;
5694 		break;
5695 	case 0x10ec0293:
5696 		alc_process_coef_fw(codec, coef0293);
5697 		msleep(300);
5698 		val = alc_read_coef_idx(codec, 0x46);
5699 		is_ctia = (val & 0x0070) == 0x0070;
5700 		break;
5701 	case 0x10ec0668:
5702 		alc_process_coef_fw(codec, coef0688);
5703 		msleep(300);
5704 		val = alc_read_coef_idx(codec, 0xbe);
5705 		is_ctia = (val & 0x1c02) == 0x1c02;
5706 		break;
5707 	case 0x10ec0215:
5708 	case 0x10ec0225:
5709 	case 0x10ec0285:
5710 	case 0x10ec0295:
5711 	case 0x10ec0289:
5712 	case 0x10ec0299:
5713 		snd_hda_codec_write(codec, 0x21, 0,
5714 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5715 		msleep(80);
5716 		snd_hda_codec_write(codec, 0x21, 0,
5717 			    AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5718 
5719 		alc_process_coef_fw(codec, alc225_pre_hsmode);
5720 		alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5721 		val = alc_read_coef_idx(codec, 0x45);
5722 		if (val & (1 << 9)) {
5723 			alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5724 			alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5725 			msleep(800);
5726 			val = alc_read_coef_idx(codec, 0x46);
5727 			is_ctia = (val & 0x00f0) == 0x00f0;
5728 		} else {
5729 			alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5730 			alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5731 			msleep(800);
5732 			val = alc_read_coef_idx(codec, 0x46);
5733 			is_ctia = (val & 0x00f0) == 0x00f0;
5734 		}
5735 		alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5736 		alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5737 		alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
5738 
5739 		snd_hda_codec_write(codec, 0x21, 0,
5740 			    AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5741 		msleep(80);
5742 		snd_hda_codec_write(codec, 0x21, 0,
5743 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5744 		break;
5745 	case 0x10ec0867:
5746 		is_ctia = true;
5747 		break;
5748 	}
5749 
5750 	codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
5751 		    is_ctia ? "yes" : "no");
5752 	spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5753 }
5754 
5755 static void alc_update_headset_mode(struct hda_codec *codec)
5756 {
5757 	struct alc_spec *spec = codec->spec;
5758 
5759 	hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
5760 	hda_nid_t hp_pin = alc_get_hp_pin(spec);
5761 
5762 	int new_headset_mode;
5763 
5764 	if (!snd_hda_jack_detect(codec, hp_pin))
5765 		new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5766 	else if (mux_pin == spec->headset_mic_pin)
5767 		new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5768 	else if (mux_pin == spec->headphone_mic_pin)
5769 		new_headset_mode = ALC_HEADSET_MODE_MIC;
5770 	else
5771 		new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5772 
5773 	if (new_headset_mode == spec->current_headset_mode) {
5774 		snd_hda_gen_update_outputs(codec);
5775 		return;
5776 	}
5777 
5778 	switch (new_headset_mode) {
5779 	case ALC_HEADSET_MODE_UNPLUGGED:
5780 		alc_headset_mode_unplugged(codec);
5781 		spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5782 		spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5783 		spec->gen.hp_jack_present = false;
5784 		break;
5785 	case ALC_HEADSET_MODE_HEADSET:
5786 		if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5787 			alc_determine_headset_type(codec);
5788 		if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5789 			alc_headset_mode_ctia(codec);
5790 		else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5791 			alc_headset_mode_omtp(codec);
5792 		spec->gen.hp_jack_present = true;
5793 		break;
5794 	case ALC_HEADSET_MODE_MIC:
5795 		alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5796 		spec->gen.hp_jack_present = false;
5797 		break;
5798 	case ALC_HEADSET_MODE_HEADPHONE:
5799 		alc_headset_mode_default(codec);
5800 		spec->gen.hp_jack_present = true;
5801 		break;
5802 	}
5803 	if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5804 		snd_hda_set_pin_ctl_cache(codec, hp_pin,
5805 					  AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
5806 		if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
5807 			snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5808 						  PIN_VREFHIZ);
5809 	}
5810 	spec->current_headset_mode = new_headset_mode;
5811 
5812 	snd_hda_gen_update_outputs(codec);
5813 }
5814 
5815 static void alc_update_headset_mode_hook(struct hda_codec *codec,
5816 					 struct snd_kcontrol *kcontrol,
5817 					 struct snd_ctl_elem_value *ucontrol)
5818 {
5819 	alc_update_headset_mode(codec);
5820 }
5821 
5822 static void alc_update_headset_jack_cb(struct hda_codec *codec,
5823 				       struct hda_jack_callback *jack)
5824 {
5825 	snd_hda_gen_hp_automute(codec, jack);
5826 	alc_update_headset_mode(codec);
5827 }
5828 
5829 static void alc_probe_headset_mode(struct hda_codec *codec)
5830 {
5831 	int i;
5832 	struct alc_spec *spec = codec->spec;
5833 	struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5834 
5835 	/* Find mic pins */
5836 	for (i = 0; i < cfg->num_inputs; i++) {
5837 		if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5838 			spec->headset_mic_pin = cfg->inputs[i].pin;
5839 		if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5840 			spec->headphone_mic_pin = cfg->inputs[i].pin;
5841 	}
5842 
5843 	WARN_ON(spec->gen.cap_sync_hook);
5844 	spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5845 	spec->gen.automute_hook = alc_update_headset_mode;
5846 	spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5847 }
5848 
5849 static void alc_fixup_headset_mode(struct hda_codec *codec,
5850 				const struct hda_fixup *fix, int action)
5851 {
5852 	struct alc_spec *spec = codec->spec;
5853 
5854 	switch (action) {
5855 	case HDA_FIXUP_ACT_PRE_PROBE:
5856 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5857 		break;
5858 	case HDA_FIXUP_ACT_PROBE:
5859 		alc_probe_headset_mode(codec);
5860 		break;
5861 	case HDA_FIXUP_ACT_INIT:
5862 		if (is_s3_resume(codec) || is_s4_resume(codec)) {
5863 			spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5864 			spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5865 		}
5866 		alc_update_headset_mode(codec);
5867 		break;
5868 	}
5869 }
5870 
5871 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5872 				const struct hda_fixup *fix, int action)
5873 {
5874 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5875 		struct alc_spec *spec = codec->spec;
5876 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5877 	}
5878 	else
5879 		alc_fixup_headset_mode(codec, fix, action);
5880 }
5881 
5882 static void alc255_set_default_jack_type(struct hda_codec *codec)
5883 {
5884 	/* Set to iphone type */
5885 	static const struct coef_fw alc255fw[] = {
5886 		WRITE_COEF(0x1b, 0x880b),
5887 		WRITE_COEF(0x45, 0xd089),
5888 		WRITE_COEF(0x1b, 0x080b),
5889 		WRITE_COEF(0x46, 0x0004),
5890 		WRITE_COEF(0x1b, 0x0c0b),
5891 		{}
5892 	};
5893 	static const struct coef_fw alc256fw[] = {
5894 		WRITE_COEF(0x1b, 0x884b),
5895 		WRITE_COEF(0x45, 0xd089),
5896 		WRITE_COEF(0x1b, 0x084b),
5897 		WRITE_COEF(0x46, 0x0004),
5898 		WRITE_COEF(0x1b, 0x0c4b),
5899 		{}
5900 	};
5901 	switch (codec->core.vendor_id) {
5902 	case 0x10ec0255:
5903 		alc_process_coef_fw(codec, alc255fw);
5904 		break;
5905 	case 0x10ec0230:
5906 	case 0x10ec0236:
5907 	case 0x10ec0256:
5908 	case 0x19e58326:
5909 		alc_process_coef_fw(codec, alc256fw);
5910 		break;
5911 	}
5912 	msleep(30);
5913 }
5914 
5915 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5916 				const struct hda_fixup *fix, int action)
5917 {
5918 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5919 		alc255_set_default_jack_type(codec);
5920 	}
5921 	alc_fixup_headset_mode(codec, fix, action);
5922 }
5923 
5924 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5925 				const struct hda_fixup *fix, int action)
5926 {
5927 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5928 		struct alc_spec *spec = codec->spec;
5929 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5930 		alc255_set_default_jack_type(codec);
5931 	}
5932 	else
5933 		alc_fixup_headset_mode(codec, fix, action);
5934 }
5935 
5936 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5937 				       struct hda_jack_callback *jack)
5938 {
5939 	struct alc_spec *spec = codec->spec;
5940 
5941 	alc_update_headset_jack_cb(codec, jack);
5942 	/* Headset Mic enable or disable, only for Dell Dino */
5943 	alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
5944 }
5945 
5946 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5947 				const struct hda_fixup *fix, int action)
5948 {
5949 	alc_fixup_headset_mode(codec, fix, action);
5950 	if (action == HDA_FIXUP_ACT_PROBE) {
5951 		struct alc_spec *spec = codec->spec;
5952 		/* toggled via hp_automute_hook */
5953 		spec->gpio_mask |= 0x40;
5954 		spec->gpio_dir |= 0x40;
5955 		spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5956 	}
5957 }
5958 
5959 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5960 					const struct hda_fixup *fix, int action)
5961 {
5962 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5963 		struct alc_spec *spec = codec->spec;
5964 		spec->gen.auto_mute_via_amp = 1;
5965 	}
5966 }
5967 
5968 static void alc_fixup_no_shutup(struct hda_codec *codec,
5969 				const struct hda_fixup *fix, int action)
5970 {
5971 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5972 		struct alc_spec *spec = codec->spec;
5973 		spec->no_shutup_pins = 1;
5974 	}
5975 }
5976 
5977 static void alc_fixup_disable_aamix(struct hda_codec *codec,
5978 				    const struct hda_fixup *fix, int action)
5979 {
5980 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5981 		struct alc_spec *spec = codec->spec;
5982 		/* Disable AA-loopback as it causes white noise */
5983 		spec->gen.mixer_nid = 0;
5984 	}
5985 }
5986 
5987 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5988 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5989 				  const struct hda_fixup *fix, int action)
5990 {
5991 	static const struct hda_pintbl pincfgs[] = {
5992 		{ 0x16, 0x21211010 }, /* dock headphone */
5993 		{ 0x19, 0x21a11010 }, /* dock mic */
5994 		{ }
5995 	};
5996 	struct alc_spec *spec = codec->spec;
5997 
5998 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5999 		spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6000 		codec->power_save_node = 0; /* avoid click noises */
6001 		snd_hda_apply_pincfgs(codec, pincfgs);
6002 	}
6003 }
6004 
6005 static void alc_fixup_tpt470_dock(struct hda_codec *codec,
6006 				  const struct hda_fixup *fix, int action)
6007 {
6008 	static const struct hda_pintbl pincfgs[] = {
6009 		{ 0x17, 0x21211010 }, /* dock headphone */
6010 		{ 0x19, 0x21a11010 }, /* dock mic */
6011 		{ }
6012 	};
6013 	struct alc_spec *spec = codec->spec;
6014 
6015 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6016 		spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6017 		snd_hda_apply_pincfgs(codec, pincfgs);
6018 	} else if (action == HDA_FIXUP_ACT_INIT) {
6019 		/* Enable DOCK device */
6020 		snd_hda_codec_write(codec, 0x17, 0,
6021 			    AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6022 		/* Enable DOCK device */
6023 		snd_hda_codec_write(codec, 0x19, 0,
6024 			    AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6025 	}
6026 }
6027 
6028 static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6029 				  const struct hda_fixup *fix, int action)
6030 {
6031 	/* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6032 	 * the speaker output becomes too low by some reason on Thinkpads with
6033 	 * ALC298 codec
6034 	 */
6035 	static const hda_nid_t preferred_pairs[] = {
6036 		0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6037 		0
6038 	};
6039 	struct alc_spec *spec = codec->spec;
6040 
6041 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
6042 		spec->gen.preferred_dacs = preferred_pairs;
6043 }
6044 
6045 static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6046 				   const struct hda_fixup *fix, int action)
6047 {
6048 	static const hda_nid_t preferred_pairs[] = {
6049 		0x17, 0x02, 0x21, 0x03, 0
6050 	};
6051 	struct alc_spec *spec = codec->spec;
6052 
6053 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
6054 		spec->gen.preferred_dacs = preferred_pairs;
6055 }
6056 
6057 static void alc_shutup_dell_xps13(struct hda_codec *codec)
6058 {
6059 	struct alc_spec *spec = codec->spec;
6060 	int hp_pin = alc_get_hp_pin(spec);
6061 
6062 	/* Prevent pop noises when headphones are plugged in */
6063 	snd_hda_codec_write(codec, hp_pin, 0,
6064 			    AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6065 	msleep(20);
6066 }
6067 
6068 static void alc_fixup_dell_xps13(struct hda_codec *codec,
6069 				const struct hda_fixup *fix, int action)
6070 {
6071 	struct alc_spec *spec = codec->spec;
6072 	struct hda_input_mux *imux = &spec->gen.input_mux;
6073 	int i;
6074 
6075 	switch (action) {
6076 	case HDA_FIXUP_ACT_PRE_PROBE:
6077 		/* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6078 		 * it causes a click noise at start up
6079 		 */
6080 		snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6081 		spec->shutup = alc_shutup_dell_xps13;
6082 		break;
6083 	case HDA_FIXUP_ACT_PROBE:
6084 		/* Make the internal mic the default input source. */
6085 		for (i = 0; i < imux->num_items; i++) {
6086 			if (spec->gen.imux_pins[i] == 0x12) {
6087 				spec->gen.cur_mux[0] = i;
6088 				break;
6089 			}
6090 		}
6091 		break;
6092 	}
6093 }
6094 
6095 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6096 				const struct hda_fixup *fix, int action)
6097 {
6098 	struct alc_spec *spec = codec->spec;
6099 
6100 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6101 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6102 		spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
6103 
6104 		/* Disable boost for mic-in permanently. (This code is only called
6105 		   from quirks that guarantee that the headphone is at NID 0x1b.) */
6106 		snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6107 		snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
6108 	} else
6109 		alc_fixup_headset_mode(codec, fix, action);
6110 }
6111 
6112 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6113 				const struct hda_fixup *fix, int action)
6114 {
6115 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6116 		alc_write_coef_idx(codec, 0xc4, 0x8000);
6117 		alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
6118 		snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6119 	}
6120 	alc_fixup_headset_mode(codec, fix, action);
6121 }
6122 
6123 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6124 static int find_ext_mic_pin(struct hda_codec *codec)
6125 {
6126 	struct alc_spec *spec = codec->spec;
6127 	struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6128 	hda_nid_t nid;
6129 	unsigned int defcfg;
6130 	int i;
6131 
6132 	for (i = 0; i < cfg->num_inputs; i++) {
6133 		if (cfg->inputs[i].type != AUTO_PIN_MIC)
6134 			continue;
6135 		nid = cfg->inputs[i].pin;
6136 		defcfg = snd_hda_codec_get_pincfg(codec, nid);
6137 		if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6138 			continue;
6139 		return nid;
6140 	}
6141 
6142 	return 0;
6143 }
6144 
6145 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
6146 				    const struct hda_fixup *fix,
6147 				    int action)
6148 {
6149 	struct alc_spec *spec = codec->spec;
6150 
6151 	if (action == HDA_FIXUP_ACT_PROBE) {
6152 		int mic_pin = find_ext_mic_pin(codec);
6153 		int hp_pin = alc_get_hp_pin(spec);
6154 
6155 		if (snd_BUG_ON(!mic_pin || !hp_pin))
6156 			return;
6157 		snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
6158 	}
6159 }
6160 
6161 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6162 					     const struct hda_fixup *fix,
6163 					     int action)
6164 {
6165 	struct alc_spec *spec = codec->spec;
6166 	struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6167 	int i;
6168 
6169 	/* The mic boosts on level 2 and 3 are too noisy
6170 	   on the internal mic input.
6171 	   Therefore limit the boost to 0 or 1. */
6172 
6173 	if (action != HDA_FIXUP_ACT_PROBE)
6174 		return;
6175 
6176 	for (i = 0; i < cfg->num_inputs; i++) {
6177 		hda_nid_t nid = cfg->inputs[i].pin;
6178 		unsigned int defcfg;
6179 		if (cfg->inputs[i].type != AUTO_PIN_MIC)
6180 			continue;
6181 		defcfg = snd_hda_codec_get_pincfg(codec, nid);
6182 		if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6183 			continue;
6184 
6185 		snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6186 					  (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6187 					  (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6188 					  (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6189 					  (0 << AC_AMPCAP_MUTE_SHIFT));
6190 	}
6191 }
6192 
6193 static void alc283_hp_automute_hook(struct hda_codec *codec,
6194 				    struct hda_jack_callback *jack)
6195 {
6196 	struct alc_spec *spec = codec->spec;
6197 	int vref;
6198 
6199 	msleep(200);
6200 	snd_hda_gen_hp_automute(codec, jack);
6201 
6202 	vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6203 
6204 	msleep(600);
6205 	snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6206 			    vref);
6207 }
6208 
6209 static void alc283_fixup_chromebook(struct hda_codec *codec,
6210 				    const struct hda_fixup *fix, int action)
6211 {
6212 	struct alc_spec *spec = codec->spec;
6213 
6214 	switch (action) {
6215 	case HDA_FIXUP_ACT_PRE_PROBE:
6216 		snd_hda_override_wcaps(codec, 0x03, 0);
6217 		/* Disable AA-loopback as it causes white noise */
6218 		spec->gen.mixer_nid = 0;
6219 		break;
6220 	case HDA_FIXUP_ACT_INIT:
6221 		/* MIC2-VREF control */
6222 		/* Set to manual mode */
6223 		alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6224 		/* Enable Line1 input control by verb */
6225 		alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
6226 		break;
6227 	}
6228 }
6229 
6230 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6231 				    const struct hda_fixup *fix, int action)
6232 {
6233 	struct alc_spec *spec = codec->spec;
6234 
6235 	switch (action) {
6236 	case HDA_FIXUP_ACT_PRE_PROBE:
6237 		spec->gen.hp_automute_hook = alc283_hp_automute_hook;
6238 		break;
6239 	case HDA_FIXUP_ACT_INIT:
6240 		/* MIC2-VREF control */
6241 		/* Set to manual mode */
6242 		alc_update_coef_idx(codec, 0x06, 0x000c, 0);
6243 		break;
6244 	}
6245 }
6246 
6247 /* mute tablet speaker pin (0x14) via dock plugging in addition */
6248 static void asus_tx300_automute(struct hda_codec *codec)
6249 {
6250 	struct alc_spec *spec = codec->spec;
6251 	snd_hda_gen_update_outputs(codec);
6252 	if (snd_hda_jack_detect(codec, 0x1b))
6253 		spec->gen.mute_bits |= (1ULL << 0x14);
6254 }
6255 
6256 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6257 				    const struct hda_fixup *fix, int action)
6258 {
6259 	struct alc_spec *spec = codec->spec;
6260 	static const struct hda_pintbl dock_pins[] = {
6261 		{ 0x1b, 0x21114000 }, /* dock speaker pin */
6262 		{}
6263 	};
6264 
6265 	switch (action) {
6266 	case HDA_FIXUP_ACT_PRE_PROBE:
6267 		spec->init_amp = ALC_INIT_DEFAULT;
6268 		/* TX300 needs to set up GPIO2 for the speaker amp */
6269 		alc_setup_gpio(codec, 0x04);
6270 		snd_hda_apply_pincfgs(codec, dock_pins);
6271 		spec->gen.auto_mute_via_amp = 1;
6272 		spec->gen.automute_hook = asus_tx300_automute;
6273 		snd_hda_jack_detect_enable_callback(codec, 0x1b,
6274 						    snd_hda_gen_hp_automute);
6275 		break;
6276 	case HDA_FIXUP_ACT_PROBE:
6277 		spec->init_amp = ALC_INIT_DEFAULT;
6278 		break;
6279 	case HDA_FIXUP_ACT_BUILD:
6280 		/* this is a bit tricky; give more sane names for the main
6281 		 * (tablet) speaker and the dock speaker, respectively
6282 		 */
6283 		rename_ctl(codec, "Speaker Playback Switch",
6284 			   "Dock Speaker Playback Switch");
6285 		rename_ctl(codec, "Bass Speaker Playback Switch",
6286 			   "Speaker Playback Switch");
6287 		break;
6288 	}
6289 }
6290 
6291 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6292 				       const struct hda_fixup *fix, int action)
6293 {
6294 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6295 		/* DAC node 0x03 is giving mono output. We therefore want to
6296 		   make sure 0x14 (front speaker) and 0x15 (headphones) use the
6297 		   stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
6298 		static const hda_nid_t conn1[] = { 0x0c };
6299 		snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6300 		snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
6301 	}
6302 }
6303 
6304 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6305 					const struct hda_fixup *fix, int action)
6306 {
6307 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6308 		/* The speaker is routed to the Node 0x06 by a mistake, as a result
6309 		   we can't adjust the speaker's volume since this node does not has
6310 		   Amp-out capability. we change the speaker's route to:
6311 		   Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6312 		   Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6313 		   speaker's volume now. */
6314 
6315 		static const hda_nid_t conn1[] = { 0x0c };
6316 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
6317 	}
6318 }
6319 
6320 /* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6321 static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6322 				      const struct hda_fixup *fix, int action)
6323 {
6324 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6325 		static const hda_nid_t conn[] = { 0x02, 0x03 };
6326 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6327 	}
6328 }
6329 
6330 /* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6331 static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6332 					  const struct hda_fixup *fix, int action)
6333 {
6334 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6335 		static const hda_nid_t conn[] = { 0x02 };
6336 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6337 	}
6338 }
6339 
6340 /* Hook to update amp GPIO4 for automute */
6341 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6342 					  struct hda_jack_callback *jack)
6343 {
6344 	struct alc_spec *spec = codec->spec;
6345 
6346 	snd_hda_gen_hp_automute(codec, jack);
6347 	/* mute_led_polarity is set to 0, so we pass inverted value here */
6348 	alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6349 			    !spec->gen.hp_jack_present);
6350 }
6351 
6352 /* Manage GPIOs for HP EliteBook Folio 9480m.
6353  *
6354  * GPIO4 is the headphone amplifier power control
6355  * GPIO3 is the audio output mute indicator LED
6356  */
6357 
6358 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6359 				  const struct hda_fixup *fix,
6360 				  int action)
6361 {
6362 	struct alc_spec *spec = codec->spec;
6363 
6364 	alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
6365 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6366 		/* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6367 		spec->gpio_mask |= 0x10;
6368 		spec->gpio_dir |= 0x10;
6369 		spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
6370 	}
6371 }
6372 
6373 static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6374 				   const struct hda_fixup *fix,
6375 				   int action)
6376 {
6377 	struct alc_spec *spec = codec->spec;
6378 
6379 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6380 		spec->gpio_mask |= 0x04;
6381 		spec->gpio_dir |= 0x04;
6382 		/* set data bit low */
6383 	}
6384 }
6385 
6386 /* Quirk for Thinkpad X1 7th and 8th Gen
6387  * The following fixed routing needed
6388  * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6389  * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6390  * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6391  */
6392 static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6393 					  const struct hda_fixup *fix, int action)
6394 {
6395 	static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6396 	static const hda_nid_t preferred_pairs[] = {
6397 		0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6398 	};
6399 	struct alc_spec *spec = codec->spec;
6400 
6401 	switch (action) {
6402 	case HDA_FIXUP_ACT_PRE_PROBE:
6403 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6404 		spec->gen.preferred_dacs = preferred_pairs;
6405 		break;
6406 	case HDA_FIXUP_ACT_BUILD:
6407 		/* The generic parser creates somewhat unintuitive volume ctls
6408 		 * with the fixed routing above, and the shared DAC2 may be
6409 		 * confusing for PA.
6410 		 * Rename those to unique names so that PA doesn't touch them
6411 		 * and use only Master volume.
6412 		 */
6413 		rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6414 		rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6415 		break;
6416 	}
6417 }
6418 
6419 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6420 					 const struct hda_fixup *fix,
6421 					 int action)
6422 {
6423 	alc_fixup_dual_codecs(codec, fix, action);
6424 	switch (action) {
6425 	case HDA_FIXUP_ACT_PRE_PROBE:
6426 		/* override card longname to provide a unique UCM profile */
6427 		strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6428 		break;
6429 	case HDA_FIXUP_ACT_BUILD:
6430 		/* rename Capture controls depending on the codec */
6431 		rename_ctl(codec, "Capture Volume",
6432 			   codec->addr == 0 ?
6433 			   "Rear-Panel Capture Volume" :
6434 			   "Front-Panel Capture Volume");
6435 		rename_ctl(codec, "Capture Switch",
6436 			   codec->addr == 0 ?
6437 			   "Rear-Panel Capture Switch" :
6438 			   "Front-Panel Capture Switch");
6439 		break;
6440 	}
6441 }
6442 
6443 static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6444 				      const struct hda_fixup *fix, int action)
6445 {
6446 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
6447 		return;
6448 
6449 	codec->power_save_node = 1;
6450 }
6451 
6452 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6453 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6454 				    const struct hda_fixup *fix, int action)
6455 {
6456 	struct alc_spec *spec = codec->spec;
6457 	static const hda_nid_t preferred_pairs[] = {
6458 		0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6459 		0
6460 	};
6461 
6462 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
6463 		return;
6464 
6465 	spec->gen.preferred_dacs = preferred_pairs;
6466 	spec->gen.auto_mute_via_amp = 1;
6467 	codec->power_save_node = 0;
6468 }
6469 
6470 /* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6471 static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6472 				    const struct hda_fixup *fix, int action)
6473 {
6474 	static const hda_nid_t preferred_pairs[] = {
6475 		0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6476 	};
6477 	struct alc_spec *spec = codec->spec;
6478 
6479 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6480 		spec->gen.preferred_dacs = preferred_pairs;
6481 		spec->gen.obey_preferred_dacs = 1;
6482 	}
6483 }
6484 
6485 /* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6486 static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6487 			      const struct hda_fixup *fix, int action)
6488 {
6489 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
6490 		return;
6491 
6492 	snd_hda_override_wcaps(codec, 0x03, 0);
6493 }
6494 
6495 static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6496 {
6497 	switch (codec->core.vendor_id) {
6498 	case 0x10ec0274:
6499 	case 0x10ec0294:
6500 	case 0x10ec0225:
6501 	case 0x10ec0295:
6502 	case 0x10ec0299:
6503 		alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6504 		alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6505 		break;
6506 	case 0x10ec0230:
6507 	case 0x10ec0235:
6508 	case 0x10ec0236:
6509 	case 0x10ec0255:
6510 	case 0x10ec0256:
6511 	case 0x10ec0257:
6512 	case 0x19e58326:
6513 		alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6514 		alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6515 		break;
6516 	}
6517 }
6518 
6519 static void alc295_fixup_chromebook(struct hda_codec *codec,
6520 				    const struct hda_fixup *fix, int action)
6521 {
6522 	struct alc_spec *spec = codec->spec;
6523 
6524 	switch (action) {
6525 	case HDA_FIXUP_ACT_PRE_PROBE:
6526 		spec->ultra_low_power = true;
6527 		break;
6528 	case HDA_FIXUP_ACT_INIT:
6529 		alc_combo_jack_hp_jd_restart(codec);
6530 		break;
6531 	}
6532 }
6533 
6534 static void alc256_fixup_chromebook(struct hda_codec *codec,
6535 				    const struct hda_fixup *fix, int action)
6536 {
6537 	struct alc_spec *spec = codec->spec;
6538 
6539 	switch (action) {
6540 	case HDA_FIXUP_ACT_PRE_PROBE:
6541 		spec->gen.suppress_auto_mute = 1;
6542 		spec->gen.suppress_auto_mic = 1;
6543 		spec->en_3kpull_low = false;
6544 		break;
6545 	}
6546 }
6547 
6548 static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6549 				  const struct hda_fixup *fix, int action)
6550 {
6551 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
6552 		snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6553 }
6554 
6555 
6556 static void alc294_gx502_toggle_output(struct hda_codec *codec,
6557 					struct hda_jack_callback *cb)
6558 {
6559 	/* The Windows driver sets the codec up in a very different way where
6560 	 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6561 	 */
6562 	if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6563 		alc_write_coef_idx(codec, 0x10, 0x8a20);
6564 	else
6565 		alc_write_coef_idx(codec, 0x10, 0x0a20);
6566 }
6567 
6568 static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6569 					const struct hda_fixup *fix, int action)
6570 {
6571 	/* Pin 0x21: headphones/headset mic */
6572 	if (!is_jack_detectable(codec, 0x21))
6573 		return;
6574 
6575 	switch (action) {
6576 	case HDA_FIXUP_ACT_PRE_PROBE:
6577 		snd_hda_jack_detect_enable_callback(codec, 0x21,
6578 				alc294_gx502_toggle_output);
6579 		break;
6580 	case HDA_FIXUP_ACT_INIT:
6581 		/* Make sure to start in a correct state, i.e. if
6582 		 * headphones have been plugged in before powering up the system
6583 		 */
6584 		alc294_gx502_toggle_output(codec, NULL);
6585 		break;
6586 	}
6587 }
6588 
6589 static void alc294_gu502_toggle_output(struct hda_codec *codec,
6590 				       struct hda_jack_callback *cb)
6591 {
6592 	/* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6593 	 * responsible from changes between speakers and headphones
6594 	 */
6595 	if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6596 		alc_write_coef_idx(codec, 0x10, 0x8420);
6597 	else
6598 		alc_write_coef_idx(codec, 0x10, 0x0a20);
6599 }
6600 
6601 static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6602 				  const struct hda_fixup *fix, int action)
6603 {
6604 	if (!is_jack_detectable(codec, 0x21))
6605 		return;
6606 
6607 	switch (action) {
6608 	case HDA_FIXUP_ACT_PRE_PROBE:
6609 		snd_hda_jack_detect_enable_callback(codec, 0x21,
6610 				alc294_gu502_toggle_output);
6611 		break;
6612 	case HDA_FIXUP_ACT_INIT:
6613 		alc294_gu502_toggle_output(codec, NULL);
6614 		break;
6615 	}
6616 }
6617 
6618 static void  alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6619 			      const struct hda_fixup *fix, int action)
6620 {
6621 	if (action != HDA_FIXUP_ACT_INIT)
6622 		return;
6623 
6624 	msleep(100);
6625 	alc_write_coef_idx(codec, 0x65, 0x0);
6626 }
6627 
6628 static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6629 				    const struct hda_fixup *fix, int action)
6630 {
6631 	switch (action) {
6632 	case HDA_FIXUP_ACT_INIT:
6633 		alc_combo_jack_hp_jd_restart(codec);
6634 		break;
6635 	}
6636 }
6637 
6638 static void alc_fixup_no_int_mic(struct hda_codec *codec,
6639 				    const struct hda_fixup *fix, int action)
6640 {
6641 	struct alc_spec *spec = codec->spec;
6642 
6643 	switch (action) {
6644 	case HDA_FIXUP_ACT_PRE_PROBE:
6645 		/* Mic RING SLEEVE swap for combo jack */
6646 		alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6647 		spec->no_internal_mic_pin = true;
6648 		break;
6649 	case HDA_FIXUP_ACT_INIT:
6650 		alc_combo_jack_hp_jd_restart(codec);
6651 		break;
6652 	}
6653 }
6654 
6655 /* GPIO1 = amplifier on/off
6656  * GPIO3 = mic mute LED
6657  */
6658 static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6659 					  const struct hda_fixup *fix, int action)
6660 {
6661 	static const hda_nid_t conn[] = { 0x02 };
6662 
6663 	struct alc_spec *spec = codec->spec;
6664 	static const struct hda_pintbl pincfgs[] = {
6665 		{ 0x14, 0x90170110 },  /* front/high speakers */
6666 		{ 0x17, 0x90170130 },  /* back/bass speakers */
6667 		{ }
6668 	};
6669 
6670 	//enable micmute led
6671 	alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6672 
6673 	switch (action) {
6674 	case HDA_FIXUP_ACT_PRE_PROBE:
6675 		spec->micmute_led_polarity = 1;
6676 		/* needed for amp of back speakers */
6677 		spec->gpio_mask |= 0x01;
6678 		spec->gpio_dir |= 0x01;
6679 		snd_hda_apply_pincfgs(codec, pincfgs);
6680 		/* share DAC to have unified volume control */
6681 		snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6682 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6683 		break;
6684 	case HDA_FIXUP_ACT_INIT:
6685 		/* need to toggle GPIO to enable the amp of back speakers */
6686 		alc_update_gpio_data(codec, 0x01, true);
6687 		msleep(100);
6688 		alc_update_gpio_data(codec, 0x01, false);
6689 		break;
6690 	}
6691 }
6692 
6693 static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6694 					  const struct hda_fixup *fix, int action)
6695 {
6696 	static const hda_nid_t conn[] = { 0x02 };
6697 	static const struct hda_pintbl pincfgs[] = {
6698 		{ 0x14, 0x90170110 },  /* rear speaker */
6699 		{ }
6700 	};
6701 
6702 	switch (action) {
6703 	case HDA_FIXUP_ACT_PRE_PROBE:
6704 		snd_hda_apply_pincfgs(codec, pincfgs);
6705 		/* force front speaker to DAC1 */
6706 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6707 		break;
6708 	}
6709 }
6710 
6711 static void alc285_fixup_hp_envy_x360(struct hda_codec *codec,
6712 				      const struct hda_fixup *fix,
6713 				      int action)
6714 {
6715 	static const struct coef_fw coefs[] = {
6716 		WRITE_COEF(0x08, 0x6a0c), WRITE_COEF(0x0d, 0xa023),
6717 		WRITE_COEF(0x10, 0x0320), WRITE_COEF(0x1a, 0x8c03),
6718 		WRITE_COEF(0x25, 0x1800), WRITE_COEF(0x26, 0x003a),
6719 		WRITE_COEF(0x28, 0x1dfe), WRITE_COEF(0x29, 0xb014),
6720 		WRITE_COEF(0x2b, 0x1dfe), WRITE_COEF(0x37, 0xfe15),
6721 		WRITE_COEF(0x38, 0x7909), WRITE_COEF(0x45, 0xd489),
6722 		WRITE_COEF(0x46, 0x00f4), WRITE_COEF(0x4a, 0x21e0),
6723 		WRITE_COEF(0x66, 0x03f0), WRITE_COEF(0x67, 0x1000),
6724 		WRITE_COEF(0x6e, 0x1005), { }
6725 	};
6726 
6727 	static const struct hda_pintbl pincfgs[] = {
6728 		{ 0x12, 0xb7a60130 },  /* Internal microphone*/
6729 		{ 0x14, 0x90170150 },  /* B&O soundbar speakers */
6730 		{ 0x17, 0x90170153 },  /* Side speakers */
6731 		{ 0x19, 0x03a11040 },  /* Headset microphone */
6732 		{ }
6733 	};
6734 
6735 	switch (action) {
6736 	case HDA_FIXUP_ACT_PRE_PROBE:
6737 		snd_hda_apply_pincfgs(codec, pincfgs);
6738 
6739 		/* Fixes volume control problem for side speakers */
6740 		alc295_fixup_disable_dac3(codec, fix, action);
6741 
6742 		/* Fixes no sound from headset speaker */
6743 		snd_hda_codec_amp_stereo(codec, 0x21, HDA_OUTPUT, 0, -1, 0);
6744 
6745 		/* Auto-enable headset mic when plugged */
6746 		snd_hda_jack_set_gating_jack(codec, 0x19, 0x21);
6747 
6748 		/* Headset mic volume enhancement */
6749 		snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREF50);
6750 		break;
6751 	case HDA_FIXUP_ACT_INIT:
6752 		alc_process_coef_fw(codec, coefs);
6753 		break;
6754 	case HDA_FIXUP_ACT_BUILD:
6755 		rename_ctl(codec, "Bass Speaker Playback Volume",
6756 			   "B&O-Tuned Playback Volume");
6757 		rename_ctl(codec, "Front Playback Switch",
6758 			   "B&O Soundbar Playback Switch");
6759 		rename_ctl(codec, "Bass Speaker Playback Switch",
6760 			   "Side Speaker Playback Switch");
6761 		break;
6762 	}
6763 }
6764 
6765 /* for hda_fixup_thinkpad_acpi() */
6766 #include "thinkpad_helper.c"
6767 
6768 static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6769 				    const struct hda_fixup *fix, int action)
6770 {
6771 	alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6772 	hda_fixup_thinkpad_acpi(codec, fix, action);
6773 }
6774 
6775 /* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6776 static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6777 						  const struct hda_fixup *fix,
6778 						  int action)
6779 {
6780 	struct alc_spec *spec = codec->spec;
6781 
6782 	switch (action) {
6783 	case HDA_FIXUP_ACT_PRE_PROBE:
6784 		spec->gen.suppress_auto_mute = 1;
6785 		break;
6786 	}
6787 }
6788 
6789 static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data)
6790 {
6791 	struct hda_codec *cdc = data;
6792 	struct alc_spec *spec = cdc->spec;
6793 
6794 	codec_info(cdc, "ACPI Notification %d\n", event);
6795 
6796 	hda_component_acpi_device_notify(spec->comps, ARRAY_SIZE(spec->comps),
6797 					 handle, event, data);
6798 }
6799 
6800 static int comp_bind(struct device *dev)
6801 {
6802 	struct hda_codec *cdc = dev_to_hda_codec(dev);
6803 	struct alc_spec *spec = cdc->spec;
6804 	int ret;
6805 
6806 	ret = hda_component_manager_bind(cdc, spec->comps, ARRAY_SIZE(spec->comps));
6807 	if (ret)
6808 		return ret;
6809 
6810 	return hda_component_manager_bind_acpi_notifications(cdc,
6811 							     spec->comps, ARRAY_SIZE(spec->comps),
6812 							     comp_acpi_device_notify, cdc);
6813 }
6814 
6815 static void comp_unbind(struct device *dev)
6816 {
6817 	struct hda_codec *cdc = dev_to_hda_codec(dev);
6818 	struct alc_spec *spec = cdc->spec;
6819 
6820 	hda_component_manager_unbind_acpi_notifications(cdc, spec->comps, comp_acpi_device_notify);
6821 	hda_component_manager_unbind(cdc, spec->comps);
6822 }
6823 
6824 static const struct component_master_ops comp_master_ops = {
6825 	.bind = comp_bind,
6826 	.unbind = comp_unbind,
6827 };
6828 
6829 static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6830 				       struct snd_pcm_substream *sub, int action)
6831 {
6832 	struct alc_spec *spec = cdc->spec;
6833 
6834 	hda_component_manager_playback_hook(spec->comps, ARRAY_SIZE(spec->comps), action);
6835 }
6836 
6837 static void comp_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6838 			       const char *hid, const char *match_str, int count)
6839 {
6840 	struct alc_spec *spec = cdc->spec;
6841 	int ret;
6842 
6843 	switch (action) {
6844 	case HDA_FIXUP_ACT_PRE_PROBE:
6845 		ret = hda_component_manager_init(cdc, spec->comps, count, bus, hid,
6846 						 match_str, &comp_master_ops);
6847 		if (ret)
6848 			return;
6849 
6850 		spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6851 		break;
6852 	case HDA_FIXUP_ACT_FREE:
6853 		hda_component_manager_free(cdc, &comp_master_ops);
6854 		break;
6855 	}
6856 }
6857 
6858 static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6859 {
6860 	comp_generic_fixup(cdc, action, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
6861 }
6862 
6863 static void cs35l41_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6864 {
6865 	comp_generic_fixup(cdc, action, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
6866 }
6867 
6868 static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6869 {
6870 	comp_generic_fixup(codec, action, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
6871 }
6872 
6873 static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6874 {
6875 	comp_generic_fixup(codec, action, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
6876 }
6877 
6878 static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6879 						 int action)
6880 {
6881 	comp_generic_fixup(cdc, action, "i2c", "CLSA0100", "-%s:00-cs35l41-hda.%d", 2);
6882 }
6883 
6884 static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6885 						 int action)
6886 {
6887 	comp_generic_fixup(cdc, action, "i2c", "CLSA0101", "-%s:00-cs35l41-hda.%d", 2);
6888 }
6889 
6890 static void cs35l56_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6891 {
6892 	comp_generic_fixup(cdc, action, "i2c", "CSC3556", "-%s:00-cs35l56-hda.%d", 2);
6893 }
6894 
6895 static void cs35l56_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6896 {
6897 	comp_generic_fixup(cdc, action, "i2c", "CSC3556", "-%s:00-cs35l56-hda.%d", 4);
6898 }
6899 
6900 static void cs35l56_fixup_spi_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6901 {
6902 	comp_generic_fixup(cdc, action, "spi", "CSC3556", "-%s:00-cs35l56-hda.%d", 2);
6903 }
6904 
6905 static void cs35l56_fixup_spi_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6906 {
6907 	comp_generic_fixup(cdc, action, "spi", "CSC3556", "-%s:00-cs35l56-hda.%d", 4);
6908 }
6909 
6910 static void alc285_fixup_asus_ga403u(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6911 {
6912 	/*
6913 	 * The same SSID has been re-used in different hardware, they have
6914 	 * different codecs and the newer GA403U has a ALC285.
6915 	 */
6916 	if (cdc->core.vendor_id == 0x10ec0285)
6917 		cs35l56_fixup_i2c_two(cdc, fix, action);
6918 	else
6919 		alc_fixup_inv_dmic(cdc, fix, action);
6920 }
6921 
6922 static void tas2781_fixup_i2c(struct hda_codec *cdc,
6923 	const struct hda_fixup *fix, int action)
6924 {
6925 	comp_generic_fixup(cdc, action, "i2c", "TIAS2781", "-%s:00", 1);
6926 }
6927 
6928 static void yoga7_14arb7_fixup_i2c(struct hda_codec *cdc,
6929 	const struct hda_fixup *fix, int action)
6930 {
6931 	comp_generic_fixup(cdc, action, "i2c", "INT8866", "-%s:00", 1);
6932 }
6933 
6934 static void alc256_fixup_acer_sfg16_micmute_led(struct hda_codec *codec,
6935 	const struct hda_fixup *fix, int action)
6936 {
6937 	alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
6938 }
6939 
6940 
6941 /* for alc295_fixup_hp_top_speakers */
6942 #include "hp_x360_helper.c"
6943 
6944 /* for alc285_fixup_ideapad_s740_coef() */
6945 #include "ideapad_s740_helper.c"
6946 
6947 static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
6948 	WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
6949 	WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
6950 	WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
6951 	{}
6952 };
6953 
6954 static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
6955 					   const struct hda_fixup *fix,
6956 					   int action)
6957 {
6958 	/*
6959 	 * A certain other OS sets these coeffs to different values. On at least
6960 	 * one TongFang barebone these settings might survive even a cold
6961 	 * reboot. So to restore a clean slate the values are explicitly reset
6962 	 * to default here. Without this, the external microphone is always in a
6963 	 * plugged-in state, while the internal microphone is always in an
6964 	 * unplugged state, breaking the ability to use the internal microphone.
6965 	 */
6966 	alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
6967 }
6968 
6969 static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
6970 	WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
6971 	WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
6972 	WRITE_COEF(0x49, 0x0149),
6973 	{}
6974 };
6975 
6976 static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
6977 				       const struct hda_fixup *fix,
6978 				       int action)
6979 {
6980 	/*
6981 	 * The audio jack input and output is not detected on the ASRock NUC Box
6982 	 * 1100 series when cold booting without this fix. Warm rebooting from a
6983 	 * certain other OS makes the audio functional, as COEF settings are
6984 	 * preserved in this case. This fix sets these altered COEF values as
6985 	 * the default.
6986 	 */
6987 	alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
6988 }
6989 
6990 static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
6991 						    const struct hda_fixup *fix,
6992 						    int action)
6993 {
6994 	/*
6995 	 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
6996 	 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
6997 	 * needs an additional quirk for sound working after suspend and resume.
6998 	 */
6999 	if (codec->core.vendor_id == 0x10ec0256) {
7000 		alc_update_coef_idx(codec, 0x10, 1<<9, 0);
7001 		snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
7002 	} else {
7003 		snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
7004 	}
7005 }
7006 
7007 static void alc256_decrease_headphone_amp_val(struct hda_codec *codec,
7008 					      const struct hda_fixup *fix, int action)
7009 {
7010 	u32 caps;
7011 	u8 nsteps, offs;
7012 
7013 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
7014 		return;
7015 
7016 	caps = query_amp_caps(codec, 0x3, HDA_OUTPUT);
7017 	nsteps = ((caps & AC_AMPCAP_NUM_STEPS) >> AC_AMPCAP_NUM_STEPS_SHIFT) - 10;
7018 	offs = ((caps & AC_AMPCAP_OFFSET) >> AC_AMPCAP_OFFSET_SHIFT) - 10;
7019 	caps &= ~AC_AMPCAP_NUM_STEPS & ~AC_AMPCAP_OFFSET;
7020 	caps |= (nsteps << AC_AMPCAP_NUM_STEPS_SHIFT) | (offs << AC_AMPCAP_OFFSET_SHIFT);
7021 
7022 	if (snd_hda_override_amp_caps(codec, 0x3, HDA_OUTPUT, caps))
7023 		codec_warn(codec, "failed to override amp caps for NID 0x3\n");
7024 }
7025 
7026 static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
7027 						  const struct hda_fixup *fix,
7028 						  int action)
7029 {
7030 	struct alc_spec *spec = codec->spec;
7031 	struct hda_input_mux *imux = &spec->gen.input_mux;
7032 	int i;
7033 
7034 	alc269_fixup_limit_int_mic_boost(codec, fix, action);
7035 
7036 	switch (action) {
7037 	case HDA_FIXUP_ACT_PRE_PROBE:
7038 		/**
7039 		 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
7040 		 * to Hi-Z to avoid pop noises at startup and when plugging and
7041 		 * unplugging headphones.
7042 		 */
7043 		snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
7044 		snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
7045 		break;
7046 	case HDA_FIXUP_ACT_PROBE:
7047 		/**
7048 		 * Make the internal mic (0x12) the default input source to
7049 		 * prevent pop noises on cold boot.
7050 		 */
7051 		for (i = 0; i < imux->num_items; i++) {
7052 			if (spec->gen.imux_pins[i] == 0x12) {
7053 				spec->gen.cur_mux[0] = i;
7054 				break;
7055 			}
7056 		}
7057 		break;
7058 	}
7059 }
7060 
7061 static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
7062 					  const struct hda_fixup *fix, int action)
7063 {
7064 	/*
7065 	 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7066 	 * unconnected.
7067 	 */
7068 	static const struct hda_pintbl pincfgs[] = {
7069 		{ 0x17, 0x90170121 },
7070 		{ }
7071 	};
7072 	/*
7073 	 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7074 	 * DAC 0x02 and 0x03 would be fine.
7075 	 */
7076 	static const hda_nid_t conn[] = { 0x02, 0x03 };
7077 	/*
7078 	 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7079 	 * Headphones (0x21) are connected to DAC 0x03.
7080 	 */
7081 	static const hda_nid_t preferred_pairs[] = {
7082 		0x14, 0x02,
7083 		0x17, 0x02,
7084 		0x21, 0x03,
7085 		0
7086 	};
7087 	struct alc_spec *spec = codec->spec;
7088 
7089 	switch (action) {
7090 	case HDA_FIXUP_ACT_PRE_PROBE:
7091 		snd_hda_apply_pincfgs(codec, pincfgs);
7092 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7093 		spec->gen.preferred_dacs = preferred_pairs;
7094 		break;
7095 	}
7096 }
7097 
7098 static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
7099 					  const struct hda_fixup *fix, int action)
7100 {
7101 	static const struct hda_pintbl pincfgs[] = {
7102 		{ 0x14, 0x90170151 },
7103 		{ 0x17, 0x90170150 },
7104 		{ }
7105 	};
7106 	static const hda_nid_t conn[] = { 0x02, 0x03 };
7107 	static const hda_nid_t preferred_pairs[] = {
7108 		0x14, 0x02,
7109 		0x17, 0x03,
7110 		0x21, 0x02,
7111 		0
7112 	};
7113 	struct alc_spec *spec = codec->spec;
7114 
7115 	alc_fixup_no_shutup(codec, fix, action);
7116 
7117 	switch (action) {
7118 	case HDA_FIXUP_ACT_PRE_PROBE:
7119 		snd_hda_apply_pincfgs(codec, pincfgs);
7120 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7121 		spec->gen.preferred_dacs = preferred_pairs;
7122 		break;
7123 	}
7124 }
7125 
7126 /* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7127 static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7128 				    const struct hda_fixup *fix, int action)
7129 {
7130 	struct alc_spec *spec = codec->spec;
7131 	static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7132 	static const hda_nid_t preferred_pairs[] = {
7133 		0x17, 0x02, 0x21, 0x03, 0
7134 	};
7135 
7136 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
7137 		return;
7138 
7139 	snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7140 	spec->gen.preferred_dacs = preferred_pairs;
7141 	spec->gen.auto_mute_via_amp = 1;
7142 	if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7143 		snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7144 					0x0); /* Make sure 0x14 was disable */
7145 	}
7146 }
7147 /* Fix none verb table of Headset Mic pin */
7148 static void alc_fixup_headset_mic(struct hda_codec *codec,
7149 				   const struct hda_fixup *fix, int action)
7150 {
7151 	struct alc_spec *spec = codec->spec;
7152 	static const struct hda_pintbl pincfgs[] = {
7153 		{ 0x19, 0x03a1103c },
7154 		{ }
7155 	};
7156 
7157 	switch (action) {
7158 	case HDA_FIXUP_ACT_PRE_PROBE:
7159 		snd_hda_apply_pincfgs(codec, pincfgs);
7160 		alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7161 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7162 		break;
7163 	}
7164 }
7165 
7166 static void alc245_fixup_hp_spectre_x360_eu0xxx(struct hda_codec *codec,
7167 					  const struct hda_fixup *fix, int action)
7168 {
7169 	/*
7170 	 * The Pin Complex 0x14 for the treble speakers is wrongly reported as
7171 	 * unconnected.
7172 	 * The Pin Complex 0x17 for the bass speakers has the lowest association
7173 	 * and sequence values so shift it up a bit to squeeze 0x14 in.
7174 	 */
7175 	static const struct hda_pintbl pincfgs[] = {
7176 		{ 0x14, 0x90170110 }, // top/treble
7177 		{ 0x17, 0x90170111 }, // bottom/bass
7178 		{ }
7179 	};
7180 
7181 	/*
7182 	 * Force DAC 0x02 for the bass speakers 0x17.
7183 	 */
7184 	static const hda_nid_t conn[] = { 0x02 };
7185 
7186 	switch (action) {
7187 	case HDA_FIXUP_ACT_PRE_PROBE:
7188 		snd_hda_apply_pincfgs(codec, pincfgs);
7189 		snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7190 		break;
7191 	}
7192 
7193 	cs35l41_fixup_i2c_two(codec, fix, action);
7194 	alc245_fixup_hp_mute_led_coefbit(codec, fix, action);
7195 	alc245_fixup_hp_gpio_led(codec, fix, action);
7196 }
7197 
7198 /*
7199  * ALC287 PCM hooks
7200  */
7201 static void alc287_alc1318_playback_pcm_hook(struct hda_pcm_stream *hinfo,
7202 				   struct hda_codec *codec,
7203 				   struct snd_pcm_substream *substream,
7204 				   int action)
7205 {
7206 	alc_write_coef_idx(codec, 0x10, 0x8806); /* Change MLK to GPIO3 */
7207 	switch (action) {
7208 	case HDA_GEN_PCM_ACT_OPEN:
7209 		alc_write_coefex_idx(codec, 0x5a, 0x00, 0x954f); /* write gpio3 to high */
7210 		break;
7211 	case HDA_GEN_PCM_ACT_CLOSE:
7212 		alc_write_coefex_idx(codec, 0x5a, 0x00, 0x554f); /* write gpio3 as default value */
7213 		break;
7214 	}
7215 }
7216 
7217 static void alc287_s4_power_gpio3_default(struct hda_codec *codec)
7218 {
7219 	if (is_s4_suspend(codec)) {
7220 		alc_write_coef_idx(codec, 0x10, 0x8806); /* Change MLK to GPIO3 */
7221 		alc_write_coefex_idx(codec, 0x5a, 0x00, 0x554f); /* write gpio3 as default value */
7222 	}
7223 }
7224 
7225 static void alc287_fixup_lenovo_thinkpad_with_alc1318(struct hda_codec *codec,
7226 			       const struct hda_fixup *fix, int action)
7227 {
7228 	struct alc_spec *spec = codec->spec;
7229 
7230 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
7231 		return;
7232 	spec->power_hook = alc287_s4_power_gpio3_default;
7233 	spec->gen.pcm_playback_hook = alc287_alc1318_playback_pcm_hook;
7234 }
7235 
7236 
7237 enum {
7238 	ALC269_FIXUP_GPIO2,
7239 	ALC269_FIXUP_SONY_VAIO,
7240 	ALC275_FIXUP_SONY_VAIO_GPIO2,
7241 	ALC269_FIXUP_DELL_M101Z,
7242 	ALC269_FIXUP_SKU_IGNORE,
7243 	ALC269_FIXUP_ASUS_G73JW,
7244 	ALC269_FIXUP_ASUS_N7601ZM_PINS,
7245 	ALC269_FIXUP_ASUS_N7601ZM,
7246 	ALC269_FIXUP_LENOVO_EAPD,
7247 	ALC275_FIXUP_SONY_HWEQ,
7248 	ALC275_FIXUP_SONY_DISABLE_AAMIX,
7249 	ALC271_FIXUP_DMIC,
7250 	ALC269_FIXUP_PCM_44K,
7251 	ALC269_FIXUP_STEREO_DMIC,
7252 	ALC269_FIXUP_HEADSET_MIC,
7253 	ALC269_FIXUP_QUANTA_MUTE,
7254 	ALC269_FIXUP_LIFEBOOK,
7255 	ALC269_FIXUP_LIFEBOOK_EXTMIC,
7256 	ALC269_FIXUP_LIFEBOOK_HP_PIN,
7257 	ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
7258 	ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
7259 	ALC269_FIXUP_AMIC,
7260 	ALC269_FIXUP_DMIC,
7261 	ALC269VB_FIXUP_AMIC,
7262 	ALC269VB_FIXUP_DMIC,
7263 	ALC269_FIXUP_HP_MUTE_LED,
7264 	ALC269_FIXUP_HP_MUTE_LED_MIC1,
7265 	ALC269_FIXUP_HP_MUTE_LED_MIC2,
7266 	ALC269_FIXUP_HP_MUTE_LED_MIC3,
7267 	ALC269_FIXUP_HP_GPIO_LED,
7268 	ALC269_FIXUP_HP_GPIO_MIC1_LED,
7269 	ALC269_FIXUP_HP_LINE1_MIC1_LED,
7270 	ALC269_FIXUP_INV_DMIC,
7271 	ALC269_FIXUP_LENOVO_DOCK,
7272 	ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
7273 	ALC269_FIXUP_NO_SHUTUP,
7274 	ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
7275 	ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
7276 	ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7277 	ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
7278 	ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7279 	ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7280 	ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
7281 	ALC269_FIXUP_HEADSET_MODE,
7282 	ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7283 	ALC269_FIXUP_ASPIRE_HEADSET_MIC,
7284 	ALC269_FIXUP_ASUS_X101_FUNC,
7285 	ALC269_FIXUP_ASUS_X101_VERB,
7286 	ALC269_FIXUP_ASUS_X101,
7287 	ALC271_FIXUP_AMIC_MIC2,
7288 	ALC271_FIXUP_HP_GATE_MIC_JACK,
7289 	ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
7290 	ALC269_FIXUP_ACER_AC700,
7291 	ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
7292 	ALC269VB_FIXUP_ASUS_ZENBOOK,
7293 	ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
7294 	ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
7295 	ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
7296 	ALC269VB_FIXUP_ORDISSIMO_EVE2,
7297 	ALC283_FIXUP_CHROME_BOOK,
7298 	ALC283_FIXUP_SENSE_COMBO_JACK,
7299 	ALC282_FIXUP_ASUS_TX300,
7300 	ALC283_FIXUP_INT_MIC,
7301 	ALC290_FIXUP_MONO_SPEAKERS,
7302 	ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7303 	ALC290_FIXUP_SUBWOOFER,
7304 	ALC290_FIXUP_SUBWOOFER_HSJACK,
7305 	ALC269_FIXUP_THINKPAD_ACPI,
7306 	ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7307 	ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO,
7308 	ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7309 	ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7310 	ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7311 	ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
7312 	ALC255_FIXUP_HEADSET_MODE,
7313 	ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
7314 	ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
7315 	ALC292_FIXUP_TPT440_DOCK,
7316 	ALC292_FIXUP_TPT440,
7317 	ALC283_FIXUP_HEADSET_MIC,
7318 	ALC255_FIXUP_MIC_MUTE_LED,
7319 	ALC282_FIXUP_ASPIRE_V5_PINS,
7320 	ALC269VB_FIXUP_ASPIRE_E1_COEF,
7321 	ALC280_FIXUP_HP_GPIO4,
7322 	ALC286_FIXUP_HP_GPIO_LED,
7323 	ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
7324 	ALC280_FIXUP_HP_DOCK_PINS,
7325 	ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
7326 	ALC280_FIXUP_HP_9480M,
7327 	ALC245_FIXUP_HP_X360_AMP,
7328 	ALC285_FIXUP_HP_SPECTRE_X360_EB1,
7329 	ALC285_FIXUP_HP_ENVY_X360,
7330 	ALC288_FIXUP_DELL_HEADSET_MODE,
7331 	ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
7332 	ALC288_FIXUP_DELL_XPS_13,
7333 	ALC288_FIXUP_DISABLE_AAMIX,
7334 	ALC292_FIXUP_DELL_E7X_AAMIX,
7335 	ALC292_FIXUP_DELL_E7X,
7336 	ALC292_FIXUP_DISABLE_AAMIX,
7337 	ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
7338 	ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7339 	ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7340 	ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
7341 	ALC275_FIXUP_DELL_XPS,
7342 	ALC293_FIXUP_LENOVO_SPK_NOISE,
7343 	ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7344 	ALC255_FIXUP_DELL_SPK_NOISE,
7345 	ALC225_FIXUP_DISABLE_MIC_VREF,
7346 	ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7347 	ALC295_FIXUP_DISABLE_DAC3,
7348 	ALC285_FIXUP_SPEAKER2_TO_DAC1,
7349 	ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7350 	ALC285_FIXUP_ASUS_HEADSET_MIC,
7351 	ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
7352 	ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7353 	ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
7354 	ALC280_FIXUP_HP_HEADSET_MIC,
7355 	ALC221_FIXUP_HP_FRONT_MIC,
7356 	ALC292_FIXUP_TPT460,
7357 	ALC298_FIXUP_SPK_VOLUME,
7358 	ALC298_FIXUP_LENOVO_SPK_VOLUME,
7359 	ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
7360 	ALC269_FIXUP_ATIV_BOOK_8,
7361 	ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
7362 	ALC221_FIXUP_HP_MIC_NO_PRESENCE,
7363 	ALC256_FIXUP_ASUS_HEADSET_MODE,
7364 	ALC256_FIXUP_ASUS_MIC,
7365 	ALC256_FIXUP_ASUS_AIO_GPIO2,
7366 	ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7367 	ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
7368 	ALC233_FIXUP_LENOVO_MULTI_CODECS,
7369 	ALC233_FIXUP_ACER_HEADSET_MIC,
7370 	ALC294_FIXUP_LENOVO_MIC_LOCATION,
7371 	ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
7372 	ALC225_FIXUP_S3_POP_NOISE,
7373 	ALC700_FIXUP_INTEL_REFERENCE,
7374 	ALC274_FIXUP_DELL_BIND_DACS,
7375 	ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7376 	ALC298_FIXUP_TPT470_DOCK_FIX,
7377 	ALC298_FIXUP_TPT470_DOCK,
7378 	ALC255_FIXUP_DUMMY_LINEOUT_VERB,
7379 	ALC255_FIXUP_DELL_HEADSET_MIC,
7380 	ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
7381 	ALC298_FIXUP_HUAWEI_MBX_STEREO,
7382 	ALC295_FIXUP_HP_X360,
7383 	ALC221_FIXUP_HP_HEADSET_MIC,
7384 	ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
7385 	ALC295_FIXUP_HP_AUTO_MUTE,
7386 	ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7387 	ALC294_FIXUP_ASUS_MIC,
7388 	ALC294_FIXUP_ASUS_HEADSET_MIC,
7389 	ALC294_FIXUP_ASUS_SPK,
7390 	ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7391 	ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
7392 	ALC255_FIXUP_ACER_HEADSET_MIC,
7393 	ALC295_FIXUP_CHROME_BOOK,
7394 	ALC225_FIXUP_HEADSET_JACK,
7395 	ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7396 	ALC225_FIXUP_WYSE_AUTO_MUTE,
7397 	ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
7398 	ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
7399 	ALC256_FIXUP_ASUS_HEADSET_MIC,
7400 	ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7401 	ALC299_FIXUP_PREDATOR_SPK,
7402 	ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
7403 	ALC289_FIXUP_DELL_SPK1,
7404 	ALC289_FIXUP_DELL_SPK2,
7405 	ALC289_FIXUP_DUAL_SPK,
7406 	ALC289_FIXUP_RTK_AMP_DUAL_SPK,
7407 	ALC294_FIXUP_SPK2_TO_DAC1,
7408 	ALC294_FIXUP_ASUS_DUAL_SPK,
7409 	ALC285_FIXUP_THINKPAD_X1_GEN7,
7410 	ALC285_FIXUP_THINKPAD_HEADSET_JACK,
7411 	ALC294_FIXUP_ASUS_ALLY,
7412 	ALC294_FIXUP_ASUS_ALLY_PINS,
7413 	ALC294_FIXUP_ASUS_ALLY_VERBS,
7414 	ALC294_FIXUP_ASUS_ALLY_SPEAKER,
7415 	ALC294_FIXUP_ASUS_HPE,
7416 	ALC294_FIXUP_ASUS_COEF_1B,
7417 	ALC294_FIXUP_ASUS_GX502_HP,
7418 	ALC294_FIXUP_ASUS_GX502_PINS,
7419 	ALC294_FIXUP_ASUS_GX502_VERBS,
7420 	ALC294_FIXUP_ASUS_GU502_HP,
7421 	ALC294_FIXUP_ASUS_GU502_PINS,
7422 	ALC294_FIXUP_ASUS_GU502_VERBS,
7423 	ALC294_FIXUP_ASUS_G513_PINS,
7424 	ALC285_FIXUP_ASUS_G533Z_PINS,
7425 	ALC285_FIXUP_HP_GPIO_LED,
7426 	ALC285_FIXUP_HP_MUTE_LED,
7427 	ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
7428 	ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
7429 	ALC236_FIXUP_HP_GPIO_LED,
7430 	ALC236_FIXUP_HP_MUTE_LED,
7431 	ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
7432 	ALC298_FIXUP_SAMSUNG_AMP,
7433 	ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7434 	ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
7435 	ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
7436 	ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
7437 	ALC269VC_FIXUP_ACER_HEADSET_MIC,
7438 	ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
7439 	ALC289_FIXUP_ASUS_GA401,
7440 	ALC289_FIXUP_ASUS_GA502,
7441 	ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
7442 	ALC285_FIXUP_HP_GPIO_AMP_INIT,
7443 	ALC269_FIXUP_CZC_B20,
7444 	ALC269_FIXUP_CZC_TMI,
7445 	ALC269_FIXUP_CZC_L101,
7446 	ALC269_FIXUP_LEMOTE_A1802,
7447 	ALC269_FIXUP_LEMOTE_A190X,
7448 	ALC256_FIXUP_INTEL_NUC8_RUGGED,
7449 	ALC233_FIXUP_INTEL_NUC8_DMIC,
7450 	ALC233_FIXUP_INTEL_NUC8_BOOST,
7451 	ALC256_FIXUP_INTEL_NUC10,
7452 	ALC255_FIXUP_XIAOMI_HEADSET_MIC,
7453 	ALC274_FIXUP_HP_MIC,
7454 	ALC274_FIXUP_HP_HEADSET_MIC,
7455 	ALC274_FIXUP_HP_ENVY_GPIO,
7456 	ALC256_FIXUP_ASUS_HPE,
7457 	ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
7458 	ALC287_FIXUP_HP_GPIO_LED,
7459 	ALC256_FIXUP_HP_HEADSET_MIC,
7460 	ALC245_FIXUP_HP_GPIO_LED,
7461 	ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
7462 	ALC282_FIXUP_ACER_DISABLE_LINEOUT,
7463 	ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
7464 	ALC256_FIXUP_ACER_HEADSET_MIC,
7465 	ALC285_FIXUP_IDEAPAD_S740_COEF,
7466 	ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7467 	ALC295_FIXUP_ASUS_DACS,
7468 	ALC295_FIXUP_HP_OMEN,
7469 	ALC285_FIXUP_HP_SPECTRE_X360,
7470 	ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
7471 	ALC623_FIXUP_LENOVO_THINKSTATION_P340,
7472 	ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
7473 	ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
7474 	ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7475 	ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7476 	ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
7477 	ALC298_FIXUP_LENOVO_C940_DUET7,
7478 	ALC287_FIXUP_LENOVO_14IRP8_DUETITL,
7479 	ALC287_FIXUP_LENOVO_LEGION_7,
7480 	ALC287_FIXUP_13S_GEN2_SPEAKERS,
7481 	ALC256_FIXUP_SET_COEF_DEFAULTS,
7482 	ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
7483 	ALC233_FIXUP_NO_AUDIO_JACK,
7484 	ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
7485 	ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7486 	ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
7487 	ALC287_FIXUP_LEGION_16ACHG6,
7488 	ALC287_FIXUP_CS35L41_I2C_2,
7489 	ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
7490 	ALC287_FIXUP_CS35L41_I2C_4,
7491 	ALC245_FIXUP_CS35L41_SPI_2,
7492 	ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
7493 	ALC245_FIXUP_CS35L41_SPI_4,
7494 	ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
7495 	ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
7496 	ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
7497 	ALC287_FIXUP_LEGION_16ITHG6,
7498 	ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7499 	ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
7500 	ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN,
7501 	ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
7502 	ALC236_FIXUP_DELL_DUAL_CODECS,
7503 	ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
7504 	ALC287_FIXUP_TAS2781_I2C,
7505 	ALC287_FIXUP_YOGA7_14ARB7_I2C,
7506 	ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
7507 	ALC245_FIXUP_HP_X360_MUTE_LEDS,
7508 	ALC287_FIXUP_THINKPAD_I2S_SPK,
7509 	ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
7510 	ALC2XX_FIXUP_HEADSET_MIC,
7511 	ALC289_FIXUP_DELL_CS35L41_SPI_2,
7512 	ALC294_FIXUP_CS35L41_I2C_2,
7513 	ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED,
7514 	ALC256_FIXUP_ACER_SFG16_MICMUTE_LED,
7515 	ALC256_FIXUP_HEADPHONE_AMP_VOL,
7516 	ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX,
7517 	ALC285_FIXUP_CS35L56_SPI_2,
7518 	ALC285_FIXUP_CS35L56_I2C_2,
7519 	ALC285_FIXUP_CS35L56_I2C_4,
7520 	ALC285_FIXUP_ASUS_GA403U,
7521 	ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC,
7522 	ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1,
7523 	ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC,
7524 	ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1,
7525 	ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318,
7526 	ALC256_FIXUP_CHROME_BOOK,
7527 	ALC287_FIXUP_LENOVO_14ARP8_LEGION_IAH7,
7528 };
7529 
7530 /* A special fixup for Lenovo C940 and Yoga Duet 7;
7531  * both have the very same PCI SSID, and we need to apply different fixups
7532  * depending on the codec ID
7533  */
7534 static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7535 					   const struct hda_fixup *fix,
7536 					   int action)
7537 {
7538 	int id;
7539 
7540 	if (codec->core.vendor_id == 0x10ec0298)
7541 		id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7542 	else
7543 		id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7544 	__snd_hda_apply_fixup(codec, id, action, 0);
7545 }
7546 
7547 /* A special fixup for Lenovo Slim/Yoga Pro 9 14IRP8 and Yoga DuetITL 2021;
7548  * 14IRP8 PCI SSID will mistakenly be matched with the DuetITL codec SSID,
7549  * so we need to apply a different fixup in this case. The only DuetITL codec
7550  * SSID reported so far is the 17aa:3802 while the 14IRP8 has the 17aa:38be
7551  * and 17aa:38bf. If it weren't for the PCI SSID, the 14IRP8 models would
7552  * have matched correctly by their codecs.
7553  */
7554 static void alc287_fixup_lenovo_14irp8_duetitl(struct hda_codec *codec,
7555 					      const struct hda_fixup *fix,
7556 					      int action)
7557 {
7558 	int id;
7559 
7560 	if (codec->core.subsystem_id == 0x17aa3802)
7561 		id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* DuetITL */
7562 	else
7563 		id = ALC287_FIXUP_TAS2781_I2C; /* 14IRP8 */
7564 	__snd_hda_apply_fixup(codec, id, action, 0);
7565 }
7566 
7567 /* Similar to above the Lenovo Yoga Pro 7 14ARP8 PCI SSID matches the codec SSID of the
7568    Legion Y9000X 2022 IAH7.*/
7569 static void alc287_fixup_lenovo_14arp8_legion_iah7(struct hda_codec *codec,
7570 					   const struct hda_fixup *fix,
7571 					   int action)
7572 {
7573 	int id;
7574 
7575 	if (codec->core.subsystem_id == 0x17aa386e)
7576 		id = ALC287_FIXUP_CS35L41_I2C_2; /* Legion Y9000X 2022 IAH7 */
7577 	else
7578 		id = ALC285_FIXUP_SPEAKER2_TO_DAC1; /* Yoga Pro 7 14ARP8 */
7579 	__snd_hda_apply_fixup(codec, id, action, 0);
7580 }
7581 
7582 /* Another hilarious PCI SSID conflict with Lenovo Legion Pro 7 16ARX8H (with
7583  * TAS2781 codec) and Legion 7i 16IAX7 (with CS35L41 codec);
7584  * we apply a corresponding fixup depending on the codec SSID instead
7585  */
7586 static void alc287_fixup_lenovo_legion_7(struct hda_codec *codec,
7587 					 const struct hda_fixup *fix,
7588 					 int action)
7589 {
7590 	int id;
7591 
7592 	if (codec->core.subsystem_id == 0x17aa38a8)
7593 		id = ALC287_FIXUP_TAS2781_I2C; /* Legion Pro 7 16ARX8H */
7594 	else
7595 		id = ALC287_FIXUP_CS35L41_I2C_2; /* Legion 7i 16IAX7 */
7596 	__snd_hda_apply_fixup(codec, id, action, 0);
7597 }
7598 
7599 static const struct hda_fixup alc269_fixups[] = {
7600 	[ALC269_FIXUP_GPIO2] = {
7601 		.type = HDA_FIXUP_FUNC,
7602 		.v.func = alc_fixup_gpio2,
7603 	},
7604 	[ALC269_FIXUP_SONY_VAIO] = {
7605 		.type = HDA_FIXUP_PINCTLS,
7606 		.v.pins = (const struct hda_pintbl[]) {
7607 			{0x19, PIN_VREFGRD},
7608 			{}
7609 		}
7610 	},
7611 	[ALC275_FIXUP_SONY_VAIO_GPIO2] = {
7612 		.type = HDA_FIXUP_FUNC,
7613 		.v.func = alc275_fixup_gpio4_off,
7614 		.chained = true,
7615 		.chain_id = ALC269_FIXUP_SONY_VAIO
7616 	},
7617 	[ALC269_FIXUP_DELL_M101Z] = {
7618 		.type = HDA_FIXUP_VERBS,
7619 		.v.verbs = (const struct hda_verb[]) {
7620 			/* Enables internal speaker */
7621 			{0x20, AC_VERB_SET_COEF_INDEX, 13},
7622 			{0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7623 			{}
7624 		}
7625 	},
7626 	[ALC269_FIXUP_SKU_IGNORE] = {
7627 		.type = HDA_FIXUP_FUNC,
7628 		.v.func = alc_fixup_sku_ignore,
7629 	},
7630 	[ALC269_FIXUP_ASUS_G73JW] = {
7631 		.type = HDA_FIXUP_PINS,
7632 		.v.pins = (const struct hda_pintbl[]) {
7633 			{ 0x17, 0x99130111 }, /* subwoofer */
7634 			{ }
7635 		}
7636 	},
7637 	[ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7638 		.type = HDA_FIXUP_PINS,
7639 		.v.pins = (const struct hda_pintbl[]) {
7640 			{ 0x19, 0x03A11050 },
7641 			{ 0x1a, 0x03A11C30 },
7642 			{ 0x21, 0x03211420 },
7643 			{ }
7644 		}
7645 	},
7646 	[ALC269_FIXUP_ASUS_N7601ZM] = {
7647 		.type = HDA_FIXUP_VERBS,
7648 		.v.verbs = (const struct hda_verb[]) {
7649 			{0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7650 			{0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7651 			{0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7652 			{0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7653 			{0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7654 			{0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7655 			{ }
7656 		},
7657 		.chained = true,
7658 		.chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7659 	},
7660 	[ALC269_FIXUP_LENOVO_EAPD] = {
7661 		.type = HDA_FIXUP_VERBS,
7662 		.v.verbs = (const struct hda_verb[]) {
7663 			{0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7664 			{}
7665 		}
7666 	},
7667 	[ALC275_FIXUP_SONY_HWEQ] = {
7668 		.type = HDA_FIXUP_FUNC,
7669 		.v.func = alc269_fixup_hweq,
7670 		.chained = true,
7671 		.chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7672 	},
7673 	[ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7674 		.type = HDA_FIXUP_FUNC,
7675 		.v.func = alc_fixup_disable_aamix,
7676 		.chained = true,
7677 		.chain_id = ALC269_FIXUP_SONY_VAIO
7678 	},
7679 	[ALC271_FIXUP_DMIC] = {
7680 		.type = HDA_FIXUP_FUNC,
7681 		.v.func = alc271_fixup_dmic,
7682 	},
7683 	[ALC269_FIXUP_PCM_44K] = {
7684 		.type = HDA_FIXUP_FUNC,
7685 		.v.func = alc269_fixup_pcm_44k,
7686 		.chained = true,
7687 		.chain_id = ALC269_FIXUP_QUANTA_MUTE
7688 	},
7689 	[ALC269_FIXUP_STEREO_DMIC] = {
7690 		.type = HDA_FIXUP_FUNC,
7691 		.v.func = alc269_fixup_stereo_dmic,
7692 	},
7693 	[ALC269_FIXUP_HEADSET_MIC] = {
7694 		.type = HDA_FIXUP_FUNC,
7695 		.v.func = alc269_fixup_headset_mic,
7696 	},
7697 	[ALC269_FIXUP_QUANTA_MUTE] = {
7698 		.type = HDA_FIXUP_FUNC,
7699 		.v.func = alc269_fixup_quanta_mute,
7700 	},
7701 	[ALC269_FIXUP_LIFEBOOK] = {
7702 		.type = HDA_FIXUP_PINS,
7703 		.v.pins = (const struct hda_pintbl[]) {
7704 			{ 0x1a, 0x2101103f }, /* dock line-out */
7705 			{ 0x1b, 0x23a11040 }, /* dock mic-in */
7706 			{ }
7707 		},
7708 		.chained = true,
7709 		.chain_id = ALC269_FIXUP_QUANTA_MUTE
7710 	},
7711 	[ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7712 		.type = HDA_FIXUP_PINS,
7713 		.v.pins = (const struct hda_pintbl[]) {
7714 			{ 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7715 			{ }
7716 		},
7717 	},
7718 	[ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7719 		.type = HDA_FIXUP_PINS,
7720 		.v.pins = (const struct hda_pintbl[]) {
7721 			{ 0x21, 0x0221102f }, /* HP out */
7722 			{ }
7723 		},
7724 	},
7725 	[ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7726 		.type = HDA_FIXUP_FUNC,
7727 		.v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7728 	},
7729 	[ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7730 		.type = HDA_FIXUP_FUNC,
7731 		.v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7732 	},
7733 	[ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = {
7734 		.type = HDA_FIXUP_PINS,
7735 		.v.pins = (const struct hda_pintbl[]) {
7736 			{ 0x18, 0x03a19020 }, /* headset mic */
7737 			{ 0x1b, 0x90170150 }, /* speaker */
7738 			{ }
7739 		},
7740 	},
7741 	[ALC269_FIXUP_AMIC] = {
7742 		.type = HDA_FIXUP_PINS,
7743 		.v.pins = (const struct hda_pintbl[]) {
7744 			{ 0x14, 0x99130110 }, /* speaker */
7745 			{ 0x15, 0x0121401f }, /* HP out */
7746 			{ 0x18, 0x01a19c20 }, /* mic */
7747 			{ 0x19, 0x99a3092f }, /* int-mic */
7748 			{ }
7749 		},
7750 	},
7751 	[ALC269_FIXUP_DMIC] = {
7752 		.type = HDA_FIXUP_PINS,
7753 		.v.pins = (const struct hda_pintbl[]) {
7754 			{ 0x12, 0x99a3092f }, /* int-mic */
7755 			{ 0x14, 0x99130110 }, /* speaker */
7756 			{ 0x15, 0x0121401f }, /* HP out */
7757 			{ 0x18, 0x01a19c20 }, /* mic */
7758 			{ }
7759 		},
7760 	},
7761 	[ALC269VB_FIXUP_AMIC] = {
7762 		.type = HDA_FIXUP_PINS,
7763 		.v.pins = (const struct hda_pintbl[]) {
7764 			{ 0x14, 0x99130110 }, /* speaker */
7765 			{ 0x18, 0x01a19c20 }, /* mic */
7766 			{ 0x19, 0x99a3092f }, /* int-mic */
7767 			{ 0x21, 0x0121401f }, /* HP out */
7768 			{ }
7769 		},
7770 	},
7771 	[ALC269VB_FIXUP_DMIC] = {
7772 		.type = HDA_FIXUP_PINS,
7773 		.v.pins = (const struct hda_pintbl[]) {
7774 			{ 0x12, 0x99a3092f }, /* int-mic */
7775 			{ 0x14, 0x99130110 }, /* speaker */
7776 			{ 0x18, 0x01a19c20 }, /* mic */
7777 			{ 0x21, 0x0121401f }, /* HP out */
7778 			{ }
7779 		},
7780 	},
7781 	[ALC269_FIXUP_HP_MUTE_LED] = {
7782 		.type = HDA_FIXUP_FUNC,
7783 		.v.func = alc269_fixup_hp_mute_led,
7784 	},
7785 	[ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7786 		.type = HDA_FIXUP_FUNC,
7787 		.v.func = alc269_fixup_hp_mute_led_mic1,
7788 	},
7789 	[ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
7790 		.type = HDA_FIXUP_FUNC,
7791 		.v.func = alc269_fixup_hp_mute_led_mic2,
7792 	},
7793 	[ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7794 		.type = HDA_FIXUP_FUNC,
7795 		.v.func = alc269_fixup_hp_mute_led_mic3,
7796 		.chained = true,
7797 		.chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7798 	},
7799 	[ALC269_FIXUP_HP_GPIO_LED] = {
7800 		.type = HDA_FIXUP_FUNC,
7801 		.v.func = alc269_fixup_hp_gpio_led,
7802 	},
7803 	[ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7804 		.type = HDA_FIXUP_FUNC,
7805 		.v.func = alc269_fixup_hp_gpio_mic1_led,
7806 	},
7807 	[ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7808 		.type = HDA_FIXUP_FUNC,
7809 		.v.func = alc269_fixup_hp_line1_mic1_led,
7810 	},
7811 	[ALC269_FIXUP_INV_DMIC] = {
7812 		.type = HDA_FIXUP_FUNC,
7813 		.v.func = alc_fixup_inv_dmic,
7814 	},
7815 	[ALC269_FIXUP_NO_SHUTUP] = {
7816 		.type = HDA_FIXUP_FUNC,
7817 		.v.func = alc_fixup_no_shutup,
7818 	},
7819 	[ALC269_FIXUP_LENOVO_DOCK] = {
7820 		.type = HDA_FIXUP_PINS,
7821 		.v.pins = (const struct hda_pintbl[]) {
7822 			{ 0x19, 0x23a11040 }, /* dock mic */
7823 			{ 0x1b, 0x2121103f }, /* dock headphone */
7824 			{ }
7825 		},
7826 		.chained = true,
7827 		.chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7828 	},
7829 	[ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7830 		.type = HDA_FIXUP_FUNC,
7831 		.v.func = alc269_fixup_limit_int_mic_boost,
7832 		.chained = true,
7833 		.chain_id = ALC269_FIXUP_LENOVO_DOCK,
7834 	},
7835 	[ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
7836 		.type = HDA_FIXUP_FUNC,
7837 		.v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7838 		.chained = true,
7839 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7840 	},
7841 	[ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7842 		.type = HDA_FIXUP_PINS,
7843 		.v.pins = (const struct hda_pintbl[]) {
7844 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7845 			{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7846 			{ }
7847 		},
7848 		.chained = true,
7849 		.chain_id = ALC269_FIXUP_HEADSET_MODE
7850 	},
7851 	[ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7852 		.type = HDA_FIXUP_PINS,
7853 		.v.pins = (const struct hda_pintbl[]) {
7854 			{ 0x16, 0x21014020 }, /* dock line out */
7855 			{ 0x19, 0x21a19030 }, /* dock mic */
7856 			{ 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7857 			{ }
7858 		},
7859 		.chained = true,
7860 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7861 	},
7862 	[ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7863 		.type = HDA_FIXUP_PINS,
7864 		.v.pins = (const struct hda_pintbl[]) {
7865 			{ 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7866 			{ }
7867 		},
7868 		.chained = true,
7869 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7870 	},
7871 	[ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7872 		.type = HDA_FIXUP_PINS,
7873 		.v.pins = (const struct hda_pintbl[]) {
7874 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7875 			{ 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7876 			{ }
7877 		},
7878 		.chained = true,
7879 		.chain_id = ALC269_FIXUP_HEADSET_MODE
7880 	},
7881 	[ALC269_FIXUP_HEADSET_MODE] = {
7882 		.type = HDA_FIXUP_FUNC,
7883 		.v.func = alc_fixup_headset_mode,
7884 		.chained = true,
7885 		.chain_id = ALC255_FIXUP_MIC_MUTE_LED
7886 	},
7887 	[ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7888 		.type = HDA_FIXUP_FUNC,
7889 		.v.func = alc_fixup_headset_mode_no_hp_mic,
7890 	},
7891 	[ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7892 		.type = HDA_FIXUP_PINS,
7893 		.v.pins = (const struct hda_pintbl[]) {
7894 			{ 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7895 			{ }
7896 		},
7897 		.chained = true,
7898 		.chain_id = ALC269_FIXUP_HEADSET_MODE,
7899 	},
7900 	[ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7901 		.type = HDA_FIXUP_PINS,
7902 		.v.pins = (const struct hda_pintbl[]) {
7903 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7904 			{ }
7905 		},
7906 		.chained = true,
7907 		.chain_id = ALC269_FIXUP_HEADSET_MIC
7908 	},
7909 	[ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
7910 		.type = HDA_FIXUP_PINS,
7911 		.v.pins = (const struct hda_pintbl[]) {
7912 			{0x12, 0x90a60130},
7913 			{0x13, 0x40000000},
7914 			{0x14, 0x90170110},
7915 			{0x18, 0x411111f0},
7916 			{0x19, 0x04a11040},
7917 			{0x1a, 0x411111f0},
7918 			{0x1b, 0x90170112},
7919 			{0x1d, 0x40759a05},
7920 			{0x1e, 0x411111f0},
7921 			{0x21, 0x04211020},
7922 			{ }
7923 		},
7924 		.chained = true,
7925 		.chain_id = ALC255_FIXUP_MIC_MUTE_LED
7926 	},
7927 	[ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7928 		.type = HDA_FIXUP_FUNC,
7929 		.v.func = alc298_fixup_huawei_mbx_stereo,
7930 		.chained = true,
7931 		.chain_id = ALC255_FIXUP_MIC_MUTE_LED
7932 	},
7933 	[ALC269_FIXUP_ASUS_X101_FUNC] = {
7934 		.type = HDA_FIXUP_FUNC,
7935 		.v.func = alc269_fixup_x101_headset_mic,
7936 	},
7937 	[ALC269_FIXUP_ASUS_X101_VERB] = {
7938 		.type = HDA_FIXUP_VERBS,
7939 		.v.verbs = (const struct hda_verb[]) {
7940 			{0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7941 			{0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7942 			{0x20, AC_VERB_SET_PROC_COEF,  0x0310},
7943 			{ }
7944 		},
7945 		.chained = true,
7946 		.chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7947 	},
7948 	[ALC269_FIXUP_ASUS_X101] = {
7949 		.type = HDA_FIXUP_PINS,
7950 		.v.pins = (const struct hda_pintbl[]) {
7951 			{ 0x18, 0x04a1182c }, /* Headset mic */
7952 			{ }
7953 		},
7954 		.chained = true,
7955 		.chain_id = ALC269_FIXUP_ASUS_X101_VERB
7956 	},
7957 	[ALC271_FIXUP_AMIC_MIC2] = {
7958 		.type = HDA_FIXUP_PINS,
7959 		.v.pins = (const struct hda_pintbl[]) {
7960 			{ 0x14, 0x99130110 }, /* speaker */
7961 			{ 0x19, 0x01a19c20 }, /* mic */
7962 			{ 0x1b, 0x99a7012f }, /* int-mic */
7963 			{ 0x21, 0x0121401f }, /* HP out */
7964 			{ }
7965 		},
7966 	},
7967 	[ALC271_FIXUP_HP_GATE_MIC_JACK] = {
7968 		.type = HDA_FIXUP_FUNC,
7969 		.v.func = alc271_hp_gate_mic_jack,
7970 		.chained = true,
7971 		.chain_id = ALC271_FIXUP_AMIC_MIC2,
7972 	},
7973 	[ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7974 		.type = HDA_FIXUP_FUNC,
7975 		.v.func = alc269_fixup_limit_int_mic_boost,
7976 		.chained = true,
7977 		.chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7978 	},
7979 	[ALC269_FIXUP_ACER_AC700] = {
7980 		.type = HDA_FIXUP_PINS,
7981 		.v.pins = (const struct hda_pintbl[]) {
7982 			{ 0x12, 0x99a3092f }, /* int-mic */
7983 			{ 0x14, 0x99130110 }, /* speaker */
7984 			{ 0x18, 0x03a11c20 }, /* mic */
7985 			{ 0x1e, 0x0346101e }, /* SPDIF1 */
7986 			{ 0x21, 0x0321101f }, /* HP out */
7987 			{ }
7988 		},
7989 		.chained = true,
7990 		.chain_id = ALC271_FIXUP_DMIC,
7991 	},
7992 	[ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7993 		.type = HDA_FIXUP_FUNC,
7994 		.v.func = alc269_fixup_limit_int_mic_boost,
7995 		.chained = true,
7996 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7997 	},
7998 	[ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7999 		.type = HDA_FIXUP_FUNC,
8000 		.v.func = alc269_fixup_limit_int_mic_boost,
8001 		.chained = true,
8002 		.chain_id = ALC269VB_FIXUP_DMIC,
8003 	},
8004 	[ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
8005 		.type = HDA_FIXUP_VERBS,
8006 		.v.verbs = (const struct hda_verb[]) {
8007 			/* class-D output amp +5dB */
8008 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
8009 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
8010 			{}
8011 		},
8012 		.chained = true,
8013 		.chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
8014 	},
8015 	[ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8016 		.type = HDA_FIXUP_PINS,
8017 		.v.pins = (const struct hda_pintbl[]) {
8018 			{ 0x18, 0x01a110f0 },  /* use as headset mic */
8019 			{ }
8020 		},
8021 		.chained = true,
8022 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8023 	},
8024 	[ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
8025 		.type = HDA_FIXUP_FUNC,
8026 		.v.func = alc269_fixup_limit_int_mic_boost,
8027 		.chained = true,
8028 		.chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
8029 	},
8030 	[ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
8031 		.type = HDA_FIXUP_PINS,
8032 		.v.pins = (const struct hda_pintbl[]) {
8033 			{ 0x12, 0x99a3092f }, /* int-mic */
8034 			{ 0x18, 0x03a11d20 }, /* mic */
8035 			{ 0x19, 0x411111f0 }, /* Unused bogus pin */
8036 			{ }
8037 		},
8038 	},
8039 	[ALC283_FIXUP_CHROME_BOOK] = {
8040 		.type = HDA_FIXUP_FUNC,
8041 		.v.func = alc283_fixup_chromebook,
8042 	},
8043 	[ALC283_FIXUP_SENSE_COMBO_JACK] = {
8044 		.type = HDA_FIXUP_FUNC,
8045 		.v.func = alc283_fixup_sense_combo_jack,
8046 		.chained = true,
8047 		.chain_id = ALC283_FIXUP_CHROME_BOOK,
8048 	},
8049 	[ALC282_FIXUP_ASUS_TX300] = {
8050 		.type = HDA_FIXUP_FUNC,
8051 		.v.func = alc282_fixup_asus_tx300,
8052 	},
8053 	[ALC283_FIXUP_INT_MIC] = {
8054 		.type = HDA_FIXUP_VERBS,
8055 		.v.verbs = (const struct hda_verb[]) {
8056 			{0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
8057 			{0x20, AC_VERB_SET_PROC_COEF, 0x0011},
8058 			{ }
8059 		},
8060 		.chained = true,
8061 		.chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8062 	},
8063 	[ALC290_FIXUP_SUBWOOFER_HSJACK] = {
8064 		.type = HDA_FIXUP_PINS,
8065 		.v.pins = (const struct hda_pintbl[]) {
8066 			{ 0x17, 0x90170112 }, /* subwoofer */
8067 			{ }
8068 		},
8069 		.chained = true,
8070 		.chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
8071 	},
8072 	[ALC290_FIXUP_SUBWOOFER] = {
8073 		.type = HDA_FIXUP_PINS,
8074 		.v.pins = (const struct hda_pintbl[]) {
8075 			{ 0x17, 0x90170112 }, /* subwoofer */
8076 			{ }
8077 		},
8078 		.chained = true,
8079 		.chain_id = ALC290_FIXUP_MONO_SPEAKERS,
8080 	},
8081 	[ALC290_FIXUP_MONO_SPEAKERS] = {
8082 		.type = HDA_FIXUP_FUNC,
8083 		.v.func = alc290_fixup_mono_speakers,
8084 	},
8085 	[ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
8086 		.type = HDA_FIXUP_FUNC,
8087 		.v.func = alc290_fixup_mono_speakers,
8088 		.chained = true,
8089 		.chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
8090 	},
8091 	[ALC269_FIXUP_THINKPAD_ACPI] = {
8092 		.type = HDA_FIXUP_FUNC,
8093 		.v.func = alc_fixup_thinkpad_acpi,
8094 		.chained = true,
8095 		.chain_id = ALC269_FIXUP_SKU_IGNORE,
8096 	},
8097 	[ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
8098 		.type = HDA_FIXUP_FUNC,
8099 		.v.func = alc_fixup_inv_dmic,
8100 		.chained = true,
8101 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8102 	},
8103 	[ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
8104 		.type = HDA_FIXUP_PINS,
8105 		.v.pins = (const struct hda_pintbl[]) {
8106 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8107 			{ }
8108 		},
8109 		.chained = true,
8110 		.chain_id = ALC255_FIXUP_HEADSET_MODE
8111 	},
8112 	[ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8113 		.type = HDA_FIXUP_PINS,
8114 		.v.pins = (const struct hda_pintbl[]) {
8115 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8116 			{ }
8117 		},
8118 		.chained = true,
8119 		.chain_id = ALC255_FIXUP_HEADSET_MODE
8120 	},
8121 	[ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8122 		.type = HDA_FIXUP_PINS,
8123 		.v.pins = (const struct hda_pintbl[]) {
8124 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8125 			{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8126 			{ }
8127 		},
8128 		.chained = true,
8129 		.chain_id = ALC255_FIXUP_HEADSET_MODE
8130 	},
8131 	[ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
8132 		.type = HDA_FIXUP_PINS,
8133 		.v.pins = (const struct hda_pintbl[]) {
8134 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8135 			{ }
8136 		},
8137 		.chained = true,
8138 		.chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8139 	},
8140 	[ALC255_FIXUP_HEADSET_MODE] = {
8141 		.type = HDA_FIXUP_FUNC,
8142 		.v.func = alc_fixup_headset_mode_alc255,
8143 		.chained = true,
8144 		.chain_id = ALC255_FIXUP_MIC_MUTE_LED
8145 	},
8146 	[ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
8147 		.type = HDA_FIXUP_FUNC,
8148 		.v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
8149 	},
8150 	[ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8151 		.type = HDA_FIXUP_PINS,
8152 		.v.pins = (const struct hda_pintbl[]) {
8153 			{ 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8154 			{ 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8155 			{ }
8156 		},
8157 		.chained = true,
8158 		.chain_id = ALC269_FIXUP_HEADSET_MODE
8159 	},
8160 	[ALC292_FIXUP_TPT440_DOCK] = {
8161 		.type = HDA_FIXUP_FUNC,
8162 		.v.func = alc_fixup_tpt440_dock,
8163 		.chained = true,
8164 		.chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8165 	},
8166 	[ALC292_FIXUP_TPT440] = {
8167 		.type = HDA_FIXUP_FUNC,
8168 		.v.func = alc_fixup_disable_aamix,
8169 		.chained = true,
8170 		.chain_id = ALC292_FIXUP_TPT440_DOCK,
8171 	},
8172 	[ALC283_FIXUP_HEADSET_MIC] = {
8173 		.type = HDA_FIXUP_PINS,
8174 		.v.pins = (const struct hda_pintbl[]) {
8175 			{ 0x19, 0x04a110f0 },
8176 			{ },
8177 		},
8178 	},
8179 	[ALC255_FIXUP_MIC_MUTE_LED] = {
8180 		.type = HDA_FIXUP_FUNC,
8181 		.v.func = alc_fixup_micmute_led,
8182 	},
8183 	[ALC282_FIXUP_ASPIRE_V5_PINS] = {
8184 		.type = HDA_FIXUP_PINS,
8185 		.v.pins = (const struct hda_pintbl[]) {
8186 			{ 0x12, 0x90a60130 },
8187 			{ 0x14, 0x90170110 },
8188 			{ 0x17, 0x40000008 },
8189 			{ 0x18, 0x411111f0 },
8190 			{ 0x19, 0x01a1913c },
8191 			{ 0x1a, 0x411111f0 },
8192 			{ 0x1b, 0x411111f0 },
8193 			{ 0x1d, 0x40f89b2d },
8194 			{ 0x1e, 0x411111f0 },
8195 			{ 0x21, 0x0321101f },
8196 			{ },
8197 		},
8198 	},
8199 	[ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
8200 		.type = HDA_FIXUP_FUNC,
8201 		.v.func = alc269vb_fixup_aspire_e1_coef,
8202 	},
8203 	[ALC280_FIXUP_HP_GPIO4] = {
8204 		.type = HDA_FIXUP_FUNC,
8205 		.v.func = alc280_fixup_hp_gpio4,
8206 	},
8207 	[ALC286_FIXUP_HP_GPIO_LED] = {
8208 		.type = HDA_FIXUP_FUNC,
8209 		.v.func = alc286_fixup_hp_gpio_led,
8210 	},
8211 	[ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
8212 		.type = HDA_FIXUP_FUNC,
8213 		.v.func = alc280_fixup_hp_gpio2_mic_hotkey,
8214 	},
8215 	[ALC280_FIXUP_HP_DOCK_PINS] = {
8216 		.type = HDA_FIXUP_PINS,
8217 		.v.pins = (const struct hda_pintbl[]) {
8218 			{ 0x1b, 0x21011020 }, /* line-out */
8219 			{ 0x1a, 0x01a1903c }, /* headset mic */
8220 			{ 0x18, 0x2181103f }, /* line-in */
8221 			{ },
8222 		},
8223 		.chained = true,
8224 		.chain_id = ALC280_FIXUP_HP_GPIO4
8225 	},
8226 	[ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
8227 		.type = HDA_FIXUP_PINS,
8228 		.v.pins = (const struct hda_pintbl[]) {
8229 			{ 0x1b, 0x21011020 }, /* line-out */
8230 			{ 0x18, 0x2181103f }, /* line-in */
8231 			{ },
8232 		},
8233 		.chained = true,
8234 		.chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
8235 	},
8236 	[ALC280_FIXUP_HP_9480M] = {
8237 		.type = HDA_FIXUP_FUNC,
8238 		.v.func = alc280_fixup_hp_9480m,
8239 	},
8240 	[ALC245_FIXUP_HP_X360_AMP] = {
8241 		.type = HDA_FIXUP_FUNC,
8242 		.v.func = alc245_fixup_hp_x360_amp,
8243 		.chained = true,
8244 		.chain_id = ALC245_FIXUP_HP_GPIO_LED
8245 	},
8246 	[ALC288_FIXUP_DELL_HEADSET_MODE] = {
8247 		.type = HDA_FIXUP_FUNC,
8248 		.v.func = alc_fixup_headset_mode_dell_alc288,
8249 		.chained = true,
8250 		.chain_id = ALC255_FIXUP_MIC_MUTE_LED
8251 	},
8252 	[ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8253 		.type = HDA_FIXUP_PINS,
8254 		.v.pins = (const struct hda_pintbl[]) {
8255 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8256 			{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8257 			{ }
8258 		},
8259 		.chained = true,
8260 		.chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
8261 	},
8262 	[ALC288_FIXUP_DISABLE_AAMIX] = {
8263 		.type = HDA_FIXUP_FUNC,
8264 		.v.func = alc_fixup_disable_aamix,
8265 		.chained = true,
8266 		.chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
8267 	},
8268 	[ALC288_FIXUP_DELL_XPS_13] = {
8269 		.type = HDA_FIXUP_FUNC,
8270 		.v.func = alc_fixup_dell_xps13,
8271 		.chained = true,
8272 		.chain_id = ALC288_FIXUP_DISABLE_AAMIX
8273 	},
8274 	[ALC292_FIXUP_DISABLE_AAMIX] = {
8275 		.type = HDA_FIXUP_FUNC,
8276 		.v.func = alc_fixup_disable_aamix,
8277 		.chained = true,
8278 		.chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8279 	},
8280 	[ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8281 		.type = HDA_FIXUP_FUNC,
8282 		.v.func = alc_fixup_disable_aamix,
8283 		.chained = true,
8284 		.chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8285 	},
8286 	[ALC292_FIXUP_DELL_E7X_AAMIX] = {
8287 		.type = HDA_FIXUP_FUNC,
8288 		.v.func = alc_fixup_dell_xps13,
8289 		.chained = true,
8290 		.chain_id = ALC292_FIXUP_DISABLE_AAMIX
8291 	},
8292 	[ALC292_FIXUP_DELL_E7X] = {
8293 		.type = HDA_FIXUP_FUNC,
8294 		.v.func = alc_fixup_micmute_led,
8295 		/* micmute fixup must be applied at last */
8296 		.chained_before = true,
8297 		.chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8298 	},
8299 	[ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8300 		.type = HDA_FIXUP_PINS,
8301 		.v.pins = (const struct hda_pintbl[]) {
8302 			{ 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8303 			{ }
8304 		},
8305 		.chained_before = true,
8306 		.chain_id = ALC269_FIXUP_HEADSET_MODE,
8307 	},
8308 	[ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8309 		.type = HDA_FIXUP_PINS,
8310 		.v.pins = (const struct hda_pintbl[]) {
8311 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8312 			{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8313 			{ }
8314 		},
8315 		.chained = true,
8316 		.chain_id = ALC269_FIXUP_HEADSET_MODE
8317 	},
8318 	[ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8319 		.type = HDA_FIXUP_PINS,
8320 		.v.pins = (const struct hda_pintbl[]) {
8321 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8322 			{ }
8323 		},
8324 		.chained = true,
8325 		.chain_id = ALC269_FIXUP_HEADSET_MODE
8326 	},
8327 	[ALC275_FIXUP_DELL_XPS] = {
8328 		.type = HDA_FIXUP_VERBS,
8329 		.v.verbs = (const struct hda_verb[]) {
8330 			/* Enables internal speaker */
8331 			{0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8332 			{0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8333 			{0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8334 			{0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8335 			{}
8336 		}
8337 	},
8338 	[ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8339 		.type = HDA_FIXUP_FUNC,
8340 		.v.func = alc_fixup_disable_aamix,
8341 		.chained = true,
8342 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
8343 	},
8344 	[ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8345 		.type = HDA_FIXUP_FUNC,
8346 		.v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8347 	},
8348 	[ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8349 		.type = HDA_FIXUP_FUNC,
8350 		.v.func = alc_fixup_inv_dmic,
8351 		.chained = true,
8352 		.chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8353 	},
8354 	[ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8355 		.type = HDA_FIXUP_FUNC,
8356 		.v.func = alc269_fixup_limit_int_mic_boost
8357 	},
8358 	[ALC255_FIXUP_DELL_SPK_NOISE] = {
8359 		.type = HDA_FIXUP_FUNC,
8360 		.v.func = alc_fixup_disable_aamix,
8361 		.chained = true,
8362 		.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8363 	},
8364 	[ALC225_FIXUP_DISABLE_MIC_VREF] = {
8365 		.type = HDA_FIXUP_FUNC,
8366 		.v.func = alc_fixup_disable_mic_vref,
8367 		.chained = true,
8368 		.chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8369 	},
8370 	[ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8371 		.type = HDA_FIXUP_VERBS,
8372 		.v.verbs = (const struct hda_verb[]) {
8373 			/* Disable pass-through path for FRONT 14h */
8374 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8375 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8376 			{}
8377 		},
8378 		.chained = true,
8379 		.chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
8380 	},
8381 	[ALC280_FIXUP_HP_HEADSET_MIC] = {
8382 		.type = HDA_FIXUP_FUNC,
8383 		.v.func = alc_fixup_disable_aamix,
8384 		.chained = true,
8385 		.chain_id = ALC269_FIXUP_HEADSET_MIC,
8386 	},
8387 	[ALC221_FIXUP_HP_FRONT_MIC] = {
8388 		.type = HDA_FIXUP_PINS,
8389 		.v.pins = (const struct hda_pintbl[]) {
8390 			{ 0x19, 0x02a19020 }, /* Front Mic */
8391 			{ }
8392 		},
8393 	},
8394 	[ALC292_FIXUP_TPT460] = {
8395 		.type = HDA_FIXUP_FUNC,
8396 		.v.func = alc_fixup_tpt440_dock,
8397 		.chained = true,
8398 		.chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8399 	},
8400 	[ALC298_FIXUP_SPK_VOLUME] = {
8401 		.type = HDA_FIXUP_FUNC,
8402 		.v.func = alc298_fixup_speaker_volume,
8403 		.chained = true,
8404 		.chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
8405 	},
8406 	[ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8407 		.type = HDA_FIXUP_FUNC,
8408 		.v.func = alc298_fixup_speaker_volume,
8409 	},
8410 	[ALC295_FIXUP_DISABLE_DAC3] = {
8411 		.type = HDA_FIXUP_FUNC,
8412 		.v.func = alc295_fixup_disable_dac3,
8413 	},
8414 	[ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8415 		.type = HDA_FIXUP_FUNC,
8416 		.v.func = alc285_fixup_speaker2_to_dac1,
8417 		.chained = true,
8418 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
8419 	},
8420 	[ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8421 		.type = HDA_FIXUP_FUNC,
8422 		.v.func = alc285_fixup_speaker2_to_dac1,
8423 		.chained = true,
8424 		.chain_id = ALC245_FIXUP_CS35L41_SPI_2
8425 	},
8426 	[ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8427 		.type = HDA_FIXUP_PINS,
8428 		.v.pins = (const struct hda_pintbl[]) {
8429 			{ 0x19, 0x03a11050 },
8430 			{ 0x1b, 0x03a11c30 },
8431 			{ }
8432 		},
8433 		.chained = true,
8434 		.chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8435 	},
8436 	[ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8437 		.type = HDA_FIXUP_PINS,
8438 		.v.pins = (const struct hda_pintbl[]) {
8439 			{ 0x14, 0x90170120 },
8440 			{ }
8441 		},
8442 		.chained = true,
8443 		.chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8444 	},
8445 	[ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8446 		.type = HDA_FIXUP_FUNC,
8447 		.v.func = alc285_fixup_speaker2_to_dac1,
8448 		.chained = true,
8449 		.chain_id = ALC287_FIXUP_CS35L41_I2C_2
8450 	},
8451 	[ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8452 		.type = HDA_FIXUP_PINS,
8453 		.v.pins = (const struct hda_pintbl[]) {
8454 			{ 0x19, 0x03a11050 },
8455 			{ 0x1b, 0x03a11c30 },
8456 			{ }
8457 		},
8458 		.chained = true,
8459 		.chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8460 	},
8461 	[ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8462 		.type = HDA_FIXUP_PINS,
8463 		.v.pins = (const struct hda_pintbl[]) {
8464 			{ 0x1b, 0x90170151 },
8465 			{ }
8466 		},
8467 		.chained = true,
8468 		.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8469 	},
8470 	[ALC269_FIXUP_ATIV_BOOK_8] = {
8471 		.type = HDA_FIXUP_FUNC,
8472 		.v.func = alc_fixup_auto_mute_via_amp,
8473 		.chained = true,
8474 		.chain_id = ALC269_FIXUP_NO_SHUTUP
8475 	},
8476 	[ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8477 		.type = HDA_FIXUP_PINS,
8478 		.v.pins = (const struct hda_pintbl[]) {
8479 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8480 			{ 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8481 			{ }
8482 		},
8483 		.chained = true,
8484 		.chain_id = ALC269_FIXUP_HEADSET_MODE
8485 	},
8486 	[ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8487 		.type = HDA_FIXUP_PINS,
8488 		.v.pins = (const struct hda_pintbl[]) {
8489 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8490 			{ 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8491 			{ }
8492 		},
8493 		.chained = true,
8494 		.chain_id = ALC269_FIXUP_HEADSET_MODE
8495 	},
8496 	[ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8497 		.type = HDA_FIXUP_FUNC,
8498 		.v.func = alc_fixup_headset_mode,
8499 	},
8500 	[ALC256_FIXUP_ASUS_MIC] = {
8501 		.type = HDA_FIXUP_PINS,
8502 		.v.pins = (const struct hda_pintbl[]) {
8503 			{ 0x13, 0x90a60160 }, /* use as internal mic */
8504 			{ 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8505 			{ }
8506 		},
8507 		.chained = true,
8508 		.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8509 	},
8510 	[ALC256_FIXUP_ASUS_AIO_GPIO2] = {
8511 		.type = HDA_FIXUP_FUNC,
8512 		/* Set up GPIO2 for the speaker amp */
8513 		.v.func = alc_fixup_gpio4,
8514 	},
8515 	[ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8516 		.type = HDA_FIXUP_PINS,
8517 		.v.pins = (const struct hda_pintbl[]) {
8518 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8519 			{ }
8520 		},
8521 		.chained = true,
8522 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8523 	},
8524 	[ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8525 		.type = HDA_FIXUP_VERBS,
8526 		.v.verbs = (const struct hda_verb[]) {
8527 			/* Enables internal speaker */
8528 			{0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8529 			{0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8530 			{}
8531 		},
8532 		.chained = true,
8533 		.chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8534 	},
8535 	[ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8536 		.type = HDA_FIXUP_FUNC,
8537 		.v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8538 		.chained = true,
8539 		.chain_id = ALC269_FIXUP_GPIO2
8540 	},
8541 	[ALC233_FIXUP_ACER_HEADSET_MIC] = {
8542 		.type = HDA_FIXUP_VERBS,
8543 		.v.verbs = (const struct hda_verb[]) {
8544 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8545 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8546 			{ }
8547 		},
8548 		.chained = true,
8549 		.chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8550 	},
8551 	[ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8552 		.type = HDA_FIXUP_PINS,
8553 		.v.pins = (const struct hda_pintbl[]) {
8554 			/* Change the mic location from front to right, otherwise there are
8555 			   two front mics with the same name, pulseaudio can't handle them.
8556 			   This is just a temporary workaround, after applying this fixup,
8557 			   there will be one "Front Mic" and one "Mic" in this machine.
8558 			 */
8559 			{ 0x1a, 0x04a19040 },
8560 			{ }
8561 		},
8562 	},
8563 	[ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8564 		.type = HDA_FIXUP_PINS,
8565 		.v.pins = (const struct hda_pintbl[]) {
8566 			{ 0x16, 0x0101102f }, /* Rear Headset HP */
8567 			{ 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8568 			{ 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8569 			{ 0x1b, 0x02011020 },
8570 			{ }
8571 		},
8572 		.chained = true,
8573 		.chain_id = ALC225_FIXUP_S3_POP_NOISE
8574 	},
8575 	[ALC225_FIXUP_S3_POP_NOISE] = {
8576 		.type = HDA_FIXUP_FUNC,
8577 		.v.func = alc225_fixup_s3_pop_noise,
8578 		.chained = true,
8579 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8580 	},
8581 	[ALC700_FIXUP_INTEL_REFERENCE] = {
8582 		.type = HDA_FIXUP_VERBS,
8583 		.v.verbs = (const struct hda_verb[]) {
8584 			/* Enables internal speaker */
8585 			{0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8586 			{0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8587 			{0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8588 			{0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8589 			{0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8590 			{0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8591 			{0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8592 			{0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8593 			{}
8594 		}
8595 	},
8596 	[ALC274_FIXUP_DELL_BIND_DACS] = {
8597 		.type = HDA_FIXUP_FUNC,
8598 		.v.func = alc274_fixup_bind_dacs,
8599 		.chained = true,
8600 		.chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8601 	},
8602 	[ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8603 		.type = HDA_FIXUP_PINS,
8604 		.v.pins = (const struct hda_pintbl[]) {
8605 			{ 0x1b, 0x0401102f },
8606 			{ }
8607 		},
8608 		.chained = true,
8609 		.chain_id = ALC274_FIXUP_DELL_BIND_DACS
8610 	},
8611 	[ALC298_FIXUP_TPT470_DOCK_FIX] = {
8612 		.type = HDA_FIXUP_FUNC,
8613 		.v.func = alc_fixup_tpt470_dock,
8614 		.chained = true,
8615 		.chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8616 	},
8617 	[ALC298_FIXUP_TPT470_DOCK] = {
8618 		.type = HDA_FIXUP_FUNC,
8619 		.v.func = alc_fixup_tpt470_dacs,
8620 		.chained = true,
8621 		.chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8622 	},
8623 	[ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8624 		.type = HDA_FIXUP_PINS,
8625 		.v.pins = (const struct hda_pintbl[]) {
8626 			{ 0x14, 0x0201101f },
8627 			{ }
8628 		},
8629 		.chained = true,
8630 		.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8631 	},
8632 	[ALC255_FIXUP_DELL_HEADSET_MIC] = {
8633 		.type = HDA_FIXUP_PINS,
8634 		.v.pins = (const struct hda_pintbl[]) {
8635 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8636 			{ }
8637 		},
8638 		.chained = true,
8639 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8640 	},
8641 	[ALC295_FIXUP_HP_X360] = {
8642 		.type = HDA_FIXUP_FUNC,
8643 		.v.func = alc295_fixup_hp_top_speakers,
8644 		.chained = true,
8645 		.chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8646 	},
8647 	[ALC221_FIXUP_HP_HEADSET_MIC] = {
8648 		.type = HDA_FIXUP_PINS,
8649 		.v.pins = (const struct hda_pintbl[]) {
8650 			{ 0x19, 0x0181313f},
8651 			{ }
8652 		},
8653 		.chained = true,
8654 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8655 	},
8656 	[ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8657 		.type = HDA_FIXUP_FUNC,
8658 		.v.func = alc285_fixup_invalidate_dacs,
8659 		.chained = true,
8660 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
8661 	},
8662 	[ALC295_FIXUP_HP_AUTO_MUTE] = {
8663 		.type = HDA_FIXUP_FUNC,
8664 		.v.func = alc_fixup_auto_mute_via_amp,
8665 	},
8666 	[ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8667 		.type = HDA_FIXUP_PINS,
8668 		.v.pins = (const struct hda_pintbl[]) {
8669 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8670 			{ }
8671 		},
8672 		.chained = true,
8673 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8674 	},
8675 	[ALC294_FIXUP_ASUS_MIC] = {
8676 		.type = HDA_FIXUP_PINS,
8677 		.v.pins = (const struct hda_pintbl[]) {
8678 			{ 0x13, 0x90a60160 }, /* use as internal mic */
8679 			{ 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8680 			{ }
8681 		},
8682 		.chained = true,
8683 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8684 	},
8685 	[ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8686 		.type = HDA_FIXUP_PINS,
8687 		.v.pins = (const struct hda_pintbl[]) {
8688 			{ 0x19, 0x01a1103c }, /* use as headset mic */
8689 			{ }
8690 		},
8691 		.chained = true,
8692 		.chain_id = ALC269_FIXUP_HEADSET_MIC
8693 	},
8694 	[ALC294_FIXUP_ASUS_SPK] = {
8695 		.type = HDA_FIXUP_VERBS,
8696 		.v.verbs = (const struct hda_verb[]) {
8697 			/* Set EAPD high */
8698 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8699 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
8700 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8701 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8702 			{ }
8703 		},
8704 		.chained = true,
8705 		.chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8706 	},
8707 	[ALC295_FIXUP_CHROME_BOOK] = {
8708 		.type = HDA_FIXUP_FUNC,
8709 		.v.func = alc295_fixup_chromebook,
8710 		.chained = true,
8711 		.chain_id = ALC225_FIXUP_HEADSET_JACK
8712 	},
8713 	[ALC225_FIXUP_HEADSET_JACK] = {
8714 		.type = HDA_FIXUP_FUNC,
8715 		.v.func = alc_fixup_headset_jack,
8716 	},
8717 	[ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8718 		.type = HDA_FIXUP_PINS,
8719 		.v.pins = (const struct hda_pintbl[]) {
8720 			{ 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8721 			{ }
8722 		},
8723 		.chained = true,
8724 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8725 	},
8726 	[ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8727 		.type = HDA_FIXUP_VERBS,
8728 		.v.verbs = (const struct hda_verb[]) {
8729 			/* Disable PCBEEP-IN passthrough */
8730 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8731 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8732 			{ }
8733 		},
8734 		.chained = true,
8735 		.chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8736 	},
8737 	[ALC255_FIXUP_ACER_HEADSET_MIC] = {
8738 		.type = HDA_FIXUP_PINS,
8739 		.v.pins = (const struct hda_pintbl[]) {
8740 			{ 0x19, 0x03a11130 },
8741 			{ 0x1a, 0x90a60140 }, /* use as internal mic */
8742 			{ }
8743 		},
8744 		.chained = true,
8745 		.chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8746 	},
8747 	[ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8748 		.type = HDA_FIXUP_PINS,
8749 		.v.pins = (const struct hda_pintbl[]) {
8750 			{ 0x16, 0x01011020 }, /* Rear Line out */
8751 			{ 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8752 			{ }
8753 		},
8754 		.chained = true,
8755 		.chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8756 	},
8757 	[ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8758 		.type = HDA_FIXUP_FUNC,
8759 		.v.func = alc_fixup_auto_mute_via_amp,
8760 		.chained = true,
8761 		.chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8762 	},
8763 	[ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8764 		.type = HDA_FIXUP_FUNC,
8765 		.v.func = alc_fixup_disable_mic_vref,
8766 		.chained = true,
8767 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8768 	},
8769 	[ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8770 		.type = HDA_FIXUP_VERBS,
8771 		.v.verbs = (const struct hda_verb[]) {
8772 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8773 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8774 			{ }
8775 		},
8776 		.chained = true,
8777 		.chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8778 	},
8779 	[ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8780 		.type = HDA_FIXUP_PINS,
8781 		.v.pins = (const struct hda_pintbl[]) {
8782 			{ 0x19, 0x03a11020 }, /* headset mic with jack detect */
8783 			{ }
8784 		},
8785 		.chained = true,
8786 		.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8787 	},
8788 	[ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8789 		.type = HDA_FIXUP_PINS,
8790 		.v.pins = (const struct hda_pintbl[]) {
8791 			{ 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8792 			{ }
8793 		},
8794 		.chained = true,
8795 		.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8796 	},
8797 	[ALC299_FIXUP_PREDATOR_SPK] = {
8798 		.type = HDA_FIXUP_PINS,
8799 		.v.pins = (const struct hda_pintbl[]) {
8800 			{ 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8801 			{ }
8802 		}
8803 	},
8804 	[ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
8805 		.type = HDA_FIXUP_PINS,
8806 		.v.pins = (const struct hda_pintbl[]) {
8807 			{ 0x19, 0x04a11040 },
8808 			{ 0x21, 0x04211020 },
8809 			{ }
8810 		},
8811 		.chained = true,
8812 		.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8813 	},
8814 	[ALC289_FIXUP_DELL_SPK1] = {
8815 		.type = HDA_FIXUP_PINS,
8816 		.v.pins = (const struct hda_pintbl[]) {
8817 			{ 0x14, 0x90170140 },
8818 			{ }
8819 		},
8820 		.chained = true,
8821 		.chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8822 	},
8823 	[ALC289_FIXUP_DELL_SPK2] = {
8824 		.type = HDA_FIXUP_PINS,
8825 		.v.pins = (const struct hda_pintbl[]) {
8826 			{ 0x17, 0x90170130 }, /* bass spk */
8827 			{ }
8828 		},
8829 		.chained = true,
8830 		.chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8831 	},
8832 	[ALC289_FIXUP_DUAL_SPK] = {
8833 		.type = HDA_FIXUP_FUNC,
8834 		.v.func = alc285_fixup_speaker2_to_dac1,
8835 		.chained = true,
8836 		.chain_id = ALC289_FIXUP_DELL_SPK2
8837 	},
8838 	[ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8839 		.type = HDA_FIXUP_FUNC,
8840 		.v.func = alc285_fixup_speaker2_to_dac1,
8841 		.chained = true,
8842 		.chain_id = ALC289_FIXUP_DELL_SPK1
8843 	},
8844 	[ALC294_FIXUP_SPK2_TO_DAC1] = {
8845 		.type = HDA_FIXUP_FUNC,
8846 		.v.func = alc285_fixup_speaker2_to_dac1,
8847 		.chained = true,
8848 		.chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8849 	},
8850 	[ALC294_FIXUP_ASUS_DUAL_SPK] = {
8851 		.type = HDA_FIXUP_FUNC,
8852 		/* The GPIO must be pulled to initialize the AMP */
8853 		.v.func = alc_fixup_gpio4,
8854 		.chained = true,
8855 		.chain_id = ALC294_FIXUP_SPK2_TO_DAC1
8856 	},
8857 	[ALC294_FIXUP_ASUS_ALLY] = {
8858 		.type = HDA_FIXUP_FUNC,
8859 		.v.func = cs35l41_fixup_i2c_two,
8860 		.chained = true,
8861 		.chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8862 	},
8863 	[ALC294_FIXUP_ASUS_ALLY_PINS] = {
8864 		.type = HDA_FIXUP_PINS,
8865 		.v.pins = (const struct hda_pintbl[]) {
8866 			{ 0x19, 0x03a11050 },
8867 			{ 0x1a, 0x03a11c30 },
8868 			{ 0x21, 0x03211420 },
8869 			{ }
8870 		},
8871 		.chained = true,
8872 		.chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8873 	},
8874 	[ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8875 		.type = HDA_FIXUP_VERBS,
8876 		.v.verbs = (const struct hda_verb[]) {
8877 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8878 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8879 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8880 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8881 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8882 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8883 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8884 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8885 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8886 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8887 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8888 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8889 			{ }
8890 		},
8891 		.chained = true,
8892 		.chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8893 	},
8894 	[ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8895 		.type = HDA_FIXUP_FUNC,
8896 		.v.func = alc285_fixup_speaker2_to_dac1,
8897 	},
8898 	[ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8899 		.type = HDA_FIXUP_FUNC,
8900 		.v.func = alc285_fixup_thinkpad_x1_gen7,
8901 		.chained = true,
8902 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
8903 	},
8904 	[ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8905 		.type = HDA_FIXUP_FUNC,
8906 		.v.func = alc_fixup_headset_jack,
8907 		.chained = true,
8908 		.chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
8909 	},
8910 	[ALC294_FIXUP_ASUS_HPE] = {
8911 		.type = HDA_FIXUP_VERBS,
8912 		.v.verbs = (const struct hda_verb[]) {
8913 			/* Set EAPD high */
8914 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8915 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8916 			{ }
8917 		},
8918 		.chained = true,
8919 		.chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8920 	},
8921 	[ALC294_FIXUP_ASUS_GX502_PINS] = {
8922 		.type = HDA_FIXUP_PINS,
8923 		.v.pins = (const struct hda_pintbl[]) {
8924 			{ 0x19, 0x03a11050 }, /* front HP mic */
8925 			{ 0x1a, 0x01a11830 }, /* rear external mic */
8926 			{ 0x21, 0x03211020 }, /* front HP out */
8927 			{ }
8928 		},
8929 		.chained = true,
8930 		.chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8931 	},
8932 	[ALC294_FIXUP_ASUS_GX502_VERBS] = {
8933 		.type = HDA_FIXUP_VERBS,
8934 		.v.verbs = (const struct hda_verb[]) {
8935 			/* set 0x15 to HP-OUT ctrl */
8936 			{ 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8937 			/* unmute the 0x15 amp */
8938 			{ 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8939 			{ }
8940 		},
8941 		.chained = true,
8942 		.chain_id = ALC294_FIXUP_ASUS_GX502_HP
8943 	},
8944 	[ALC294_FIXUP_ASUS_GX502_HP] = {
8945 		.type = HDA_FIXUP_FUNC,
8946 		.v.func = alc294_fixup_gx502_hp,
8947 	},
8948 	[ALC294_FIXUP_ASUS_GU502_PINS] = {
8949 		.type = HDA_FIXUP_PINS,
8950 		.v.pins = (const struct hda_pintbl[]) {
8951 			{ 0x19, 0x01a11050 }, /* rear HP mic */
8952 			{ 0x1a, 0x01a11830 }, /* rear external mic */
8953 			{ 0x21, 0x012110f0 }, /* rear HP out */
8954 			{ }
8955 		},
8956 		.chained = true,
8957 		.chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8958 	},
8959 	[ALC294_FIXUP_ASUS_GU502_VERBS] = {
8960 		.type = HDA_FIXUP_VERBS,
8961 		.v.verbs = (const struct hda_verb[]) {
8962 			/* set 0x15 to HP-OUT ctrl */
8963 			{ 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8964 			/* unmute the 0x15 amp */
8965 			{ 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8966 			/* set 0x1b to HP-OUT */
8967 			{ 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8968 			{ }
8969 		},
8970 		.chained = true,
8971 		.chain_id = ALC294_FIXUP_ASUS_GU502_HP
8972 	},
8973 	[ALC294_FIXUP_ASUS_GU502_HP] = {
8974 		.type = HDA_FIXUP_FUNC,
8975 		.v.func = alc294_fixup_gu502_hp,
8976 	},
8977 	 [ALC294_FIXUP_ASUS_G513_PINS] = {
8978 		.type = HDA_FIXUP_PINS,
8979 		.v.pins = (const struct hda_pintbl[]) {
8980 				{ 0x19, 0x03a11050 }, /* front HP mic */
8981 				{ 0x1a, 0x03a11c30 }, /* rear external mic */
8982 				{ 0x21, 0x03211420 }, /* front HP out */
8983 				{ }
8984 		},
8985 	},
8986 	[ALC285_FIXUP_ASUS_G533Z_PINS] = {
8987 		.type = HDA_FIXUP_PINS,
8988 		.v.pins = (const struct hda_pintbl[]) {
8989 			{ 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8990 			{ 0x19, 0x03a19020 }, /* Mic Boost Volume */
8991 			{ 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8992 			{ 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8993 			{ 0x21, 0x03211420 },
8994 			{ }
8995 		},
8996 	},
8997 	[ALC294_FIXUP_ASUS_COEF_1B] = {
8998 		.type = HDA_FIXUP_VERBS,
8999 		.v.verbs = (const struct hda_verb[]) {
9000 			/* Set bit 10 to correct noisy output after reboot from
9001 			 * Windows 10 (due to pop noise reduction?)
9002 			 */
9003 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
9004 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
9005 			{ }
9006 		},
9007 		.chained = true,
9008 		.chain_id = ALC289_FIXUP_ASUS_GA401,
9009 	},
9010 	[ALC285_FIXUP_HP_GPIO_LED] = {
9011 		.type = HDA_FIXUP_FUNC,
9012 		.v.func = alc285_fixup_hp_gpio_led,
9013 	},
9014 	[ALC285_FIXUP_HP_MUTE_LED] = {
9015 		.type = HDA_FIXUP_FUNC,
9016 		.v.func = alc285_fixup_hp_mute_led,
9017 	},
9018 	[ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
9019 		.type = HDA_FIXUP_FUNC,
9020 		.v.func = alc285_fixup_hp_spectre_x360_mute_led,
9021 	},
9022 	[ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
9023 	    .type = HDA_FIXUP_FUNC,
9024 	    .v.func = alc236_fixup_hp_mute_led_coefbit2,
9025 	},
9026 	[ALC236_FIXUP_HP_GPIO_LED] = {
9027 		.type = HDA_FIXUP_FUNC,
9028 		.v.func = alc236_fixup_hp_gpio_led,
9029 	},
9030 	[ALC236_FIXUP_HP_MUTE_LED] = {
9031 		.type = HDA_FIXUP_FUNC,
9032 		.v.func = alc236_fixup_hp_mute_led,
9033 	},
9034 	[ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
9035 		.type = HDA_FIXUP_FUNC,
9036 		.v.func = alc236_fixup_hp_mute_led_micmute_vref,
9037 	},
9038 	[ALC298_FIXUP_SAMSUNG_AMP] = {
9039 		.type = HDA_FIXUP_FUNC,
9040 		.v.func = alc298_fixup_samsung_amp,
9041 		.chained = true,
9042 		.chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
9043 	},
9044 	[ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
9045 		.type = HDA_FIXUP_VERBS,
9046 		.v.verbs = (const struct hda_verb[]) {
9047 			{ 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
9048 			{ }
9049 		},
9050 	},
9051 	[ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
9052 		.type = HDA_FIXUP_VERBS,
9053 		.v.verbs = (const struct hda_verb[]) {
9054 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
9055 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
9056 			{ }
9057 		},
9058 	},
9059 	[ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
9060 		.type = HDA_FIXUP_PINS,
9061 		.v.pins = (const struct hda_pintbl[]) {
9062 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9063 			{ }
9064 		},
9065 		.chained = true,
9066 		.chain_id = ALC269_FIXUP_HEADSET_MODE
9067 	},
9068 	[ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
9069 		.type = HDA_FIXUP_PINS,
9070 		.v.pins = (const struct hda_pintbl[]) {
9071 			{ 0x14, 0x90100120 }, /* use as internal speaker */
9072 			{ 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
9073 			{ 0x1a, 0x01011020 }, /* use as line out */
9074 			{ },
9075 		},
9076 		.chained = true,
9077 		.chain_id = ALC269_FIXUP_HEADSET_MIC
9078 	},
9079 	[ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
9080 		.type = HDA_FIXUP_PINS,
9081 		.v.pins = (const struct hda_pintbl[]) {
9082 			{ 0x18, 0x02a11030 }, /* use as headset mic */
9083 			{ }
9084 		},
9085 		.chained = true,
9086 		.chain_id = ALC269_FIXUP_HEADSET_MIC
9087 	},
9088 	[ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
9089 		.type = HDA_FIXUP_PINS,
9090 		.v.pins = (const struct hda_pintbl[]) {
9091 			{ 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
9092 			{ }
9093 		},
9094 		.chained = true,
9095 		.chain_id = ALC269_FIXUP_HEADSET_MIC
9096 	},
9097 	[ALC289_FIXUP_ASUS_GA401] = {
9098 		.type = HDA_FIXUP_FUNC,
9099 		.v.func = alc289_fixup_asus_ga401,
9100 		.chained = true,
9101 		.chain_id = ALC289_FIXUP_ASUS_GA502,
9102 	},
9103 	[ALC289_FIXUP_ASUS_GA502] = {
9104 		.type = HDA_FIXUP_PINS,
9105 		.v.pins = (const struct hda_pintbl[]) {
9106 			{ 0x19, 0x03a11020 }, /* headset mic with jack detect */
9107 			{ }
9108 		},
9109 	},
9110 	[ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
9111 		.type = HDA_FIXUP_PINS,
9112 		.v.pins = (const struct hda_pintbl[]) {
9113 			{ 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
9114 			{ }
9115 		},
9116 		.chained = true,
9117 		.chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
9118 	},
9119 	[ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
9120 		.type = HDA_FIXUP_FUNC,
9121 		.v.func = alc285_fixup_hp_gpio_amp_init,
9122 		.chained = true,
9123 		.chain_id = ALC285_FIXUP_HP_GPIO_LED
9124 	},
9125 	[ALC269_FIXUP_CZC_B20] = {
9126 		.type = HDA_FIXUP_PINS,
9127 		.v.pins = (const struct hda_pintbl[]) {
9128 			{ 0x12, 0x411111f0 },
9129 			{ 0x14, 0x90170110 }, /* speaker */
9130 			{ 0x15, 0x032f1020 }, /* HP out */
9131 			{ 0x17, 0x411111f0 },
9132 			{ 0x18, 0x03ab1040 }, /* mic */
9133 			{ 0x19, 0xb7a7013f },
9134 			{ 0x1a, 0x0181305f },
9135 			{ 0x1b, 0x411111f0 },
9136 			{ 0x1d, 0x411111f0 },
9137 			{ 0x1e, 0x411111f0 },
9138 			{ }
9139 		},
9140 		.chain_id = ALC269_FIXUP_DMIC,
9141 	},
9142 	[ALC269_FIXUP_CZC_TMI] = {
9143 		.type = HDA_FIXUP_PINS,
9144 		.v.pins = (const struct hda_pintbl[]) {
9145 			{ 0x12, 0x4000c000 },
9146 			{ 0x14, 0x90170110 }, /* speaker */
9147 			{ 0x15, 0x0421401f }, /* HP out */
9148 			{ 0x17, 0x411111f0 },
9149 			{ 0x18, 0x04a19020 }, /* mic */
9150 			{ 0x19, 0x411111f0 },
9151 			{ 0x1a, 0x411111f0 },
9152 			{ 0x1b, 0x411111f0 },
9153 			{ 0x1d, 0x40448505 },
9154 			{ 0x1e, 0x411111f0 },
9155 			{ 0x20, 0x8000ffff },
9156 			{ }
9157 		},
9158 		.chain_id = ALC269_FIXUP_DMIC,
9159 	},
9160 	[ALC269_FIXUP_CZC_L101] = {
9161 		.type = HDA_FIXUP_PINS,
9162 		.v.pins = (const struct hda_pintbl[]) {
9163 			{ 0x12, 0x40000000 },
9164 			{ 0x14, 0x01014010 }, /* speaker */
9165 			{ 0x15, 0x411111f0 }, /* HP out */
9166 			{ 0x16, 0x411111f0 },
9167 			{ 0x18, 0x01a19020 }, /* mic */
9168 			{ 0x19, 0x02a19021 },
9169 			{ 0x1a, 0x0181302f },
9170 			{ 0x1b, 0x0221401f },
9171 			{ 0x1c, 0x411111f0 },
9172 			{ 0x1d, 0x4044c601 },
9173 			{ 0x1e, 0x411111f0 },
9174 			{ }
9175 		},
9176 		.chain_id = ALC269_FIXUP_DMIC,
9177 	},
9178 	[ALC269_FIXUP_LEMOTE_A1802] = {
9179 		.type = HDA_FIXUP_PINS,
9180 		.v.pins = (const struct hda_pintbl[]) {
9181 			{ 0x12, 0x40000000 },
9182 			{ 0x14, 0x90170110 }, /* speaker */
9183 			{ 0x17, 0x411111f0 },
9184 			{ 0x18, 0x03a19040 }, /* mic1 */
9185 			{ 0x19, 0x90a70130 }, /* mic2 */
9186 			{ 0x1a, 0x411111f0 },
9187 			{ 0x1b, 0x411111f0 },
9188 			{ 0x1d, 0x40489d2d },
9189 			{ 0x1e, 0x411111f0 },
9190 			{ 0x20, 0x0003ffff },
9191 			{ 0x21, 0x03214020 },
9192 			{ }
9193 		},
9194 		.chain_id = ALC269_FIXUP_DMIC,
9195 	},
9196 	[ALC269_FIXUP_LEMOTE_A190X] = {
9197 		.type = HDA_FIXUP_PINS,
9198 		.v.pins = (const struct hda_pintbl[]) {
9199 			{ 0x14, 0x99130110 }, /* speaker */
9200 			{ 0x15, 0x0121401f }, /* HP out */
9201 			{ 0x18, 0x01a19c20 }, /* rear  mic */
9202 			{ 0x19, 0x99a3092f }, /* front mic */
9203 			{ 0x1b, 0x0201401f }, /* front lineout */
9204 			{ }
9205 		},
9206 		.chain_id = ALC269_FIXUP_DMIC,
9207 	},
9208 	[ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
9209 		.type = HDA_FIXUP_PINS,
9210 		.v.pins = (const struct hda_pintbl[]) {
9211 			{ 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9212 			{ }
9213 		},
9214 		.chained = true,
9215 		.chain_id = ALC269_FIXUP_HEADSET_MODE
9216 	},
9217 	[ALC256_FIXUP_INTEL_NUC10] = {
9218 		.type = HDA_FIXUP_PINS,
9219 		.v.pins = (const struct hda_pintbl[]) {
9220 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9221 			{ }
9222 		},
9223 		.chained = true,
9224 		.chain_id = ALC269_FIXUP_HEADSET_MODE
9225 	},
9226 	[ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
9227 		.type = HDA_FIXUP_VERBS,
9228 		.v.verbs = (const struct hda_verb[]) {
9229 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9230 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9231 			{ }
9232 		},
9233 		.chained = true,
9234 		.chain_id = ALC289_FIXUP_ASUS_GA502
9235 	},
9236 	[ALC274_FIXUP_HP_MIC] = {
9237 		.type = HDA_FIXUP_VERBS,
9238 		.v.verbs = (const struct hda_verb[]) {
9239 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9240 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9241 			{ }
9242 		},
9243 	},
9244 	[ALC274_FIXUP_HP_HEADSET_MIC] = {
9245 		.type = HDA_FIXUP_FUNC,
9246 		.v.func = alc274_fixup_hp_headset_mic,
9247 		.chained = true,
9248 		.chain_id = ALC274_FIXUP_HP_MIC
9249 	},
9250 	[ALC274_FIXUP_HP_ENVY_GPIO] = {
9251 		.type = HDA_FIXUP_FUNC,
9252 		.v.func = alc274_fixup_hp_envy_gpio,
9253 	},
9254 	[ALC256_FIXUP_ASUS_HPE] = {
9255 		.type = HDA_FIXUP_VERBS,
9256 		.v.verbs = (const struct hda_verb[]) {
9257 			/* Set EAPD high */
9258 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
9259 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
9260 			{ }
9261 		},
9262 		.chained = true,
9263 		.chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9264 	},
9265 	[ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9266 		.type = HDA_FIXUP_FUNC,
9267 		.v.func = alc_fixup_headset_jack,
9268 		.chained = true,
9269 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
9270 	},
9271 	[ALC287_FIXUP_HP_GPIO_LED] = {
9272 		.type = HDA_FIXUP_FUNC,
9273 		.v.func = alc287_fixup_hp_gpio_led,
9274 	},
9275 	[ALC256_FIXUP_HP_HEADSET_MIC] = {
9276 		.type = HDA_FIXUP_FUNC,
9277 		.v.func = alc274_fixup_hp_headset_mic,
9278 	},
9279 	[ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9280 		.type = HDA_FIXUP_FUNC,
9281 		.v.func = alc_fixup_no_int_mic,
9282 		.chained = true,
9283 		.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9284 	},
9285 	[ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9286 		.type = HDA_FIXUP_PINS,
9287 		.v.pins = (const struct hda_pintbl[]) {
9288 			{ 0x1b, 0x411111f0 },
9289 			{ 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9290 			{ },
9291 		},
9292 		.chained = true,
9293 		.chain_id = ALC269_FIXUP_HEADSET_MODE
9294 	},
9295 	[ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9296 		.type = HDA_FIXUP_FUNC,
9297 		.v.func = alc269_fixup_limit_int_mic_boost,
9298 		.chained = true,
9299 		.chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9300 	},
9301 	[ALC256_FIXUP_ACER_HEADSET_MIC] = {
9302 		.type = HDA_FIXUP_PINS,
9303 		.v.pins = (const struct hda_pintbl[]) {
9304 			{ 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9305 			{ 0x1a, 0x90a1092f }, /* use as internal mic */
9306 			{ }
9307 		},
9308 		.chained = true,
9309 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9310 	},
9311 	[ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9312 		.type = HDA_FIXUP_FUNC,
9313 		.v.func = alc285_fixup_ideapad_s740_coef,
9314 		.chained = true,
9315 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9316 	},
9317 	[ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9318 		.type = HDA_FIXUP_FUNC,
9319 		.v.func = alc269_fixup_limit_int_mic_boost,
9320 		.chained = true,
9321 		.chain_id = ALC285_FIXUP_HP_MUTE_LED,
9322 	},
9323 	[ALC295_FIXUP_ASUS_DACS] = {
9324 		.type = HDA_FIXUP_FUNC,
9325 		.v.func = alc295_fixup_asus_dacs,
9326 	},
9327 	[ALC295_FIXUP_HP_OMEN] = {
9328 		.type = HDA_FIXUP_PINS,
9329 		.v.pins = (const struct hda_pintbl[]) {
9330 			{ 0x12, 0xb7a60130 },
9331 			{ 0x13, 0x40000000 },
9332 			{ 0x14, 0x411111f0 },
9333 			{ 0x16, 0x411111f0 },
9334 			{ 0x17, 0x90170110 },
9335 			{ 0x18, 0x411111f0 },
9336 			{ 0x19, 0x02a11030 },
9337 			{ 0x1a, 0x411111f0 },
9338 			{ 0x1b, 0x04a19030 },
9339 			{ 0x1d, 0x40600001 },
9340 			{ 0x1e, 0x411111f0 },
9341 			{ 0x21, 0x03211020 },
9342 			{}
9343 		},
9344 		.chained = true,
9345 		.chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9346 	},
9347 	[ALC285_FIXUP_HP_SPECTRE_X360] = {
9348 		.type = HDA_FIXUP_FUNC,
9349 		.v.func = alc285_fixup_hp_spectre_x360,
9350 	},
9351 	[ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9352 		.type = HDA_FIXUP_FUNC,
9353 		.v.func = alc285_fixup_hp_spectre_x360_eb1
9354 	},
9355 	[ALC285_FIXUP_HP_ENVY_X360] = {
9356 		.type = HDA_FIXUP_FUNC,
9357 		.v.func = alc285_fixup_hp_envy_x360,
9358 		.chained = true,
9359 		.chain_id = ALC285_FIXUP_HP_GPIO_AMP_INIT,
9360 	},
9361 	[ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9362 		.type = HDA_FIXUP_FUNC,
9363 		.v.func = alc285_fixup_ideapad_s740_coef,
9364 		.chained = true,
9365 		.chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9366 	},
9367 	[ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9368 		.type = HDA_FIXUP_FUNC,
9369 		.v.func = alc_fixup_no_shutup,
9370 		.chained = true,
9371 		.chain_id = ALC283_FIXUP_HEADSET_MIC,
9372 	},
9373 	[ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9374 		.type = HDA_FIXUP_PINS,
9375 		.v.pins = (const struct hda_pintbl[]) {
9376 			{ 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9377 			{ }
9378 		},
9379 		.chained = true,
9380 		.chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9381 	},
9382 	[ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9383 		.type = HDA_FIXUP_FUNC,
9384 		.v.func = alc269_fixup_limit_int_mic_boost,
9385 		.chained = true,
9386 		.chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9387 	},
9388 	[ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9389 		.type = HDA_FIXUP_FUNC,
9390 		.v.func = alc285_fixup_ideapad_s740_coef,
9391 		.chained = true,
9392 		.chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9393 	},
9394 	[ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9395 		.type = HDA_FIXUP_FUNC,
9396 		.v.func = alc287_fixup_legion_15imhg05_speakers,
9397 		.chained = true,
9398 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9399 	},
9400 	[ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9401 		.type = HDA_FIXUP_VERBS,
9402 		//.v.verbs = legion_15imhg05_coefs,
9403 		.v.verbs = (const struct hda_verb[]) {
9404 			 // set left speaker Legion 7i.
9405 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9406 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9407 
9408 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9409 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9410 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9411 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9412 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9413 
9414 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9415 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9416 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9417 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9418 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9419 
9420 			 // set right speaker Legion 7i.
9421 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9422 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9423 
9424 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9425 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9426 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9427 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9428 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9429 
9430 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9431 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9432 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9433 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9434 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9435 			 {}
9436 		},
9437 		.chained = true,
9438 		.chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9439 	},
9440 	[ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9441 		.type = HDA_FIXUP_FUNC,
9442 		.v.func = alc287_fixup_legion_15imhg05_speakers,
9443 		.chained = true,
9444 		.chain_id = ALC269_FIXUP_HEADSET_MODE,
9445 	},
9446 	[ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9447 		.type = HDA_FIXUP_VERBS,
9448 		.v.verbs = (const struct hda_verb[]) {
9449 			 // set left speaker Yoga 7i.
9450 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9451 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9452 
9453 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9454 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9455 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9456 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9457 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9458 
9459 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9460 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9461 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9462 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9463 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9464 
9465 			 // set right speaker Yoga 7i.
9466 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9467 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9468 
9469 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9470 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9471 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9472 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9473 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9474 
9475 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9476 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9477 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9478 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9479 			 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9480 			 {}
9481 		},
9482 		.chained = true,
9483 		.chain_id = ALC269_FIXUP_HEADSET_MODE,
9484 	},
9485 	[ALC298_FIXUP_LENOVO_C940_DUET7] = {
9486 		.type = HDA_FIXUP_FUNC,
9487 		.v.func = alc298_fixup_lenovo_c940_duet7,
9488 	},
9489 	[ALC287_FIXUP_LENOVO_14IRP8_DUETITL] = {
9490 		.type = HDA_FIXUP_FUNC,
9491 		.v.func = alc287_fixup_lenovo_14irp8_duetitl,
9492 	},
9493 	[ALC287_FIXUP_LENOVO_LEGION_7] = {
9494 		.type = HDA_FIXUP_FUNC,
9495 		.v.func = alc287_fixup_lenovo_legion_7,
9496 	},
9497 	[ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9498 		.type = HDA_FIXUP_VERBS,
9499 		.v.verbs = (const struct hda_verb[]) {
9500 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9501 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9502 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9503 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9504 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9505 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9506 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9507 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9508 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9509 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9510 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9511 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9512 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9513 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9514 			{}
9515 		},
9516 		.chained = true,
9517 		.chain_id = ALC269_FIXUP_HEADSET_MODE,
9518 	},
9519 	[ALC256_FIXUP_SET_COEF_DEFAULTS] = {
9520 		.type = HDA_FIXUP_FUNC,
9521 		.v.func = alc256_fixup_set_coef_defaults,
9522 	},
9523 	[ALC245_FIXUP_HP_GPIO_LED] = {
9524 		.type = HDA_FIXUP_FUNC,
9525 		.v.func = alc245_fixup_hp_gpio_led,
9526 	},
9527 	[ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9528 		.type = HDA_FIXUP_PINS,
9529 		.v.pins = (const struct hda_pintbl[]) {
9530 			{ 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9531 			{ }
9532 		},
9533 		.chained = true,
9534 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9535 	},
9536 	[ALC233_FIXUP_NO_AUDIO_JACK] = {
9537 		.type = HDA_FIXUP_FUNC,
9538 		.v.func = alc233_fixup_no_audio_jack,
9539 	},
9540 	[ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9541 		.type = HDA_FIXUP_FUNC,
9542 		.v.func = alc256_fixup_mic_no_presence_and_resume,
9543 		.chained = true,
9544 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9545 	},
9546 	[ALC287_FIXUP_LEGION_16ACHG6] = {
9547 		.type = HDA_FIXUP_FUNC,
9548 		.v.func = alc287_fixup_legion_16achg6_speakers,
9549 	},
9550 	[ALC287_FIXUP_CS35L41_I2C_2] = {
9551 		.type = HDA_FIXUP_FUNC,
9552 		.v.func = cs35l41_fixup_i2c_two,
9553 	},
9554 	[ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9555 		.type = HDA_FIXUP_FUNC,
9556 		.v.func = cs35l41_fixup_i2c_two,
9557 		.chained = true,
9558 		.chain_id = ALC285_FIXUP_HP_MUTE_LED,
9559 	},
9560 	[ALC287_FIXUP_CS35L41_I2C_4] = {
9561 		.type = HDA_FIXUP_FUNC,
9562 		.v.func = cs35l41_fixup_i2c_four,
9563 	},
9564 	[ALC245_FIXUP_CS35L41_SPI_2] = {
9565 		.type = HDA_FIXUP_FUNC,
9566 		.v.func = cs35l41_fixup_spi_two,
9567 	},
9568 	[ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9569 		.type = HDA_FIXUP_FUNC,
9570 		.v.func = cs35l41_fixup_spi_two,
9571 		.chained = true,
9572 		.chain_id = ALC285_FIXUP_HP_GPIO_LED,
9573 	},
9574 	[ALC245_FIXUP_CS35L41_SPI_4] = {
9575 		.type = HDA_FIXUP_FUNC,
9576 		.v.func = cs35l41_fixup_spi_four,
9577 	},
9578 	[ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9579 		.type = HDA_FIXUP_FUNC,
9580 		.v.func = cs35l41_fixup_spi_four,
9581 		.chained = true,
9582 		.chain_id = ALC285_FIXUP_HP_GPIO_LED,
9583 	},
9584 	[ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9585 		.type = HDA_FIXUP_VERBS,
9586 		.v.verbs = (const struct hda_verb[]) {
9587 			 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9588 			 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9589 			 { }
9590 		},
9591 		.chained = true,
9592 		.chain_id = ALC285_FIXUP_HP_MUTE_LED,
9593 	},
9594 	[ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9595 		.type = HDA_FIXUP_FUNC,
9596 		.v.func = alc_fixup_dell4_mic_no_presence_quiet,
9597 		.chained = true,
9598 		.chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9599 	},
9600 	[ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9601 		.type = HDA_FIXUP_PINS,
9602 		.v.pins = (const struct hda_pintbl[]) {
9603 			{ 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9604 			{ }
9605 		},
9606 		.chained = true,
9607 		.chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9608 	},
9609 	[ALC287_FIXUP_LEGION_16ITHG6] = {
9610 		.type = HDA_FIXUP_FUNC,
9611 		.v.func = alc287_fixup_legion_16ithg6_speakers,
9612 	},
9613 	[ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9614 		.type = HDA_FIXUP_VERBS,
9615 		.v.verbs = (const struct hda_verb[]) {
9616 			// enable left speaker
9617 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9618 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9619 
9620 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9621 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9622 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9623 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9624 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9625 
9626 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9627 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9628 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9629 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9630 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9631 
9632 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9633 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9634 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9635 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9636 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9637 
9638 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9639 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9640 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9641 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9642 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9643 
9644 			// enable right speaker
9645 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9646 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9647 
9648 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9649 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9650 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9651 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9652 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9653 
9654 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9655 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9656 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9657 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9658 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9659 
9660 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9661 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9662 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9663 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9664 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9665 
9666 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9667 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9668 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9669 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9670 			{ 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9671 
9672 			{ },
9673 		},
9674 	},
9675 	[ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9676 		.type = HDA_FIXUP_FUNC,
9677 		.v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9678 		.chained = true,
9679 		.chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9680 	},
9681 	[ALC287_FIXUP_LENOVO_14ARP8_LEGION_IAH7] = {
9682 		.type = HDA_FIXUP_FUNC,
9683 		.v.func = alc287_fixup_lenovo_14arp8_legion_iah7,
9684 	},
9685 	[ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN] = {
9686 		.type = HDA_FIXUP_FUNC,
9687 		.v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9688 		.chained = true,
9689 		.chain_id = ALC287_FIXUP_CS35L41_I2C_2,
9690 	},
9691 	[ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9692 		.type = HDA_FIXUP_FUNC,
9693 		.v.func = alc295_fixup_dell_inspiron_top_speakers,
9694 		.chained = true,
9695 		.chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9696 	},
9697 	[ALC236_FIXUP_DELL_DUAL_CODECS] = {
9698 		.type = HDA_FIXUP_PINS,
9699 		.v.func = alc1220_fixup_gb_dual_codecs,
9700 		.chained = true,
9701 		.chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9702 	},
9703 	[ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9704 		.type = HDA_FIXUP_FUNC,
9705 		.v.func = cs35l41_fixup_i2c_two,
9706 		.chained = true,
9707 		.chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
9708 	},
9709 	[ALC287_FIXUP_TAS2781_I2C] = {
9710 		.type = HDA_FIXUP_FUNC,
9711 		.v.func = tas2781_fixup_i2c,
9712 		.chained = true,
9713 		.chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9714 	},
9715 	[ALC287_FIXUP_YOGA7_14ARB7_I2C] = {
9716 		.type = HDA_FIXUP_FUNC,
9717 		.v.func = yoga7_14arb7_fixup_i2c,
9718 		.chained = true,
9719 		.chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9720 	},
9721 	[ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9722 		.type = HDA_FIXUP_FUNC,
9723 		.v.func = alc245_fixup_hp_mute_led_coefbit,
9724 	},
9725 	[ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9726 		.type = HDA_FIXUP_FUNC,
9727 		.v.func = alc245_fixup_hp_mute_led_coefbit,
9728 		.chained = true,
9729 		.chain_id = ALC245_FIXUP_HP_GPIO_LED
9730 	},
9731 	[ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9732 		.type = HDA_FIXUP_FUNC,
9733 		.v.func = alc287_fixup_bind_dacs,
9734 		.chained = true,
9735 		.chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
9736 	},
9737 	[ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9738 		.type = HDA_FIXUP_FUNC,
9739 		.v.func = alc287_fixup_bind_dacs,
9740 		.chained = true,
9741 		.chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9742 	},
9743 	[ALC2XX_FIXUP_HEADSET_MIC] = {
9744 		.type = HDA_FIXUP_FUNC,
9745 		.v.func = alc_fixup_headset_mic,
9746 	},
9747 	[ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9748 		.type = HDA_FIXUP_FUNC,
9749 		.v.func = cs35l41_fixup_spi_two,
9750 		.chained = true,
9751 		.chain_id = ALC289_FIXUP_DUAL_SPK
9752 	},
9753 	[ALC294_FIXUP_CS35L41_I2C_2] = {
9754 		.type = HDA_FIXUP_FUNC,
9755 		.v.func = cs35l41_fixup_i2c_two,
9756 	},
9757 	[ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED] = {
9758 		.type = HDA_FIXUP_FUNC,
9759 		.v.func = cs35l56_fixup_spi_four,
9760 		.chained = true,
9761 		.chain_id = ALC285_FIXUP_HP_GPIO_LED,
9762 	},
9763 	[ALC256_FIXUP_ACER_SFG16_MICMUTE_LED] = {
9764 		.type = HDA_FIXUP_FUNC,
9765 		.v.func = alc256_fixup_acer_sfg16_micmute_led,
9766 	},
9767 	[ALC256_FIXUP_HEADPHONE_AMP_VOL] = {
9768 		.type = HDA_FIXUP_FUNC,
9769 		.v.func = alc256_decrease_headphone_amp_val,
9770 	},
9771 	[ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX] = {
9772 		.type = HDA_FIXUP_FUNC,
9773 		.v.func = alc245_fixup_hp_spectre_x360_eu0xxx,
9774 	},
9775 	[ALC285_FIXUP_CS35L56_SPI_2] = {
9776 		.type = HDA_FIXUP_FUNC,
9777 		.v.func = cs35l56_fixup_spi_two,
9778 	},
9779 	[ALC285_FIXUP_CS35L56_I2C_2] = {
9780 		.type = HDA_FIXUP_FUNC,
9781 		.v.func = cs35l56_fixup_i2c_two,
9782 	},
9783 	[ALC285_FIXUP_CS35L56_I2C_4] = {
9784 		.type = HDA_FIXUP_FUNC,
9785 		.v.func = cs35l56_fixup_i2c_four,
9786 	},
9787 	[ALC285_FIXUP_ASUS_GA403U] = {
9788 		.type = HDA_FIXUP_FUNC,
9789 		.v.func = alc285_fixup_asus_ga403u,
9790 	},
9791 	[ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC] = {
9792 		.type = HDA_FIXUP_PINS,
9793 		.v.pins = (const struct hda_pintbl[]) {
9794 			{ 0x19, 0x03a11050 },
9795 			{ 0x1b, 0x03a11c30 },
9796 			{ }
9797 		},
9798 		.chained = true,
9799 		.chain_id = ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1
9800 	},
9801 	[ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1] = {
9802 		.type = HDA_FIXUP_FUNC,
9803 		.v.func = alc285_fixup_speaker2_to_dac1,
9804 		.chained = true,
9805 		.chain_id = ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC,
9806 	},
9807 	[ALC285_FIXUP_ASUS_GU605_SPI_2_HEADSET_MIC] = {
9808 		.type = HDA_FIXUP_PINS,
9809 		.v.pins = (const struct hda_pintbl[]) {
9810 			{ 0x19, 0x03a11050 },
9811 			{ 0x1b, 0x03a11c30 },
9812 			{ }
9813 		},
9814 		.chained = true,
9815 		.chain_id = ALC285_FIXUP_CS35L56_SPI_2
9816 	},
9817 	[ALC285_FIXUP_ASUS_GA403U_I2C_SPEAKER2_TO_DAC1] = {
9818 		.type = HDA_FIXUP_FUNC,
9819 		.v.func = alc285_fixup_speaker2_to_dac1,
9820 		.chained = true,
9821 		.chain_id = ALC285_FIXUP_ASUS_GA403U,
9822 	},
9823 	[ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318] = {
9824 		.type = HDA_FIXUP_FUNC,
9825 		.v.func = alc287_fixup_lenovo_thinkpad_with_alc1318,
9826 		.chained = true,
9827 		.chain_id = ALC269_FIXUP_THINKPAD_ACPI
9828 	},
9829 	[ALC256_FIXUP_CHROME_BOOK] = {
9830 		.type = HDA_FIXUP_FUNC,
9831 		.v.func = alc256_fixup_chromebook,
9832 		.chained = true,
9833 		.chain_id = ALC225_FIXUP_HEADSET_JACK
9834 	},
9835 };
9836 
9837 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
9838 	SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
9839 	SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9840 	SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
9841 	SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
9842 	SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9843 	SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9844 	SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
9845 	SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9846 	SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
9847 	SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
9848 	SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
9849 	SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
9850 	SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
9851 	SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
9852 	SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
9853 	SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
9854 	SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
9855 	SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9856 	SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9857 	SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9858 	SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
9859 	SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
9860 	SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
9861 	SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
9862 	SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
9863 	SND_PCI_QUIRK(0x1025, 0x126a, "Acer Swift SF114-32", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9864 	SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9865 	SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9866 	SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9867 	SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
9868 	SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9869 	SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9870 	SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9871 	SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
9872 	SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
9873 	SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9874 	SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9875 	SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
9876 	SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
9877 	SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9878 	SND_PCI_QUIRK(0x1025, 0x169a, "Acer Swift SFG16", ALC256_FIXUP_ACER_SFG16_MICMUTE_LED),
9879 	SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
9880 	SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
9881 	SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
9882 	SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
9883 	SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
9884 	SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9885 	SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
9886 	SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
9887 	SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9888 	SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9889 	SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9890 	SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9891 	SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9892 	SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
9893 	SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
9894 	SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
9895 	SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9896 	SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9897 	SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
9898 	SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9899 	SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
9900 	SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
9901 	SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9902 	SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9903 	SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9904 	SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9905 	SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9906 	SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9907 	SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9908 	SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9909 	SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
9910 	SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
9911 	SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
9912 	SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
9913 	SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
9914 	SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
9915 	SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
9916 	SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9917 	SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9918 	SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9919 	SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9920 	SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
9921 	SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
9922 	SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
9923 	SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9924 	SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9925 	SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
9926 	SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9927 	SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9928 	SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9929 	SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9930 	SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
9931 	SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
9932 	SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
9933 	SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
9934 	SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9935 	SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9936 	SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
9937 	SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
9938 	SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9939 	SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9940 	SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9941 	SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9942 	SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9943 	SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9944 	SND_PCI_QUIRK(0x1028, 0x0c0b, "Dell Oasis 14 RPL-P", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9945 	SND_PCI_QUIRK(0x1028, 0x0c0d, "Dell Oasis", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9946 	SND_PCI_QUIRK(0x1028, 0x0c0e, "Dell Oasis 16", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9947 	SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9948 	SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9949 	SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9950 	SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9951 	SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9952 	SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9953 	SND_PCI_QUIRK(0x1028, 0x0c28, "Dell Inspiron 16 Plus 7630", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9954 	SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4),
9955 	SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9956 	SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9957 	SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9958 	SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9959 	SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9960 	SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9961 	SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9962 	SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9963 	SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9964 	SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9965 	SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9966 	SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9967 	SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
9968 	SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
9969 	SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9970 	SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9971 	SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9972 	SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9973 	SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9974 	SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9975 	SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9976 	SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9977 	SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9978 	SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9979 	SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9980 	SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9981 	SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9982 	SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9983 	SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9984 	SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9985 	SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9986 	SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9987 	SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
9988 	SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
9989 	SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9990 	SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9991 	SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9992 	SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9993 	SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9994 	SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9995 	SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9996 	SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9997 	SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9998 	SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9999 	SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
10000 	SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
10001 	SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
10002 	SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
10003 	SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10004 	SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10005 	SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10006 	SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10007 	SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10008 	SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10009 	SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10010 	SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10011 	SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10012 	SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10013 	SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10014 	SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10015 	SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10016 	SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
10017 	SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
10018 	SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
10019 	SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10020 	SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10021 	SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10022 	SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
10023 	SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
10024 	SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
10025 	SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
10026 	SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
10027 	SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
10028 	SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
10029 	SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
10030 	SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
10031 	SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
10032 	SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
10033 	SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
10034 	SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
10035 	SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
10036 	SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
10037 	SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10038 	SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
10039 	SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
10040 	SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
10041 	SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10042 	SND_PCI_QUIRK(0x103c, 0x85de, "HP Envy x360 13-ar0xxx", ALC285_FIXUP_HP_ENVY_X360),
10043 	SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10044 	SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10045 	SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
10046 	SND_PCI_QUIRK(0x103c, 0x86c1, "HP Laptop 15-da3001TU", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10047 	SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
10048 	SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
10049 	SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
10050 	SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
10051 	SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10052 	SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10053 	SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
10054 	SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
10055 	SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
10056 	SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10057 	SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10058 	SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10059 	SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
10060 	SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
10061 	SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
10062 	SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
10063 	SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
10064 		      ALC285_FIXUP_HP_GPIO_AMP_INIT),
10065 	SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
10066 		      ALC285_FIXUP_HP_GPIO_AMP_INIT),
10067 	SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
10068 	SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
10069 	SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
10070 	SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10071 	SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
10072 	SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10073 	SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10074 	SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10075 	SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10076 	SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
10077 	SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
10078 	SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
10079 	SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
10080 	SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10081 	SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10082 	SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
10083 	SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
10084 	SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
10085 	SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10086 	SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
10087 	SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
10088 	SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
10089 	SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
10090 	SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
10091 	SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
10092 	SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10093 	SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10094 	SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
10095 	SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10096 	SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
10097 	SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
10098 	SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
10099 	SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
10100 	SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
10101 	SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
10102 	SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
10103 	SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10104 	SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
10105 	SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10106 	SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10107 	SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10108 	SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10109 	SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10110 	SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10111 	SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10112 	SND_PCI_QUIRK(0x103c, 0x897d, "HP mt440 Mobile Thin Client U74", ALC236_FIXUP_HP_GPIO_LED),
10113 	SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
10114 	SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
10115 	SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
10116 	SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10117 	SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
10118 	SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10119 	SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
10120 	SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
10121 	SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
10122 	SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
10123 	SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
10124 	SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
10125 	SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10126 	SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
10127 	SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10128 	SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10129 	SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10130 	SND_PCI_QUIRK(0x103c, 0x89e7, "HP Elite x2 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10131 	SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED),
10132 	SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10133 	SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
10134 	SND_PCI_QUIRK(0x103c, 0x8a28, "HP Envy 13", ALC287_FIXUP_CS35L41_I2C_2),
10135 	SND_PCI_QUIRK(0x103c, 0x8a29, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10136 	SND_PCI_QUIRK(0x103c, 0x8a2a, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10137 	SND_PCI_QUIRK(0x103c, 0x8a2b, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10138 	SND_PCI_QUIRK(0x103c, 0x8a2c, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10139 	SND_PCI_QUIRK(0x103c, 0x8a2d, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10140 	SND_PCI_QUIRK(0x103c, 0x8a2e, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10141 	SND_PCI_QUIRK(0x103c, 0x8a30, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10142 	SND_PCI_QUIRK(0x103c, 0x8a31, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10143 	SND_PCI_QUIRK(0x103c, 0x8a6e, "HP EDNA 360", ALC287_FIXUP_CS35L41_I2C_4),
10144 	SND_PCI_QUIRK(0x103c, 0x8a74, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
10145 	SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
10146 	SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
10147 	SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
10148 	SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
10149 	SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
10150 	SND_PCI_QUIRK(0x103c, 0x8ab9, "HP EliteBook 840 G8 (MB 8AB8)", ALC285_FIXUP_HP_GPIO_LED),
10151 	SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10152 	SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10153 	SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10154 	SND_PCI_QUIRK(0x103c, 0x8ad8, "HP 800 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10155 	SND_PCI_QUIRK(0x103c, 0x8b0f, "HP Elite mt645 G7 Mobile Thin Client U81", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10156 	SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
10157 	SND_PCI_QUIRK(0x103c, 0x8b3a, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10158 	SND_PCI_QUIRK(0x103c, 0x8b3f, "HP mt440 Mobile Thin Client U91", ALC236_FIXUP_HP_GPIO_LED),
10159 	SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10160 	SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10161 	SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10162 	SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10163 	SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10164 	SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10165 	SND_PCI_QUIRK(0x103c, 0x8b59, "HP Elite mt645 G7 Mobile Thin Client U89", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10166 	SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10167 	SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10168 	SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
10169 	SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10170 	SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10171 	SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10172 	SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10173 	SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10174 	SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
10175 	SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
10176 	SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
10177 	SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
10178 	SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
10179 	SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
10180 	SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
10181 	SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
10182 	SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10183 	SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10184 	SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10185 	SND_PCI_QUIRK(0x103c, 0x8bb3, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2),
10186 	SND_PCI_QUIRK(0x103c, 0x8bb4, "HP Slim OMEN", ALC287_FIXUP_CS35L41_I2C_2),
10187 	SND_PCI_QUIRK(0x103c, 0x8bdd, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10188 	SND_PCI_QUIRK(0x103c, 0x8bde, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10189 	SND_PCI_QUIRK(0x103c, 0x8bdf, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10190 	SND_PCI_QUIRK(0x103c, 0x8be0, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10191 	SND_PCI_QUIRK(0x103c, 0x8be1, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10192 	SND_PCI_QUIRK(0x103c, 0x8be2, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10193 	SND_PCI_QUIRK(0x103c, 0x8be3, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10194 	SND_PCI_QUIRK(0x103c, 0x8be5, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10195 	SND_PCI_QUIRK(0x103c, 0x8be6, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10196 	SND_PCI_QUIRK(0x103c, 0x8be7, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10197 	SND_PCI_QUIRK(0x103c, 0x8be8, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10198 	SND_PCI_QUIRK(0x103c, 0x8be9, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10199 	SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
10200 	SND_PCI_QUIRK(0x103c, 0x8c15, "HP Spectre x360 2-in-1 Laptop 14-eu0xxx", ALC245_FIXUP_HP_SPECTRE_X360_EU0XXX),
10201 	SND_PCI_QUIRK(0x103c, 0x8c16, "HP Spectre 16", ALC287_FIXUP_CS35L41_I2C_2),
10202 	SND_PCI_QUIRK(0x103c, 0x8c17, "HP Spectre 16", ALC287_FIXUP_CS35L41_I2C_2),
10203 	SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10204 	SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10205 	SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10206 	SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10207 	SND_PCI_QUIRK(0x103c, 0x8c4d, "HP Omen", ALC287_FIXUP_CS35L41_I2C_2),
10208 	SND_PCI_QUIRK(0x103c, 0x8c4e, "HP Omen", ALC287_FIXUP_CS35L41_I2C_2),
10209 	SND_PCI_QUIRK(0x103c, 0x8c4f, "HP Envy 15", ALC287_FIXUP_CS35L41_I2C_2),
10210 	SND_PCI_QUIRK(0x103c, 0x8c50, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10211 	SND_PCI_QUIRK(0x103c, 0x8c51, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10212 	SND_PCI_QUIRK(0x103c, 0x8c52, "HP EliteBook 1040 G11", ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED),
10213 	SND_PCI_QUIRK(0x103c, 0x8c53, "HP Elite x360 1040 2-in-1 G11", ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED),
10214 	SND_PCI_QUIRK(0x103c, 0x8c66, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10215 	SND_PCI_QUIRK(0x103c, 0x8c67, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10216 	SND_PCI_QUIRK(0x103c, 0x8c68, "HP Envy 17", ALC287_FIXUP_CS35L41_I2C_2),
10217 	SND_PCI_QUIRK(0x103c, 0x8c6a, "HP Envy 16", ALC287_FIXUP_CS35L41_I2C_2),
10218 	SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10219 	SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10220 	SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10221 	SND_PCI_QUIRK(0x103c, 0x8c7b, "HP ProBook 445 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10222 	SND_PCI_QUIRK(0x103c, 0x8c7c, "HP ProBook 445 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10223 	SND_PCI_QUIRK(0x103c, 0x8c7d, "HP ProBook 465 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10224 	SND_PCI_QUIRK(0x103c, 0x8c7e, "HP ProBook 465 G11", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10225 	SND_PCI_QUIRK(0x103c, 0x8c89, "HP ProBook 460 G11", ALC236_FIXUP_HP_GPIO_LED),
10226 	SND_PCI_QUIRK(0x103c, 0x8c8a, "HP EliteBook 630", ALC236_FIXUP_HP_GPIO_LED),
10227 	SND_PCI_QUIRK(0x103c, 0x8c8c, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
10228 	SND_PCI_QUIRK(0x103c, 0x8c8d, "HP ProBook 440 G11", ALC236_FIXUP_HP_GPIO_LED),
10229 	SND_PCI_QUIRK(0x103c, 0x8c8e, "HP ProBook 460 G11", ALC236_FIXUP_HP_GPIO_LED),
10230 	SND_PCI_QUIRK(0x103c, 0x8c90, "HP EliteBook 640", ALC236_FIXUP_HP_GPIO_LED),
10231 	SND_PCI_QUIRK(0x103c, 0x8c91, "HP EliteBook 660", ALC236_FIXUP_HP_GPIO_LED),
10232 	SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10233 	SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
10234 	SND_PCI_QUIRK(0x103c, 0x8ca1, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
10235 	SND_PCI_QUIRK(0x103c, 0x8ca2, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
10236 	SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10237 	SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
10238 	SND_PCI_QUIRK(0x103c, 0x8cdd, "HP Spectre", ALC287_FIXUP_CS35L41_I2C_2),
10239 	SND_PCI_QUIRK(0x103c, 0x8cde, "HP Spectre", ALC287_FIXUP_CS35L41_I2C_2),
10240 	SND_PCI_QUIRK(0x103c, 0x8cdf, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10241 	SND_PCI_QUIRK(0x103c, 0x8ce0, "HP SnowWhite", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
10242 	SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
10243 	SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
10244 	SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
10245 	SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10246 	SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
10247 	SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
10248 	SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10249 	SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK),
10250 	SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10251 	SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10252 	SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10253 	SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10254 	SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
10255 	SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
10256 	SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
10257 	SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
10258 	SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
10259 	SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
10260 	SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
10261 	SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
10262 	SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
10263 	SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
10264 	SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
10265 	SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC),
10266 	SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10267 	SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10268 	SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10269 	SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2),
10270 	SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2),
10271 	SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
10272 	SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2),
10273 	SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301VV/VQ/VU/VJ/VA/VC/VE/VVC/VQC/VUC/VJC/VEC/VCC", ALC285_FIXUP_ASUS_HEADSET_MIC),
10274 	SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
10275 	SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
10276 	SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
10277 	SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
10278 	SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
10279 	SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2),
10280 	SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
10281 	SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2),
10282 	SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
10283 	SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
10284 	SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY),
10285 	SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2),
10286 	SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
10287 	SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
10288 	SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2),
10289 	SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
10290 	SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
10291 	SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
10292 	SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
10293 	SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
10294 	SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
10295 	SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
10296 	SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
10297 	SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2),
10298 	SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
10299 	SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
10300 	SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
10301 	SND_PCI_QUIRK(0x1043, 0x1b13, "ASUS U41SV/GA403U", ALC285_FIXUP_ASUS_GA403U_HEADSET_MIC),
10302 	SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10303 	SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
10304 	SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2),
10305 	SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10306 	SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2),
10307 	SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2),
10308 	SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
10309 	SND_PCI_QUIRK(0x1043, 0x1c63, "ASUS GU605M", ALC285_FIXUP_ASUS_GU605_SPI_SPEAKER2_TO_DAC1),
10310 	SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
10311 	SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10312 	SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
10313 	SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
10314 	SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2),
10315 	SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10316 	SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC),
10317 	SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2),
10318 	SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
10319 	SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
10320 	SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2),
10321 	SND_PCI_QUIRK(0x1043, 0x1df3, "ASUS UM5606", ALC285_FIXUP_CS35L56_I2C_4),
10322 	SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
10323 	SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
10324 	SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
10325 	SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
10326 	SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
10327 	SND_PCI_QUIRK(0x1043, 0x1e63, "ASUS H7606W", ALC285_FIXUP_CS35L56_I2C_2),
10328 	SND_PCI_QUIRK(0x1043, 0x1e83, "ASUS GA605W", ALC285_FIXUP_CS35L56_I2C_2),
10329 	SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
10330 	SND_PCI_QUIRK(0x1043, 0x1ed3, "ASUS HN7306W", ALC287_FIXUP_CS35L41_I2C_2),
10331 	SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2),
10332 	SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
10333 	SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
10334 	SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
10335 	SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2),
10336 	SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
10337 	SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
10338 	SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
10339 	SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
10340 	SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10341 	SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
10342 	SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10343 	SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
10344 	SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
10345 	SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
10346 	SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10347 	SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10348 	SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
10349 	SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
10350 	SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10351 	SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10352 	SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
10353 	SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10354 	SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10355 	SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
10356 	SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
10357 	SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10358 	SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
10359 	SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
10360 	SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
10361 	SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
10362 	SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
10363 	SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10364 	SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10365 	SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10366 	SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10367 	SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10368 	SND_PCI_QUIRK(0x10ec, 0x12f6, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10369 	SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
10370 	SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
10371 	SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10372 	SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
10373 	SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
10374 	SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10375 	SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
10376 	SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
10377 	SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
10378 	SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
10379 	SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
10380 	SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
10381 	SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
10382 	SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
10383 	SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
10384 	SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
10385 	SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
10386 	SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
10387 	SND_PCI_QUIRK(0x152d, 0x1262, "Huawei NBLB-WAX9N", ALC2XX_FIXUP_HEADSET_MIC),
10388 	SND_PCI_QUIRK(0x1558, 0x0353, "Clevo V35[05]SN[CDE]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10389 	SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10390 	SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10391 	SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10392 	SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10393 	SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10394 	SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10395 	SND_PCI_QUIRK(0x1558, 0x2624, "Clevo L240TU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10396 	SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10397 	SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10398 	SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10399 	SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10400 	SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10401 	SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10402 	SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10403 	SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10404 	SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10405 	SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10406 	SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10407 	SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10408 	SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10409 	SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10410 	SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10411 	SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10412 	SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10413 	SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10414 	SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10415 	SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10416 	SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10417 	SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10418 	SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10419 	SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10420 	SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10421 	SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10422 	SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10423 	SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10424 	SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10425 	SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10426 	SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10427 	SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10428 	SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10429 	SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10430 	SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10431 	SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10432 	SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10433 	SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10434 	SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10435 	SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10436 	SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10437 	SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10438 	SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10439 	SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10440 	SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10441 	SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10442 	SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
10443 	SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10444 	SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10445 	SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10446 	SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10447 	SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10448 	SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
10449 	SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10450 	SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10451 	SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10452 	SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10453 	SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10454 	SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10455 	SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10456 	SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10457 	SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10458 	SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10459 	SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10460 	SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10461 	SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10462 	SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10463 	SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10464 	SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10465 	SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10466 	SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
10467 	SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10468 	SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10469 	SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10470 	SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10471 	SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10472 	SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
10473 	SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
10474 	SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
10475 	SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
10476 	SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
10477 	SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
10478 	SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
10479 	SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
10480 	SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
10481 	SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
10482 	SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
10483 	SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
10484 	SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
10485 	SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10486 	SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
10487 	SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
10488 	SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
10489 	SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10490 	SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10491 	SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
10492 	SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
10493 	SND_PCI_QUIRK(0x17aa, 0x2234, "Thinkpad ICE-1", ALC287_FIXUP_TAS2781_I2C),
10494 	SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10495 	SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10496 	SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10497 	SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
10498 	SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10499 	SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10500 	SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10501 	SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10502 	SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10503 	SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
10504 	SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10505 	SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10506 	SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10507 	SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10508 	SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10509 	SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10510 	SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10511 	SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10512 	SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10513 	SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10514 	SND_PCI_QUIRK(0x17aa, 0x231e, "Thinkpad", ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318),
10515 	SND_PCI_QUIRK(0x17aa, 0x231f, "Thinkpad", ALC287_FIXUP_LENOVO_THKPAD_WH_ALC1318),
10516 	SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10517 	SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
10518 	SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10519 	SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10520 	SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10521 	SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10522 	SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
10523 	SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10524 	SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10525 	SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10526 	SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
10527 	SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC),
10528 	SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10529 	SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga Pro 9 14IRP8 / DuetITL 2021", ALC287_FIXUP_LENOVO_14IRP8_DUETITL),
10530 	SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10531 	SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
10532 	SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
10533 	SND_PCI_QUIRK(0x17aa, 0x3820, "IdeaPad 330-17IKB 81DM", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
10534 	SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10535 	SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
10536 	SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10537 	SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
10538 	SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
10539 	SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
10540 	SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10541 	SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10542 	SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10543 	SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
10544 	SND_PCI_QUIRK(0x17aa, 0x3865, "Lenovo 13X", ALC287_FIXUP_CS35L41_I2C_2),
10545 	SND_PCI_QUIRK(0x17aa, 0x3866, "Lenovo 13X", ALC287_FIXUP_CS35L41_I2C_2),
10546 	SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10547 	SND_PCI_QUIRK(0x17aa, 0x386e, "Legion Y9000X 2022 IAH7 / Yoga Pro 7 14ARP8",  ALC287_FIXUP_LENOVO_14ARP8_LEGION_IAH7),
10548 	SND_PCI_QUIRK(0x17aa, 0x386f, "Legion Pro 7/7i", ALC287_FIXUP_LENOVO_LEGION_7),
10549 	SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C),
10550 	SND_PCI_QUIRK(0x17aa, 0x3877, "Lenovo Legion 7 Slim 16ARHA7", ALC287_FIXUP_CS35L41_I2C_2),
10551 	SND_PCI_QUIRK(0x17aa, 0x3878, "Lenovo Legion 7 Slim 16ARHA7", ALC287_FIXUP_CS35L41_I2C_2),
10552 	SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10553 	SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
10554 	SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
10555 	SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10556 	SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10557 	SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10558 	SND_PCI_QUIRK(0x17aa, 0x3891, "Lenovo Yoga Pro 7 14AHP9", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
10559 	SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10560 	SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
10561 	SND_PCI_QUIRK(0x17aa, 0x38a9, "Thinkbook 16P", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10562 	SND_PCI_QUIRK(0x17aa, 0x38ab, "Thinkbook 16P", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10563 	SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10564 	SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10565 	SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10566 	SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10567 	SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10568 	SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10569 	SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10570 	SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10571 	SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10572 	SND_PCI_QUIRK(0x17aa, 0x38c7, "Thinkbook 13x Gen 4", ALC287_FIXUP_CS35L41_I2C_4),
10573 	SND_PCI_QUIRK(0x17aa, 0x38c8, "Thinkbook 13x Gen 4", ALC287_FIXUP_CS35L41_I2C_4),
10574 	SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10575 	SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10576 	SND_PCI_QUIRK(0x17aa, 0x38d2, "Lenovo Yoga 9 14IMH9", ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN),
10577 	SND_PCI_QUIRK(0x17aa, 0x38d7, "Lenovo Yoga 9 14IMH9", ALC287_FIXUP_YOGA9_14IMH9_BASS_SPK_PIN),
10578 	SND_PCI_QUIRK(0x17aa, 0x38f9, "Thinkbook 16P Gen5", ALC287_FIXUP_CS35L41_I2C_2),
10579 	SND_PCI_QUIRK(0x17aa, 0x38fa, "Thinkbook 16P Gen5", ALC287_FIXUP_CS35L41_I2C_2),
10580 	SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10581 	SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
10582 	SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
10583 	SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
10584 	SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10585 	SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
10586 	SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
10587 	SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10588 	SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
10589 	SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
10590 	SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
10591 	SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
10592 	SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
10593 	SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
10594 	SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
10595 	SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
10596 	SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10597 	SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10598 	SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10599 	SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
10600 	SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10601 	SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10602 	SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10603 	SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
10604 	SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10605 	SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
10606 	SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
10607 	SND_PCI_QUIRK(0x1854, 0x0440, "LG CQ6", ALC256_FIXUP_HEADPHONE_AMP_VOL),
10608 	SND_PCI_QUIRK(0x1854, 0x0441, "LG CQ6 AIO", ALC256_FIXUP_HEADPHONE_AMP_VOL),
10609 	SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
10610 	SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
10611 	SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10612 	SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10613 	SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
10614 	SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
10615 	SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10616 	SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
10617 	SND_PCI_QUIRK(0x1c6c, 0x122a, "Positivo N14AP7", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
10618 	SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
10619 	SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
10620 	SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10621 	SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10622 	SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10623 	SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10624 	SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10625 	SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10626 	SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10627 	SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
10628 	SND_PCI_QUIRK(0x1d05, 0x1387, "TongFang GMxIXxx", ALC2XX_FIXUP_HEADSET_MIC),
10629 	SND_PCI_QUIRK(0x1d17, 0x3288, "Haier Boyue G42", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
10630 	SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10631 	SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
10632 	SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
10633 	SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
10634 	SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
10635 	SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
10636 	SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME),
10637 	SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
10638 	SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
10639 	SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
10640 	SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
10641 	SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10642 	SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
10643 
10644 #if 0
10645 	/* Below is a quirk table taken from the old code.
10646 	 * Basically the device should work as is without the fixup table.
10647 	 * If BIOS doesn't give a proper info, enable the corresponding
10648 	 * fixup entry.
10649 	 */
10650 	SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10651 		      ALC269_FIXUP_AMIC),
10652 	SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
10653 	SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10654 	SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10655 	SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10656 	SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10657 	SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10658 	SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10659 	SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10660 	SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10661 	SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10662 	SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10663 	SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10664 	SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10665 	SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10666 	SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10667 	SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10668 	SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10669 	SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10670 	SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10671 	SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10672 	SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10673 	SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10674 	SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10675 	SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10676 	SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10677 	SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10678 	SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10679 	SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10680 	SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10681 	SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10682 	SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10683 	SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10684 	SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10685 	SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10686 	SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10687 	SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10688 	SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10689 	SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10690 	SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10691 #endif
10692 	{}
10693 };
10694 
10695 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10696 	SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10697 	SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10698 	SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10699 	SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
10700 	SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
10701 	{}
10702 };
10703 
10704 static const struct hda_model_fixup alc269_fixup_models[] = {
10705 	{.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10706 	{.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
10707 	{.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10708 	{.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10709 	{.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
10710 	{.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
10711 	{.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10712 	{.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
10713 	{.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
10714 	{.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
10715 	{.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10716 	{.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
10717 	{.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10718 	{.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
10719 	{.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10720 	{.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
10721 	{.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
10722 	{.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
10723 	{.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
10724 	{.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
10725 	{.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
10726 	{.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
10727 	{.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
10728 	{.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
10729 	{.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
10730 	{.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10731 	{.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10732 	{.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10733 	{.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10734 	{.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10735 	{.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10736 	{.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10737 	{.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10738 	{.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10739 	{.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10740 	{.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10741 	{.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10742 	{.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10743 	{.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10744 	{.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10745 	{.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10746 	{.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10747 	{.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10748 	{.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10749 	{.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10750 	{.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10751 	{.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10752 	{.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10753 	{.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10754 	{.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10755 	{.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10756 	{.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10757 	{.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10758 	{.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10759 	{.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10760 	{.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10761 	{.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10762 	{.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10763 	{.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10764 	{.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10765 	{.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10766 	{.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10767 	{.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10768 	{.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10769 	{.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
10770 	{.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
10771 	{.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
10772 	{.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
10773 	{.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10774 	{.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10775 	{.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10776 	{.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10777 	{.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10778 	{.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10779 	{.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10780 	{.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10781 	{.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10782 	{.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10783 	{.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10784 	{.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10785 	{.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10786 	{.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
10787 	{.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10788 	{.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10789 	{.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
10790 	{.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
10791 	{.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
10792 	{.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
10793 	{.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10794 	{.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10795 	{.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10796 	{.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10797 	{.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10798 	{.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10799 	{.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10800 	{.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10801 	{.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10802 	{.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10803 	{.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10804 	{.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10805 	{.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10806 	{.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10807 	{.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10808 	{.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10809 	{.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
10810 	{.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10811 	{.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
10812 	{.id = ALC256_FIXUP_CHROME_BOOK, .name = "alc-2024y-chromebook"},
10813 	{.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
10814 	{.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
10815 	{.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
10816 	{.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
10817 	{.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
10818 	{.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
10819 	{.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
10820 	{.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
10821 	{.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
10822 	{.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
10823 	{.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
10824 	{.id = ALC285_FIXUP_HP_ENVY_X360, .name = "alc285-hp-envy-x360"},
10825 	{.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
10826 	{.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
10827 	{.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
10828 	{.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
10829 	{.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
10830 	{}
10831 };
10832 #define ALC225_STANDARD_PINS \
10833 	{0x21, 0x04211020}
10834 
10835 #define ALC256_STANDARD_PINS \
10836 	{0x12, 0x90a60140}, \
10837 	{0x14, 0x90170110}, \
10838 	{0x21, 0x02211020}
10839 
10840 #define ALC282_STANDARD_PINS \
10841 	{0x14, 0x90170110}
10842 
10843 #define ALC290_STANDARD_PINS \
10844 	{0x12, 0x99a30130}
10845 
10846 #define ALC292_STANDARD_PINS \
10847 	{0x14, 0x90170110}, \
10848 	{0x15, 0x0221401f}
10849 
10850 #define ALC295_STANDARD_PINS \
10851 	{0x12, 0xb7a60130}, \
10852 	{0x14, 0x90170110}, \
10853 	{0x21, 0x04211020}
10854 
10855 #define ALC298_STANDARD_PINS \
10856 	{0x12, 0x90a60130}, \
10857 	{0x21, 0x03211020}
10858 
10859 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
10860 	SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10861 		{0x14, 0x01014020},
10862 		{0x17, 0x90170110},
10863 		{0x18, 0x02a11030},
10864 		{0x19, 0x0181303F},
10865 		{0x21, 0x0221102f}),
10866 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10867 		{0x12, 0x90a601c0},
10868 		{0x14, 0x90171120},
10869 		{0x21, 0x02211030}),
10870 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10871 		{0x14, 0x90170110},
10872 		{0x1b, 0x90a70130},
10873 		{0x21, 0x03211020}),
10874 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10875 		{0x1a, 0x90a70130},
10876 		{0x1b, 0x90170110},
10877 		{0x21, 0x03211020}),
10878 	SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10879 		ALC225_STANDARD_PINS,
10880 		{0x12, 0xb7a60130},
10881 		{0x14, 0x901701a0}),
10882 	SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10883 		ALC225_STANDARD_PINS,
10884 		{0x12, 0xb7a60130},
10885 		{0x14, 0x901701b0}),
10886 	SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10887 		ALC225_STANDARD_PINS,
10888 		{0x12, 0xb7a60150},
10889 		{0x14, 0x901701a0}),
10890 	SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10891 		ALC225_STANDARD_PINS,
10892 		{0x12, 0xb7a60150},
10893 		{0x14, 0x901701b0}),
10894 	SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10895 		ALC225_STANDARD_PINS,
10896 		{0x12, 0xb7a60130},
10897 		{0x1b, 0x90170110}),
10898 	SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10899 		{0x1b, 0x01111010},
10900 		{0x1e, 0x01451130},
10901 		{0x21, 0x02211020}),
10902 	SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10903 		{0x12, 0x90a60140},
10904 		{0x14, 0x90170110},
10905 		{0x19, 0x02a11030},
10906 		{0x21, 0x02211020}),
10907 	SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10908 		{0x14, 0x90170110},
10909 		{0x19, 0x02a11030},
10910 		{0x1a, 0x02a11040},
10911 		{0x1b, 0x01014020},
10912 		{0x21, 0x0221101f}),
10913 	SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10914 		{0x14, 0x90170110},
10915 		{0x19, 0x02a11030},
10916 		{0x1a, 0x02a11040},
10917 		{0x1b, 0x01011020},
10918 		{0x21, 0x0221101f}),
10919 	SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10920 		{0x14, 0x90170110},
10921 		{0x19, 0x02a11020},
10922 		{0x1a, 0x02a11030},
10923 		{0x21, 0x0221101f}),
10924 	SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10925 		{0x21, 0x02211010}),
10926 	SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10927 		{0x14, 0x90170110},
10928 		{0x19, 0x02a11020},
10929 		{0x21, 0x02211030}),
10930 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
10931 		{0x14, 0x90170110},
10932 		{0x21, 0x02211020}),
10933 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10934 		{0x14, 0x90170130},
10935 		{0x21, 0x02211040}),
10936 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10937 		{0x12, 0x90a60140},
10938 		{0x14, 0x90170110},
10939 		{0x21, 0x02211020}),
10940 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10941 		{0x12, 0x90a60160},
10942 		{0x14, 0x90170120},
10943 		{0x21, 0x02211030}),
10944 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10945 		{0x14, 0x90170110},
10946 		{0x1b, 0x02011020},
10947 		{0x21, 0x0221101f}),
10948 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10949 		{0x14, 0x90170110},
10950 		{0x1b, 0x01011020},
10951 		{0x21, 0x0221101f}),
10952 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10953 		{0x14, 0x90170130},
10954 		{0x1b, 0x01014020},
10955 		{0x21, 0x0221103f}),
10956 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10957 		{0x14, 0x90170130},
10958 		{0x1b, 0x01011020},
10959 		{0x21, 0x0221103f}),
10960 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10961 		{0x14, 0x90170130},
10962 		{0x1b, 0x02011020},
10963 		{0x21, 0x0221103f}),
10964 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10965 		{0x14, 0x90170150},
10966 		{0x1b, 0x02011020},
10967 		{0x21, 0x0221105f}),
10968 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10969 		{0x14, 0x90170110},
10970 		{0x1b, 0x01014020},
10971 		{0x21, 0x0221101f}),
10972 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10973 		{0x12, 0x90a60160},
10974 		{0x14, 0x90170120},
10975 		{0x17, 0x90170140},
10976 		{0x21, 0x0321102f}),
10977 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10978 		{0x12, 0x90a60160},
10979 		{0x14, 0x90170130},
10980 		{0x21, 0x02211040}),
10981 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10982 		{0x12, 0x90a60160},
10983 		{0x14, 0x90170140},
10984 		{0x21, 0x02211050}),
10985 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10986 		{0x12, 0x90a60170},
10987 		{0x14, 0x90170120},
10988 		{0x21, 0x02211030}),
10989 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10990 		{0x12, 0x90a60170},
10991 		{0x14, 0x90170130},
10992 		{0x21, 0x02211040}),
10993 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10994 		{0x12, 0x90a60170},
10995 		{0x14, 0x90171130},
10996 		{0x21, 0x02211040}),
10997 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10998 		{0x12, 0x90a60170},
10999 		{0x14, 0x90170140},
11000 		{0x21, 0x02211050}),
11001 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11002 		{0x12, 0x90a60180},
11003 		{0x14, 0x90170130},
11004 		{0x21, 0x02211040}),
11005 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11006 		{0x12, 0x90a60180},
11007 		{0x14, 0x90170120},
11008 		{0x21, 0x02211030}),
11009 	SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11010 		{0x1b, 0x01011020},
11011 		{0x21, 0x02211010}),
11012 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
11013 		{0x14, 0x90170110},
11014 		{0x1b, 0x90a70130},
11015 		{0x21, 0x04211020}),
11016 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
11017 		{0x14, 0x90170110},
11018 		{0x1b, 0x90a70130},
11019 		{0x21, 0x03211020}),
11020 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
11021 		{0x12, 0x90a60130},
11022 		{0x14, 0x90170110},
11023 		{0x21, 0x03211020}),
11024 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
11025 		{0x12, 0x90a60130},
11026 		{0x14, 0x90170110},
11027 		{0x21, 0x04211020}),
11028 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
11029 		{0x1a, 0x90a70130},
11030 		{0x1b, 0x90170110},
11031 		{0x21, 0x03211020}),
11032        SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
11033 		{0x14, 0x90170110},
11034 		{0x19, 0x02a11020},
11035 		{0x21, 0x0221101f}),
11036        SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
11037 		{0x17, 0x90170110},
11038 		{0x19, 0x03a11030},
11039 		{0x21, 0x03211020}),
11040 	SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
11041 		{0x12, 0x90a60130},
11042 		{0x14, 0x90170110},
11043 		{0x15, 0x0421101f},
11044 		{0x1a, 0x04a11020}),
11045 	SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
11046 		{0x12, 0x90a60140},
11047 		{0x14, 0x90170110},
11048 		{0x15, 0x0421101f},
11049 		{0x18, 0x02811030},
11050 		{0x1a, 0x04a1103f},
11051 		{0x1b, 0x02011020}),
11052 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11053 		ALC282_STANDARD_PINS,
11054 		{0x12, 0x99a30130},
11055 		{0x19, 0x03a11020},
11056 		{0x21, 0x0321101f}),
11057 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11058 		ALC282_STANDARD_PINS,
11059 		{0x12, 0x99a30130},
11060 		{0x19, 0x03a11020},
11061 		{0x21, 0x03211040}),
11062 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11063 		ALC282_STANDARD_PINS,
11064 		{0x12, 0x99a30130},
11065 		{0x19, 0x03a11030},
11066 		{0x21, 0x03211020}),
11067 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11068 		ALC282_STANDARD_PINS,
11069 		{0x12, 0x99a30130},
11070 		{0x19, 0x04a11020},
11071 		{0x21, 0x0421101f}),
11072 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
11073 		ALC282_STANDARD_PINS,
11074 		{0x12, 0x90a60140},
11075 		{0x19, 0x04a11030},
11076 		{0x21, 0x04211020}),
11077 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
11078 		ALC282_STANDARD_PINS,
11079 		{0x12, 0x90a609c0},
11080 		{0x18, 0x03a11830},
11081 		{0x19, 0x04a19831},
11082 		{0x1a, 0x0481303f},
11083 		{0x1b, 0x04211020},
11084 		{0x21, 0x0321101f}),
11085 	SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
11086 		ALC282_STANDARD_PINS,
11087 		{0x12, 0x90a60940},
11088 		{0x18, 0x03a11830},
11089 		{0x19, 0x04a19831},
11090 		{0x1a, 0x0481303f},
11091 		{0x1b, 0x04211020},
11092 		{0x21, 0x0321101f}),
11093 	SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
11094 		ALC282_STANDARD_PINS,
11095 		{0x12, 0x90a60130},
11096 		{0x21, 0x0321101f}),
11097 	SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
11098 		{0x12, 0x90a60160},
11099 		{0x14, 0x90170120},
11100 		{0x21, 0x02211030}),
11101 	SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
11102 		ALC282_STANDARD_PINS,
11103 		{0x12, 0x90a60130},
11104 		{0x19, 0x03a11020},
11105 		{0x21, 0x0321101f}),
11106 	SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
11107 		{0x12, 0x90a60130},
11108 		{0x14, 0x90170110},
11109 		{0x19, 0x04a11040},
11110 		{0x21, 0x04211020}),
11111 	SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
11112 		{0x14, 0x90170110},
11113 		{0x19, 0x04a11040},
11114 		{0x1d, 0x40600001},
11115 		{0x21, 0x04211020}),
11116 	SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
11117 		{0x14, 0x90170110},
11118 		{0x19, 0x04a11040},
11119 		{0x21, 0x04211020}),
11120 	SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
11121 		{0x14, 0x90170110},
11122 		{0x17, 0x90170111},
11123 		{0x19, 0x03a11030},
11124 		{0x21, 0x03211020}),
11125 	SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
11126 		{0x17, 0x90170110},
11127 		{0x19, 0x03a11030},
11128 		{0x21, 0x03211020}),
11129 	SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
11130 		{0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
11131 		{0x19, 0x04a11040},
11132 		{0x21, 0x04211020}),
11133 	SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
11134 		{0x12, 0x90a60130},
11135 		{0x17, 0x90170110},
11136 		{0x21, 0x02211020}),
11137 	SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
11138 		{0x12, 0x90a60120},
11139 		{0x14, 0x90170110},
11140 		{0x21, 0x0321101f}),
11141 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11142 		ALC290_STANDARD_PINS,
11143 		{0x15, 0x04211040},
11144 		{0x18, 0x90170112},
11145 		{0x1a, 0x04a11020}),
11146 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11147 		ALC290_STANDARD_PINS,
11148 		{0x15, 0x04211040},
11149 		{0x18, 0x90170110},
11150 		{0x1a, 0x04a11020}),
11151 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11152 		ALC290_STANDARD_PINS,
11153 		{0x15, 0x0421101f},
11154 		{0x1a, 0x04a11020}),
11155 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11156 		ALC290_STANDARD_PINS,
11157 		{0x15, 0x04211020},
11158 		{0x1a, 0x04a11040}),
11159 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11160 		ALC290_STANDARD_PINS,
11161 		{0x14, 0x90170110},
11162 		{0x15, 0x04211020},
11163 		{0x1a, 0x04a11040}),
11164 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11165 		ALC290_STANDARD_PINS,
11166 		{0x14, 0x90170110},
11167 		{0x15, 0x04211020},
11168 		{0x1a, 0x04a11020}),
11169 	SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
11170 		ALC290_STANDARD_PINS,
11171 		{0x14, 0x90170110},
11172 		{0x15, 0x0421101f},
11173 		{0x1a, 0x04a11020}),
11174 	SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
11175 		ALC292_STANDARD_PINS,
11176 		{0x12, 0x90a60140},
11177 		{0x16, 0x01014020},
11178 		{0x19, 0x01a19030}),
11179 	SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
11180 		ALC292_STANDARD_PINS,
11181 		{0x12, 0x90a60140},
11182 		{0x16, 0x01014020},
11183 		{0x18, 0x02a19031},
11184 		{0x19, 0x01a1903e}),
11185 	SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
11186 		ALC292_STANDARD_PINS,
11187 		{0x12, 0x90a60140}),
11188 	SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
11189 		ALC292_STANDARD_PINS,
11190 		{0x13, 0x90a60140},
11191 		{0x16, 0x21014020},
11192 		{0x19, 0x21a19030}),
11193 	SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
11194 		ALC292_STANDARD_PINS,
11195 		{0x13, 0x90a60140}),
11196 	SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
11197 		{0x17, 0x90170110},
11198 		{0x21, 0x04211020}),
11199 	SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
11200 		{0x14, 0x90170110},
11201 		{0x1b, 0x90a70130},
11202 		{0x21, 0x04211020}),
11203 	SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
11204 		{0x12, 0x90a60130},
11205 		{0x17, 0x90170110},
11206 		{0x21, 0x03211020}),
11207 	SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
11208 		{0x12, 0x90a60130},
11209 		{0x17, 0x90170110},
11210 		{0x21, 0x04211020}),
11211 	SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
11212 		{0x12, 0x90a60130},
11213 		{0x17, 0x90170110},
11214 		{0x21, 0x03211020}),
11215 	SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
11216 		{0x12, 0x90a60120},
11217 		{0x17, 0x90170110},
11218 		{0x21, 0x04211030}),
11219 	SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
11220 		{0x12, 0x90a60130},
11221 		{0x17, 0x90170110},
11222 		{0x21, 0x03211020}),
11223 	SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
11224 		{0x12, 0x90a60130},
11225 		{0x17, 0x90170110},
11226 		{0x21, 0x03211020}),
11227 	SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
11228 		ALC298_STANDARD_PINS,
11229 		{0x17, 0x90170110}),
11230 	SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
11231 		ALC298_STANDARD_PINS,
11232 		{0x17, 0x90170140}),
11233 	SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
11234 		ALC298_STANDARD_PINS,
11235 		{0x17, 0x90170150}),
11236 	SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
11237 		{0x12, 0xb7a60140},
11238 		{0x13, 0xb7a60150},
11239 		{0x17, 0x90170110},
11240 		{0x1a, 0x03011020},
11241 		{0x21, 0x03211030}),
11242 	SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
11243 		{0x12, 0xb7a60140},
11244 		{0x17, 0x90170110},
11245 		{0x1a, 0x03a11030},
11246 		{0x21, 0x03211020}),
11247 	SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
11248 		ALC225_STANDARD_PINS,
11249 		{0x12, 0xb7a60130},
11250 		{0x17, 0x90170110}),
11251 	SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
11252 		{0x14, 0x01014010},
11253 		{0x17, 0x90170120},
11254 		{0x18, 0x02a11030},
11255 		{0x19, 0x02a1103f},
11256 		{0x21, 0x0221101f}),
11257 	{}
11258 };
11259 
11260 /* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
11261  * more machines, don't need to match all valid pins, just need to match
11262  * all the pins defined in the tbl. Just because of this reason, it is possible
11263  * that a single machine matches multiple tbls, so there is one limitation:
11264  *   at most one tbl is allowed to define for the same vendor and same codec
11265  */
11266 static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
11267 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1025, "Acer", ALC2XX_FIXUP_HEADSET_MIC,
11268 		{0x19, 0x40000000}),
11269 	SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
11270 		{0x19, 0x40000000},
11271 		{0x1b, 0x40000000}),
11272 	SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
11273 		{0x19, 0x40000000},
11274 		{0x1b, 0x40000000}),
11275 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11276 		{0x19, 0x40000000},
11277 		{0x1a, 0x40000000}),
11278 	SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11279 		{0x19, 0x40000000},
11280 		{0x1a, 0x40000000}),
11281 	SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
11282 		{0x19, 0x40000000},
11283 		{0x1a, 0x40000000}),
11284 	SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
11285 		{0x19, 0x40000000}),
11286 	{}
11287 };
11288 
11289 static void alc269_fill_coef(struct hda_codec *codec)
11290 {
11291 	struct alc_spec *spec = codec->spec;
11292 	int val;
11293 
11294 	if (spec->codec_variant != ALC269_TYPE_ALC269VB)
11295 		return;
11296 
11297 	if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
11298 		alc_write_coef_idx(codec, 0xf, 0x960b);
11299 		alc_write_coef_idx(codec, 0xe, 0x8817);
11300 	}
11301 
11302 	if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
11303 		alc_write_coef_idx(codec, 0xf, 0x960b);
11304 		alc_write_coef_idx(codec, 0xe, 0x8814);
11305 	}
11306 
11307 	if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
11308 		/* Power up output pin */
11309 		alc_update_coef_idx(codec, 0x04, 0, 1<<11);
11310 	}
11311 
11312 	if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
11313 		val = alc_read_coef_idx(codec, 0xd);
11314 		if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
11315 			/* Capless ramp up clock control */
11316 			alc_write_coef_idx(codec, 0xd, val | (1<<10));
11317 		}
11318 		val = alc_read_coef_idx(codec, 0x17);
11319 		if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
11320 			/* Class D power on reset */
11321 			alc_write_coef_idx(codec, 0x17, val | (1<<7));
11322 		}
11323 	}
11324 
11325 	/* HP */
11326 	alc_update_coef_idx(codec, 0x4, 0, 1<<11);
11327 }
11328 
11329 /*
11330  */
11331 static int patch_alc269(struct hda_codec *codec)
11332 {
11333 	struct alc_spec *spec;
11334 	int err;
11335 
11336 	err = alc_alloc_spec(codec, 0x0b);
11337 	if (err < 0)
11338 		return err;
11339 
11340 	spec = codec->spec;
11341 	spec->gen.shared_mic_vref_pin = 0x18;
11342 	codec->power_save_node = 0;
11343 	spec->en_3kpull_low = true;
11344 
11345 	codec->patch_ops.suspend = alc269_suspend;
11346 	codec->patch_ops.resume = alc269_resume;
11347 	spec->shutup = alc_default_shutup;
11348 	spec->init_hook = alc_default_init;
11349 
11350 	switch (codec->core.vendor_id) {
11351 	case 0x10ec0269:
11352 		spec->codec_variant = ALC269_TYPE_ALC269VA;
11353 		switch (alc_get_coef0(codec) & 0x00f0) {
11354 		case 0x0010:
11355 			if (codec->bus->pci &&
11356 			    codec->bus->pci->subsystem_vendor == 0x1025 &&
11357 			    spec->cdefine.platform_type == 1)
11358 				err = alc_codec_rename(codec, "ALC271X");
11359 			spec->codec_variant = ALC269_TYPE_ALC269VB;
11360 			break;
11361 		case 0x0020:
11362 			if (codec->bus->pci &&
11363 			    codec->bus->pci->subsystem_vendor == 0x17aa &&
11364 			    codec->bus->pci->subsystem_device == 0x21f3)
11365 				err = alc_codec_rename(codec, "ALC3202");
11366 			spec->codec_variant = ALC269_TYPE_ALC269VC;
11367 			break;
11368 		case 0x0030:
11369 			spec->codec_variant = ALC269_TYPE_ALC269VD;
11370 			break;
11371 		default:
11372 			alc_fix_pll_init(codec, 0x20, 0x04, 15);
11373 		}
11374 		if (err < 0)
11375 			goto error;
11376 		spec->shutup = alc269_shutup;
11377 		spec->init_hook = alc269_fill_coef;
11378 		alc269_fill_coef(codec);
11379 		break;
11380 
11381 	case 0x10ec0280:
11382 	case 0x10ec0290:
11383 		spec->codec_variant = ALC269_TYPE_ALC280;
11384 		break;
11385 	case 0x10ec0282:
11386 		spec->codec_variant = ALC269_TYPE_ALC282;
11387 		spec->shutup = alc282_shutup;
11388 		spec->init_hook = alc282_init;
11389 		break;
11390 	case 0x10ec0233:
11391 	case 0x10ec0283:
11392 		spec->codec_variant = ALC269_TYPE_ALC283;
11393 		spec->shutup = alc283_shutup;
11394 		spec->init_hook = alc283_init;
11395 		break;
11396 	case 0x10ec0284:
11397 	case 0x10ec0292:
11398 		spec->codec_variant = ALC269_TYPE_ALC284;
11399 		break;
11400 	case 0x10ec0293:
11401 		spec->codec_variant = ALC269_TYPE_ALC293;
11402 		break;
11403 	case 0x10ec0286:
11404 	case 0x10ec0288:
11405 		spec->codec_variant = ALC269_TYPE_ALC286;
11406 		break;
11407 	case 0x10ec0298:
11408 		spec->codec_variant = ALC269_TYPE_ALC298;
11409 		break;
11410 	case 0x10ec0235:
11411 	case 0x10ec0255:
11412 		spec->codec_variant = ALC269_TYPE_ALC255;
11413 		spec->shutup = alc256_shutup;
11414 		spec->init_hook = alc256_init;
11415 		break;
11416 	case 0x10ec0230:
11417 	case 0x10ec0236:
11418 	case 0x10ec0256:
11419 	case 0x19e58326:
11420 		spec->codec_variant = ALC269_TYPE_ALC256;
11421 		spec->shutup = alc256_shutup;
11422 		spec->init_hook = alc256_init;
11423 		spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
11424 		if (codec->core.vendor_id == 0x10ec0236 &&
11425 		    codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
11426 			spec->en_3kpull_low = false;
11427 		break;
11428 	case 0x10ec0257:
11429 		spec->codec_variant = ALC269_TYPE_ALC257;
11430 		spec->shutup = alc256_shutup;
11431 		spec->init_hook = alc256_init;
11432 		spec->gen.mixer_nid = 0;
11433 		spec->en_3kpull_low = false;
11434 		break;
11435 	case 0x10ec0215:
11436 	case 0x10ec0245:
11437 	case 0x10ec0285:
11438 	case 0x10ec0289:
11439 		if (alc_get_coef0(codec) & 0x0010)
11440 			spec->codec_variant = ALC269_TYPE_ALC245;
11441 		else
11442 			spec->codec_variant = ALC269_TYPE_ALC215;
11443 		spec->shutup = alc225_shutup;
11444 		spec->init_hook = alc225_init;
11445 		spec->gen.mixer_nid = 0;
11446 		break;
11447 	case 0x10ec0225:
11448 	case 0x10ec0295:
11449 	case 0x10ec0299:
11450 		spec->codec_variant = ALC269_TYPE_ALC225;
11451 		spec->shutup = alc225_shutup;
11452 		spec->init_hook = alc225_init;
11453 		spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
11454 		break;
11455 	case 0x10ec0287:
11456 		spec->codec_variant = ALC269_TYPE_ALC287;
11457 		spec->shutup = alc225_shutup;
11458 		spec->init_hook = alc225_init;
11459 		spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
11460 		break;
11461 	case 0x10ec0234:
11462 	case 0x10ec0274:
11463 	case 0x10ec0294:
11464 		spec->codec_variant = ALC269_TYPE_ALC294;
11465 		spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
11466 		alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
11467 		spec->init_hook = alc294_init;
11468 		break;
11469 	case 0x10ec0300:
11470 		spec->codec_variant = ALC269_TYPE_ALC300;
11471 		spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
11472 		break;
11473 	case 0x10ec0623:
11474 		spec->codec_variant = ALC269_TYPE_ALC623;
11475 		break;
11476 	case 0x10ec0700:
11477 	case 0x10ec0701:
11478 	case 0x10ec0703:
11479 	case 0x10ec0711:
11480 		spec->codec_variant = ALC269_TYPE_ALC700;
11481 		spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
11482 		alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
11483 		spec->init_hook = alc294_init;
11484 		break;
11485 
11486 	}
11487 
11488 	if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
11489 		spec->has_alc5505_dsp = 1;
11490 		spec->init_hook = alc5505_dsp_init;
11491 	}
11492 
11493 	alc_pre_init(codec);
11494 
11495 	snd_hda_pick_fixup(codec, alc269_fixup_models,
11496 		       alc269_fixup_tbl, alc269_fixups);
11497 	/* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11498 	 * the quirk breaks the latter (bko#214101).
11499 	 * Clear the wrong entry.
11500 	 */
11501 	if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11502 	    codec->core.vendor_id == 0x10ec0294) {
11503 		codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11504 		codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11505 	}
11506 
11507 	snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
11508 	snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
11509 	snd_hda_pick_fixup(codec, NULL,	alc269_fixup_vendor_tbl,
11510 			   alc269_fixups);
11511 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11512 
11513 	alc_auto_parse_customize_define(codec);
11514 
11515 	if (has_cdefine_beep(codec))
11516 		spec->gen.beep_nid = 0x01;
11517 
11518 	/* automatic parse from the BIOS config */
11519 	err = alc269_parse_auto_config(codec);
11520 	if (err < 0)
11521 		goto error;
11522 
11523 	if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11524 		err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11525 		if (err < 0)
11526 			goto error;
11527 	}
11528 
11529 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11530 
11531 	return 0;
11532 
11533  error:
11534 	alc_free(codec);
11535 	return err;
11536 }
11537 
11538 /*
11539  * ALC861
11540  */
11541 
11542 static int alc861_parse_auto_config(struct hda_codec *codec)
11543 {
11544 	static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
11545 	static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11546 	return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
11547 }
11548 
11549 /* Pin config fixes */
11550 enum {
11551 	ALC861_FIXUP_FSC_AMILO_PI1505,
11552 	ALC861_FIXUP_AMP_VREF_0F,
11553 	ALC861_FIXUP_NO_JACK_DETECT,
11554 	ALC861_FIXUP_ASUS_A6RP,
11555 	ALC660_FIXUP_ASUS_W7J,
11556 };
11557 
11558 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11559 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
11560 			const struct hda_fixup *fix, int action)
11561 {
11562 	struct alc_spec *spec = codec->spec;
11563 	unsigned int val;
11564 
11565 	if (action != HDA_FIXUP_ACT_INIT)
11566 		return;
11567 	val = snd_hda_codec_get_pin_target(codec, 0x0f);
11568 	if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11569 		val |= AC_PINCTL_IN_EN;
11570 	val |= AC_PINCTL_VREF_50;
11571 	snd_hda_set_pin_ctl(codec, 0x0f, val);
11572 	spec->gen.keep_vref_in_automute = 1;
11573 }
11574 
11575 /* suppress the jack-detection */
11576 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
11577 				     const struct hda_fixup *fix, int action)
11578 {
11579 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
11580 		codec->no_jack_detect = 1;
11581 }
11582 
11583 static const struct hda_fixup alc861_fixups[] = {
11584 	[ALC861_FIXUP_FSC_AMILO_PI1505] = {
11585 		.type = HDA_FIXUP_PINS,
11586 		.v.pins = (const struct hda_pintbl[]) {
11587 			{ 0x0b, 0x0221101f }, /* HP */
11588 			{ 0x0f, 0x90170310 }, /* speaker */
11589 			{ }
11590 		}
11591 	},
11592 	[ALC861_FIXUP_AMP_VREF_0F] = {
11593 		.type = HDA_FIXUP_FUNC,
11594 		.v.func = alc861_fixup_asus_amp_vref_0f,
11595 	},
11596 	[ALC861_FIXUP_NO_JACK_DETECT] = {
11597 		.type = HDA_FIXUP_FUNC,
11598 		.v.func = alc_fixup_no_jack_detect,
11599 	},
11600 	[ALC861_FIXUP_ASUS_A6RP] = {
11601 		.type = HDA_FIXUP_FUNC,
11602 		.v.func = alc861_fixup_asus_amp_vref_0f,
11603 		.chained = true,
11604 		.chain_id = ALC861_FIXUP_NO_JACK_DETECT,
11605 	},
11606 	[ALC660_FIXUP_ASUS_W7J] = {
11607 		.type = HDA_FIXUP_VERBS,
11608 		.v.verbs = (const struct hda_verb[]) {
11609 			/* ASUS W7J needs a magic pin setup on unused NID 0x10
11610 			 * for enabling outputs
11611 			 */
11612 			{0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11613 			{ }
11614 		},
11615 	}
11616 };
11617 
11618 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
11619 	SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
11620 	SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
11621 	SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11622 	SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11623 	SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
11624 	SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
11625 	SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
11626 	{}
11627 };
11628 
11629 /*
11630  */
11631 static int patch_alc861(struct hda_codec *codec)
11632 {
11633 	struct alc_spec *spec;
11634 	int err;
11635 
11636 	err = alc_alloc_spec(codec, 0x15);
11637 	if (err < 0)
11638 		return err;
11639 
11640 	spec = codec->spec;
11641 	if (has_cdefine_beep(codec))
11642 		spec->gen.beep_nid = 0x23;
11643 
11644 	spec->power_hook = alc_power_eapd;
11645 
11646 	alc_pre_init(codec);
11647 
11648 	snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11649 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11650 
11651 	/* automatic parse from the BIOS config */
11652 	err = alc861_parse_auto_config(codec);
11653 	if (err < 0)
11654 		goto error;
11655 
11656 	if (!spec->gen.no_analog) {
11657 		err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11658 		if (err < 0)
11659 			goto error;
11660 	}
11661 
11662 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11663 
11664 	return 0;
11665 
11666  error:
11667 	alc_free(codec);
11668 	return err;
11669 }
11670 
11671 /*
11672  * ALC861-VD support
11673  *
11674  * Based on ALC882
11675  *
11676  * In addition, an independent DAC
11677  */
11678 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11679 {
11680 	static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11681 	static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11682 	return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
11683 }
11684 
11685 enum {
11686 	ALC660VD_FIX_ASUS_GPIO1,
11687 	ALC861VD_FIX_DALLAS,
11688 };
11689 
11690 /* exclude VREF80 */
11691 static void alc861vd_fixup_dallas(struct hda_codec *codec,
11692 				  const struct hda_fixup *fix, int action)
11693 {
11694 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11695 		snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11696 		snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
11697 	}
11698 }
11699 
11700 /* reset GPIO1 */
11701 static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11702 				      const struct hda_fixup *fix, int action)
11703 {
11704 	struct alc_spec *spec = codec->spec;
11705 
11706 	if (action == HDA_FIXUP_ACT_PRE_PROBE)
11707 		spec->gpio_mask |= 0x02;
11708 	alc_fixup_gpio(codec, action, 0x01);
11709 }
11710 
11711 static const struct hda_fixup alc861vd_fixups[] = {
11712 	[ALC660VD_FIX_ASUS_GPIO1] = {
11713 		.type = HDA_FIXUP_FUNC,
11714 		.v.func = alc660vd_fixup_asus_gpio1,
11715 	},
11716 	[ALC861VD_FIX_DALLAS] = {
11717 		.type = HDA_FIXUP_FUNC,
11718 		.v.func = alc861vd_fixup_dallas,
11719 	},
11720 };
11721 
11722 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
11723 	SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
11724 	SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
11725 	SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
11726 	{}
11727 };
11728 
11729 /*
11730  */
11731 static int patch_alc861vd(struct hda_codec *codec)
11732 {
11733 	struct alc_spec *spec;
11734 	int err;
11735 
11736 	err = alc_alloc_spec(codec, 0x0b);
11737 	if (err < 0)
11738 		return err;
11739 
11740 	spec = codec->spec;
11741 	if (has_cdefine_beep(codec))
11742 		spec->gen.beep_nid = 0x23;
11743 
11744 	spec->shutup = alc_eapd_shutup;
11745 
11746 	alc_pre_init(codec);
11747 
11748 	snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11749 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11750 
11751 	/* automatic parse from the BIOS config */
11752 	err = alc861vd_parse_auto_config(codec);
11753 	if (err < 0)
11754 		goto error;
11755 
11756 	if (!spec->gen.no_analog) {
11757 		err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11758 		if (err < 0)
11759 			goto error;
11760 	}
11761 
11762 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
11763 
11764 	return 0;
11765 
11766  error:
11767 	alc_free(codec);
11768 	return err;
11769 }
11770 
11771 /*
11772  * ALC662 support
11773  *
11774  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11775  * configuration.  Each pin widget can choose any input DACs and a mixer.
11776  * Each ADC is connected from a mixer of all inputs.  This makes possible
11777  * 6-channel independent captures.
11778  *
11779  * In addition, an independent DAC for the multi-playback (not used in this
11780  * driver yet).
11781  */
11782 
11783 /*
11784  * BIOS auto configuration
11785  */
11786 
11787 static int alc662_parse_auto_config(struct hda_codec *codec)
11788 {
11789 	static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11790 	static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11791 	static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11792 	const hda_nid_t *ssids;
11793 
11794 	if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11795 	    codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11796 	    codec->core.vendor_id == 0x10ec0671)
11797 		ssids = alc663_ssids;
11798 	else
11799 		ssids = alc662_ssids;
11800 	return alc_parse_auto_config(codec, alc662_ignore, ssids);
11801 }
11802 
11803 static void alc272_fixup_mario(struct hda_codec *codec,
11804 			       const struct hda_fixup *fix, int action)
11805 {
11806 	if (action != HDA_FIXUP_ACT_PRE_PROBE)
11807 		return;
11808 	if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11809 				      (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11810 				      (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11811 				      (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11812 				      (0 << AC_AMPCAP_MUTE_SHIFT)))
11813 		codec_warn(codec, "failed to override amp caps for NID 0x2\n");
11814 }
11815 
11816 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11817 	{ .channels = 2,
11818 	  .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11819 	{ .channels = 4,
11820 	  .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11821 		   SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11822 	{ }
11823 };
11824 
11825 /* override the 2.1 chmap */
11826 static void alc_fixup_bass_chmap(struct hda_codec *codec,
11827 				    const struct hda_fixup *fix, int action)
11828 {
11829 	if (action == HDA_FIXUP_ACT_BUILD) {
11830 		struct alc_spec *spec = codec->spec;
11831 		spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
11832 	}
11833 }
11834 
11835 /* avoid D3 for keeping GPIO up */
11836 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11837 					  hda_nid_t nid,
11838 					  unsigned int power_state)
11839 {
11840 	struct alc_spec *spec = codec->spec;
11841 	if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
11842 		return AC_PWRST_D0;
11843 	return power_state;
11844 }
11845 
11846 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11847 				   const struct hda_fixup *fix, int action)
11848 {
11849 	struct alc_spec *spec = codec->spec;
11850 
11851 	alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
11852 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11853 		spec->mute_led_polarity = 1;
11854 		codec->power_filter = gpio_led_power_filter;
11855 	}
11856 }
11857 
11858 static void alc662_usi_automute_hook(struct hda_codec *codec,
11859 					 struct hda_jack_callback *jack)
11860 {
11861 	struct alc_spec *spec = codec->spec;
11862 	int vref;
11863 	msleep(200);
11864 	snd_hda_gen_hp_automute(codec, jack);
11865 
11866 	vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11867 	msleep(100);
11868 	snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11869 			    vref);
11870 }
11871 
11872 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11873 				     const struct hda_fixup *fix, int action)
11874 {
11875 	struct alc_spec *spec = codec->spec;
11876 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11877 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11878 		spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11879 	}
11880 }
11881 
11882 static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11883 					struct hda_jack_callback *cb)
11884 {
11885 	/* surround speakers at 0x1b already get muted automatically when
11886 	 * headphones are plugged in, but we have to mute/unmute the remaining
11887 	 * channels manually:
11888 	 * 0x15 - front left/front right
11889 	 * 0x18 - front center/ LFE
11890 	 */
11891 	if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11892 		snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11893 		snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11894 	} else {
11895 		snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11896 		snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11897 	}
11898 }
11899 
11900 static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11901 					const struct hda_fixup *fix, int action)
11902 {
11903     /* Pin 0x1b: shared headphones jack and surround speakers */
11904 	if (!is_jack_detectable(codec, 0x1b))
11905 		return;
11906 
11907 	switch (action) {
11908 	case HDA_FIXUP_ACT_PRE_PROBE:
11909 		snd_hda_jack_detect_enable_callback(codec, 0x1b,
11910 				alc662_aspire_ethos_mute_speakers);
11911 		/* subwoofer needs an extra GPIO setting to become audible */
11912 		alc_setup_gpio(codec, 0x02);
11913 		break;
11914 	case HDA_FIXUP_ACT_INIT:
11915 		/* Make sure to start in a correct state, i.e. if
11916 		 * headphones have been plugged in before powering up the system
11917 		 */
11918 		alc662_aspire_ethos_mute_speakers(codec, NULL);
11919 		break;
11920 	}
11921 }
11922 
11923 static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11924 					     const struct hda_fixup *fix, int action)
11925 {
11926 	struct alc_spec *spec = codec->spec;
11927 
11928 	static const struct hda_pintbl pincfgs[] = {
11929 		{ 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11930 		{ 0x1b, 0x0181304f },
11931 		{ }
11932 	};
11933 
11934 	switch (action) {
11935 	case HDA_FIXUP_ACT_PRE_PROBE:
11936 		spec->gen.mixer_nid = 0;
11937 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11938 		snd_hda_apply_pincfgs(codec, pincfgs);
11939 		break;
11940 	case HDA_FIXUP_ACT_INIT:
11941 		alc_write_coef_idx(codec, 0x19, 0xa054);
11942 		break;
11943 	}
11944 }
11945 
11946 static void alc897_hp_automute_hook(struct hda_codec *codec,
11947 					 struct hda_jack_callback *jack)
11948 {
11949 	struct alc_spec *spec = codec->spec;
11950 	int vref;
11951 
11952 	snd_hda_gen_hp_automute(codec, jack);
11953 	vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11954 	snd_hda_set_pin_ctl(codec, 0x1b, vref);
11955 }
11956 
11957 static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11958 				     const struct hda_fixup *fix, int action)
11959 {
11960 	struct alc_spec *spec = codec->spec;
11961 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11962 		spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11963 		spec->no_shutup_pins = 1;
11964 	}
11965 	if (action == HDA_FIXUP_ACT_PROBE) {
11966 		snd_hda_set_pin_ctl_cache(codec, 0x1a, PIN_IN | AC_PINCTL_VREF_100);
11967 	}
11968 }
11969 
11970 static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11971 				     const struct hda_fixup *fix, int action)
11972 {
11973 	struct alc_spec *spec = codec->spec;
11974 
11975 	if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11976 		spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11977 		spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11978 	}
11979 }
11980 
11981 static const struct coef_fw alc668_coefs[] = {
11982 	WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03,    0x0),
11983 	WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06,    0x0), WRITE_COEF(0x07, 0x0f80),
11984 	WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b,    0x0),
11985 	WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11986 	WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11987 	WRITE_COEF(0x13,    0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11988 	WRITE_COEF(0x19,    0x0), WRITE_COEF(0x1a,    0x0), WRITE_COEF(0x1b,    0x0),
11989 	WRITE_COEF(0x1c,    0x0), WRITE_COEF(0x1d,    0x0), WRITE_COEF(0x1e, 0x7418),
11990 	WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11991 	WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11992 	WRITE_COEF(0x27,    0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11993 	WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11994 	WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac,    0x0),
11995 	WRITE_COEF(0xad,    0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11996 	WRITE_COEF(0xb0,    0x0), WRITE_COEF(0xb1,    0x0), WRITE_COEF(0xb2,    0x0),
11997 	WRITE_COEF(0xb3,    0x0), WRITE_COEF(0xb4,    0x0), WRITE_COEF(0xb5, 0x1040),
11998 	WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11999 	WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
12000 	WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
12001 	WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
12002 	{}
12003 };
12004 
12005 static void alc668_restore_default_value(struct hda_codec *codec)
12006 {
12007 	alc_process_coef_fw(codec, alc668_coefs);
12008 }
12009 
12010 enum {
12011 	ALC662_FIXUP_ASPIRE,
12012 	ALC662_FIXUP_LED_GPIO1,
12013 	ALC662_FIXUP_IDEAPAD,
12014 	ALC272_FIXUP_MARIO,
12015 	ALC662_FIXUP_CZC_ET26,
12016 	ALC662_FIXUP_CZC_P10T,
12017 	ALC662_FIXUP_SKU_IGNORE,
12018 	ALC662_FIXUP_HP_RP5800,
12019 	ALC662_FIXUP_ASUS_MODE1,
12020 	ALC662_FIXUP_ASUS_MODE2,
12021 	ALC662_FIXUP_ASUS_MODE3,
12022 	ALC662_FIXUP_ASUS_MODE4,
12023 	ALC662_FIXUP_ASUS_MODE5,
12024 	ALC662_FIXUP_ASUS_MODE6,
12025 	ALC662_FIXUP_ASUS_MODE7,
12026 	ALC662_FIXUP_ASUS_MODE8,
12027 	ALC662_FIXUP_NO_JACK_DETECT,
12028 	ALC662_FIXUP_ZOTAC_Z68,
12029 	ALC662_FIXUP_INV_DMIC,
12030 	ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
12031 	ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
12032 	ALC662_FIXUP_HEADSET_MODE,
12033 	ALC668_FIXUP_HEADSET_MODE,
12034 	ALC662_FIXUP_BASS_MODE4_CHMAP,
12035 	ALC662_FIXUP_BASS_16,
12036 	ALC662_FIXUP_BASS_1A,
12037 	ALC662_FIXUP_BASS_CHMAP,
12038 	ALC668_FIXUP_AUTO_MUTE,
12039 	ALC668_FIXUP_DELL_DISABLE_AAMIX,
12040 	ALC668_FIXUP_DELL_XPS13,
12041 	ALC662_FIXUP_ASUS_Nx50,
12042 	ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
12043 	ALC668_FIXUP_ASUS_Nx51,
12044 	ALC668_FIXUP_MIC_COEF,
12045 	ALC668_FIXUP_ASUS_G751,
12046 	ALC891_FIXUP_HEADSET_MODE,
12047 	ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12048 	ALC662_FIXUP_ACER_VERITON,
12049 	ALC892_FIXUP_ASROCK_MOBO,
12050 	ALC662_FIXUP_USI_FUNC,
12051 	ALC662_FIXUP_USI_HEADSET_MODE,
12052 	ALC662_FIXUP_LENOVO_MULTI_CODECS,
12053 	ALC669_FIXUP_ACER_ASPIRE_ETHOS,
12054 	ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
12055 	ALC671_FIXUP_HP_HEADSET_MIC2,
12056 	ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
12057 	ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
12058 	ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
12059 	ALC668_FIXUP_HEADSET_MIC,
12060 	ALC668_FIXUP_MIC_DET_COEF,
12061 	ALC897_FIXUP_LENOVO_HEADSET_MIC,
12062 	ALC897_FIXUP_HEADSET_MIC_PIN,
12063 	ALC897_FIXUP_HP_HSMIC_VERB,
12064 	ALC897_FIXUP_LENOVO_HEADSET_MODE,
12065 	ALC897_FIXUP_HEADSET_MIC_PIN2,
12066 	ALC897_FIXUP_UNIS_H3C_X500S,
12067 	ALC897_FIXUP_HEADSET_MIC_PIN3,
12068 };
12069 
12070 static const struct hda_fixup alc662_fixups[] = {
12071 	[ALC662_FIXUP_ASPIRE] = {
12072 		.type = HDA_FIXUP_PINS,
12073 		.v.pins = (const struct hda_pintbl[]) {
12074 			{ 0x15, 0x99130112 }, /* subwoofer */
12075 			{ }
12076 		}
12077 	},
12078 	[ALC662_FIXUP_LED_GPIO1] = {
12079 		.type = HDA_FIXUP_FUNC,
12080 		.v.func = alc662_fixup_led_gpio1,
12081 	},
12082 	[ALC662_FIXUP_IDEAPAD] = {
12083 		.type = HDA_FIXUP_PINS,
12084 		.v.pins = (const struct hda_pintbl[]) {
12085 			{ 0x17, 0x99130112 }, /* subwoofer */
12086 			{ }
12087 		},
12088 		.chained = true,
12089 		.chain_id = ALC662_FIXUP_LED_GPIO1,
12090 	},
12091 	[ALC272_FIXUP_MARIO] = {
12092 		.type = HDA_FIXUP_FUNC,
12093 		.v.func = alc272_fixup_mario,
12094 	},
12095 	[ALC662_FIXUP_CZC_ET26] = {
12096 		.type = HDA_FIXUP_PINS,
12097 		.v.pins = (const struct hda_pintbl[]) {
12098 			{0x12, 0x403cc000},
12099 			{0x14, 0x90170110}, /* speaker */
12100 			{0x15, 0x411111f0},
12101 			{0x16, 0x411111f0},
12102 			{0x18, 0x01a19030}, /* mic */
12103 			{0x19, 0x90a7013f}, /* int-mic */
12104 			{0x1a, 0x01014020},
12105 			{0x1b, 0x0121401f},
12106 			{0x1c, 0x411111f0},
12107 			{0x1d, 0x411111f0},
12108 			{0x1e, 0x40478e35},
12109 			{}
12110 		},
12111 		.chained = true,
12112 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12113 	},
12114 	[ALC662_FIXUP_CZC_P10T] = {
12115 		.type = HDA_FIXUP_VERBS,
12116 		.v.verbs = (const struct hda_verb[]) {
12117 			{0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
12118 			{}
12119 		}
12120 	},
12121 	[ALC662_FIXUP_SKU_IGNORE] = {
12122 		.type = HDA_FIXUP_FUNC,
12123 		.v.func = alc_fixup_sku_ignore,
12124 	},
12125 	[ALC662_FIXUP_HP_RP5800] = {
12126 		.type = HDA_FIXUP_PINS,
12127 		.v.pins = (const struct hda_pintbl[]) {
12128 			{ 0x14, 0x0221201f }, /* HP out */
12129 			{ }
12130 		},
12131 		.chained = true,
12132 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12133 	},
12134 	[ALC662_FIXUP_ASUS_MODE1] = {
12135 		.type = HDA_FIXUP_PINS,
12136 		.v.pins = (const struct hda_pintbl[]) {
12137 			{ 0x14, 0x99130110 }, /* speaker */
12138 			{ 0x18, 0x01a19c20 }, /* mic */
12139 			{ 0x19, 0x99a3092f }, /* int-mic */
12140 			{ 0x21, 0x0121401f }, /* HP out */
12141 			{ }
12142 		},
12143 		.chained = true,
12144 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12145 	},
12146 	[ALC662_FIXUP_ASUS_MODE2] = {
12147 		.type = HDA_FIXUP_PINS,
12148 		.v.pins = (const struct hda_pintbl[]) {
12149 			{ 0x14, 0x99130110 }, /* speaker */
12150 			{ 0x18, 0x01a19820 }, /* mic */
12151 			{ 0x19, 0x99a3092f }, /* int-mic */
12152 			{ 0x1b, 0x0121401f }, /* HP out */
12153 			{ }
12154 		},
12155 		.chained = true,
12156 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12157 	},
12158 	[ALC662_FIXUP_ASUS_MODE3] = {
12159 		.type = HDA_FIXUP_PINS,
12160 		.v.pins = (const struct hda_pintbl[]) {
12161 			{ 0x14, 0x99130110 }, /* speaker */
12162 			{ 0x15, 0x0121441f }, /* HP */
12163 			{ 0x18, 0x01a19840 }, /* mic */
12164 			{ 0x19, 0x99a3094f }, /* int-mic */
12165 			{ 0x21, 0x01211420 }, /* HP2 */
12166 			{ }
12167 		},
12168 		.chained = true,
12169 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12170 	},
12171 	[ALC662_FIXUP_ASUS_MODE4] = {
12172 		.type = HDA_FIXUP_PINS,
12173 		.v.pins = (const struct hda_pintbl[]) {
12174 			{ 0x14, 0x99130110 }, /* speaker */
12175 			{ 0x16, 0x99130111 }, /* speaker */
12176 			{ 0x18, 0x01a19840 }, /* mic */
12177 			{ 0x19, 0x99a3094f }, /* int-mic */
12178 			{ 0x21, 0x0121441f }, /* HP */
12179 			{ }
12180 		},
12181 		.chained = true,
12182 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12183 	},
12184 	[ALC662_FIXUP_ASUS_MODE5] = {
12185 		.type = HDA_FIXUP_PINS,
12186 		.v.pins = (const struct hda_pintbl[]) {
12187 			{ 0x14, 0x99130110 }, /* speaker */
12188 			{ 0x15, 0x0121441f }, /* HP */
12189 			{ 0x16, 0x99130111 }, /* speaker */
12190 			{ 0x18, 0x01a19840 }, /* mic */
12191 			{ 0x19, 0x99a3094f }, /* int-mic */
12192 			{ }
12193 		},
12194 		.chained = true,
12195 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12196 	},
12197 	[ALC662_FIXUP_ASUS_MODE6] = {
12198 		.type = HDA_FIXUP_PINS,
12199 		.v.pins = (const struct hda_pintbl[]) {
12200 			{ 0x14, 0x99130110 }, /* speaker */
12201 			{ 0x15, 0x01211420 }, /* HP2 */
12202 			{ 0x18, 0x01a19840 }, /* mic */
12203 			{ 0x19, 0x99a3094f }, /* int-mic */
12204 			{ 0x1b, 0x0121441f }, /* HP */
12205 			{ }
12206 		},
12207 		.chained = true,
12208 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12209 	},
12210 	[ALC662_FIXUP_ASUS_MODE7] = {
12211 		.type = HDA_FIXUP_PINS,
12212 		.v.pins = (const struct hda_pintbl[]) {
12213 			{ 0x14, 0x99130110 }, /* speaker */
12214 			{ 0x17, 0x99130111 }, /* speaker */
12215 			{ 0x18, 0x01a19840 }, /* mic */
12216 			{ 0x19, 0x99a3094f }, /* int-mic */
12217 			{ 0x1b, 0x01214020 }, /* HP */
12218 			{ 0x21, 0x0121401f }, /* HP */
12219 			{ }
12220 		},
12221 		.chained = true,
12222 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12223 	},
12224 	[ALC662_FIXUP_ASUS_MODE8] = {
12225 		.type = HDA_FIXUP_PINS,
12226 		.v.pins = (const struct hda_pintbl[]) {
12227 			{ 0x14, 0x99130110 }, /* speaker */
12228 			{ 0x12, 0x99a30970 }, /* int-mic */
12229 			{ 0x15, 0x01214020 }, /* HP */
12230 			{ 0x17, 0x99130111 }, /* speaker */
12231 			{ 0x18, 0x01a19840 }, /* mic */
12232 			{ 0x21, 0x0121401f }, /* HP */
12233 			{ }
12234 		},
12235 		.chained = true,
12236 		.chain_id = ALC662_FIXUP_SKU_IGNORE
12237 	},
12238 	[ALC662_FIXUP_NO_JACK_DETECT] = {
12239 		.type = HDA_FIXUP_FUNC,
12240 		.v.func = alc_fixup_no_jack_detect,
12241 	},
12242 	[ALC662_FIXUP_ZOTAC_Z68] = {
12243 		.type = HDA_FIXUP_PINS,
12244 		.v.pins = (const struct hda_pintbl[]) {
12245 			{ 0x1b, 0x02214020 }, /* Front HP */
12246 			{ }
12247 		}
12248 	},
12249 	[ALC662_FIXUP_INV_DMIC] = {
12250 		.type = HDA_FIXUP_FUNC,
12251 		.v.func = alc_fixup_inv_dmic,
12252 	},
12253 	[ALC668_FIXUP_DELL_XPS13] = {
12254 		.type = HDA_FIXUP_FUNC,
12255 		.v.func = alc_fixup_dell_xps13,
12256 		.chained = true,
12257 		.chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
12258 	},
12259 	[ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
12260 		.type = HDA_FIXUP_FUNC,
12261 		.v.func = alc_fixup_disable_aamix,
12262 		.chained = true,
12263 		.chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
12264 	},
12265 	[ALC668_FIXUP_AUTO_MUTE] = {
12266 		.type = HDA_FIXUP_FUNC,
12267 		.v.func = alc_fixup_auto_mute_via_amp,
12268 		.chained = true,
12269 		.chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
12270 	},
12271 	[ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
12272 		.type = HDA_FIXUP_PINS,
12273 		.v.pins = (const struct hda_pintbl[]) {
12274 			{ 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12275 			/* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
12276 			{ }
12277 		},
12278 		.chained = true,
12279 		.chain_id = ALC662_FIXUP_HEADSET_MODE
12280 	},
12281 	[ALC662_FIXUP_HEADSET_MODE] = {
12282 		.type = HDA_FIXUP_FUNC,
12283 		.v.func = alc_fixup_headset_mode_alc662,
12284 	},
12285 	[ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
12286 		.type = HDA_FIXUP_PINS,
12287 		.v.pins = (const struct hda_pintbl[]) {
12288 			{ 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12289 			{ 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12290 			{ }
12291 		},
12292 		.chained = true,
12293 		.chain_id = ALC668_FIXUP_HEADSET_MODE
12294 	},
12295 	[ALC668_FIXUP_HEADSET_MODE] = {
12296 		.type = HDA_FIXUP_FUNC,
12297 		.v.func = alc_fixup_headset_mode_alc668,
12298 	},
12299 	[ALC662_FIXUP_BASS_MODE4_CHMAP] = {
12300 		.type = HDA_FIXUP_FUNC,
12301 		.v.func = alc_fixup_bass_chmap,
12302 		.chained = true,
12303 		.chain_id = ALC662_FIXUP_ASUS_MODE4
12304 	},
12305 	[ALC662_FIXUP_BASS_16] = {
12306 		.type = HDA_FIXUP_PINS,
12307 		.v.pins = (const struct hda_pintbl[]) {
12308 			{0x16, 0x80106111}, /* bass speaker */
12309 			{}
12310 		},
12311 		.chained = true,
12312 		.chain_id = ALC662_FIXUP_BASS_CHMAP,
12313 	},
12314 	[ALC662_FIXUP_BASS_1A] = {
12315 		.type = HDA_FIXUP_PINS,
12316 		.v.pins = (const struct hda_pintbl[]) {
12317 			{0x1a, 0x80106111}, /* bass speaker */
12318 			{}
12319 		},
12320 		.chained = true,
12321 		.chain_id = ALC662_FIXUP_BASS_CHMAP,
12322 	},
12323 	[ALC662_FIXUP_BASS_CHMAP] = {
12324 		.type = HDA_FIXUP_FUNC,
12325 		.v.func = alc_fixup_bass_chmap,
12326 	},
12327 	[ALC662_FIXUP_ASUS_Nx50] = {
12328 		.type = HDA_FIXUP_FUNC,
12329 		.v.func = alc_fixup_auto_mute_via_amp,
12330 		.chained = true,
12331 		.chain_id = ALC662_FIXUP_BASS_1A
12332 	},
12333 	[ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
12334 		.type = HDA_FIXUP_FUNC,
12335 		.v.func = alc_fixup_headset_mode_alc668,
12336 		.chain_id = ALC662_FIXUP_BASS_CHMAP
12337 	},
12338 	[ALC668_FIXUP_ASUS_Nx51] = {
12339 		.type = HDA_FIXUP_PINS,
12340 		.v.pins = (const struct hda_pintbl[]) {
12341 			{ 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12342 			{ 0x1a, 0x90170151 }, /* bass speaker */
12343 			{ 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12344 			{}
12345 		},
12346 		.chained = true,
12347 		.chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
12348 	},
12349 	[ALC668_FIXUP_MIC_COEF] = {
12350 		.type = HDA_FIXUP_VERBS,
12351 		.v.verbs = (const struct hda_verb[]) {
12352 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
12353 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
12354 			{}
12355 		},
12356 	},
12357 	[ALC668_FIXUP_ASUS_G751] = {
12358 		.type = HDA_FIXUP_PINS,
12359 		.v.pins = (const struct hda_pintbl[]) {
12360 			{ 0x16, 0x0421101f }, /* HP */
12361 			{}
12362 		},
12363 		.chained = true,
12364 		.chain_id = ALC668_FIXUP_MIC_COEF
12365 	},
12366 	[ALC891_FIXUP_HEADSET_MODE] = {
12367 		.type = HDA_FIXUP_FUNC,
12368 		.v.func = alc_fixup_headset_mode,
12369 	},
12370 	[ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
12371 		.type = HDA_FIXUP_PINS,
12372 		.v.pins = (const struct hda_pintbl[]) {
12373 			{ 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12374 			{ 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12375 			{ }
12376 		},
12377 		.chained = true,
12378 		.chain_id = ALC891_FIXUP_HEADSET_MODE
12379 	},
12380 	[ALC662_FIXUP_ACER_VERITON] = {
12381 		.type = HDA_FIXUP_PINS,
12382 		.v.pins = (const struct hda_pintbl[]) {
12383 			{ 0x15, 0x50170120 }, /* no internal speaker */
12384 			{ }
12385 		}
12386 	},
12387 	[ALC892_FIXUP_ASROCK_MOBO] = {
12388 		.type = HDA_FIXUP_PINS,
12389 		.v.pins = (const struct hda_pintbl[]) {
12390 			{ 0x15, 0x40f000f0 }, /* disabled */
12391 			{ 0x16, 0x40f000f0 }, /* disabled */
12392 			{ }
12393 		}
12394 	},
12395 	[ALC662_FIXUP_USI_FUNC] = {
12396 		.type = HDA_FIXUP_FUNC,
12397 		.v.func = alc662_fixup_usi_headset_mic,
12398 	},
12399 	[ALC662_FIXUP_USI_HEADSET_MODE] = {
12400 		.type = HDA_FIXUP_PINS,
12401 		.v.pins = (const struct hda_pintbl[]) {
12402 			{ 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
12403 			{ 0x18, 0x01a1903d },
12404 			{ }
12405 		},
12406 		.chained = true,
12407 		.chain_id = ALC662_FIXUP_USI_FUNC
12408 	},
12409 	[ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
12410 		.type = HDA_FIXUP_FUNC,
12411 		.v.func = alc233_alc662_fixup_lenovo_dual_codecs,
12412 	},
12413 	[ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
12414 		.type = HDA_FIXUP_FUNC,
12415 		.v.func = alc662_fixup_aspire_ethos_hp,
12416 	},
12417 	[ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
12418 		.type = HDA_FIXUP_PINS,
12419 		.v.pins = (const struct hda_pintbl[]) {
12420 			{ 0x15, 0x92130110 }, /* front speakers */
12421 			{ 0x18, 0x99130111 }, /* center/subwoofer */
12422 			{ 0x1b, 0x11130012 }, /* surround plus jack for HP */
12423 			{ }
12424 		},
12425 		.chained = true,
12426 		.chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
12427 	},
12428 	[ALC671_FIXUP_HP_HEADSET_MIC2] = {
12429 		.type = HDA_FIXUP_FUNC,
12430 		.v.func = alc671_fixup_hp_headset_mic2,
12431 	},
12432 	[ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
12433 		.type = HDA_FIXUP_PINS,
12434 		.v.pins = (const struct hda_pintbl[]) {
12435 			{ 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
12436 			{ }
12437 		},
12438 		.chained = true,
12439 		.chain_id = ALC662_FIXUP_USI_FUNC
12440 	},
12441 	[ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
12442 		.type = HDA_FIXUP_PINS,
12443 		.v.pins = (const struct hda_pintbl[]) {
12444 			{ 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12445 			{ 0x1b, 0x0221144f },
12446 			{ }
12447 		},
12448 		.chained = true,
12449 		.chain_id = ALC662_FIXUP_USI_FUNC
12450 	},
12451 	[ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
12452 		.type = HDA_FIXUP_PINS,
12453 		.v.pins = (const struct hda_pintbl[]) {
12454 			{ 0x1b, 0x04a1112c },
12455 			{ }
12456 		},
12457 		.chained = true,
12458 		.chain_id = ALC668_FIXUP_HEADSET_MIC
12459 	},
12460 	[ALC668_FIXUP_HEADSET_MIC] = {
12461 		.type = HDA_FIXUP_FUNC,
12462 		.v.func = alc269_fixup_headset_mic,
12463 		.chained = true,
12464 		.chain_id = ALC668_FIXUP_MIC_DET_COEF
12465 	},
12466 	[ALC668_FIXUP_MIC_DET_COEF] = {
12467 		.type = HDA_FIXUP_VERBS,
12468 		.v.verbs = (const struct hda_verb[]) {
12469 			{ 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
12470 			{ 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
12471 			{}
12472 		},
12473 	},
12474 	[ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
12475 		.type = HDA_FIXUP_FUNC,
12476 		.v.func = alc897_fixup_lenovo_headset_mic,
12477 	},
12478 	[ALC897_FIXUP_HEADSET_MIC_PIN] = {
12479 		.type = HDA_FIXUP_PINS,
12480 		.v.pins = (const struct hda_pintbl[]) {
12481 			{ 0x1a, 0x03a11050 },
12482 			{ }
12483 		},
12484 		.chained = true,
12485 		.chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12486 	},
12487 	[ALC897_FIXUP_HP_HSMIC_VERB] = {
12488 		.type = HDA_FIXUP_PINS,
12489 		.v.pins = (const struct hda_pintbl[]) {
12490 			{ 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12491 			{ }
12492 		},
12493 	},
12494 	[ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12495 		.type = HDA_FIXUP_FUNC,
12496 		.v.func = alc897_fixup_lenovo_headset_mode,
12497 	},
12498 	[ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12499 		.type = HDA_FIXUP_PINS,
12500 		.v.pins = (const struct hda_pintbl[]) {
12501 			{ 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12502 			{ }
12503 		},
12504 		.chained = true,
12505 		.chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12506 	},
12507 	[ALC897_FIXUP_UNIS_H3C_X500S] = {
12508 		.type = HDA_FIXUP_VERBS,
12509 		.v.verbs = (const struct hda_verb[]) {
12510 			{ 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12511 			{}
12512 		},
12513 	},
12514 	[ALC897_FIXUP_HEADSET_MIC_PIN3] = {
12515 		.type = HDA_FIXUP_PINS,
12516 		.v.pins = (const struct hda_pintbl[]) {
12517 			{ 0x19, 0x03a11050 }, /* use as headset mic */
12518 			{ }
12519 		},
12520 	},
12521 };
12522 
12523 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
12524 	SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
12525 	SND_PCI_QUIRK(0x1019, 0x9859, "JP-IK LEAP W502", ALC897_FIXUP_HEADSET_MIC_PIN3),
12526 	SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
12527 	SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
12528 	SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
12529 	SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
12530 	SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
12531 	SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
12532 	SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
12533 	SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
12534 	SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
12535 	SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
12536 	SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12537 	SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12538 	SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
12539 	SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
12540 	SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
12541 	SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12542 	SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12543 	SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12544 	SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12545 	SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12546 	SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
12547 	SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12548 	SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12549 	SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
12550 	SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
12551 	SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
12552 	SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
12553 	SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
12554 	SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
12555 	SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
12556 	SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
12557 	SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
12558 	SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
12559 	SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12560 	SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
12561 	SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12562 	SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
12563 	SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
12564 	SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
12565 	SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
12566 	SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
12567 	SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
12568 	SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
12569 	SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
12570 	SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
12571 	SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
12572 	SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
12573 	SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
12574 	SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12575 	SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12576 	SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12577 	SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
12578 	SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12579 	SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12580 	SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN),
12581 	SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
12582 	SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
12583 	SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
12584 	SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
12585 	SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
12586 	SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
12587 	SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
12588 	SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
12589 	SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
12590 
12591 #if 0
12592 	/* Below is a quirk table taken from the old code.
12593 	 * Basically the device should work as is without the fixup table.
12594 	 * If BIOS doesn't give a proper info, enable the corresponding
12595 	 * fixup entry.
12596 	 */
12597 	SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12598 	SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12599 	SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12600 	SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12601 	SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12602 	SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12603 	SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12604 	SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12605 	SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12606 	SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12607 	SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12608 	SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12609 	SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12610 	SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12611 	SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12612 	SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12613 	SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12614 	SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12615 	SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12616 	SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12617 	SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12618 	SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12619 	SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12620 	SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12621 	SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12622 	SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12623 	SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12624 	SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12625 	SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12626 	SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12627 	SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12628 	SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12629 	SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12630 	SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12631 	SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12632 	SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12633 	SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12634 	SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12635 	SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12636 	SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12637 	SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12638 	SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12639 	SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12640 	SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12641 	SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12642 	SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12643 	SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12644 	SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12645 	SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12646 	SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12647 #endif
12648 	{}
12649 };
12650 
12651 static const struct hda_model_fixup alc662_fixup_models[] = {
12652 	{.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12653 	{.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
12654 	{.id = ALC272_FIXUP_MARIO, .name = "mario"},
12655 	{.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
12656 	{.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12657 	{.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12658 	{.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12659 	{.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12660 	{.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12661 	{.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12662 	{.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12663 	{.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
12664 	{.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
12665 	{.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
12666 	{.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
12667 	{.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
12668 	{.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12669 	{.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12670 	{.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12671 	{.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12672 	{.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12673 	{.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12674 	{.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12675 	{.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
12676 	{.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
12677 	{.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12678 	{.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12679 	{.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12680 	{.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12681 	{.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
12682 	{.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
12683 	{.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
12684 	{.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
12685 	{}
12686 };
12687 
12688 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
12689 	SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12690 		{0x17, 0x02211010},
12691 		{0x18, 0x01a19030},
12692 		{0x1a, 0x01813040},
12693 		{0x21, 0x01014020}),
12694 	SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12695 		{0x16, 0x01813030},
12696 		{0x17, 0x02211010},
12697 		{0x18, 0x01a19040},
12698 		{0x21, 0x01014020}),
12699 	SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
12700 		{0x14, 0x01014010},
12701 		{0x18, 0x01a19020},
12702 		{0x1a, 0x0181302f},
12703 		{0x1b, 0x0221401f}),
12704 	SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12705 		{0x12, 0x99a30130},
12706 		{0x14, 0x90170110},
12707 		{0x15, 0x0321101f},
12708 		{0x16, 0x03011020}),
12709 	SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12710 		{0x12, 0x99a30140},
12711 		{0x14, 0x90170110},
12712 		{0x15, 0x0321101f},
12713 		{0x16, 0x03011020}),
12714 	SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12715 		{0x12, 0x99a30150},
12716 		{0x14, 0x90170110},
12717 		{0x15, 0x0321101f},
12718 		{0x16, 0x03011020}),
12719 	SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12720 		{0x14, 0x90170110},
12721 		{0x15, 0x0321101f},
12722 		{0x16, 0x03011020}),
12723 	SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12724 		{0x12, 0x90a60130},
12725 		{0x14, 0x90170110},
12726 		{0x15, 0x0321101f}),
12727 	SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12728 		{0x14, 0x01014010},
12729 		{0x17, 0x90170150},
12730 		{0x19, 0x02a11060},
12731 		{0x1b, 0x01813030},
12732 		{0x21, 0x02211020}),
12733 	SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12734 		{0x14, 0x01014010},
12735 		{0x18, 0x01a19040},
12736 		{0x1b, 0x01813030},
12737 		{0x21, 0x02211020}),
12738 	SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12739 		{0x14, 0x01014020},
12740 		{0x17, 0x90170110},
12741 		{0x18, 0x01a19050},
12742 		{0x1b, 0x01813040},
12743 		{0x21, 0x02211030}),
12744 	{}
12745 };
12746 
12747 /*
12748  */
12749 static int patch_alc662(struct hda_codec *codec)
12750 {
12751 	struct alc_spec *spec;
12752 	int err;
12753 
12754 	err = alc_alloc_spec(codec, 0x0b);
12755 	if (err < 0)
12756 		return err;
12757 
12758 	spec = codec->spec;
12759 
12760 	spec->shutup = alc_eapd_shutup;
12761 
12762 	/* handle multiple HPs as is */
12763 	spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12764 
12765 	alc_fix_pll_init(codec, 0x20, 0x04, 15);
12766 
12767 	switch (codec->core.vendor_id) {
12768 	case 0x10ec0668:
12769 		spec->init_hook = alc668_restore_default_value;
12770 		break;
12771 	}
12772 
12773 	alc_pre_init(codec);
12774 
12775 	snd_hda_pick_fixup(codec, alc662_fixup_models,
12776 		       alc662_fixup_tbl, alc662_fixups);
12777 	snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
12778 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
12779 
12780 	alc_auto_parse_customize_define(codec);
12781 
12782 	if (has_cdefine_beep(codec))
12783 		spec->gen.beep_nid = 0x01;
12784 
12785 	if ((alc_get_coef0(codec) & (1 << 14)) &&
12786 	    codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
12787 	    spec->cdefine.platform_type == 1) {
12788 		err = alc_codec_rename(codec, "ALC272X");
12789 		if (err < 0)
12790 			goto error;
12791 	}
12792 
12793 	/* automatic parse from the BIOS config */
12794 	err = alc662_parse_auto_config(codec);
12795 	if (err < 0)
12796 		goto error;
12797 
12798 	if (!spec->gen.no_analog && spec->gen.beep_nid) {
12799 		switch (codec->core.vendor_id) {
12800 		case 0x10ec0662:
12801 			err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
12802 			break;
12803 		case 0x10ec0272:
12804 		case 0x10ec0663:
12805 		case 0x10ec0665:
12806 		case 0x10ec0668:
12807 			err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
12808 			break;
12809 		case 0x10ec0273:
12810 			err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
12811 			break;
12812 		}
12813 		if (err < 0)
12814 			goto error;
12815 	}
12816 
12817 	snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
12818 
12819 	return 0;
12820 
12821  error:
12822 	alc_free(codec);
12823 	return err;
12824 }
12825 
12826 /*
12827  * ALC680 support
12828  */
12829 
12830 static int alc680_parse_auto_config(struct hda_codec *codec)
12831 {
12832 	return alc_parse_auto_config(codec, NULL, NULL);
12833 }
12834 
12835 /*
12836  */
12837 static int patch_alc680(struct hda_codec *codec)
12838 {
12839 	int err;
12840 
12841 	/* ALC680 has no aa-loopback mixer */
12842 	err = alc_alloc_spec(codec, 0);
12843 	if (err < 0)
12844 		return err;
12845 
12846 	/* automatic parse from the BIOS config */
12847 	err = alc680_parse_auto_config(codec);
12848 	if (err < 0) {
12849 		alc_free(codec);
12850 		return err;
12851 	}
12852 
12853 	return 0;
12854 }
12855 
12856 /*
12857  * patch entries
12858  */
12859 static const struct hda_device_id snd_hda_id_realtek[] = {
12860 	HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
12861 	HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
12862 	HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
12863 	HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
12864 	HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
12865 	HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12866 	HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
12867 	HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
12868 	HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
12869 	HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
12870 	HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
12871 	HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12872 	HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
12873 	HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
12874 	HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12875 	HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12876 	HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12877 	HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12878 	HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12879 	HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12880 	HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
12881 	HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
12882 	HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12883 	HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12884 	HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12885 	HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12886 	HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12887 	HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
12888 	HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
12889 	HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
12890 	HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
12891 	HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
12892 	HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
12893 	HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12894 	HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12895 	HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
12896 	HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
12897 	HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
12898 	HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
12899 	HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
12900 	HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
12901 	HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
12902 	HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12903 	HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12904 	HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12905 	HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12906 	HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12907 	HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12908 	HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12909 	HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12910 	HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12911 	HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12912 	HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12913 	HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12914 	HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12915 	HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
12916 	HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12917 	HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12918 	HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
12919 	HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
12920 	HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
12921 	HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12922 	HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12923 	HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12924 	HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12925 	HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12926 	HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12927 	HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12928 	HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12929 	HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12930 	HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12931 	HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
12932 	HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
12933 	HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12934 	HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
12935 	HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
12936 	HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
12937 	HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
12938 	HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
12939 	{} /* terminator */
12940 };
12941 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
12942 
12943 MODULE_LICENSE("GPL");
12944 MODULE_DESCRIPTION("Realtek HD-audio codec");
12945 MODULE_IMPORT_NS(SND_HDA_SCODEC_COMPONENT);
12946 
12947 static struct hda_codec_driver realtek_driver = {
12948 	.id = snd_hda_id_realtek,
12949 };
12950 
12951 module_hda_codec_driver(realtek_driver);
12952