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