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