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