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