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