]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
ALSA: firewire-lib: fix to check cycle continuity
[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
7ce66933 13#include <linux/acpi.h>
1da177e4
LT
14#include <linux/init.h>
15#include <linux/delay.h>
16#include <linux/slab.h>
17#include <linux/pci.h>
08fb0d0e 18#include <linux/dmi.h>
da155d5b 19#include <linux/module.h>
33f4acd3 20#include <linux/input.h>
87dc3648 21#include <linux/leds.h>
35a17444 22#include <linux/ctype.h>
1da177e4 23#include <sound/core.h>
9ad0e496 24#include <sound/jack.h>
be57bfff 25#include <sound/hda_codec.h>
1da177e4 26#include "hda_local.h"
23d30f28 27#include "hda_auto_parser.h"
1835a0f9 28#include "hda_jack.h"
08c189f2 29#include "hda_generic.h"
d3dca026 30#include "hda_component.h"
1da177e4 31
cd63a5ff
TI
32/* keep halting ALC5505 DSP, for power saving */
33#define HALT_REALTEK_ALC5505
34
4a79ba34
TI
35/* extra amp-initialization sequence types */
36enum {
1c76aa5f 37 ALC_INIT_UNDEFINED,
4a79ba34
TI
38 ALC_INIT_NONE,
39 ALC_INIT_DEFAULT,
4a79ba34
TI
40};
41
73bdd597
DH
42enum {
43 ALC_HEADSET_MODE_UNKNOWN,
44 ALC_HEADSET_MODE_UNPLUGGED,
45 ALC_HEADSET_MODE_HEADSET,
46 ALC_HEADSET_MODE_MIC,
47 ALC_HEADSET_MODE_HEADPHONE,
48};
49
50enum {
51 ALC_HEADSET_TYPE_UNKNOWN,
52 ALC_HEADSET_TYPE_CTIA,
53 ALC_HEADSET_TYPE_OMTP,
54};
55
c7b60a89
HW
56enum {
57 ALC_KEY_MICMUTE_INDEX,
58};
59
da00c244
KY
60struct alc_customize_define {
61 unsigned int sku_cfg;
62 unsigned char port_connectivity;
63 unsigned char check_sum;
64 unsigned char customization;
65 unsigned char external_amp;
66 unsigned int enable_pcbeep:1;
67 unsigned int platform_type:1;
68 unsigned int swap:1;
69 unsigned int override:1;
90622917 70 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
71};
72
766538ac
TI
73struct alc_coef_led {
74 unsigned int idx;
75 unsigned int mask;
76 unsigned int on;
77 unsigned int off;
78};
79
1da177e4 80struct alc_spec {
08c189f2 81 struct hda_gen_spec gen; /* must be at head */
23d30f28 82
1da177e4 83 /* codec parameterization */
da00c244 84 struct alc_customize_define cdefine;
08c189f2 85 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 86
5579cd6f
TI
87 /* GPIO bits */
88 unsigned int gpio_mask;
89 unsigned int gpio_dir;
90 unsigned int gpio_data;
215c850c 91 bool gpio_write_delay; /* add a delay before writing gpio_data */
5579cd6f 92
8d3d1ece 93 /* mute LED for HP laptops, see vref_mute_led_set() */
08fb0d0e 94 int mute_led_polarity;
dbd13179 95 int micmute_led_polarity;
08fb0d0e 96 hda_nid_t mute_led_nid;
9c5dc3bf 97 hda_nid_t cap_mute_led_nid;
08fb0d0e 98
0f32fd19
TI
99 unsigned int gpio_mute_led_mask;
100 unsigned int gpio_mic_led_mask;
766538ac
TI
101 struct alc_coef_led mute_led_coef;
102 struct alc_coef_led mic_led_coef;
b837a9f5 103 struct mutex coef_mutex;
9f5c6faf 104
73bdd597
DH
105 hda_nid_t headset_mic_pin;
106 hda_nid_t headphone_mic_pin;
107 int current_headset_mode;
108 int current_headset_type;
109
ae6b813a
TI
110 /* hooks */
111 void (*init_hook)(struct hda_codec *codec);
83012a7c 112#ifdef CONFIG_PM
c97259df 113 void (*power_hook)(struct hda_codec *codec);
f5de24b0 114#endif
1c716153 115 void (*shutup)(struct hda_codec *codec);
d922b51d 116
4a79ba34 117 int init_amp;
d433a678 118 int codec_variant; /* flag for other variants */
97a26570
KY
119 unsigned int has_alc5505_dsp:1;
120 unsigned int no_depop_delay:1;
693abe11 121 unsigned int done_hp_init:1;
c0ca5ece 122 unsigned int no_shutup_pins:1;
d3ba58bb 123 unsigned int ultra_low_power:1;
476c02e0 124 unsigned int has_hs_key:1;
92666d45 125 unsigned int no_internal_mic_pin:1;
69ea4c9d 126 unsigned int en_3kpull_low:1;
e64f14f4 127
2c3bf9ab
TI
128 /* for PLL fix */
129 hda_nid_t pll_nid;
130 unsigned int pll_coef_idx, pll_coef_bit;
1bb7e43e 131 unsigned int coef0;
33f4acd3 132 struct input_dev *kb_dev;
c7b60a89 133 u8 alc_mute_keycode_map[1];
d3dca026
LT
134
135 /* component binding */
136 struct component_match *match;
137 struct hda_component comps[HDA_MAX_COMPONENTS];
df694daa
KY
138};
139
f2a227cd
TI
140/*
141 * COEF access helper functions
142 */
143
2a845837
TI
144static void coef_mutex_lock(struct hda_codec *codec)
145{
146 struct alc_spec *spec = codec->spec;
147
148 snd_hda_power_up_pm(codec);
149 mutex_lock(&spec->coef_mutex);
150}
151
152static void coef_mutex_unlock(struct hda_codec *codec)
153{
154 struct alc_spec *spec = codec->spec;
155
156 mutex_unlock(&spec->coef_mutex);
157 snd_hda_power_down_pm(codec);
158}
159
b837a9f5
TI
160static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
161 unsigned int coef_idx)
f2a227cd
TI
162{
163 unsigned int val;
164
165 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
166 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
167 return val;
168}
169
b837a9f5
TI
170static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
171 unsigned int coef_idx)
172{
b837a9f5
TI
173 unsigned int val;
174
2a845837 175 coef_mutex_lock(codec);
b837a9f5 176 val = __alc_read_coefex_idx(codec, nid, coef_idx);
2a845837 177 coef_mutex_unlock(codec);
b837a9f5
TI
178 return val;
179}
180
f2a227cd
TI
181#define alc_read_coef_idx(codec, coef_idx) \
182 alc_read_coefex_idx(codec, 0x20, coef_idx)
183
b837a9f5
TI
184static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
185 unsigned int coef_idx, unsigned int coef_val)
f2a227cd
TI
186{
187 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
188 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
189}
190
b837a9f5
TI
191static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
192 unsigned int coef_idx, unsigned int coef_val)
193{
2a845837 194 coef_mutex_lock(codec);
b837a9f5 195 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
2a845837 196 coef_mutex_unlock(codec);
b837a9f5
TI
197}
198
f2a227cd
TI
199#define alc_write_coef_idx(codec, coef_idx, coef_val) \
200 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
201
b837a9f5
TI
202static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
203 unsigned int coef_idx, unsigned int mask,
204 unsigned int bits_set)
205{
206 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
207
208 if (val != -1)
209 __alc_write_coefex_idx(codec, nid, coef_idx,
210 (val & ~mask) | bits_set);
211}
212
98b24883
TI
213static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
214 unsigned int coef_idx, unsigned int mask,
215 unsigned int bits_set)
216{
2a845837 217 coef_mutex_lock(codec);
b837a9f5 218 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
2a845837 219 coef_mutex_unlock(codec);
98b24883
TI
220}
221
222#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
223 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
224
f2a227cd
TI
225/* a special bypass for COEF 0; read the cached value at the second time */
226static unsigned int alc_get_coef0(struct hda_codec *codec)
227{
228 struct alc_spec *spec = codec->spec;
229
230 if (!spec->coef0)
231 spec->coef0 = alc_read_coef_idx(codec, 0);
232 return spec->coef0;
233}
234
54db6c39
TI
235/* coef writes/updates batch */
236struct coef_fw {
237 unsigned char nid;
238 unsigned char idx;
239 unsigned short mask;
240 unsigned short val;
241};
242
243#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
244 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
245#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
246#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
247#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
248
249static void alc_process_coef_fw(struct hda_codec *codec,
250 const struct coef_fw *fw)
251{
2a845837 252 coef_mutex_lock(codec);
54db6c39
TI
253 for (; fw->nid; fw++) {
254 if (fw->mask == (unsigned short)-1)
b837a9f5 255 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
54db6c39 256 else
b837a9f5
TI
257 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
258 fw->mask, fw->val);
54db6c39 259 }
2a845837 260 coef_mutex_unlock(codec);
54db6c39
TI
261}
262
df694daa 263/*
1d045db9 264 * GPIO setup tables, used in initialization
df694daa 265 */
5579cd6f 266
bc9f98a9 267/* Enable GPIO mask and set output */
5579cd6f
TI
268static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
269{
270 struct alc_spec *spec = codec->spec;
bc9f98a9 271
5579cd6f
TI
272 spec->gpio_mask |= mask;
273 spec->gpio_dir |= mask;
274 spec->gpio_data |= mask;
275}
bc9f98a9 276
5579cd6f
TI
277static void alc_write_gpio_data(struct hda_codec *codec)
278{
279 struct alc_spec *spec = codec->spec;
280
281 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
282 spec->gpio_data);
283}
284
aaf312de
TI
285static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
286 bool on)
287{
288 struct alc_spec *spec = codec->spec;
289 unsigned int oldval = spec->gpio_data;
290
291 if (on)
292 spec->gpio_data |= mask;
293 else
294 spec->gpio_data &= ~mask;
295 if (oldval != spec->gpio_data)
296 alc_write_gpio_data(codec);
297}
298
5579cd6f
TI
299static void alc_write_gpio(struct hda_codec *codec)
300{
301 struct alc_spec *spec = codec->spec;
302
303 if (!spec->gpio_mask)
304 return;
305
306 snd_hda_codec_write(codec, codec->core.afg, 0,
307 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
308 snd_hda_codec_write(codec, codec->core.afg, 0,
309 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
215c850c
TI
310 if (spec->gpio_write_delay)
311 msleep(1);
5579cd6f
TI
312 alc_write_gpio_data(codec);
313}
314
315static void alc_fixup_gpio(struct hda_codec *codec, int action,
316 unsigned int mask)
317{
318 if (action == HDA_FIXUP_ACT_PRE_PROBE)
319 alc_setup_gpio(codec, mask);
320}
321
322static void alc_fixup_gpio1(struct hda_codec *codec,
323 const struct hda_fixup *fix, int action)
324{
325 alc_fixup_gpio(codec, action, 0x01);
326}
327
328static void alc_fixup_gpio2(struct hda_codec *codec,
329 const struct hda_fixup *fix, int action)
330{
331 alc_fixup_gpio(codec, action, 0x02);
332}
333
334static void alc_fixup_gpio3(struct hda_codec *codec,
335 const struct hda_fixup *fix, int action)
336{
337 alc_fixup_gpio(codec, action, 0x03);
338}
bdd148a3 339
ae065f1c
TI
340static void alc_fixup_gpio4(struct hda_codec *codec,
341 const struct hda_fixup *fix, int action)
342{
343 alc_fixup_gpio(codec, action, 0x04);
344}
345
8a503555
TI
346static void alc_fixup_micmute_led(struct hda_codec *codec,
347 const struct hda_fixup *fix, int action)
348{
e65bf997 349 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8a503555
TI
350 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
351}
352
2c3bf9ab
TI
353/*
354 * Fix hardware PLL issue
355 * On some codecs, the analog PLL gating control must be off while
356 * the default value is 1.
357 */
358static void alc_fix_pll(struct hda_codec *codec)
359{
360 struct alc_spec *spec = codec->spec;
2c3bf9ab 361
98b24883
TI
362 if (spec->pll_nid)
363 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
364 1 << spec->pll_coef_bit, 0);
2c3bf9ab
TI
365}
366
367static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
368 unsigned int coef_idx, unsigned int coef_bit)
369{
370 struct alc_spec *spec = codec->spec;
371 spec->pll_nid = nid;
372 spec->pll_coef_idx = coef_idx;
373 spec->pll_coef_bit = coef_bit;
374 alc_fix_pll(codec);
375}
376
cf5a2279 377/* update the master volume per volume-knob's unsol event */
1a4f69d5
TI
378static void alc_update_knob_master(struct hda_codec *codec,
379 struct hda_jack_callback *jack)
cf5a2279
TI
380{
381 unsigned int val;
382 struct snd_kcontrol *kctl;
383 struct snd_ctl_elem_value *uctl;
384
385 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
386 if (!kctl)
387 return;
388 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
389 if (!uctl)
390 return;
2ebab40e 391 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
392 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
393 val &= HDA_AMP_VOLMASK;
394 uctl->value.integer.value[0] = val;
395 uctl->value.integer.value[1] = val;
396 kctl->put(kctl, uctl);
397 kfree(uctl);
398}
399
29adc4b9 400static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 401{
29adc4b9
DH
402 /* For some reason, the res given from ALC880 is broken.
403 Here we adjust it properly. */
404 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
405}
406
394c97f8
KY
407/* Change EAPD to verb control */
408static void alc_fill_eapd_coef(struct hda_codec *codec)
409{
410 int coef;
411
412 coef = alc_get_coef0(codec);
413
7639a06c 414 switch (codec->core.vendor_id) {
394c97f8
KY
415 case 0x10ec0262:
416 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
417 break;
418 case 0x10ec0267:
419 case 0x10ec0268:
420 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
421 break;
422 case 0x10ec0269:
423 if ((coef & 0x00f0) == 0x0010)
424 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
425 if ((coef & 0x00f0) == 0x0020)
426 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
427 if ((coef & 0x00f0) == 0x0030)
428 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
429 break;
430 case 0x10ec0280:
431 case 0x10ec0284:
432 case 0x10ec0290:
433 case 0x10ec0292:
434 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
435 break;
4231430d 436 case 0x10ec0225:
44be77c5
TI
437 case 0x10ec0295:
438 case 0x10ec0299:
439 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
c0dbbdad 440 fallthrough;
44be77c5 441 case 0x10ec0215:
fcfc9f71
KY
442 case 0x10ec0285:
443 case 0x10ec0289:
444 alc_update_coef_idx(codec, 0x36, 1<<13, 0);
445 fallthrough;
1948fc06 446 case 0x10ec0230:
394c97f8 447 case 0x10ec0233:
ea04a1db 448 case 0x10ec0235:
c4473744 449 case 0x10ec0236:
7fbdcd83 450 case 0x10ec0245:
394c97f8 451 case 0x10ec0255:
c4473744 452 case 0x10ec0256:
527f4643 453 case 0x19e58326:
f429e7e4 454 case 0x10ec0257:
394c97f8
KY
455 case 0x10ec0282:
456 case 0x10ec0283:
457 case 0x10ec0286:
458 case 0x10ec0288:
506b62c3 459 case 0x10ec0298:
1078bef0 460 case 0x10ec0300:
394c97f8
KY
461 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
462 break;
3aabf94c
KY
463 case 0x10ec0275:
464 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
465 break;
8822702f
HW
466 case 0x10ec0287:
467 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
468 alc_write_coef_idx(codec, 0x8, 0x4ab7);
469 break;
394c97f8
KY
470 case 0x10ec0293:
471 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
472 break;
dcd4f0db
KY
473 case 0x10ec0234:
474 case 0x10ec0274:
475 case 0x10ec0294:
6fbae35a
KY
476 case 0x10ec0700:
477 case 0x10ec0701:
478 case 0x10ec0703:
83629532 479 case 0x10ec0711:
dcd4f0db
KY
480 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
481 break;
394c97f8
KY
482 case 0x10ec0662:
483 if ((coef & 0x00f0) == 0x0030)
484 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
485 break;
486 case 0x10ec0272:
487 case 0x10ec0273:
488 case 0x10ec0663:
489 case 0x10ec0665:
490 case 0x10ec0670:
491 case 0x10ec0671:
492 case 0x10ec0672:
493 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
494 break;
9194a1eb 495 case 0x10ec0222:
f0778871
KY
496 case 0x10ec0623:
497 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
498 break;
394c97f8
KY
499 case 0x10ec0668:
500 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
501 break;
502 case 0x10ec0867:
503 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
504 break;
505 case 0x10ec0888:
506 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
507 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
508 break;
509 case 0x10ec0892:
e5782a5d 510 case 0x10ec0897:
394c97f8
KY
511 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
512 break;
513 case 0x10ec0899:
514 case 0x10ec0900:
6d9ffcff 515 case 0x10ec0b00:
65553b12 516 case 0x10ec1168:
a535ad57 517 case 0x10ec1220:
394c97f8
KY
518 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
519 break;
520 }
521}
522
f9423e7a
KY
523/* additional initialization for ALC888 variants */
524static void alc888_coef_init(struct hda_codec *codec)
525{
1df8874b
KY
526 switch (alc_get_coef0(codec) & 0x00f0) {
527 /* alc888-VA */
528 case 0x00:
529 /* alc888-VB */
530 case 0x10:
531 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
532 break;
533 }
87a8c370
JK
534}
535
3fb4a508
TI
536/* turn on/off EAPD control (only if available) */
537static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
538{
539 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
540 return;
541 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
542 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
543 on ? 2 : 0);
544}
545
691f1fcc
TI
546/* turn on/off EAPD controls of the codec */
547static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
548{
549 /* We currently only handle front, HP */
caf3c043 550 static const hda_nid_t pins[] = {
af95b414 551 0x0f, 0x10, 0x14, 0x15, 0x17, 0
39fa84e9 552 };
caf3c043 553 const hda_nid_t *p;
39fa84e9
TI
554 for (p = pins; *p; p++)
555 set_eapd(codec, *p, on);
691f1fcc
TI
556}
557
dad3197d
KY
558static int find_ext_mic_pin(struct hda_codec *codec);
559
560static void alc_headset_mic_no_shutup(struct hda_codec *codec)
561{
562 const struct hda_pincfg *pin;
563 int mic_pin = find_ext_mic_pin(codec);
564 int i;
565
566 /* don't shut up pins when unloading the driver; otherwise it breaks
567 * the default pin setup at the next load of the driver
568 */
569 if (codec->bus->shutdown)
570 return;
571
572 snd_array_for_each(&codec->init_pins, i, pin) {
573 /* use read here for syncing after issuing each verb */
574 if (pin->nid != mic_pin)
575 snd_hda_codec_read(codec, pin->nid, 0,
576 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
577 }
578
579 codec->pins_shutup = 1;
580}
581
c0ca5ece
TI
582static void alc_shutup_pins(struct hda_codec *codec)
583{
584 struct alc_spec *spec = codec->spec;
585
dad3197d 586 switch (codec->core.vendor_id) {
5aec9891
KY
587 case 0x10ec0236:
588 case 0x10ec0256:
527f4643 589 case 0x19e58326:
66c5d718 590 case 0x10ec0283:
dad3197d
KY
591 case 0x10ec0286:
592 case 0x10ec0288:
593 case 0x10ec0298:
594 alc_headset_mic_no_shutup(codec);
595 break;
596 default:
597 if (!spec->no_shutup_pins)
598 snd_hda_shutup_pins(codec);
599 break;
600 }
c0ca5ece
TI
601}
602
1c716153 603/* generic shutup callback;
4ce8e6a5 604 * just turning off EAPD and a little pause for avoiding pop-noise
1c716153
TI
605 */
606static void alc_eapd_shutup(struct hda_codec *codec)
607{
97a26570
KY
608 struct alc_spec *spec = codec->spec;
609
1c716153 610 alc_auto_setup_eapd(codec, false);
97a26570
KY
611 if (!spec->no_depop_delay)
612 msleep(200);
c0ca5ece 613 alc_shutup_pins(codec);
1c716153
TI
614}
615
1d045db9 616/* generic EAPD initialization */
4a79ba34 617static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 618{
39fa84e9 619 alc_auto_setup_eapd(codec, true);
5579cd6f 620 alc_write_gpio(codec);
4a79ba34 621 switch (type) {
4a79ba34 622 case ALC_INIT_DEFAULT:
7639a06c 623 switch (codec->core.vendor_id) {
c9b58006 624 case 0x10ec0260:
98b24883 625 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
c9b58006 626 break;
c9b58006
KY
627 case 0x10ec0880:
628 case 0x10ec0882:
629 case 0x10ec0883:
630 case 0x10ec0885:
1df8874b 631 alc_update_coef_idx(codec, 7, 0, 0x2030);
c9b58006 632 break;
f9423e7a 633 case 0x10ec0888:
4a79ba34 634 alc888_coef_init(codec);
f9423e7a 635 break;
bc9f98a9 636 }
4a79ba34
TI
637 break;
638 }
639}
640
35a39f98
TI
641/* get a primary headphone pin if available */
642static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
643{
644 if (spec->gen.autocfg.hp_pins[0])
645 return spec->gen.autocfg.hp_pins[0];
646 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
647 return spec->gen.autocfg.line_out_pins[0];
648 return 0;
649}
08c189f2 650
1d045db9 651/*
08c189f2 652 * Realtek SSID verification
1d045db9 653 */
42cf0d01 654
08c189f2
TI
655/* Could be any non-zero and even value. When used as fixup, tells
656 * the driver to ignore any present sku defines.
657 */
658#define ALC_FIXUP_SKU_IGNORE (2)
1a1455de 659
08c189f2
TI
660static void alc_fixup_sku_ignore(struct hda_codec *codec,
661 const struct hda_fixup *fix, int action)
1a1455de 662{
1a1455de 663 struct alc_spec *spec = codec->spec;
08c189f2
TI
664 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
665 spec->cdefine.fixup = 1;
666 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1a1455de 667 }
1a1455de
TI
668}
669
b5c6611f
ML
670static void alc_fixup_no_depop_delay(struct hda_codec *codec,
671 const struct hda_fixup *fix, int action)
672{
673 struct alc_spec *spec = codec->spec;
674
84d2dc3e 675 if (action == HDA_FIXUP_ACT_PROBE) {
b5c6611f 676 spec->no_depop_delay = 1;
84d2dc3e
ML
677 codec->depop_delay = 0;
678 }
b5c6611f
ML
679}
680
08c189f2 681static int alc_auto_parse_customize_define(struct hda_codec *codec)
4a79ba34 682{
08c189f2
TI
683 unsigned int ass, tmp, i;
684 unsigned nid = 0;
4a79ba34
TI
685 struct alc_spec *spec = codec->spec;
686
08c189f2 687 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
4a79ba34 688
08c189f2
TI
689 if (spec->cdefine.fixup) {
690 ass = spec->cdefine.sku_cfg;
691 if (ass == ALC_FIXUP_SKU_IGNORE)
692 return -1;
693 goto do_sku;
bb35febd
TI
694 }
695
5100cd07
TI
696 if (!codec->bus->pci)
697 return -1;
7639a06c 698 ass = codec->core.subsystem_id & 0xffff;
08c189f2
TI
699 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
700 goto do_sku;
4a79ba34 701
08c189f2 702 nid = 0x1d;
7639a06c 703 if (codec->core.vendor_id == 0x10ec0260)
08c189f2
TI
704 nid = 0x17;
705 ass = snd_hda_codec_get_pincfg(codec, nid);
42cf0d01 706
08c189f2 707 if (!(ass & 1)) {
4e76a883 708 codec_info(codec, "%s: SKU not ready 0x%08x\n",
7639a06c 709 codec->core.chip_name, ass);
08c189f2 710 return -1;
42cf0d01
DH
711 }
712
08c189f2
TI
713 /* check sum */
714 tmp = 0;
715 for (i = 1; i < 16; i++) {
716 if ((ass >> i) & 1)
717 tmp++;
ae8a60a5 718 }
08c189f2
TI
719 if (((ass >> 16) & 0xf) != tmp)
720 return -1;
ae8a60a5 721
da00c244
KY
722 spec->cdefine.port_connectivity = ass >> 30;
723 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
724 spec->cdefine.check_sum = (ass >> 16) & 0xf;
725 spec->cdefine.customization = ass >> 8;
726do_sku:
727 spec->cdefine.sku_cfg = ass;
728 spec->cdefine.external_amp = (ass & 0x38) >> 3;
729 spec->cdefine.platform_type = (ass & 0x4) >> 2;
730 spec->cdefine.swap = (ass & 0x2) >> 1;
731 spec->cdefine.override = ass & 0x1;
732
4e76a883 733 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
da00c244 734 nid, spec->cdefine.sku_cfg);
4e76a883 735 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
da00c244 736 spec->cdefine.port_connectivity);
4e76a883
TI
737 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
738 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
739 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
740 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
741 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
742 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
743 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
da00c244
KY
744
745 return 0;
746}
747
08c189f2
TI
748/* return the position of NID in the list, or -1 if not found */
749static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
750{
751 int i;
752 for (i = 0; i < nums; i++)
753 if (list[i] == nid)
754 return i;
755 return -1;
756}
1d045db9 757/* return true if the given NID is found in the list */
3af9ee6b
TI
758static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
759{
21268961 760 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
761}
762
4a79ba34
TI
763/* check subsystem ID and set up device-specific initialization;
764 * return 1 if initialized, 0 if invalid SSID
765 */
766/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
767 * 31 ~ 16 : Manufacture ID
768 * 15 ~ 8 : SKU ID
769 * 7 ~ 0 : Assembly ID
770 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
771 */
58c57cfa 772static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34
TI
773{
774 unsigned int ass, tmp, i;
775 unsigned nid;
776 struct alc_spec *spec = codec->spec;
777
90622917
DH
778 if (spec->cdefine.fixup) {
779 ass = spec->cdefine.sku_cfg;
780 if (ass == ALC_FIXUP_SKU_IGNORE)
781 return 0;
782 goto do_sku;
783 }
784
7639a06c 785 ass = codec->core.subsystem_id & 0xffff;
5100cd07
TI
786 if (codec->bus->pci &&
787 ass != codec->bus->pci->subsystem_device && (ass & 1))
4a79ba34
TI
788 goto do_sku;
789
790 /* invalid SSID, check the special NID pin defcfg instead */
791 /*
def319f9 792 * 31~30 : port connectivity
4a79ba34
TI
793 * 29~21 : reserve
794 * 20 : PCBEEP input
795 * 19~16 : Check sum (15:1)
796 * 15~1 : Custom
797 * 0 : override
798 */
799 nid = 0x1d;
7639a06c 800 if (codec->core.vendor_id == 0x10ec0260)
4a79ba34
TI
801 nid = 0x17;
802 ass = snd_hda_codec_get_pincfg(codec, nid);
4e76a883
TI
803 codec_dbg(codec,
804 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 805 ass, nid);
6227cdce 806 if (!(ass & 1))
4a79ba34
TI
807 return 0;
808 if ((ass >> 30) != 1) /* no physical connection */
809 return 0;
810
811 /* check sum */
812 tmp = 0;
813 for (i = 1; i < 16; i++) {
814 if ((ass >> i) & 1)
815 tmp++;
816 }
817 if (((ass >> 16) & 0xf) != tmp)
818 return 0;
819do_sku:
4e76a883 820 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
7639a06c 821 ass & 0xffff, codec->core.vendor_id);
4a79ba34
TI
822 /*
823 * 0 : override
824 * 1 : Swap Jack
825 * 2 : 0 --> Desktop, 1 --> Laptop
826 * 3~5 : External Amplifier control
827 * 7~6 : Reserved
828 */
829 tmp = (ass & 0x38) >> 3; /* external Amp control */
1c76aa5f
TI
830 if (spec->init_amp == ALC_INIT_UNDEFINED) {
831 switch (tmp) {
832 case 1:
5579cd6f 833 alc_setup_gpio(codec, 0x01);
1c76aa5f
TI
834 break;
835 case 3:
5579cd6f 836 alc_setup_gpio(codec, 0x02);
1c76aa5f
TI
837 break;
838 case 7:
2bdccfd2 839 alc_setup_gpio(codec, 0x04);
1c76aa5f
TI
840 break;
841 case 5:
842 default:
843 spec->init_amp = ALC_INIT_DEFAULT;
844 break;
845 }
bc9f98a9 846 }
ea1fb29a 847
8c427226 848 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
849 * when the external headphone out jack is plugged"
850 */
8c427226 851 if (!(ass & 0x8000))
4a79ba34 852 return 1;
c9b58006
KY
853 /*
854 * 10~8 : Jack location
855 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
856 * 14~13: Resvered
857 * 15 : 1 --> enable the function "Mute internal speaker
858 * when the external headphone out jack is plugged"
859 */
35a39f98 860 if (!alc_get_hp_pin(spec)) {
01d4825d 861 hda_nid_t nid;
c9b58006 862 tmp = (ass >> 11) & 0x3; /* HP to chassis */
58c57cfa 863 nid = ports[tmp];
08c189f2
TI
864 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
865 spec->gen.autocfg.line_outs))
3af9ee6b 866 return 1;
08c189f2 867 spec->gen.autocfg.hp_pins[0] = nid;
c9b58006 868 }
4a79ba34
TI
869 return 1;
870}
ea1fb29a 871
3e6179b8
TI
872/* Check the validity of ALC subsystem-id
873 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
874static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 875{
58c57cfa 876 if (!alc_subsystem_id(codec, ports)) {
4a79ba34 877 struct alc_spec *spec = codec->spec;
67791202
TI
878 if (spec->init_amp == ALC_INIT_UNDEFINED) {
879 codec_dbg(codec,
880 "realtek: Enable default setup for auto mode as fallback\n");
881 spec->init_amp = ALC_INIT_DEFAULT;
882 }
4a79ba34 883 }
21268961 884}
1a1455de 885
1d045db9 886/*
ef8ef5fb 887 */
f9e336f6 888
9d36a7dc
DH
889static void alc_fixup_inv_dmic(struct hda_codec *codec,
890 const struct hda_fixup *fix, int action)
125821ae
TI
891{
892 struct alc_spec *spec = codec->spec;
668d1e96 893
9d36a7dc 894 spec->gen.inv_dmic_split = 1;
6e72aa5f
TI
895}
896
e9edcee0 897
08c189f2 898static int alc_build_controls(struct hda_codec *codec)
1d045db9 899{
a5cb463a 900 int err;
e9427969 901
08c189f2
TI
902 err = snd_hda_gen_build_controls(codec);
903 if (err < 0)
904 return err;
1da177e4 905
1727a771 906 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
1c4a54b4 907 return 0;
a361d84b
KY
908}
909
a361d84b 910
df694daa 911/*
08c189f2 912 * Common callbacks
df694daa 913 */
a361d84b 914
c9af753f
TI
915static void alc_pre_init(struct hda_codec *codec)
916{
917 alc_fill_eapd_coef(codec);
918}
919
aeac1a0d
KY
920#define is_s3_resume(codec) \
921 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
c9af753f
TI
922#define is_s4_resume(codec) \
923 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
924
08c189f2 925static int alc_init(struct hda_codec *codec)
1d045db9
TI
926{
927 struct alc_spec *spec = codec->spec;
a361d84b 928
c9af753f
TI
929 /* hibernation resume needs the full chip initialization */
930 if (is_s4_resume(codec))
931 alc_pre_init(codec);
932
08c189f2
TI
933 if (spec->init_hook)
934 spec->init_hook(codec);
a361d84b 935
89781d08 936 spec->gen.skip_verbs = 1; /* applied in below */
607ca3bd 937 snd_hda_gen_init(codec);
08c189f2
TI
938 alc_fix_pll(codec);
939 alc_auto_init_amp(codec, spec->init_amp);
89781d08 940 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
3abf2f36 941
1727a771 942 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
a361d84b 943
1d045db9
TI
944 return 0;
945}
a361d84b 946
c3d9ca93
RD
947#define alc_free snd_hda_gen_free
948
949#ifdef CONFIG_PM
08c189f2 950static inline void alc_shutup(struct hda_codec *codec)
1d045db9
TI
951{
952 struct alc_spec *spec = codec->spec;
a361d84b 953
c7273bd6
TI
954 if (!snd_hda_get_bool_hint(codec, "shutup"))
955 return; /* disabled explicitly by hints */
956
08c189f2
TI
957 if (spec && spec->shutup)
958 spec->shutup(codec);
9bfb2844 959 else
c0ca5ece 960 alc_shutup_pins(codec);
1d045db9
TI
961}
962
08c189f2 963static void alc_power_eapd(struct hda_codec *codec)
1d045db9 964{
08c189f2 965 alc_auto_setup_eapd(codec, false);
1d045db9 966}
2134ea4f 967
08c189f2 968static int alc_suspend(struct hda_codec *codec)
1d045db9
TI
969{
970 struct alc_spec *spec = codec->spec;
08c189f2
TI
971 alc_shutup(codec);
972 if (spec && spec->power_hook)
973 spec->power_hook(codec);
a361d84b
KY
974 return 0;
975}
976
08c189f2 977static int alc_resume(struct hda_codec *codec)
1d045db9 978{
97a26570
KY
979 struct alc_spec *spec = codec->spec;
980
981 if (!spec->no_depop_delay)
982 msleep(150); /* to avoid pop noise */
08c189f2 983 codec->patch_ops.init(codec);
1a462be5 984 snd_hda_regmap_sync(codec);
08c189f2
TI
985 hda_call_check_power_status(codec, 0x01);
986 return 0;
1d045db9 987}
08c189f2 988#endif
f6a92248 989
1d045db9 990/*
1d045db9 991 */
08c189f2
TI
992static const struct hda_codec_ops alc_patch_ops = {
993 .build_controls = alc_build_controls,
994 .build_pcms = snd_hda_gen_build_pcms,
995 .init = alc_init,
996 .free = alc_free,
997 .unsol_event = snd_hda_jack_unsol_event,
998#ifdef CONFIG_PM
999 .resume = alc_resume,
08c189f2 1000 .suspend = alc_suspend,
fce52a3b 1001 .check_power_status = snd_hda_gen_check_power_status,
08c189f2 1002#endif
08c189f2 1003};
f6a92248 1004
f53281e6 1005
ded255be 1006#define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
e01bf509 1007
e4770629 1008/*
4b016931 1009 * Rename codecs appropriately from COEF value or subvendor id
e4770629 1010 */
08c189f2
TI
1011struct alc_codec_rename_table {
1012 unsigned int vendor_id;
1013 unsigned short coef_mask;
1014 unsigned short coef_bits;
1015 const char *name;
1016};
84898e87 1017
4b016931
KY
1018struct alc_codec_rename_pci_table {
1019 unsigned int codec_vendor_id;
1020 unsigned short pci_subvendor;
1021 unsigned short pci_subdevice;
1022 const char *name;
1023};
1024
6b0f95c4 1025static const struct alc_codec_rename_table rename_tbl[] = {
e6e5f7ad 1026 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
08c189f2
TI
1027 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1028 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1029 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1030 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1031 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1032 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1033 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1034 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
e6e5f7ad 1035 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
08c189f2
TI
1036 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1037 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1038 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1039 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1040 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1041 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1042 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1043 { } /* terminator */
1044};
84898e87 1045
6b0f95c4 1046static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
4b016931
KY
1047 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1048 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1049 { 0x10ec0283, 0x1028, 0, "ALC3223" },
193177de 1050 { 0x10ec0288, 0x1028, 0, "ALC3263" },
4b016931 1051 { 0x10ec0292, 0x1028, 0, "ALC3226" },
193177de 1052 { 0x10ec0293, 0x1028, 0, "ALC3235" },
4b016931
KY
1053 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1054 { 0x10ec0668, 0x1028, 0, "ALC3661" },
e6e5f7ad
KY
1055 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1056 { 0x10ec0899, 0x1028, 0, "ALC3861" },
2c674fac 1057 { 0x10ec0298, 0x1028, 0, "ALC3266" },
736f20a7 1058 { 0x10ec0236, 0x1028, 0, "ALC3204" },
82324502 1059 { 0x10ec0256, 0x1028, 0, "ALC3246" },
4231430d 1060 { 0x10ec0225, 0x1028, 0, "ALC3253" },
7d727869 1061 { 0x10ec0295, 0x1028, 0, "ALC3254" },
28f1f9b2 1062 { 0x10ec0299, 0x1028, 0, "ALC3271" },
e6e5f7ad
KY
1063 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1064 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1065 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1066 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1067 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1068 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1069 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1070 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1071 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1072 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1073 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
4b016931
KY
1074 { } /* terminator */
1075};
1076
08c189f2 1077static int alc_codec_rename_from_preset(struct hda_codec *codec)
1d045db9 1078{
08c189f2 1079 const struct alc_codec_rename_table *p;
4b016931 1080 const struct alc_codec_rename_pci_table *q;
60db6b53 1081
08c189f2 1082 for (p = rename_tbl; p->vendor_id; p++) {
7639a06c 1083 if (p->vendor_id != codec->core.vendor_id)
08c189f2
TI
1084 continue;
1085 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1086 return alc_codec_rename(codec, p->name);
1d045db9 1087 }
4b016931 1088
5100cd07
TI
1089 if (!codec->bus->pci)
1090 return 0;
4b016931 1091 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
7639a06c 1092 if (q->codec_vendor_id != codec->core.vendor_id)
4b016931
KY
1093 continue;
1094 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1095 continue;
1096 if (!q->pci_subdevice ||
1097 q->pci_subdevice == codec->bus->pci->subsystem_device)
1098 return alc_codec_rename(codec, q->name);
1099 }
1100
08c189f2 1101 return 0;
1d045db9 1102}
f53281e6 1103
e4770629 1104
1d045db9
TI
1105/*
1106 * Digital-beep handlers
1107 */
1108#ifdef CONFIG_SND_HDA_INPUT_BEEP
fea80fae
TI
1109
1110/* additional beep mixers; private_value will be overwritten */
1111static const struct snd_kcontrol_new alc_beep_mixer[] = {
1112 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1113 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1114};
1115
1116/* set up and create beep controls */
1117static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1118 int idx, int dir)
1119{
1120 struct snd_kcontrol_new *knew;
1121 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1122 int i;
1123
1124 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1125 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1126 &alc_beep_mixer[i]);
1127 if (!knew)
1128 return -ENOMEM;
1129 knew->private_value = beep_amp;
1130 }
1131 return 0;
1132}
84898e87 1133
6317e5eb 1134static const struct snd_pci_quirk beep_allow_list[] = {
7110005e 1135 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
a4b7f21d 1136 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1d045db9 1137 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
8554ee40 1138 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1d045db9
TI
1139 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1140 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1141 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
78f8baf1 1142 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1d045db9 1143 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
6317e5eb 1144 /* denylist -- no beep available */
051c78af
TI
1145 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1146 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1d045db9 1147 {}
fe3eb0a7
KY
1148};
1149
1d045db9
TI
1150static inline int has_cdefine_beep(struct hda_codec *codec)
1151{
1152 struct alc_spec *spec = codec->spec;
1153 const struct snd_pci_quirk *q;
6317e5eb 1154 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1d045db9
TI
1155 if (q)
1156 return q->value;
1157 return spec->cdefine.enable_pcbeep;
1158}
1159#else
fea80fae 1160#define set_beep_amp(spec, nid, idx, dir) 0
1d045db9
TI
1161#define has_cdefine_beep(codec) 0
1162#endif
84898e87 1163
1d045db9
TI
1164/* parse the BIOS configuration and set up the alc_spec */
1165/* return 1 if successful, 0 if the proper config is not found,
1166 * or a negative error code
1167 */
3e6179b8
TI
1168static int alc_parse_auto_config(struct hda_codec *codec,
1169 const hda_nid_t *ignore_nids,
1170 const hda_nid_t *ssid_nids)
1d045db9
TI
1171{
1172 struct alc_spec *spec = codec->spec;
08c189f2 1173 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1d045db9 1174 int err;
26f5df26 1175
53c334ad
TI
1176 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1177 spec->parse_flags);
1d045db9
TI
1178 if (err < 0)
1179 return err;
3e6179b8
TI
1180
1181 if (ssid_nids)
1182 alc_ssid_check(codec, ssid_nids);
64154835 1183
08c189f2
TI
1184 err = snd_hda_gen_parse_auto_config(codec, cfg);
1185 if (err < 0)
1186 return err;
070cff4c 1187
1d045db9 1188 return 1;
60db6b53 1189}
f6a92248 1190
3de95173
TI
1191/* common preparation job for alc_spec */
1192static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1193{
1194 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1195 int err;
1196
1197 if (!spec)
1198 return -ENOMEM;
1199 codec->spec = spec;
08c189f2
TI
1200 snd_hda_gen_spec_init(&spec->gen);
1201 spec->gen.mixer_nid = mixer_nid;
1202 spec->gen.own_eapd_ctl = 1;
1098b7c2 1203 codec->single_adc_amp = 1;
08c189f2
TI
1204 /* FIXME: do we need this for all Realtek codec models? */
1205 codec->spdif_status_reset = 1;
a6e7d0a4 1206 codec->forced_resume = 1;
225068ab 1207 codec->patch_ops = alc_patch_ops;
b837a9f5 1208 mutex_init(&spec->coef_mutex);
3de95173
TI
1209
1210 err = alc_codec_rename_from_preset(codec);
1211 if (err < 0) {
1212 kfree(spec);
1213 return err;
1214 }
1215 return 0;
1216}
1217
3e6179b8
TI
1218static int alc880_parse_auto_config(struct hda_codec *codec)
1219{
1220 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
7d7eb9ea 1221 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3e6179b8
TI
1222 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1223}
1224
ee3b2969
TI
1225/*
1226 * ALC880 fix-ups
1227 */
1228enum {
411225a0 1229 ALC880_FIXUP_GPIO1,
ee3b2969
TI
1230 ALC880_FIXUP_GPIO2,
1231 ALC880_FIXUP_MEDION_RIM,
dc6af52d 1232 ALC880_FIXUP_LG,
db8a38e5 1233 ALC880_FIXUP_LG_LW25,
f02aab5d 1234 ALC880_FIXUP_W810,
27e917f8 1235 ALC880_FIXUP_EAPD_COEF,
b9368f5c 1236 ALC880_FIXUP_TCL_S700,
cf5a2279
TI
1237 ALC880_FIXUP_VOL_KNOB,
1238 ALC880_FIXUP_FUJITSU,
ba533818 1239 ALC880_FIXUP_F1734,
817de92f 1240 ALC880_FIXUP_UNIWILL,
967b88c4 1241 ALC880_FIXUP_UNIWILL_DIG,
96e225f6 1242 ALC880_FIXUP_Z71V,
487a588d 1243 ALC880_FIXUP_ASUS_W5A,
67b6ec31
TI
1244 ALC880_FIXUP_3ST_BASE,
1245 ALC880_FIXUP_3ST,
1246 ALC880_FIXUP_3ST_DIG,
1247 ALC880_FIXUP_5ST_BASE,
1248 ALC880_FIXUP_5ST,
1249 ALC880_FIXUP_5ST_DIG,
1250 ALC880_FIXUP_6ST_BASE,
1251 ALC880_FIXUP_6ST,
1252 ALC880_FIXUP_6ST_DIG,
5397145f 1253 ALC880_FIXUP_6ST_AUTOMUTE,
ee3b2969
TI
1254};
1255
cf5a2279
TI
1256/* enable the volume-knob widget support on NID 0x21 */
1257static void alc880_fixup_vol_knob(struct hda_codec *codec,
1727a771 1258 const struct hda_fixup *fix, int action)
cf5a2279 1259{
1727a771 1260 if (action == HDA_FIXUP_ACT_PROBE)
62f949bf
TI
1261 snd_hda_jack_detect_enable_callback(codec, 0x21,
1262 alc_update_knob_master);
cf5a2279
TI
1263}
1264
1727a771 1265static const struct hda_fixup alc880_fixups[] = {
411225a0 1266 [ALC880_FIXUP_GPIO1] = {
5579cd6f
TI
1267 .type = HDA_FIXUP_FUNC,
1268 .v.func = alc_fixup_gpio1,
411225a0 1269 },
ee3b2969 1270 [ALC880_FIXUP_GPIO2] = {
5579cd6f
TI
1271 .type = HDA_FIXUP_FUNC,
1272 .v.func = alc_fixup_gpio2,
ee3b2969
TI
1273 },
1274 [ALC880_FIXUP_MEDION_RIM] = {
1727a771 1275 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1276 .v.verbs = (const struct hda_verb[]) {
1277 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1278 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1279 { }
1280 },
1281 .chained = true,
1282 .chain_id = ALC880_FIXUP_GPIO2,
1283 },
dc6af52d 1284 [ALC880_FIXUP_LG] = {
1727a771
TI
1285 .type = HDA_FIXUP_PINS,
1286 .v.pins = (const struct hda_pintbl[]) {
dc6af52d
TI
1287 /* disable bogus unused pins */
1288 { 0x16, 0x411111f0 },
1289 { 0x18, 0x411111f0 },
1290 { 0x1a, 0x411111f0 },
1291 { }
1292 }
1293 },
db8a38e5
TI
1294 [ALC880_FIXUP_LG_LW25] = {
1295 .type = HDA_FIXUP_PINS,
1296 .v.pins = (const struct hda_pintbl[]) {
1297 { 0x1a, 0x0181344f }, /* line-in */
1298 { 0x1b, 0x0321403f }, /* headphone */
1299 { }
1300 }
1301 },
f02aab5d 1302 [ALC880_FIXUP_W810] = {
1727a771
TI
1303 .type = HDA_FIXUP_PINS,
1304 .v.pins = (const struct hda_pintbl[]) {
f02aab5d
TI
1305 /* disable bogus unused pins */
1306 { 0x17, 0x411111f0 },
1307 { }
1308 },
1309 .chained = true,
1310 .chain_id = ALC880_FIXUP_GPIO2,
1311 },
27e917f8 1312 [ALC880_FIXUP_EAPD_COEF] = {
1727a771 1313 .type = HDA_FIXUP_VERBS,
27e917f8
TI
1314 .v.verbs = (const struct hda_verb[]) {
1315 /* change to EAPD mode */
1316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1317 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1318 {}
1319 },
1320 },
b9368f5c 1321 [ALC880_FIXUP_TCL_S700] = {
1727a771 1322 .type = HDA_FIXUP_VERBS,
b9368f5c
TI
1323 .v.verbs = (const struct hda_verb[]) {
1324 /* change to EAPD mode */
1325 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1326 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1327 {}
1328 },
1329 .chained = true,
1330 .chain_id = ALC880_FIXUP_GPIO2,
1331 },
cf5a2279 1332 [ALC880_FIXUP_VOL_KNOB] = {
1727a771 1333 .type = HDA_FIXUP_FUNC,
cf5a2279
TI
1334 .v.func = alc880_fixup_vol_knob,
1335 },
1336 [ALC880_FIXUP_FUJITSU] = {
1337 /* override all pins as BIOS on old Amilo is broken */
1727a771
TI
1338 .type = HDA_FIXUP_PINS,
1339 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1340 { 0x14, 0x0121401f }, /* HP */
cf5a2279
TI
1341 { 0x15, 0x99030120 }, /* speaker */
1342 { 0x16, 0x99030130 }, /* bass speaker */
1343 { 0x17, 0x411111f0 }, /* N/A */
1344 { 0x18, 0x411111f0 }, /* N/A */
1345 { 0x19, 0x01a19950 }, /* mic-in */
1346 { 0x1a, 0x411111f0 }, /* N/A */
1347 { 0x1b, 0x411111f0 }, /* N/A */
1348 { 0x1c, 0x411111f0 }, /* N/A */
1349 { 0x1d, 0x411111f0 }, /* N/A */
1350 { 0x1e, 0x01454140 }, /* SPDIF out */
1351 { }
1352 },
1353 .chained = true,
1354 .chain_id = ALC880_FIXUP_VOL_KNOB,
1355 },
ba533818
TI
1356 [ALC880_FIXUP_F1734] = {
1357 /* almost compatible with FUJITSU, but no bass and SPDIF */
1727a771
TI
1358 .type = HDA_FIXUP_PINS,
1359 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1360 { 0x14, 0x0121401f }, /* HP */
ba533818
TI
1361 { 0x15, 0x99030120 }, /* speaker */
1362 { 0x16, 0x411111f0 }, /* N/A */
1363 { 0x17, 0x411111f0 }, /* N/A */
1364 { 0x18, 0x411111f0 }, /* N/A */
1365 { 0x19, 0x01a19950 }, /* mic-in */
1366 { 0x1a, 0x411111f0 }, /* N/A */
1367 { 0x1b, 0x411111f0 }, /* N/A */
1368 { 0x1c, 0x411111f0 }, /* N/A */
1369 { 0x1d, 0x411111f0 }, /* N/A */
1370 { 0x1e, 0x411111f0 }, /* N/A */
1371 { }
1372 },
1373 .chained = true,
1374 .chain_id = ALC880_FIXUP_VOL_KNOB,
1375 },
817de92f
TI
1376 [ALC880_FIXUP_UNIWILL] = {
1377 /* need to fix HP and speaker pins to be parsed correctly */
1727a771
TI
1378 .type = HDA_FIXUP_PINS,
1379 .v.pins = (const struct hda_pintbl[]) {
817de92f
TI
1380 { 0x14, 0x0121411f }, /* HP */
1381 { 0x15, 0x99030120 }, /* speaker */
1382 { 0x16, 0x99030130 }, /* bass speaker */
1383 { }
1384 },
1385 },
967b88c4 1386 [ALC880_FIXUP_UNIWILL_DIG] = {
1727a771
TI
1387 .type = HDA_FIXUP_PINS,
1388 .v.pins = (const struct hda_pintbl[]) {
967b88c4
TI
1389 /* disable bogus unused pins */
1390 { 0x17, 0x411111f0 },
1391 { 0x19, 0x411111f0 },
1392 { 0x1b, 0x411111f0 },
1393 { 0x1f, 0x411111f0 },
1394 { }
1395 }
1396 },
96e225f6 1397 [ALC880_FIXUP_Z71V] = {
1727a771
TI
1398 .type = HDA_FIXUP_PINS,
1399 .v.pins = (const struct hda_pintbl[]) {
96e225f6
TI
1400 /* set up the whole pins as BIOS is utterly broken */
1401 { 0x14, 0x99030120 }, /* speaker */
1402 { 0x15, 0x0121411f }, /* HP */
1403 { 0x16, 0x411111f0 }, /* N/A */
1404 { 0x17, 0x411111f0 }, /* N/A */
1405 { 0x18, 0x01a19950 }, /* mic-in */
1406 { 0x19, 0x411111f0 }, /* N/A */
1407 { 0x1a, 0x01813031 }, /* line-in */
1408 { 0x1b, 0x411111f0 }, /* N/A */
1409 { 0x1c, 0x411111f0 }, /* N/A */
1410 { 0x1d, 0x411111f0 }, /* N/A */
1411 { 0x1e, 0x0144111e }, /* SPDIF */
1412 { }
1413 }
1414 },
487a588d
TI
1415 [ALC880_FIXUP_ASUS_W5A] = {
1416 .type = HDA_FIXUP_PINS,
1417 .v.pins = (const struct hda_pintbl[]) {
1418 /* set up the whole pins as BIOS is utterly broken */
1419 { 0x14, 0x0121411f }, /* HP */
1420 { 0x15, 0x411111f0 }, /* N/A */
1421 { 0x16, 0x411111f0 }, /* N/A */
1422 { 0x17, 0x411111f0 }, /* N/A */
1423 { 0x18, 0x90a60160 }, /* mic */
1424 { 0x19, 0x411111f0 }, /* N/A */
1425 { 0x1a, 0x411111f0 }, /* N/A */
1426 { 0x1b, 0x411111f0 }, /* N/A */
1427 { 0x1c, 0x411111f0 }, /* N/A */
1428 { 0x1d, 0x411111f0 }, /* N/A */
1429 { 0x1e, 0xb743111e }, /* SPDIF out */
1430 { }
1431 },
1432 .chained = true,
1433 .chain_id = ALC880_FIXUP_GPIO1,
1434 },
67b6ec31 1435 [ALC880_FIXUP_3ST_BASE] = {
1727a771
TI
1436 .type = HDA_FIXUP_PINS,
1437 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1438 { 0x14, 0x01014010 }, /* line-out */
1439 { 0x15, 0x411111f0 }, /* N/A */
1440 { 0x16, 0x411111f0 }, /* N/A */
1441 { 0x17, 0x411111f0 }, /* N/A */
1442 { 0x18, 0x01a19c30 }, /* mic-in */
1443 { 0x19, 0x0121411f }, /* HP */
1444 { 0x1a, 0x01813031 }, /* line-in */
1445 { 0x1b, 0x02a19c40 }, /* front-mic */
1446 { 0x1c, 0x411111f0 }, /* N/A */
1447 { 0x1d, 0x411111f0 }, /* N/A */
1448 /* 0x1e is filled in below */
1449 { 0x1f, 0x411111f0 }, /* N/A */
1450 { }
1451 }
1452 },
1453 [ALC880_FIXUP_3ST] = {
1727a771
TI
1454 .type = HDA_FIXUP_PINS,
1455 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1456 { 0x1e, 0x411111f0 }, /* N/A */
1457 { }
1458 },
1459 .chained = true,
1460 .chain_id = ALC880_FIXUP_3ST_BASE,
1461 },
1462 [ALC880_FIXUP_3ST_DIG] = {
1727a771
TI
1463 .type = HDA_FIXUP_PINS,
1464 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1465 { 0x1e, 0x0144111e }, /* SPDIF */
1466 { }
1467 },
1468 .chained = true,
1469 .chain_id = ALC880_FIXUP_3ST_BASE,
1470 },
1471 [ALC880_FIXUP_5ST_BASE] = {
1727a771
TI
1472 .type = HDA_FIXUP_PINS,
1473 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1474 { 0x14, 0x01014010 }, /* front */
1475 { 0x15, 0x411111f0 }, /* N/A */
1476 { 0x16, 0x01011411 }, /* CLFE */
1477 { 0x17, 0x01016412 }, /* surr */
1478 { 0x18, 0x01a19c30 }, /* mic-in */
1479 { 0x19, 0x0121411f }, /* HP */
1480 { 0x1a, 0x01813031 }, /* line-in */
1481 { 0x1b, 0x02a19c40 }, /* front-mic */
1482 { 0x1c, 0x411111f0 }, /* N/A */
1483 { 0x1d, 0x411111f0 }, /* N/A */
1484 /* 0x1e is filled in below */
1485 { 0x1f, 0x411111f0 }, /* N/A */
1486 { }
1487 }
1488 },
1489 [ALC880_FIXUP_5ST] = {
1727a771
TI
1490 .type = HDA_FIXUP_PINS,
1491 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1492 { 0x1e, 0x411111f0 }, /* N/A */
1493 { }
1494 },
1495 .chained = true,
1496 .chain_id = ALC880_FIXUP_5ST_BASE,
1497 },
1498 [ALC880_FIXUP_5ST_DIG] = {
1727a771
TI
1499 .type = HDA_FIXUP_PINS,
1500 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1501 { 0x1e, 0x0144111e }, /* SPDIF */
1502 { }
1503 },
1504 .chained = true,
1505 .chain_id = ALC880_FIXUP_5ST_BASE,
1506 },
1507 [ALC880_FIXUP_6ST_BASE] = {
1727a771
TI
1508 .type = HDA_FIXUP_PINS,
1509 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1510 { 0x14, 0x01014010 }, /* front */
1511 { 0x15, 0x01016412 }, /* surr */
1512 { 0x16, 0x01011411 }, /* CLFE */
1513 { 0x17, 0x01012414 }, /* side */
1514 { 0x18, 0x01a19c30 }, /* mic-in */
1515 { 0x19, 0x02a19c40 }, /* front-mic */
1516 { 0x1a, 0x01813031 }, /* line-in */
1517 { 0x1b, 0x0121411f }, /* HP */
1518 { 0x1c, 0x411111f0 }, /* N/A */
1519 { 0x1d, 0x411111f0 }, /* N/A */
1520 /* 0x1e is filled in below */
1521 { 0x1f, 0x411111f0 }, /* N/A */
1522 { }
1523 }
1524 },
1525 [ALC880_FIXUP_6ST] = {
1727a771
TI
1526 .type = HDA_FIXUP_PINS,
1527 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1528 { 0x1e, 0x411111f0 }, /* N/A */
1529 { }
1530 },
1531 .chained = true,
1532 .chain_id = ALC880_FIXUP_6ST_BASE,
1533 },
1534 [ALC880_FIXUP_6ST_DIG] = {
1727a771
TI
1535 .type = HDA_FIXUP_PINS,
1536 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1537 { 0x1e, 0x0144111e }, /* SPDIF */
1538 { }
1539 },
1540 .chained = true,
1541 .chain_id = ALC880_FIXUP_6ST_BASE,
1542 },
5397145f
TI
1543 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1544 .type = HDA_FIXUP_PINS,
1545 .v.pins = (const struct hda_pintbl[]) {
1546 { 0x1b, 0x0121401f }, /* HP with jack detect */
1547 { }
1548 },
1549 .chained_before = true,
1550 .chain_id = ALC880_FIXUP_6ST_BASE,
1551 },
ee3b2969
TI
1552};
1553
1554static const struct snd_pci_quirk alc880_fixup_tbl[] = {
f02aab5d 1555 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
487a588d 1556 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
96e225f6 1557 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
29e3fdcc 1558 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
6538de03 1559 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
29e3fdcc 1560 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
27e917f8 1561 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
967b88c4 1562 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
ba533818 1563 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
817de92f 1564 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
7833c7e8 1565 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
f02aab5d 1566 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
ee3b2969 1567 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
5397145f 1568 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
a161574e 1569 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
cf5a2279 1570 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
ba533818 1571 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
cf5a2279 1572 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
dc6af52d
TI
1573 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1574 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1575 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
db8a38e5 1576 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
b9368f5c 1577 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
67b6ec31
TI
1578
1579 /* Below is the copied entries from alc880_quirks.c.
1580 * It's not quite sure whether BIOS sets the correct pin-config table
1581 * on these machines, thus they are kept to be compatible with
1582 * the old static quirks. Once when it's confirmed to work without
1583 * these overrides, it'd be better to remove.
1584 */
1585 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1586 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1587 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1588 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1589 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1590 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1591 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1592 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1593 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1594 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1595 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1596 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1597 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1598 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1599 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1600 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1601 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1602 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1603 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1604 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1605 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1607 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1613 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1614 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1615 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1616 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1617 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1618 /* default Intel */
1619 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1620 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1621 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1622 {}
1623};
1624
1727a771 1625static const struct hda_model_fixup alc880_fixup_models[] = {
67b6ec31
TI
1626 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1627 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1628 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1629 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1630 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1631 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
5397145f 1632 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
ee3b2969
TI
1633 {}
1634};
1635
1636
1d045db9
TI
1637/*
1638 * OK, here we have finally the patch for ALC880
1639 */
1d045db9 1640static int patch_alc880(struct hda_codec *codec)
60db6b53 1641{
1d045db9 1642 struct alc_spec *spec;
1d045db9 1643 int err;
f6a92248 1644
3de95173
TI
1645 err = alc_alloc_spec(codec, 0x0b);
1646 if (err < 0)
1647 return err;
64154835 1648
3de95173 1649 spec = codec->spec;
08c189f2 1650 spec->gen.need_dac_fix = 1;
7504b6cd 1651 spec->gen.beep_nid = 0x01;
f53281e6 1652
225068ab
TI
1653 codec->patch_ops.unsol_event = alc880_unsol_event;
1654
c9af753f
TI
1655 alc_pre_init(codec);
1656
1727a771 1657 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
67b6ec31 1658 alc880_fixups);
1727a771 1659 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ee3b2969 1660
67b6ec31
TI
1661 /* automatic parse from the BIOS config */
1662 err = alc880_parse_auto_config(codec);
1663 if (err < 0)
1664 goto error;
fe3eb0a7 1665
fea80fae
TI
1666 if (!spec->gen.no_analog) {
1667 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1668 if (err < 0)
1669 goto error;
1670 }
f53281e6 1671
1727a771 1672 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1673
1d045db9 1674 return 0;
e16fb6d1
TI
1675
1676 error:
1677 alc_free(codec);
1678 return err;
226b1ec8
KY
1679}
1680
1d045db9 1681
60db6b53 1682/*
1d045db9 1683 * ALC260 support
60db6b53 1684 */
1d045db9 1685static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 1686{
1d045db9 1687 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
1688 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1689 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
1690}
1691
1d045db9
TI
1692/*
1693 * Pin config fixes
1694 */
1695enum {
ca8f0424
TI
1696 ALC260_FIXUP_HP_DC5750,
1697 ALC260_FIXUP_HP_PIN_0F,
1698 ALC260_FIXUP_COEF,
15317ab2 1699 ALC260_FIXUP_GPIO1,
20f7d928
TI
1700 ALC260_FIXUP_GPIO1_TOGGLE,
1701 ALC260_FIXUP_REPLACER,
0a1c4fa2 1702 ALC260_FIXUP_HP_B1900,
118cb4a4 1703 ALC260_FIXUP_KN1,
39aedee7 1704 ALC260_FIXUP_FSC_S7020,
5ebd3bbd 1705 ALC260_FIXUP_FSC_S7020_JWSE,
d08c5ef2 1706 ALC260_FIXUP_VAIO_PINS,
1d045db9
TI
1707};
1708
20f7d928
TI
1709static void alc260_gpio1_automute(struct hda_codec *codec)
1710{
1711 struct alc_spec *spec = codec->spec;
aaf312de
TI
1712
1713 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
20f7d928
TI
1714}
1715
1716static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1727a771 1717 const struct hda_fixup *fix, int action)
20f7d928
TI
1718{
1719 struct alc_spec *spec = codec->spec;
1727a771 1720 if (action == HDA_FIXUP_ACT_PROBE) {
20f7d928
TI
1721 /* although the machine has only one output pin, we need to
1722 * toggle GPIO1 according to the jack state
1723 */
08c189f2
TI
1724 spec->gen.automute_hook = alc260_gpio1_automute;
1725 spec->gen.detect_hp = 1;
1726 spec->gen.automute_speaker = 1;
1727 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
62f949bf 1728 snd_hda_jack_detect_enable_callback(codec, 0x0f,
08c189f2 1729 snd_hda_gen_hp_automute);
5579cd6f 1730 alc_setup_gpio(codec, 0x01);
20f7d928
TI
1731 }
1732}
1733
118cb4a4 1734static void alc260_fixup_kn1(struct hda_codec *codec,
1727a771 1735 const struct hda_fixup *fix, int action)
118cb4a4
TI
1736{
1737 struct alc_spec *spec = codec->spec;
1727a771 1738 static const struct hda_pintbl pincfgs[] = {
118cb4a4
TI
1739 { 0x0f, 0x02214000 }, /* HP/speaker */
1740 { 0x12, 0x90a60160 }, /* int mic */
1741 { 0x13, 0x02a19000 }, /* ext mic */
1742 { 0x18, 0x01446000 }, /* SPDIF out */
1743 /* disable bogus I/O pins */
1744 { 0x10, 0x411111f0 },
1745 { 0x11, 0x411111f0 },
1746 { 0x14, 0x411111f0 },
1747 { 0x15, 0x411111f0 },
1748 { 0x16, 0x411111f0 },
1749 { 0x17, 0x411111f0 },
1750 { 0x19, 0x411111f0 },
1751 { }
1752 };
1753
1754 switch (action) {
1727a771
TI
1755 case HDA_FIXUP_ACT_PRE_PROBE:
1756 snd_hda_apply_pincfgs(codec, pincfgs);
118cb4a4
TI
1757 spec->init_amp = ALC_INIT_NONE;
1758 break;
1759 }
1760}
1761
39aedee7
TI
1762static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1763 const struct hda_fixup *fix, int action)
1764{
1765 struct alc_spec *spec = codec->spec;
1c76aa5f 1766 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5ebd3bbd
TI
1767 spec->init_amp = ALC_INIT_NONE;
1768}
39aedee7 1769
5ebd3bbd
TI
1770static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1771 const struct hda_fixup *fix, int action)
1772{
1773 struct alc_spec *spec = codec->spec;
1774 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
f811c3cf 1775 spec->gen.add_jack_modes = 1;
5ebd3bbd 1776 spec->gen.hp_mic = 1;
e6e0ee50 1777 }
39aedee7
TI
1778}
1779
1727a771 1780static const struct hda_fixup alc260_fixups[] = {
ca8f0424 1781 [ALC260_FIXUP_HP_DC5750] = {
1727a771
TI
1782 .type = HDA_FIXUP_PINS,
1783 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1784 { 0x11, 0x90130110 }, /* speaker */
1785 { }
1786 }
1787 },
ca8f0424 1788 [ALC260_FIXUP_HP_PIN_0F] = {
1727a771
TI
1789 .type = HDA_FIXUP_PINS,
1790 .v.pins = (const struct hda_pintbl[]) {
ca8f0424
TI
1791 { 0x0f, 0x01214000 }, /* HP */
1792 { }
1793 }
1794 },
1795 [ALC260_FIXUP_COEF] = {
1727a771 1796 .type = HDA_FIXUP_VERBS,
ca8f0424 1797 .v.verbs = (const struct hda_verb[]) {
e30cf2d2
RM
1798 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1799 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
ca8f0424
TI
1800 { }
1801 },
ca8f0424 1802 },
15317ab2 1803 [ALC260_FIXUP_GPIO1] = {
5579cd6f
TI
1804 .type = HDA_FIXUP_FUNC,
1805 .v.func = alc_fixup_gpio1,
15317ab2 1806 },
20f7d928 1807 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727a771 1808 .type = HDA_FIXUP_FUNC,
20f7d928
TI
1809 .v.func = alc260_fixup_gpio1_toggle,
1810 .chained = true,
1811 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1812 },
1813 [ALC260_FIXUP_REPLACER] = {
1727a771 1814 .type = HDA_FIXUP_VERBS,
20f7d928 1815 .v.verbs = (const struct hda_verb[]) {
192a98e2
TI
1816 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1817 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
20f7d928
TI
1818 { }
1819 },
1820 .chained = true,
1821 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1822 },
0a1c4fa2 1823 [ALC260_FIXUP_HP_B1900] = {
1727a771 1824 .type = HDA_FIXUP_FUNC,
0a1c4fa2
TI
1825 .v.func = alc260_fixup_gpio1_toggle,
1826 .chained = true,
1827 .chain_id = ALC260_FIXUP_COEF,
118cb4a4
TI
1828 },
1829 [ALC260_FIXUP_KN1] = {
1727a771 1830 .type = HDA_FIXUP_FUNC,
118cb4a4
TI
1831 .v.func = alc260_fixup_kn1,
1832 },
39aedee7
TI
1833 [ALC260_FIXUP_FSC_S7020] = {
1834 .type = HDA_FIXUP_FUNC,
1835 .v.func = alc260_fixup_fsc_s7020,
1836 },
5ebd3bbd
TI
1837 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1838 .type = HDA_FIXUP_FUNC,
1839 .v.func = alc260_fixup_fsc_s7020_jwse,
1840 .chained = true,
1841 .chain_id = ALC260_FIXUP_FSC_S7020,
1842 },
d08c5ef2
TI
1843 [ALC260_FIXUP_VAIO_PINS] = {
1844 .type = HDA_FIXUP_PINS,
1845 .v.pins = (const struct hda_pintbl[]) {
1846 /* Pin configs are missing completely on some VAIOs */
1847 { 0x0f, 0x01211020 },
1848 { 0x10, 0x0001003f },
1849 { 0x11, 0x411111f0 },
1850 { 0x12, 0x01a15930 },
1851 { 0x13, 0x411111f0 },
1852 { 0x14, 0x411111f0 },
1853 { 0x15, 0x411111f0 },
1854 { 0x16, 0x411111f0 },
1855 { 0x17, 0x411111f0 },
1856 { 0x18, 0x411111f0 },
1857 { 0x19, 0x411111f0 },
1858 { }
1859 }
1860 },
1d045db9
TI
1861};
1862
1863static const struct snd_pci_quirk alc260_fixup_tbl[] = {
15317ab2 1864 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
ca8f0424 1865 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
15317ab2 1866 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
ca8f0424 1867 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
0a1c4fa2 1868 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
d08c5ef2 1869 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
0f5a5b85 1870 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
39aedee7 1871 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
b1f58085 1872 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
118cb4a4 1873 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
20f7d928 1874 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
ca8f0424 1875 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1d045db9
TI
1876 {}
1877};
1878
5ebd3bbd
TI
1879static const struct hda_model_fixup alc260_fixup_models[] = {
1880 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1881 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1882 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1883 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1884 {}
1885};
1886
1d045db9
TI
1887/*
1888 */
1d045db9 1889static int patch_alc260(struct hda_codec *codec)
977ddd6b 1890{
1d045db9 1891 struct alc_spec *spec;
c3c2c9e7 1892 int err;
1d045db9 1893
3de95173
TI
1894 err = alc_alloc_spec(codec, 0x07);
1895 if (err < 0)
1896 return err;
1d045db9 1897
3de95173 1898 spec = codec->spec;
ea46c3c8
TI
1899 /* as quite a few machines require HP amp for speaker outputs,
1900 * it's easier to enable it unconditionally; even if it's unneeded,
1901 * it's almost harmless.
1902 */
1903 spec->gen.prefer_hp_amp = 1;
7504b6cd 1904 spec->gen.beep_nid = 0x01;
1d045db9 1905
225068ab
TI
1906 spec->shutup = alc_eapd_shutup;
1907
c9af753f
TI
1908 alc_pre_init(codec);
1909
5ebd3bbd
TI
1910 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1911 alc260_fixups);
1727a771 1912 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
977ddd6b 1913
c3c2c9e7
TI
1914 /* automatic parse from the BIOS config */
1915 err = alc260_parse_auto_config(codec);
1916 if (err < 0)
1917 goto error;
977ddd6b 1918
fea80fae
TI
1919 if (!spec->gen.no_analog) {
1920 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1921 if (err < 0)
1922 goto error;
1923 }
977ddd6b 1924
1727a771 1925 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1926
1d045db9 1927 return 0;
e16fb6d1
TI
1928
1929 error:
1930 alc_free(codec);
1931 return err;
6981d184
TI
1932}
1933
1d045db9
TI
1934
1935/*
1936 * ALC882/883/885/888/889 support
1937 *
1938 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1939 * configuration. Each pin widget can choose any input DACs and a mixer.
1940 * Each ADC is connected from a mixer of all inputs. This makes possible
1941 * 6-channel independent captures.
1942 *
1943 * In addition, an independent DAC for the multi-playback (not used in this
1944 * driver yet).
1945 */
1d045db9
TI
1946
1947/*
1948 * Pin config fixes
1949 */
ff818c24 1950enum {
5c0ebfbe
TI
1951 ALC882_FIXUP_ABIT_AW9D_MAX,
1952 ALC882_FIXUP_LENOVO_Y530,
1953 ALC882_FIXUP_PB_M5210,
1954 ALC882_FIXUP_ACER_ASPIRE_7736,
1955 ALC882_FIXUP_ASUS_W90V,
8f239214 1956 ALC889_FIXUP_CD,
b2c53e20 1957 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
5c0ebfbe 1958 ALC889_FIXUP_VAIO_TT,
0e7cc2e7 1959 ALC888_FIXUP_EEE1601,
4841b8e6 1960 ALC886_FIXUP_EAPD,
177943a3 1961 ALC882_FIXUP_EAPD,
7a6069bf 1962 ALC883_FIXUP_EAPD,
8812c4f9 1963 ALC883_FIXUP_ACER_EAPD,
1a97b7f2
TI
1964 ALC882_FIXUP_GPIO1,
1965 ALC882_FIXUP_GPIO2,
eb844d51 1966 ALC882_FIXUP_GPIO3,
68ef0561
TI
1967 ALC889_FIXUP_COEF,
1968 ALC882_FIXUP_ASUS_W2JC,
c3e837bb
TI
1969 ALC882_FIXUP_ACER_ASPIRE_4930G,
1970 ALC882_FIXUP_ACER_ASPIRE_8930G,
1971 ALC882_FIXUP_ASPIRE_8930G_VERBS,
5671087f 1972 ALC885_FIXUP_MACPRO_GPIO,
02a237b2 1973 ALC889_FIXUP_DAC_ROUTE,
1a97b7f2
TI
1974 ALC889_FIXUP_MBP_VREF,
1975 ALC889_FIXUP_IMAC91_VREF,
e7729a41 1976 ALC889_FIXUP_MBA11_VREF,
0756f09c 1977 ALC889_FIXUP_MBA21_VREF,
c20f31ec 1978 ALC889_FIXUP_MP11_VREF,
9f660a1c 1979 ALC889_FIXUP_MP41_VREF,
6e72aa5f 1980 ALC882_FIXUP_INV_DMIC,
e427c237 1981 ALC882_FIXUP_NO_PRIMARY_HP,
1f0bbf03 1982 ALC887_FIXUP_ASUS_BASS,
eb9ca3ab 1983 ALC887_FIXUP_BASS_CHMAP,
7beb3a6e 1984 ALC1220_FIXUP_GB_DUAL_CODECS,
c1933008 1985 ALC1220_FIXUP_GB_X570,
0202f5cd 1986 ALC1220_FIXUP_CLEVO_P950,
80690a27
RS
1987 ALC1220_FIXUP_CLEVO_PB51ED,
1988 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
ca184355
JHP
1989 ALC887_FIXUP_ASUS_AUDIO,
1990 ALC887_FIXUP_ASUS_HMIC,
9bfa7b36 1991 ALCS1200A_FIXUP_MIC_VREF,
baaacbff 1992 ALC888VD_FIXUP_MIC_100VREF,
ff818c24
TI
1993};
1994
68ef0561 1995static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1996 const struct hda_fixup *fix, int action)
68ef0561 1997{
1727a771 1998 if (action != HDA_FIXUP_ACT_INIT)
68ef0561 1999 return;
1df8874b 2000 alc_update_coef_idx(codec, 7, 0, 0x2030);
68ef0561
TI
2001}
2002
5671087f
TI
2003/* set up GPIO at initialization */
2004static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 2005 const struct hda_fixup *fix, int action)
5671087f 2006{
215c850c
TI
2007 struct alc_spec *spec = codec->spec;
2008
2009 spec->gpio_write_delay = true;
2010 alc_fixup_gpio3(codec, fix, action);
5671087f
TI
2011}
2012
02a237b2
TI
2013/* Fix the connection of some pins for ALC889:
2014 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2015 * work correctly (bko#42740)
2016 */
2017static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 2018 const struct hda_fixup *fix, int action)
02a237b2 2019{
1727a771 2020 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 2021 /* fake the connections during parsing the tree */
caf3c043
MM
2022 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2023 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2024 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2025 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2026 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2027 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
1727a771 2028 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb 2029 /* restore the connections */
caf3c043
MM
2030 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2031 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2032 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2033 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2034 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
02a237b2
TI
2035 }
2036}
2037
1a97b7f2
TI
2038/* Set VREF on HP pin */
2039static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 2040 const struct hda_fixup *fix, int action)
1a97b7f2 2041{
caf3c043 2042 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
1a97b7f2 2043 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2044 int i;
2045
1727a771 2046 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
2047 return;
2048 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2049 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2050 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2051 continue;
d3f02d60 2052 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2053 val |= AC_PINCTL_VREF_80;
cdd03ced 2054 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 2055 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2056 break;
2057 }
2058}
2059
0756f09c
TI
2060static void alc889_fixup_mac_pins(struct hda_codec *codec,
2061 const hda_nid_t *nids, int num_nids)
1a97b7f2
TI
2062{
2063 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2064 int i;
2065
0756f09c 2066 for (i = 0; i < num_nids; i++) {
1a97b7f2 2067 unsigned int val;
d3f02d60 2068 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2069 val |= AC_PINCTL_VREF_50;
cdd03ced 2070 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 2071 }
08c189f2 2072 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2073}
2074
0756f09c
TI
2075/* Set VREF on speaker pins on imac91 */
2076static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2077 const struct hda_fixup *fix, int action)
2078{
caf3c043 2079 static const hda_nid_t nids[] = { 0x18, 0x1a };
0756f09c
TI
2080
2081 if (action == HDA_FIXUP_ACT_INIT)
2082 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2083}
2084
e7729a41
AV
2085/* Set VREF on speaker pins on mba11 */
2086static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2087 const struct hda_fixup *fix, int action)
2088{
caf3c043 2089 static const hda_nid_t nids[] = { 0x18 };
e7729a41
AV
2090
2091 if (action == HDA_FIXUP_ACT_INIT)
2092 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2093}
2094
0756f09c
TI
2095/* Set VREF on speaker pins on mba21 */
2096static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2097 const struct hda_fixup *fix, int action)
2098{
caf3c043 2099 static const hda_nid_t nids[] = { 0x18, 0x19 };
0756f09c
TI
2100
2101 if (action == HDA_FIXUP_ACT_INIT)
2102 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2103}
2104
e427c237 2105/* Don't take HP output as primary
d9111496
FLVC
2106 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2107 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
e427c237
TI
2108 */
2109static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 2110 const struct hda_fixup *fix, int action)
e427c237
TI
2111{
2112 struct alc_spec *spec = codec->spec;
da96fb5b 2113 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08c189f2 2114 spec->gen.no_primary_hp = 1;
da96fb5b
TI
2115 spec->gen.no_multi_io = 1;
2116 }
e427c237
TI
2117}
2118
eb9ca3ab
TI
2119static void alc_fixup_bass_chmap(struct hda_codec *codec,
2120 const struct hda_fixup *fix, int action);
2121
7beb3a6e
TI
2122/* For dual-codec configuration, we need to disable some features to avoid
2123 * conflicts of kctls and PCM streams
2124 */
2125static void alc_fixup_dual_codecs(struct hda_codec *codec,
2126 const struct hda_fixup *fix, int action)
2127{
2128 struct alc_spec *spec = codec->spec;
2129
2130 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2131 return;
2132 /* disable vmaster */
2133 spec->gen.suppress_vmaster = 1;
2134 /* auto-mute and auto-mic switch don't work with multiple codecs */
2135 spec->gen.suppress_auto_mute = 1;
2136 spec->gen.suppress_auto_mic = 1;
2137 /* disable aamix as well */
2138 spec->gen.mixer_nid = 0;
2139 /* add location prefix to avoid conflicts */
2140 codec->force_pin_prefix = 1;
2141}
2142
2143static void rename_ctl(struct hda_codec *codec, const char *oldname,
2144 const char *newname)
2145{
2146 struct snd_kcontrol *kctl;
2147
2148 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2149 if (kctl)
b51c2253 2150 snd_ctl_rename(codec->card, kctl, newname);
7beb3a6e
TI
2151}
2152
2153static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2154 const struct hda_fixup *fix,
2155 int action)
2156{
2157 alc_fixup_dual_codecs(codec, fix, action);
2158 switch (action) {
2159 case HDA_FIXUP_ACT_PRE_PROBE:
2160 /* override card longname to provide a unique UCM profile */
2161 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2162 break;
2163 case HDA_FIXUP_ACT_BUILD:
2164 /* rename Capture controls depending on the codec */
2165 rename_ctl(codec, "Capture Volume",
2166 codec->addr == 0 ?
2167 "Rear-Panel Capture Volume" :
2168 "Front-Panel Capture Volume");
2169 rename_ctl(codec, "Capture Switch",
2170 codec->addr == 0 ?
2171 "Rear-Panel Capture Switch" :
2172 "Front-Panel Capture Switch");
2173 break;
2174 }
2175}
2176
c1933008
CL
2177static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2178 const struct hda_fixup *fix,
2179 int action)
2180{
2181 static const hda_nid_t conn1[] = { 0x0c };
2182 static const struct coef_fw gb_x570_coefs[] = {
41a86013 2183 WRITE_COEF(0x07, 0x03c0),
c1933008
CL
2184 WRITE_COEF(0x1a, 0x01c1),
2185 WRITE_COEF(0x1b, 0x0202),
2186 WRITE_COEF(0x43, 0x3005),
2187 {}
2188 };
2189
2190 switch (action) {
2191 case HDA_FIXUP_ACT_PRE_PROBE:
2192 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2193 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2194 break;
2195 case HDA_FIXUP_ACT_INIT:
2196 alc_process_coef_fw(codec, gb_x570_coefs);
2197 break;
2198 }
2199}
2200
0202f5cd
P
2201static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2202 const struct hda_fixup *fix,
2203 int action)
2204{
caf3c043 2205 static const hda_nid_t conn1[] = { 0x0c };
0202f5cd
P
2206
2207 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2208 return;
2209
2210 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2211 /* We therefore want to make sure 0x14 (front headphone) and
2212 * 0x1b (speakers) use the stereo DAC 0x02
2213 */
caf3c043
MM
2214 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2215 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
0202f5cd
P
2216}
2217
7f665b1c
JS
2218static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2219 const struct hda_fixup *fix, int action);
2220
80690a27 2221static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
7f665b1c
JS
2222 const struct hda_fixup *fix,
2223 int action)
2224{
2225 alc1220_fixup_clevo_p950(codec, fix, action);
2226 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2227}
2228
ca184355
JHP
2229static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2230 struct hda_jack_callback *jack)
2231{
2232 struct alc_spec *spec = codec->spec;
2233 unsigned int vref;
2234
2235 snd_hda_gen_hp_automute(codec, jack);
2236
2237 if (spec->gen.hp_jack_present)
2238 vref = AC_PINCTL_VREF_80;
2239 else
2240 vref = AC_PINCTL_VREF_HIZ;
2241 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2242}
2243
2244static void alc887_fixup_asus_jack(struct hda_codec *codec,
2245 const struct hda_fixup *fix, int action)
2246{
2247 struct alc_spec *spec = codec->spec;
2248 if (action != HDA_FIXUP_ACT_PROBE)
2249 return;
2250 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2251 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2252}
2253
1727a771 2254static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 2255 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
2256 .type = HDA_FIXUP_PINS,
2257 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2258 { 0x15, 0x01080104 }, /* side */
2259 { 0x16, 0x01011012 }, /* rear */
2260 { 0x17, 0x01016011 }, /* clfe */
2785591a 2261 { }
145a902b
DH
2262 }
2263 },
5c0ebfbe 2264 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
2265 .type = HDA_FIXUP_PINS,
2266 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2267 { 0x15, 0x99130112 }, /* rear int speakers */
2268 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
2269 { }
2270 }
2271 },
5c0ebfbe 2272 [ALC882_FIXUP_PB_M5210] = {
fd108215
TI
2273 .type = HDA_FIXUP_PINCTLS,
2274 .v.pins = (const struct hda_pintbl[]) {
2275 { 0x19, PIN_VREF50 },
357f915e
KY
2276 {}
2277 }
2278 },
5c0ebfbe 2279 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 2280 .type = HDA_FIXUP_FUNC,
23d30f28 2281 .v.func = alc_fixup_sku_ignore,
6981d184 2282 },
5c0ebfbe 2283 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
2284 .type = HDA_FIXUP_PINS,
2285 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
2286 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2287 { }
2288 }
2289 },
8f239214 2290 [ALC889_FIXUP_CD] = {
1727a771
TI
2291 .type = HDA_FIXUP_PINS,
2292 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
2293 { 0x1c, 0x993301f0 }, /* CD */
2294 { }
2295 }
2296 },
b2c53e20
DH
2297 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2298 .type = HDA_FIXUP_PINS,
2299 .v.pins = (const struct hda_pintbl[]) {
2300 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2301 { }
2302 },
2303 .chained = true,
2304 .chain_id = ALC889_FIXUP_CD,
2305 },
5c0ebfbe 2306 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
2307 .type = HDA_FIXUP_PINS,
2308 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
2309 { 0x17, 0x90170111 }, /* hidden surround speaker */
2310 { }
2311 }
2312 },
0e7cc2e7 2313 [ALC888_FIXUP_EEE1601] = {
1727a771 2314 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
2315 .v.verbs = (const struct hda_verb[]) {
2316 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2317 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2318 { }
2319 }
177943a3 2320 },
4841b8e6
PH
2321 [ALC886_FIXUP_EAPD] = {
2322 .type = HDA_FIXUP_VERBS,
2323 .v.verbs = (const struct hda_verb[]) {
2324 /* change to EAPD mode */
2325 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2326 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2327 { }
2328 }
2329 },
177943a3 2330 [ALC882_FIXUP_EAPD] = {
1727a771 2331 .type = HDA_FIXUP_VERBS,
177943a3
TI
2332 .v.verbs = (const struct hda_verb[]) {
2333 /* change to EAPD mode */
2334 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2335 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2336 { }
2337 }
2338 },
7a6069bf 2339 [ALC883_FIXUP_EAPD] = {
1727a771 2340 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
2341 .v.verbs = (const struct hda_verb[]) {
2342 /* change to EAPD mode */
2343 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2344 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2345 { }
2346 }
2347 },
8812c4f9 2348 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 2349 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
2350 .v.verbs = (const struct hda_verb[]) {
2351 /* eanable EAPD on Acer laptops */
2352 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2353 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2354 { }
2355 }
2356 },
1a97b7f2 2357 [ALC882_FIXUP_GPIO1] = {
5579cd6f
TI
2358 .type = HDA_FIXUP_FUNC,
2359 .v.func = alc_fixup_gpio1,
1a97b7f2
TI
2360 },
2361 [ALC882_FIXUP_GPIO2] = {
5579cd6f
TI
2362 .type = HDA_FIXUP_FUNC,
2363 .v.func = alc_fixup_gpio2,
1a97b7f2 2364 },
eb844d51 2365 [ALC882_FIXUP_GPIO3] = {
5579cd6f
TI
2366 .type = HDA_FIXUP_FUNC,
2367 .v.func = alc_fixup_gpio3,
eb844d51 2368 },
68ef0561 2369 [ALC882_FIXUP_ASUS_W2JC] = {
5579cd6f
TI
2370 .type = HDA_FIXUP_FUNC,
2371 .v.func = alc_fixup_gpio1,
68ef0561
TI
2372 .chained = true,
2373 .chain_id = ALC882_FIXUP_EAPD,
2374 },
2375 [ALC889_FIXUP_COEF] = {
1727a771 2376 .type = HDA_FIXUP_FUNC,
68ef0561
TI
2377 .v.func = alc889_fixup_coef,
2378 },
c3e837bb 2379 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
2380 .type = HDA_FIXUP_PINS,
2381 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2382 { 0x16, 0x99130111 }, /* CLFE speaker */
2383 { 0x17, 0x99130112 }, /* surround speaker */
2384 { }
038d4fef
TI
2385 },
2386 .chained = true,
2387 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
2388 },
2389 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
2390 .type = HDA_FIXUP_PINS,
2391 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2392 { 0x16, 0x99130111 }, /* CLFE speaker */
2393 { 0x1b, 0x99130112 }, /* surround speaker */
2394 { }
2395 },
2396 .chained = true,
2397 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2398 },
2399 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2400 /* additional init verbs for Acer Aspire 8930G */
1727a771 2401 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
2402 .v.verbs = (const struct hda_verb[]) {
2403 /* Enable all DACs */
2404 /* DAC DISABLE/MUTE 1? */
2405 /* setting bits 1-5 disables DAC nids 0x02-0x06
2406 * apparently. Init=0x38 */
2407 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2408 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2409 /* DAC DISABLE/MUTE 2? */
2410 /* some bit here disables the other DACs.
2411 * Init=0x4900 */
2412 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2413 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2414 /* DMIC fix
2415 * This laptop has a stereo digital microphone.
2416 * The mics are only 1cm apart which makes the stereo
2417 * useless. However, either the mic or the ALC889
2418 * makes the signal become a difference/sum signal
2419 * instead of standard stereo, which is annoying.
2420 * So instead we flip this bit which makes the
2421 * codec replicate the sum signal to both channels,
2422 * turning it into a normal mono mic.
2423 */
2424 /* DMIC_CONTROL? Init value = 0x0001 */
2425 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2426 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2427 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2428 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2429 { }
038d4fef
TI
2430 },
2431 .chained = true,
2432 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 2433 },
5671087f 2434 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 2435 .type = HDA_FIXUP_FUNC,
5671087f
TI
2436 .v.func = alc885_fixup_macpro_gpio,
2437 },
02a237b2 2438 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 2439 .type = HDA_FIXUP_FUNC,
02a237b2
TI
2440 .v.func = alc889_fixup_dac_route,
2441 },
1a97b7f2 2442 [ALC889_FIXUP_MBP_VREF] = {
1727a771 2443 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2444 .v.func = alc889_fixup_mbp_vref,
2445 .chained = true,
2446 .chain_id = ALC882_FIXUP_GPIO1,
2447 },
2448 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 2449 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2450 .v.func = alc889_fixup_imac91_vref,
2451 .chained = true,
2452 .chain_id = ALC882_FIXUP_GPIO1,
2453 },
e7729a41
AV
2454 [ALC889_FIXUP_MBA11_VREF] = {
2455 .type = HDA_FIXUP_FUNC,
2456 .v.func = alc889_fixup_mba11_vref,
2457 .chained = true,
2458 .chain_id = ALC889_FIXUP_MBP_VREF,
2459 },
0756f09c
TI
2460 [ALC889_FIXUP_MBA21_VREF] = {
2461 .type = HDA_FIXUP_FUNC,
2462 .v.func = alc889_fixup_mba21_vref,
2463 .chained = true,
2464 .chain_id = ALC889_FIXUP_MBP_VREF,
2465 },
c20f31ec
TI
2466 [ALC889_FIXUP_MP11_VREF] = {
2467 .type = HDA_FIXUP_FUNC,
2468 .v.func = alc889_fixup_mba11_vref,
2469 .chained = true,
2470 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2471 },
9f660a1c
MK
2472 [ALC889_FIXUP_MP41_VREF] = {
2473 .type = HDA_FIXUP_FUNC,
2474 .v.func = alc889_fixup_mbp_vref,
2475 .chained = true,
2476 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2477 },
6e72aa5f 2478 [ALC882_FIXUP_INV_DMIC] = {
1727a771 2479 .type = HDA_FIXUP_FUNC,
9d36a7dc 2480 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2481 },
e427c237 2482 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 2483 .type = HDA_FIXUP_FUNC,
e427c237
TI
2484 .v.func = alc882_fixup_no_primary_hp,
2485 },
1f0bbf03
TI
2486 [ALC887_FIXUP_ASUS_BASS] = {
2487 .type = HDA_FIXUP_PINS,
2488 .v.pins = (const struct hda_pintbl[]) {
2489 {0x16, 0x99130130}, /* bass speaker */
2490 {}
2491 },
eb9ca3ab
TI
2492 .chained = true,
2493 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2494 },
2495 [ALC887_FIXUP_BASS_CHMAP] = {
2496 .type = HDA_FIXUP_FUNC,
2497 .v.func = alc_fixup_bass_chmap,
1f0bbf03 2498 },
7beb3a6e
TI
2499 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2500 .type = HDA_FIXUP_FUNC,
2501 .v.func = alc1220_fixup_gb_dual_codecs,
2502 },
c1933008
CL
2503 [ALC1220_FIXUP_GB_X570] = {
2504 .type = HDA_FIXUP_FUNC,
2505 .v.func = alc1220_fixup_gb_x570,
2506 },
0202f5cd
P
2507 [ALC1220_FIXUP_CLEVO_P950] = {
2508 .type = HDA_FIXUP_FUNC,
2509 .v.func = alc1220_fixup_clevo_p950,
2510 },
80690a27 2511 [ALC1220_FIXUP_CLEVO_PB51ED] = {
7f665b1c 2512 .type = HDA_FIXUP_FUNC,
80690a27 2513 .v.func = alc1220_fixup_clevo_pb51ed,
7f665b1c 2514 },
80690a27 2515 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
7f665b1c
JS
2516 .type = HDA_FIXUP_PINS,
2517 .v.pins = (const struct hda_pintbl[]) {
2518 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2519 {}
2520 },
2521 .chained = true,
80690a27 2522 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
7f665b1c 2523 },
ca184355
JHP
2524 [ALC887_FIXUP_ASUS_AUDIO] = {
2525 .type = HDA_FIXUP_PINS,
2526 .v.pins = (const struct hda_pintbl[]) {
2527 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2528 { 0x19, 0x22219420 },
2529 {}
2530 },
2531 },
2532 [ALC887_FIXUP_ASUS_HMIC] = {
2533 .type = HDA_FIXUP_FUNC,
2534 .v.func = alc887_fixup_asus_jack,
2535 .chained = true,
2536 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2537 },
9bfa7b36
ML
2538 [ALCS1200A_FIXUP_MIC_VREF] = {
2539 .type = HDA_FIXUP_PINCTLS,
2540 .v.pins = (const struct hda_pintbl[]) {
2541 { 0x18, PIN_VREF50 }, /* rear mic */
2542 { 0x19, PIN_VREF50 }, /* front mic */
2543 {}
2544 }
2545 },
baaacbff
KY
2546 [ALC888VD_FIXUP_MIC_100VREF] = {
2547 .type = HDA_FIXUP_PINCTLS,
2548 .v.pins = (const struct hda_pintbl[]) {
2549 { 0x18, PIN_VREF100 }, /* headset mic */
2550 {}
2551 }
2552 },
ff818c24
TI
2553};
2554
1d045db9 2555static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
2556 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2557 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
b5d724b1 2558 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
8812c4f9
TI
2559 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2560 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2561 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2562 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
2563 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2564 ALC882_FIXUP_ACER_ASPIRE_4930G),
2565 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2566 ALC882_FIXUP_ACER_ASPIRE_4930G),
2567 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2568 ALC882_FIXUP_ACER_ASPIRE_8930G),
2569 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2570 ALC882_FIXUP_ACER_ASPIRE_8930G),
b265047a
TI
2571 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2572 ALC882_FIXUP_ACER_ASPIRE_4930G),
2573 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
c3e837bb
TI
2574 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2575 ALC882_FIXUP_ACER_ASPIRE_4930G),
2576 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2577 ALC882_FIXUP_ACER_ASPIRE_4930G),
f5c53d89
TI
2578 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2579 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 2580 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 2581 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 2582 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 2583 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 2584 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 2585 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
ca184355 2586 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
0e7cc2e7 2587 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
1f0bbf03 2588 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
85bcf96c 2589 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
9bfa7b36 2590 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
b7529c18
TI
2591 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2592 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
ac9b1cdd 2593 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2594 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
3f3c3714 2595 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2596
2597 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2598 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2599 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2600 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
c20f31ec 2601 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
5671087f
TI
2602 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2603 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2604 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2605 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2606 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
e7729a41 2607 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
0756f09c 2608 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
1a97b7f2
TI
2609 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2610 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2611 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2612 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2613 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2614 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
9f660a1c 2615 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
05193639 2616 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2617 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2618 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
649ccd08 2619 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
5671087f 2620
7a6069bf 2621 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
baaacbff 2622 SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF),
4841b8e6 2623 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
b2c53e20 2624 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
7beb3a6e 2625 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
c1933008 2626 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
ea354196 2627 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
41a86013 2628 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
a0b03952 2629 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
a655e2b1 2630 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
09926202 2631 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
1d3aa4a5 2632 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
7dafba37 2633 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
cc5049ae 2634 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
d2c3b14e 2635 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
26af1772 2636 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
63691587 2637 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
d2c3b14e 2638 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5c0ebfbe 2639 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
36d4d213 2640 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd
TI
2641 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2643 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2644 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2645 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
aef454b4 2646 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
9eb6f5c3 2647 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
b7a58228 2648 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd
TI
2649 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2650 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2651 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
dbfe8350 2652 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
d4995121 2653 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd 2654 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
1f8d398e 2655 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
cc03069a 2656 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
0202f5cd 2657 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2658 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
13e1a4cd 2659 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
f3d737b6 2660 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2f0d520a 2661 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
b5acfe15
PH
2662 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2663 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2664 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2665 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
503d90b3
RS
2666 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2667 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2668 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
b7a58228 2669 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
7a6069bf
TI
2670 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2671 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2672 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2673 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2674 {}
2675};
2676
1727a771 2677static const struct hda_model_fixup alc882_fixup_models[] = {
772c2917
TI
2678 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2679 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2680 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2681 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2682 {.id = ALC889_FIXUP_CD, .name = "cd"},
2683 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2684 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2685 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2686 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2687 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2688 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2689 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2690 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2691 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2692 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
912093bc
TI
2693 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2694 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2695 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
772c2917
TI
2696 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2697 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2698 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2699 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2700 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2701 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2702 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2703 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
6e72aa5f 2704 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2705 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
772c2917 2706 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
ba90d6a6 2707 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
63394a16 2708 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
772c2917 2709 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
912093bc
TI
2710 {}
2711};
2712
119b75c1
HW
2713static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2714 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2715 {0x14, 0x01014010},
2716 {0x15, 0x01011012},
2717 {0x16, 0x01016011},
2718 {0x18, 0x01a19040},
2719 {0x19, 0x02a19050},
2720 {0x1a, 0x0181304f},
2721 {0x1b, 0x0221401f},
2722 {0x1e, 0x01456130}),
2723 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2724 {0x14, 0x01015010},
2725 {0x15, 0x01011012},
2726 {0x16, 0x01011011},
2727 {0x18, 0x01a11040},
2728 {0x19, 0x02a19050},
2729 {0x1a, 0x0181104f},
2730 {0x1b, 0x0221401f},
2731 {0x1e, 0x01451130}),
2732 {}
2733};
2734
f6a92248 2735/*
1d045db9 2736 * BIOS auto configuration
f6a92248 2737 */
1d045db9
TI
2738/* almost identical with ALC880 parser... */
2739static int alc882_parse_auto_config(struct hda_codec *codec)
2740{
1d045db9 2741 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2742 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2743 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2744}
b896b4eb 2745
1d045db9
TI
2746/*
2747 */
1d045db9 2748static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2749{
2750 struct alc_spec *spec;
1a97b7f2 2751 int err;
f6a92248 2752
3de95173
TI
2753 err = alc_alloc_spec(codec, 0x0b);
2754 if (err < 0)
2755 return err;
f6a92248 2756
3de95173 2757 spec = codec->spec;
1f0f4b80 2758
7639a06c 2759 switch (codec->core.vendor_id) {
1d045db9
TI
2760 case 0x10ec0882:
2761 case 0x10ec0885:
acf08081 2762 case 0x10ec0900:
6d9ffcff 2763 case 0x10ec0b00:
a535ad57 2764 case 0x10ec1220:
1d045db9
TI
2765 break;
2766 default:
2767 /* ALC883 and variants */
2768 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2769 break;
c793bec5 2770 }
977ddd6b 2771
c9af753f
TI
2772 alc_pre_init(codec);
2773
1727a771 2774 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2775 alc882_fixups);
119b75c1 2776 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
1727a771 2777 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2778
1d045db9
TI
2779 alc_auto_parse_customize_define(codec);
2780
7504b6cd
TI
2781 if (has_cdefine_beep(codec))
2782 spec->gen.beep_nid = 0x01;
2783
1a97b7f2
TI
2784 /* automatic parse from the BIOS config */
2785 err = alc882_parse_auto_config(codec);
2786 if (err < 0)
2787 goto error;
f6a92248 2788
fea80fae
TI
2789 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2790 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2791 if (err < 0)
2792 goto error;
2793 }
f6a92248 2794
1727a771 2795 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2796
f6a92248 2797 return 0;
e16fb6d1
TI
2798
2799 error:
2800 alc_free(codec);
2801 return err;
f6a92248
KY
2802}
2803
df694daa 2804
df694daa 2805/*
1d045db9 2806 * ALC262 support
df694daa 2807 */
1d045db9 2808static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2809{
1d045db9 2810 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2811 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2812 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2813}
2814
df694daa 2815/*
1d045db9 2816 * Pin config fixes
df694daa 2817 */
cfc9b06f 2818enum {
ea4e7af1 2819 ALC262_FIXUP_FSC_H270,
7513e6da 2820 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2821 ALC262_FIXUP_HP_Z200,
2822 ALC262_FIXUP_TYAN,
c470150c 2823 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2824 ALC262_FIXUP_BENQ,
2825 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2826 ALC262_FIXUP_INV_DMIC,
b5c6611f 2827 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2828};
2829
1727a771 2830static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2831 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2832 .type = HDA_FIXUP_PINS,
2833 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2834 { 0x14, 0x99130110 }, /* speaker */
2835 { 0x15, 0x0221142f }, /* front HP */
2836 { 0x1b, 0x0121141f }, /* rear HP */
2837 { }
2838 }
2839 },
7513e6da
TI
2840 [ALC262_FIXUP_FSC_S7110] = {
2841 .type = HDA_FIXUP_PINS,
2842 .v.pins = (const struct hda_pintbl[]) {
2843 { 0x15, 0x90170110 }, /* speaker */
2844 { }
2845 },
2846 .chained = true,
2847 .chain_id = ALC262_FIXUP_BENQ,
2848 },
ea4e7af1 2849 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2850 .type = HDA_FIXUP_PINS,
2851 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2852 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2853 { }
2854 }
cfc9b06f 2855 },
ea4e7af1 2856 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2857 .type = HDA_FIXUP_PINS,
2858 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2859 { 0x14, 0x1993e1f0 }, /* int AUX */
2860 { }
2861 }
2862 },
c470150c 2863 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2864 .type = HDA_FIXUP_PINCTLS,
2865 .v.pins = (const struct hda_pintbl[]) {
2866 { 0x19, PIN_VREF50 },
b42590b8
TI
2867 {}
2868 },
2869 .chained = true,
2870 .chain_id = ALC262_FIXUP_BENQ,
2871 },
2872 [ALC262_FIXUP_BENQ] = {
1727a771 2873 .type = HDA_FIXUP_VERBS,
b42590b8 2874 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2875 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2876 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2877 {}
2878 }
2879 },
b42590b8 2880 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2881 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2882 .v.verbs = (const struct hda_verb[]) {
2883 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2884 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2885 {}
2886 }
2887 },
6e72aa5f 2888 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2889 .type = HDA_FIXUP_FUNC,
9d36a7dc 2890 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2891 },
b5c6611f
ML
2892 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2893 .type = HDA_FIXUP_FUNC,
2894 .v.func = alc_fixup_no_depop_delay,
2895 },
cfc9b06f
TI
2896};
2897
1d045db9 2898static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2899 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2900 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2901 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1 2902 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
275ec0cb 2903 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
ea4e7af1 2904 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2905 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2906 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2907 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2908 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2909 {}
2910};
df694daa 2911
1727a771 2912static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f 2913 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
e43c44d6
TI
2914 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2915 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2916 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2917 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2918 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2919 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2920 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2921 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
6e72aa5f
TI
2922 {}
2923};
1d045db9 2924
1d045db9
TI
2925/*
2926 */
1d045db9 2927static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2928{
2929 struct alc_spec *spec;
df694daa
KY
2930 int err;
2931
3de95173
TI
2932 err = alc_alloc_spec(codec, 0x0b);
2933 if (err < 0)
2934 return err;
df694daa 2935
3de95173 2936 spec = codec->spec;
08c189f2 2937 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9 2938
225068ab
TI
2939 spec->shutup = alc_eapd_shutup;
2940
1d045db9
TI
2941#if 0
2942 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2943 * under-run
2944 */
98b24883 2945 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
1d045db9 2946#endif
1d045db9
TI
2947 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2948
c9af753f
TI
2949 alc_pre_init(codec);
2950
1727a771 2951 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2952 alc262_fixups);
1727a771 2953 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2954
af741c15
TI
2955 alc_auto_parse_customize_define(codec);
2956
7504b6cd
TI
2957 if (has_cdefine_beep(codec))
2958 spec->gen.beep_nid = 0x01;
2959
42399f7a
TI
2960 /* automatic parse from the BIOS config */
2961 err = alc262_parse_auto_config(codec);
2962 if (err < 0)
2963 goto error;
df694daa 2964
fea80fae
TI
2965 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2966 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2967 if (err < 0)
2968 goto error;
2969 }
2134ea4f 2970
1727a771 2971 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2972
1da177e4 2973 return 0;
e16fb6d1
TI
2974
2975 error:
2976 alc_free(codec);
2977 return err;
1da177e4
LT
2978}
2979
f32610ed 2980/*
1d045db9 2981 * ALC268
f32610ed 2982 */
1d045db9 2983/* bind Beep switches of both NID 0x0f and 0x10 */
a717777d
TI
2984static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2985 struct snd_ctl_elem_value *ucontrol)
2986{
2987 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2988 unsigned long pval;
2989 int err;
2990
2991 mutex_lock(&codec->control_mutex);
2992 pval = kcontrol->private_value;
2993 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2994 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2995 if (err >= 0) {
2996 kcontrol->private_value = (pval & ~0xff) | 0x10;
2997 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2998 }
2999 kcontrol->private_value = pval;
3000 mutex_unlock(&codec->control_mutex);
3001 return err;
3002}
f32610ed 3003
1d045db9
TI
3004static const struct snd_kcontrol_new alc268_beep_mixer[] = {
3005 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
a717777d
TI
3006 {
3007 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3008 .name = "Beep Playback Switch",
3009 .subdevice = HDA_SUBDEV_AMP_FLAG,
3010 .info = snd_hda_mixer_amp_switch_info,
3011 .get = snd_hda_mixer_amp_switch_get,
3012 .put = alc268_beep_switch_put,
3013 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3014 },
f32610ed
JS
3015};
3016
1d045db9
TI
3017/* set PCBEEP vol = 0, mute connections */
3018static const struct hda_verb alc268_beep_init_verbs[] = {
3019 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3020 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3021 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3022 { }
f32610ed
JS
3023};
3024
6e72aa5f
TI
3025enum {
3026 ALC268_FIXUP_INV_DMIC,
cb766404 3027 ALC268_FIXUP_HP_EAPD,
24eff328 3028 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
3029};
3030
1727a771 3031static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 3032 [ALC268_FIXUP_INV_DMIC] = {
1727a771 3033 .type = HDA_FIXUP_FUNC,
9d36a7dc 3034 .v.func = alc_fixup_inv_dmic,
6e72aa5f 3035 },
cb766404 3036 [ALC268_FIXUP_HP_EAPD] = {
1727a771 3037 .type = HDA_FIXUP_VERBS,
cb766404
TI
3038 .v.verbs = (const struct hda_verb[]) {
3039 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3040 {}
3041 }
3042 },
24eff328
TI
3043 [ALC268_FIXUP_SPDIF] = {
3044 .type = HDA_FIXUP_PINS,
3045 .v.pins = (const struct hda_pintbl[]) {
3046 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3047 {}
3048 }
3049 },
6e72aa5f
TI
3050};
3051
1727a771 3052static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 3053 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404 3054 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
03bf11c9 3055 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
cb766404
TI
3056 {}
3057};
3058
3059static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 3060 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 3061 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
3062 /* below is codec SSID since multiple Toshiba laptops have the
3063 * same PCI SSID 1179:ff00
3064 */
3065 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
3066 {}
3067};
3068
f32610ed
JS
3069/*
3070 * BIOS auto configuration
3071 */
1d045db9 3072static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 3073{
3e6179b8 3074 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 3075 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
3076}
3077
1d045db9
TI
3078/*
3079 */
1d045db9 3080static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
3081{
3082 struct alc_spec *spec;
a5cb463a 3083 int i, err;
f32610ed 3084
1d045db9 3085 /* ALC268 has no aa-loopback mixer */
3de95173
TI
3086 err = alc_alloc_spec(codec, 0);
3087 if (err < 0)
3088 return err;
3089
3090 spec = codec->spec;
2722b535
TI
3091 if (has_cdefine_beep(codec))
3092 spec->gen.beep_nid = 0x01;
1f0f4b80 3093
225068ab
TI
3094 spec->shutup = alc_eapd_shutup;
3095
c9af753f
TI
3096 alc_pre_init(codec);
3097
1727a771
TI
3098 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3099 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 3100
6ebb8053
TI
3101 /* automatic parse from the BIOS config */
3102 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
3103 if (err < 0)
3104 goto error;
f32610ed 3105
7504b6cd
TI
3106 if (err > 0 && !spec->gen.no_analog &&
3107 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
a5cb463a
TI
3108 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3109 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3110 &alc268_beep_mixer[i])) {
3111 err = -ENOMEM;
3112 goto error;
3113 }
3114 }
7504b6cd 3115 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
3116 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3117 /* override the amp caps for beep generator */
3118 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3119 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3120 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3121 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3122 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
3123 }
3124
1727a771 3125 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 3126
f32610ed 3127 return 0;
e16fb6d1
TI
3128
3129 error:
3130 alc_free(codec);
3131 return err;
f32610ed
JS
3132}
3133
bc9f98a9 3134/*
1d045db9 3135 * ALC269
bc9f98a9 3136 */
08c189f2 3137
1d045db9 3138static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
1d045db9 3139 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9
KY
3140};
3141
1d045db9 3142static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
1d045db9 3143 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9 3144};
291702f0 3145
1d045db9
TI
3146/* different alc269-variants */
3147enum {
3148 ALC269_TYPE_ALC269VA,
3149 ALC269_TYPE_ALC269VB,
3150 ALC269_TYPE_ALC269VC,
adcc70b2 3151 ALC269_TYPE_ALC269VD,
065380f0
KY
3152 ALC269_TYPE_ALC280,
3153 ALC269_TYPE_ALC282,
2af02be7 3154 ALC269_TYPE_ALC283,
065380f0 3155 ALC269_TYPE_ALC284,
4731d5de 3156 ALC269_TYPE_ALC293,
7fc7d047 3157 ALC269_TYPE_ALC286,
506b62c3 3158 ALC269_TYPE_ALC298,
1d04c9de 3159 ALC269_TYPE_ALC255,
4344aec8 3160 ALC269_TYPE_ALC256,
f429e7e4 3161 ALC269_TYPE_ALC257,
0a6f0600 3162 ALC269_TYPE_ALC215,
4231430d 3163 ALC269_TYPE_ALC225,
60571929 3164 ALC269_TYPE_ALC245,
99cee034 3165 ALC269_TYPE_ALC287,
dcd4f0db 3166 ALC269_TYPE_ALC294,
1078bef0 3167 ALC269_TYPE_ALC300,
f0778871 3168 ALC269_TYPE_ALC623,
6fbae35a 3169 ALC269_TYPE_ALC700,
bc9f98a9
KY
3170};
3171
3172/*
1d045db9 3173 * BIOS auto configuration
bc9f98a9 3174 */
1d045db9
TI
3175static int alc269_parse_auto_config(struct hda_codec *codec)
3176{
1d045db9 3177 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3178 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3179 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3180 struct alc_spec *spec = codec->spec;
adcc70b2
KY
3181 const hda_nid_t *ssids;
3182
3183 switch (spec->codec_variant) {
3184 case ALC269_TYPE_ALC269VA:
3185 case ALC269_TYPE_ALC269VC:
065380f0
KY
3186 case ALC269_TYPE_ALC280:
3187 case ALC269_TYPE_ALC284:
4731d5de 3188 case ALC269_TYPE_ALC293:
adcc70b2
KY
3189 ssids = alc269va_ssids;
3190 break;
3191 case ALC269_TYPE_ALC269VB:
3192 case ALC269_TYPE_ALC269VD:
065380f0 3193 case ALC269_TYPE_ALC282:
2af02be7 3194 case ALC269_TYPE_ALC283:
7fc7d047 3195 case ALC269_TYPE_ALC286:
506b62c3 3196 case ALC269_TYPE_ALC298:
1d04c9de 3197 case ALC269_TYPE_ALC255:
4344aec8 3198 case ALC269_TYPE_ALC256:
f429e7e4 3199 case ALC269_TYPE_ALC257:
0a6f0600 3200 case ALC269_TYPE_ALC215:
4231430d 3201 case ALC269_TYPE_ALC225:
60571929 3202 case ALC269_TYPE_ALC245:
99cee034 3203 case ALC269_TYPE_ALC287:
dcd4f0db 3204 case ALC269_TYPE_ALC294:
1078bef0 3205 case ALC269_TYPE_ALC300:
f0778871 3206 case ALC269_TYPE_ALC623:
6fbae35a 3207 case ALC269_TYPE_ALC700:
adcc70b2
KY
3208 ssids = alc269_ssids;
3209 break;
3210 default:
3211 ssids = alc269_ssids;
3212 break;
3213 }
bc9f98a9 3214
3e6179b8 3215 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 3216}
bc9f98a9 3217
476c02e0
HW
3218static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3219 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3220 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3221 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3222 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3223 {}
3224};
3225
3226static void alc_headset_btn_callback(struct hda_codec *codec,
3227 struct hda_jack_callback *jack)
3228{
3229 int report = 0;
3230
3231 if (jack->unsol_res & (7 << 13))
3232 report |= SND_JACK_BTN_0;
3233
3234 if (jack->unsol_res & (1 << 16 | 3 << 8))
3235 report |= SND_JACK_BTN_1;
3236
3237 /* Volume up key */
3238 if (jack->unsol_res & (7 << 23))
3239 report |= SND_JACK_BTN_2;
3240
3241 /* Volume down key */
3242 if (jack->unsol_res & (7 << 10))
3243 report |= SND_JACK_BTN_3;
3244
04f7791b 3245 snd_hda_jack_set_button_state(codec, jack->nid, report);
476c02e0
HW
3246}
3247
3248static void alc_disable_headset_jack_key(struct hda_codec *codec)
3249{
3250 struct alc_spec *spec = codec->spec;
3251
3252 if (!spec->has_hs_key)
3253 return;
3254
3255 switch (codec->core.vendor_id) {
3256 case 0x10ec0215:
3257 case 0x10ec0225:
3258 case 0x10ec0285:
c72b9bfe 3259 case 0x10ec0287:
476c02e0
HW
3260 case 0x10ec0295:
3261 case 0x10ec0289:
3262 case 0x10ec0299:
3263 alc_write_coef_idx(codec, 0x48, 0x0);
3264 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3265 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3266 break;
1948fc06 3267 case 0x10ec0230:
476c02e0
HW
3268 case 0x10ec0236:
3269 case 0x10ec0256:
cae2bdb5 3270 case 0x10ec0257:
527f4643 3271 case 0x19e58326:
476c02e0
HW
3272 alc_write_coef_idx(codec, 0x48, 0x0);
3273 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3274 break;
3275 }
3276}
3277
3278static void alc_enable_headset_jack_key(struct hda_codec *codec)
3279{
3280 struct alc_spec *spec = codec->spec;
3281
3282 if (!spec->has_hs_key)
3283 return;
3284
3285 switch (codec->core.vendor_id) {
3286 case 0x10ec0215:
3287 case 0x10ec0225:
3288 case 0x10ec0285:
c72b9bfe 3289 case 0x10ec0287:
476c02e0
HW
3290 case 0x10ec0295:
3291 case 0x10ec0289:
3292 case 0x10ec0299:
3293 alc_write_coef_idx(codec, 0x48, 0xd011);
3294 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3295 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3296 break;
1948fc06 3297 case 0x10ec0230:
476c02e0
HW
3298 case 0x10ec0236:
3299 case 0x10ec0256:
cae2bdb5 3300 case 0x10ec0257:
527f4643 3301 case 0x19e58326:
476c02e0
HW
3302 alc_write_coef_idx(codec, 0x48, 0xd011);
3303 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3304 break;
3305 }
3306}
3307
3308static void alc_fixup_headset_jack(struct hda_codec *codec,
3309 const struct hda_fixup *fix, int action)
3310{
3311 struct alc_spec *spec = codec->spec;
04f7791b 3312 hda_nid_t hp_pin;
476c02e0
HW
3313
3314 switch (action) {
3315 case HDA_FIXUP_ACT_PRE_PROBE:
3316 spec->has_hs_key = 1;
3317 snd_hda_jack_detect_enable_callback(codec, 0x55,
3318 alc_headset_btn_callback);
476c02e0 3319 break;
04f7791b
HW
3320 case HDA_FIXUP_ACT_BUILD:
3321 hp_pin = alc_get_hp_pin(spec);
3322 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3323 alc_headset_btn_keymap,
3324 hp_pin))
3325 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3326 false, SND_JACK_HEADSET,
3327 alc_headset_btn_keymap);
3328
476c02e0
HW
3329 alc_enable_headset_jack_key(codec);
3330 break;
3331 }
3332}
3333
1387e2d1 3334static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9 3335{
98b24883 3336 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
1d045db9 3337}
291702f0 3338
1d045db9
TI
3339static void alc269_shutup(struct hda_codec *codec)
3340{
adcc70b2
KY
3341 struct alc_spec *spec = codec->spec;
3342
1387e2d1
KY
3343 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3344 alc269vb_toggle_power_output(codec, 0);
3345 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3346 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3347 msleep(150);
3348 }
c0ca5ece 3349 alc_shutup_pins(codec);
1d045db9 3350}
291702f0 3351
6b0f95c4 3352static const struct coef_fw alc282_coefs[] = {
54db6c39 3353 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
32fa7e49 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, 0x6e00), /* LDO1/2/3, DAC/ADC */
3361 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3362 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3363 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3364 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3365 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3366 UPDATE_COEF(0x16, 0x0008, 0), /* 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(0x63, 0x2902), /* PLL */
3371 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3372 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3373 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3374 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3375 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3376 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3377 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3378 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3379 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3380 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3381 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3382 {}
3383};
3384
cb149cb3
KY
3385static void alc282_restore_default_value(struct hda_codec *codec)
3386{
54db6c39 3387 alc_process_coef_fw(codec, alc282_coefs);
cb149cb3
KY
3388}
3389
7b5c7a02
KY
3390static void alc282_init(struct hda_codec *codec)
3391{
3392 struct alc_spec *spec = codec->spec;
35a39f98 3393 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3394 bool hp_pin_sense;
3395 int coef78;
3396
cb149cb3
KY
3397 alc282_restore_default_value(codec);
3398
7b5c7a02
KY
3399 if (!hp_pin)
3400 return;
3401 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3402 coef78 = alc_read_coef_idx(codec, 0x78);
3403
3404 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3405 /* Headphone capless set to high power mode */
3406 alc_write_coef_idx(codec, 0x78, 0x9004);
3407
3408 if (hp_pin_sense)
3409 msleep(2);
3410
3411 snd_hda_codec_write(codec, hp_pin, 0,
3412 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3413
3414 if (hp_pin_sense)
3415 msleep(85);
3416
3417 snd_hda_codec_write(codec, hp_pin, 0,
3418 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3419
3420 if (hp_pin_sense)
3421 msleep(100);
3422
3423 /* Headphone capless set to normal mode */
3424 alc_write_coef_idx(codec, 0x78, coef78);
3425}
3426
3427static void alc282_shutup(struct hda_codec *codec)
3428{
3429 struct alc_spec *spec = codec->spec;
35a39f98 3430 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3431 bool hp_pin_sense;
3432 int coef78;
3433
3434 if (!hp_pin) {
3435 alc269_shutup(codec);
3436 return;
3437 }
3438
3439 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3440 coef78 = alc_read_coef_idx(codec, 0x78);
3441 alc_write_coef_idx(codec, 0x78, 0x9004);
3442
3443 if (hp_pin_sense)
3444 msleep(2);
3445
3446 snd_hda_codec_write(codec, hp_pin, 0,
3447 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3448
3449 if (hp_pin_sense)
3450 msleep(85);
3451
c0ca5ece
TI
3452 if (!spec->no_shutup_pins)
3453 snd_hda_codec_write(codec, hp_pin, 0,
3454 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
7b5c7a02
KY
3455
3456 if (hp_pin_sense)
3457 msleep(100);
3458
3459 alc_auto_setup_eapd(codec, false);
c0ca5ece 3460 alc_shutup_pins(codec);
7b5c7a02
KY
3461 alc_write_coef_idx(codec, 0x78, coef78);
3462}
3463
6b0f95c4 3464static const struct coef_fw alc283_coefs[] = {
54db6c39 3465 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
56779864 3466 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3467 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3468 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3469 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3470 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3471 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3472 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3473 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3474 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3475 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3476 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3477 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3478 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3479 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3480 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3481 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3482 WRITE_COEF(0x2e, 0x2902), /* PLL */
3483 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3484 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3485 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3486 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3487 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3488 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3489 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3490 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3491 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3492 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3493 WRITE_COEF(0x49, 0x0), /* test mode */
3494 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3495 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3496 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
56779864 3497 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
54db6c39
TI
3498 {}
3499};
3500
6bd55b04
KY
3501static void alc283_restore_default_value(struct hda_codec *codec)
3502{
54db6c39 3503 alc_process_coef_fw(codec, alc283_coefs);
6bd55b04
KY
3504}
3505
2af02be7
KY
3506static void alc283_init(struct hda_codec *codec)
3507{
3508 struct alc_spec *spec = codec->spec;
35a39f98 3509 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3510 bool hp_pin_sense;
2af02be7 3511
6bd55b04
KY
3512 alc283_restore_default_value(codec);
3513
2af02be7
KY
3514 if (!hp_pin)
3515 return;
a59d7199
KY
3516
3517 msleep(30);
2af02be7
KY
3518 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3519
3520 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3521 /* Headphone capless set to high power mode */
3522 alc_write_coef_idx(codec, 0x43, 0x9004);
3523
3524 snd_hda_codec_write(codec, hp_pin, 0,
3525 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3526
3527 if (hp_pin_sense)
3528 msleep(85);
3529
3530 snd_hda_codec_write(codec, hp_pin, 0,
3531 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3532
3533 if (hp_pin_sense)
3534 msleep(85);
3535 /* Index 0x46 Combo jack auto switch control 2 */
3536 /* 3k pull low control for Headset jack. */
98b24883 3537 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2af02be7
KY
3538 /* Headphone capless set to normal mode */
3539 alc_write_coef_idx(codec, 0x43, 0x9614);
3540}
3541
3542static void alc283_shutup(struct hda_codec *codec)
3543{
3544 struct alc_spec *spec = codec->spec;
35a39f98 3545 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3546 bool hp_pin_sense;
2af02be7
KY
3547
3548 if (!hp_pin) {
3549 alc269_shutup(codec);
3550 return;
3551 }
3552
3553 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3554
3555 alc_write_coef_idx(codec, 0x43, 0x9004);
3556
b450b17c
HP
3557 /*depop hp during suspend*/
3558 alc_write_coef_idx(codec, 0x06, 0x2100);
3559
2af02be7
KY
3560 snd_hda_codec_write(codec, hp_pin, 0,
3561 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3562
3563 if (hp_pin_sense)
88011c09 3564 msleep(100);
2af02be7 3565
c0ca5ece
TI
3566 if (!spec->no_shutup_pins)
3567 snd_hda_codec_write(codec, hp_pin, 0,
3568 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2af02be7 3569
98b24883 3570 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2af02be7
KY
3571
3572 if (hp_pin_sense)
88011c09 3573 msleep(100);
0435b3ff 3574 alc_auto_setup_eapd(codec, false);
c0ca5ece 3575 alc_shutup_pins(codec);
2af02be7
KY
3576 alc_write_coef_idx(codec, 0x43, 0x9614);
3577}
3578
4a219ef8
KY
3579static void alc256_init(struct hda_codec *codec)
3580{
3581 struct alc_spec *spec = codec->spec;
35a39f98 3582 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3583 bool hp_pin_sense;
3584
1f680609
YY
3585 if (spec->ultra_low_power) {
3586 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3587 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3588 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3589 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3590 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3591 msleep(30);
3592 }
3593
4a219ef8 3594 if (!hp_pin)
6447c962 3595 hp_pin = 0x21;
4a219ef8
KY
3596
3597 msleep(30);
3598
3599 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3600
3601 if (hp_pin_sense)
3602 msleep(2);
3603
3604 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3605
3606 snd_hda_codec_write(codec, hp_pin, 0,
3607 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3608
6447c962 3609 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3610 msleep(85);
3611
3612 snd_hda_codec_write(codec, hp_pin, 0,
3613 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3614
6447c962 3615 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3616 msleep(100);
3617
3618 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3619 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
88d42b2b
KY
3620 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3621 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
c4473744
TH
3622 /*
3623 * Expose headphone mic (or possibly Line In on some machines) instead
3624 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3625 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3626 * this register.
3627 */
3628 alc_write_coef_idx(codec, 0x36, 0x5757);
4a219ef8
KY
3629}
3630
3631static void alc256_shutup(struct hda_codec *codec)
3632{
3633 struct alc_spec *spec = codec->spec;
35a39f98 3634 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3635 bool hp_pin_sense;
3636
6447c962
KY
3637 if (!hp_pin)
3638 hp_pin = 0x21;
4a219ef8 3639
69ea4c9d 3640 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
4a219ef8
KY
3641 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3642
3643 if (hp_pin_sense)
3644 msleep(2);
3645
3646 snd_hda_codec_write(codec, hp_pin, 0,
3647 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3648
6447c962 3649 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3650 msleep(85);
3651
1c9609e3
TI
3652 /* 3k pull low control for Headset jack. */
3653 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3f742490
HW
3654 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3655 * when booting with headset plugged. So skip setting it for the codec alc257
3656 */
69ea4c9d 3657 if (spec->en_3kpull_low)
3f742490 3658 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
1c9609e3 3659
c0ca5ece
TI
3660 if (!spec->no_shutup_pins)
3661 snd_hda_codec_write(codec, hp_pin, 0,
3662 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4a219ef8 3663
6447c962 3664 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3665 msleep(100);
3666
3667 alc_auto_setup_eapd(codec, false);
c0ca5ece 3668 alc_shutup_pins(codec);
6447c962
KY
3669 if (spec->ultra_low_power) {
3670 msleep(50);
3671 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3672 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3673 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3674 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3675 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3676 msleep(30);
3677 }
4a219ef8
KY
3678}
3679
3c24e483
KY
3680static void alc285_hp_init(struct hda_codec *codec)
3681{
3682 struct alc_spec *spec = codec->spec;
3683 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3684 int i, val;
3685 int coef38, coef0d, coef36;
3686
3687 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3688 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3689 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3690 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3691 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3692 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3693
3694 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3695
3696 if (hp_pin)
3697 snd_hda_codec_write(codec, hp_pin, 0,
3698 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3699
3700 msleep(130);
3701 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3702 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3703
3704 if (hp_pin)
3705 snd_hda_codec_write(codec, hp_pin, 0,
3706 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3707 msleep(10);
3708 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3709 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3710 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3711 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3712
3713 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3714 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3715 for (i = 0; i < 20 && val & 0x8000; i++) {
3716 msleep(50);
3717 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3718 } /* Wait for depop procedure finish */
3719
3720 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3721 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3722 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3723 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3724
3725 msleep(50);
3726 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3727}
3728
da911b1f
KY
3729static void alc225_init(struct hda_codec *codec)
3730{
3731 struct alc_spec *spec = codec->spec;
35a39f98 3732 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3733 bool hp1_pin_sense, hp2_pin_sense;
3734
1f680609
YY
3735 if (spec->ultra_low_power) {
3736 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3737 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3738 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3739 msleep(30);
3740 }
3741
60571929
KY
3742 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3743 spec->codec_variant != ALC269_TYPE_ALC245)
3c24e483
KY
3744 /* required only at boot or S3 and S4 resume time */
3745 if (!spec->done_hp_init ||
3746 is_s3_resume(codec) ||
3747 is_s4_resume(codec)) {
3748 alc285_hp_init(codec);
3749 spec->done_hp_init = true;
3750 }
3751
da911b1f 3752 if (!hp_pin)
d3ba58bb 3753 hp_pin = 0x21;
da911b1f
KY
3754 msleep(30);
3755
3756 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3757 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3758
3759 if (hp1_pin_sense || hp2_pin_sense)
3760 msleep(2);
3761
3762 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3763
d3ba58bb 3764 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3765 snd_hda_codec_write(codec, hp_pin, 0,
3766 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3767 if (hp2_pin_sense)
3768 snd_hda_codec_write(codec, 0x16, 0,
3769 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3770
d3ba58bb 3771 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3772 msleep(85);
3773
d3ba58bb 3774 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3775 snd_hda_codec_write(codec, hp_pin, 0,
3776 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3777 if (hp2_pin_sense)
3778 snd_hda_codec_write(codec, 0x16, 0,
3779 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3780
d3ba58bb 3781 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3782 msleep(100);
3783
3784 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3785 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3786}
3787
3788static void alc225_shutup(struct hda_codec *codec)
3789{
3790 struct alc_spec *spec = codec->spec;
35a39f98 3791 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3792 bool hp1_pin_sense, hp2_pin_sense;
3793
d3ba58bb
KY
3794 if (!hp_pin)
3795 hp_pin = 0x21;
476c02e0
HW
3796
3797 alc_disable_headset_jack_key(codec);
da911b1f
KY
3798 /* 3k pull low control for Headset jack. */
3799 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3800
3801 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3802 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3803
3804 if (hp1_pin_sense || hp2_pin_sense)
3805 msleep(2);
3806
d3ba58bb 3807 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3808 snd_hda_codec_write(codec, hp_pin, 0,
3809 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3810 if (hp2_pin_sense)
3811 snd_hda_codec_write(codec, 0x16, 0,
3812 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3813
d3ba58bb 3814 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3815 msleep(85);
3816
d3ba58bb 3817 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3818 snd_hda_codec_write(codec, hp_pin, 0,
3819 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3820 if (hp2_pin_sense)
3821 snd_hda_codec_write(codec, 0x16, 0,
3822 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3823
d3ba58bb 3824 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3825 msleep(100);
3826
3827 alc_auto_setup_eapd(codec, false);
c0ca5ece 3828 alc_shutup_pins(codec);
d3ba58bb
KY
3829 if (spec->ultra_low_power) {
3830 msleep(50);
3831 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3832 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3833 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3834 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3835 msleep(30);
3836 }
476c02e0
HW
3837
3838 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3839 alc_enable_headset_jack_key(codec);
da911b1f
KY
3840}
3841
c2d6af53
KY
3842static void alc_default_init(struct hda_codec *codec)
3843{
3844 struct alc_spec *spec = codec->spec;
35a39f98 3845 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3846 bool hp_pin_sense;
3847
3848 if (!hp_pin)
3849 return;
3850
3851 msleep(30);
3852
3853 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3854
3855 if (hp_pin_sense)
3856 msleep(2);
3857
3858 snd_hda_codec_write(codec, hp_pin, 0,
3859 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3860
3861 if (hp_pin_sense)
3862 msleep(85);
3863
3864 snd_hda_codec_write(codec, hp_pin, 0,
3865 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3866
3867 if (hp_pin_sense)
3868 msleep(100);
3869}
3870
3871static void alc_default_shutup(struct hda_codec *codec)
3872{
3873 struct alc_spec *spec = codec->spec;
35a39f98 3874 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3875 bool hp_pin_sense;
3876
3877 if (!hp_pin) {
3878 alc269_shutup(codec);
3879 return;
3880 }
3881
3882 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3883
3884 if (hp_pin_sense)
3885 msleep(2);
3886
3887 snd_hda_codec_write(codec, hp_pin, 0,
3888 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3889
3890 if (hp_pin_sense)
3891 msleep(85);
3892
c0ca5ece
TI
3893 if (!spec->no_shutup_pins)
3894 snd_hda_codec_write(codec, hp_pin, 0,
3895 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
c2d6af53
KY
3896
3897 if (hp_pin_sense)
3898 msleep(100);
3899
3900 alc_auto_setup_eapd(codec, false);
c0ca5ece 3901 alc_shutup_pins(codec);
c2d6af53
KY
3902}
3903
693abe11
KY
3904static void alc294_hp_init(struct hda_codec *codec)
3905{
3906 struct alc_spec *spec = codec->spec;
35a39f98 3907 hda_nid_t hp_pin = alc_get_hp_pin(spec);
693abe11
KY
3908 int i, val;
3909
3910 if (!hp_pin)
3911 return;
3912
3913 snd_hda_codec_write(codec, hp_pin, 0,
3914 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3915
3916 msleep(100);
3917
c0ca5ece
TI
3918 if (!spec->no_shutup_pins)
3919 snd_hda_codec_write(codec, hp_pin, 0,
3920 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
693abe11
KY
3921
3922 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3923 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3924
3925 /* Wait for depop procedure finish */
3926 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3927 for (i = 0; i < 20 && val & 0x0080; i++) {
3928 msleep(50);
3929 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3930 }
3931 /* Set HP depop to auto mode */
3932 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3933 msleep(50);
3934}
3935
3936static void alc294_init(struct hda_codec *codec)
3937{
3938 struct alc_spec *spec = codec->spec;
3939
f6ef4e0e
TI
3940 /* required only at boot or S4 resume time */
3941 if (!spec->done_hp_init ||
3942 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
693abe11
KY
3943 alc294_hp_init(codec);
3944 spec->done_hp_init = true;
3945 }
3946 alc_default_init(codec);
3947}
3948
ad60d502
KY
3949static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3950 unsigned int val)
3951{
3952 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3953 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3954 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3955}
3956
3957static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3958{
3959 unsigned int val;
3960
3961 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3962 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3963 & 0xffff;
3964 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3965 << 16;
3966 return val;
3967}
3968
3969static void alc5505_dsp_halt(struct hda_codec *codec)
3970{
3971 unsigned int val;
3972
3973 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3974 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3975 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3976 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3977 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3978 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3979 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3980 val = alc5505_coef_get(codec, 0x6220);
3981 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3982}
3983
3984static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3985{
3986 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3987 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3988 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3989 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3990 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3991 alc5505_coef_set(codec, 0x880c, 0x00000004);
3992}
3993
3994static void alc5505_dsp_init(struct hda_codec *codec)
3995{
3996 unsigned int val;
3997
3998 alc5505_dsp_halt(codec);
3999 alc5505_dsp_back_from_halt(codec);
4000 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
4001 alc5505_coef_set(codec, 0x61b0, 0x5b16);
4002 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
4003 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
4004 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
4005 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
4006 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
4007 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
4008 alc5505_coef_set(codec, 0x61b8, 0x04173302);
4009 alc5505_coef_set(codec, 0x61b8, 0x04163302);
4010 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
4011 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
4012 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4013
4014 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4015 if (val <= 3)
4016 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4017 else
4018 alc5505_coef_set(codec, 0x6220, 0x6002018f);
4019
4020 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4021 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4022 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4023 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4024 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4025 alc5505_coef_set(codec, 0x880c, 0x00000003);
4026 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
4027
4028#ifdef HALT_REALTEK_ALC5505
4029 alc5505_dsp_halt(codec);
4030#endif
ad60d502
KY
4031}
4032
cd63a5ff 4033#ifdef HALT_REALTEK_ALC5505
8a71821f
PLB
4034#define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4035#define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
cd63a5ff
TI
4036#else
4037#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4038#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4039#endif
4040
2a43952a 4041#ifdef CONFIG_PM
ad60d502
KY
4042static int alc269_suspend(struct hda_codec *codec)
4043{
4044 struct alc_spec *spec = codec->spec;
4045
4046 if (spec->has_alc5505_dsp)
cd63a5ff 4047 alc5505_dsp_suspend(codec);
1873ebd3 4048
ad60d502
KY
4049 return alc_suspend(codec);
4050}
4051
1d045db9
TI
4052static int alc269_resume(struct hda_codec *codec)
4053{
adcc70b2
KY
4054 struct alc_spec *spec = codec->spec;
4055
1387e2d1
KY
4056 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4057 alc269vb_toggle_power_output(codec, 0);
4058 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4059 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
4060 msleep(150);
4061 }
8c427226 4062
1d045db9 4063 codec->patch_ops.init(codec);
f1d4e28b 4064
1387e2d1
KY
4065 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4066 alc269vb_toggle_power_output(codec, 1);
4067 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4068 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
4069 msleep(200);
4070 }
f1d4e28b 4071
1a462be5 4072 snd_hda_regmap_sync(codec);
1d045db9 4073 hda_call_check_power_status(codec, 0x01);
f475371a
HW
4074
4075 /* on some machine, the BIOS will clear the codec gpio data when enter
4076 * suspend, and won't restore the data after resume, so we restore it
4077 * in the driver.
4078 */
d261eec8
TI
4079 if (spec->gpio_data)
4080 alc_write_gpio_data(codec);
f475371a 4081
ad60d502 4082 if (spec->has_alc5505_dsp)
cd63a5ff 4083 alc5505_dsp_resume(codec);
c5177c86 4084
1d045db9
TI
4085 return 0;
4086}
2a43952a 4087#endif /* CONFIG_PM */
f1d4e28b 4088
108cc108 4089static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 4090 const struct hda_fixup *fix, int action)
108cc108
DH
4091{
4092 struct alc_spec *spec = codec->spec;
4093
1727a771 4094 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
4095 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4096}
4097
fdcc968a
JMG
4098static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4099 const struct hda_fixup *fix,
4100 int action)
4101{
4102 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4103 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4104
4105 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4106 snd_hda_codec_set_pincfg(codec, 0x19,
4107 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4108 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4109}
4110
1d045db9 4111static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 4112 const struct hda_fixup *fix, int action)
1d045db9 4113{
98b24883
TI
4114 if (action == HDA_FIXUP_ACT_INIT)
4115 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
1d045db9 4116}
f1d4e28b 4117
7c478f03
DH
4118static void alc269_fixup_headset_mic(struct hda_codec *codec,
4119 const struct hda_fixup *fix, int action)
4120{
4121 struct alc_spec *spec = codec->spec;
4122
4123 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4124 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4125}
4126
1d045db9 4127static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 4128 const struct hda_fixup *fix, int action)
1d045db9
TI
4129{
4130 static const struct hda_verb verbs[] = {
4131 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4132 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4133 {}
4134 };
4135 unsigned int cfg;
f1d4e28b 4136
7639a06c
TI
4137 if (strcmp(codec->core.chip_name, "ALC271X") &&
4138 strcmp(codec->core.chip_name, "ALC269VB"))
1d045db9
TI
4139 return;
4140 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4141 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4142 snd_hda_sequence_write(codec, verbs);
4143}
f1d4e28b 4144
c8426b27
TI
4145/* Fix the speaker amp after resume, etc */
4146static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4147 const struct hda_fixup *fix,
4148 int action)
4149{
4150 if (action == HDA_FIXUP_ACT_INIT)
4151 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4152}
4153
017f2a10 4154static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 4155 const struct hda_fixup *fix, int action)
017f2a10
TI
4156{
4157 struct alc_spec *spec = codec->spec;
4158
1727a771 4159 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
4160 return;
4161
4162 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4163 * fix the sample rate of analog I/O to 44.1kHz
4164 */
08c189f2
TI
4165 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4166 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
4167}
4168
adabb3ec 4169static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 4170 const struct hda_fixup *fix, int action)
adabb3ec 4171{
adabb3ec
TI
4172 /* The digital-mic unit sends PDM (differential signal) instead of
4173 * the standard PCM, thus you can't record a valid mono stream as is.
4174 * Below is a workaround specific to ALC269 to control the dmic
4175 * signal source as mono.
4176 */
98b24883
TI
4177 if (action == HDA_FIXUP_ACT_INIT)
4178 alc_update_coef_idx(codec, 0x07, 0, 0x80);
adabb3ec
TI
4179}
4180
24519911
TI
4181static void alc269_quanta_automute(struct hda_codec *codec)
4182{
08c189f2 4183 snd_hda_gen_update_outputs(codec);
24519911 4184
1687ccc8
TI
4185 alc_write_coef_idx(codec, 0x0c, 0x680);
4186 alc_write_coef_idx(codec, 0x0c, 0x480);
24519911
TI
4187}
4188
4189static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 4190 const struct hda_fixup *fix, int action)
24519911
TI
4191{
4192 struct alc_spec *spec = codec->spec;
1727a771 4193 if (action != HDA_FIXUP_ACT_PROBE)
24519911 4194 return;
08c189f2 4195 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
4196}
4197
d240d1dc 4198static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 4199 struct hda_jack_callback *jack)
d240d1dc
DH
4200{
4201 struct alc_spec *spec = codec->spec;
4202 int vref;
4203 msleep(200);
4204 snd_hda_gen_hp_automute(codec, jack);
4205
4206 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4207 msleep(100);
4208 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4209 vref);
4210 msleep(500);
4211 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4212 vref);
4213}
4214
a2ef03fe
TE
4215/*
4216 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4217 */
4218struct hda_alc298_mbxinit {
4219 unsigned char value_0x23;
4220 unsigned char value_0x25;
4221};
4222
4223static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4224 const struct hda_alc298_mbxinit *initval,
4225 bool first)
4226{
4227 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4228 alc_write_coef_idx(codec, 0x26, 0xb000);
4229
4230 if (first)
4231 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4232
4233 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4234 alc_write_coef_idx(codec, 0x26, 0xf000);
4235 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4236
4237 if (initval->value_0x23 != 0x1e)
4238 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4239
4240 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4241 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4242}
4243
4244static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4245 const struct hda_fixup *fix,
4246 int action)
4247{
4248 /* Initialization magic */
4249 static const struct hda_alc298_mbxinit dac_init[] = {
4250 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4251 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4252 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4253 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4254 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4255 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4256 {0x2f, 0x00},
4257 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4258 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4259 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4260 {}
4261 };
4262 const struct hda_alc298_mbxinit *seq;
4263
4264 if (action != HDA_FIXUP_ACT_INIT)
4265 return;
4266
4267 /* Start */
4268 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4269 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4270 alc_write_coef_idx(codec, 0x26, 0xf000);
4271 alc_write_coef_idx(codec, 0x22, 0x31);
4272 alc_write_coef_idx(codec, 0x23, 0x0b);
4273 alc_write_coef_idx(codec, 0x25, 0x00);
4274 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4275 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4276
4277 for (seq = dac_init; seq->value_0x23; seq++)
4278 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4279}
4280
d240d1dc
DH
4281static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4282 const struct hda_fixup *fix, int action)
4283{
4284 struct alc_spec *spec = codec->spec;
4285 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4286 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4287 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4288 }
4289}
4290
766538ac
TI
4291static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4292 bool polarity, bool on)
4293{
4294 unsigned int pinval;
4295
4296 if (!pin)
4297 return;
4298 if (polarity)
4299 on = !on;
4300 pinval = snd_hda_codec_get_pin_target(codec, pin);
4301 pinval &= ~AC_PINCTL_VREFEN;
4302 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4303 /* temporarily power up/down for setting VREF */
4304 snd_hda_power_up_pm(codec);
4305 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4306 snd_hda_power_down_pm(codec);
4307}
d240d1dc 4308
08fb0d0e 4309/* update mute-LED according to the speaker mute state via mic VREF pin */
8d3d1ece
TI
4310static int vref_mute_led_set(struct led_classdev *led_cdev,
4311 enum led_brightness brightness)
6d3cd5d4 4312{
8d3d1ece 4313 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
08fb0d0e 4314 struct alc_spec *spec = codec->spec;
08fb0d0e 4315
766538ac
TI
4316 alc_update_vref_led(codec, spec->mute_led_nid,
4317 spec->mute_led_polarity, brightness);
8d3d1ece 4318 return 0;
6d3cd5d4
DH
4319}
4320
d5b6b65e
DH
4321/* Make sure the led works even in runtime suspend */
4322static unsigned int led_power_filter(struct hda_codec *codec,
4323 hda_nid_t nid,
4324 unsigned int power_state)
4325{
4326 struct alc_spec *spec = codec->spec;
4327
50dd9050
HW
4328 if (power_state != AC_PWRST_D3 || nid == 0 ||
4329 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
d5b6b65e
DH
4330 return power_state;
4331
4332 /* Set pin ctl again, it might have just been set to 0 */
4333 snd_hda_set_pin_ctl(codec, nid,
4334 snd_hda_codec_get_pin_target(codec, nid));
4335
cffd3966 4336 return snd_hda_gen_path_power_filter(codec, nid, power_state);
d5b6b65e
DH
4337}
4338
08fb0d0e
TI
4339static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4340 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
4341{
4342 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
4343 const struct dmi_device *dev = NULL;
4344
4345 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4346 return;
4347
4348 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4349 int pol, pin;
4350 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4351 continue;
4352 if (pin < 0x0a || pin >= 0x10)
4353 break;
4354 spec->mute_led_polarity = pol;
4355 spec->mute_led_nid = pin - 0x0a + 0x18;
8d3d1ece 4356 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4357 codec->power_filter = led_power_filter;
4e76a883
TI
4358 codec_dbg(codec,
4359 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
08fb0d0e 4360 spec->mute_led_polarity);
6d3cd5d4
DH
4361 break;
4362 }
4363}
4364
85c467dc
TI
4365static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4366 const struct hda_fixup *fix,
4367 int action, hda_nid_t pin)
d06ac143
DH
4368{
4369 struct alc_spec *spec = codec->spec;
85c467dc 4370
d06ac143
DH
4371 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4372 spec->mute_led_polarity = 0;
85c467dc 4373 spec->mute_led_nid = pin;
8d3d1ece 4374 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4375 codec->power_filter = led_power_filter;
d06ac143
DH
4376 }
4377}
4378
85c467dc
TI
4379static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4380 const struct hda_fixup *fix, int action)
4381{
4382 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4383}
4384
08fb0d0e
TI
4385static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4386 const struct hda_fixup *fix, int action)
420b0feb 4387{
85c467dc 4388 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
420b0feb
TI
4389}
4390
7f783bd5
TB
4391static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4392 const struct hda_fixup *fix, int action)
4393{
85c467dc 4394 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
7f783bd5
TB
4395}
4396
0f32fd19
TI
4397/* update LED status via GPIO */
4398static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
dbd13179 4399 int polarity, bool enabled)
9f5c6faf 4400{
dbd13179 4401 if (polarity)
0f32fd19 4402 enabled = !enabled;
d261eec8 4403 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
9f5c6faf
TI
4404}
4405
0f32fd19 4406/* turn on/off mute LED via GPIO per vmaster hook */
8d3d1ece
TI
4407static int gpio_mute_led_set(struct led_classdev *led_cdev,
4408 enum led_brightness brightness)
9f5c6faf 4409{
8d3d1ece 4410 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9f5c6faf 4411 struct alc_spec *spec = codec->spec;
9f5c6faf 4412
dbd13179 4413 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
8d3d1ece
TI
4414 spec->mute_led_polarity, !brightness);
4415 return 0;
0f32fd19 4416}
9f5c6faf 4417
0f32fd19 4418/* turn on/off mic-mute LED via GPIO per capture hook */
87dc3648
KHF
4419static int micmute_led_set(struct led_classdev *led_cdev,
4420 enum led_brightness brightness)
4421{
4422 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4423 struct alc_spec *spec = codec->spec;
4424
4425 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
40469064 4426 spec->micmute_led_polarity, !brightness);
87dc3648
KHF
4427 return 0;
4428}
4429
01e4a275
TI
4430/* setup mute and mic-mute GPIO bits, add hooks appropriately */
4431static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4432 int action,
4433 unsigned int mute_mask,
4434 unsigned int micmute_mask)
9f5c6faf
TI
4435{
4436 struct alc_spec *spec = codec->spec;
9f5c6faf 4437
01e4a275
TI
4438 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4439
4440 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4441 return;
4442 if (mute_mask) {
4443 spec->gpio_mute_led_mask = mute_mask;
8d3d1ece 4444 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
01e4a275
TI
4445 }
4446 if (micmute_mask) {
4447 spec->gpio_mic_led_mask = micmute_mask;
7cdf8c49 4448 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
9f5c6faf
TI
4449 }
4450}
4451
e7d66cf7
JS
4452static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4453 const struct hda_fixup *fix, int action)
4454{
4455 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4456}
4457
01e4a275 4458static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
eaa8e5ef
KY
4459 const struct hda_fixup *fix, int action)
4460{
01e4a275
TI
4461 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4462}
eaa8e5ef 4463
f5a88b0a
KHF
4464static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4465 const struct hda_fixup *fix, int action)
4466{
3e0650ab 4467 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
f5a88b0a
KHF
4468}
4469
01e4a275
TI
4470static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4471 const struct hda_fixup *fix, int action)
4472{
4473 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
9f5c6faf
TI
4474}
4475
a0ccbc53
KY
4476static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4477 const struct hda_fixup *fix, int action)
4478{
4479 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4480}
4481
5fc462c3
JC
4482static void alc245_fixup_hp_gpio_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)
4488 spec->micmute_led_polarity = 1;
4489 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4490}
4491
8a503555
TI
4492/* turn on/off mic-mute LED per capture hook via VREF change */
4493static int vref_micmute_led_set(struct led_classdev *led_cdev,
4494 enum led_brightness brightness)
9c5dc3bf 4495{
8a503555 4496 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9c5dc3bf 4497 struct alc_spec *spec = codec->spec;
9c5dc3bf 4498
766538ac
TI
4499 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4500 spec->micmute_led_polarity, brightness);
8a503555 4501 return 0;
9c5dc3bf
KY
4502}
4503
4504static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4505 const struct hda_fixup *fix, int action)
4506{
4507 struct alc_spec *spec = codec->spec;
9c5dc3bf 4508
01e4a275 4509 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
9c5dc3bf 4510 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
4511 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4512 * enable headphone amp
4513 */
4514 spec->gpio_mask |= 0x10;
4515 spec->gpio_dir |= 0x10;
9c5dc3bf 4516 spec->cap_mute_led_nid = 0x18;
8a503555 4517 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
50dd9050 4518 codec->power_filter = led_power_filter;
9c5dc3bf
KY
4519 }
4520}
4521
7a5255f1
DH
4522static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4523 const struct hda_fixup *fix, int action)
4524{
7a5255f1 4525 struct alc_spec *spec = codec->spec;
7a5255f1 4526
01e4a275 4527 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
7a5255f1 4528 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7a5255f1 4529 spec->cap_mute_led_nid = 0x18;
8a503555 4530 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
7a5255f1
DH
4531 codec->power_filter = led_power_filter;
4532 }
4533}
4534
c3bb2b52
TI
4535/* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4536 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4537 */
4538static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4539 const struct hda_fixup *fix, int action)
4540{
4541 struct alc_spec *spec = codec->spec;
4542
4543 switch (action) {
4544 case HDA_FIXUP_ACT_PRE_PROBE:
4545 spec->gpio_mask |= 0x01;
4546 spec->gpio_dir |= 0x01;
4547 break;
4548 case HDA_FIXUP_ACT_INIT:
4549 /* need to toggle GPIO to enable the amp */
4550 alc_update_gpio_data(codec, 0x01, true);
4551 msleep(100);
4552 alc_update_gpio_data(codec, 0x01, false);
4553 break;
4554 }
4555}
4556
622464c8
TI
4557/* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4558static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4559 struct hda_codec *codec,
4560 struct snd_pcm_substream *substream,
4561 int action)
4562{
4563 switch (action) {
4564 case HDA_GEN_PCM_ACT_PREPARE:
4565 alc_update_gpio_data(codec, 0x04, true);
4566 break;
4567 case HDA_GEN_PCM_ACT_CLEANUP:
4568 alc_update_gpio_data(codec, 0x04, false);
4569 break;
4570 }
4571}
4572
4573static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4574 const struct hda_fixup *fix,
4575 int action)
4576{
4577 struct alc_spec *spec = codec->spec;
4578
4579 if (action == HDA_FIXUP_ACT_PROBE) {
4580 spec->gpio_mask |= 0x04;
4581 spec->gpio_dir |= 0x04;
4582 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4583 }
4584}
4585
766538ac
TI
4586static void alc_update_coef_led(struct hda_codec *codec,
4587 struct alc_coef_led *led,
4588 bool polarity, bool on)
4589{
4590 if (polarity)
4591 on = !on;
4592 /* temporarily power up/down for setting COEF bit */
4593 alc_update_coef_idx(codec, led->idx, led->mask,
4594 on ? led->on : led->off);
4595}
4596
431e76c3 4597/* update mute-LED according to the speaker mute state via COEF bit */
8d3d1ece
TI
4598static int coef_mute_led_set(struct led_classdev *led_cdev,
4599 enum led_brightness brightness)
431e76c3 4600{
8d3d1ece 4601 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4602 struct alc_spec *spec = codec->spec;
4603
766538ac
TI
4604 alc_update_coef_led(codec, &spec->mute_led_coef,
4605 spec->mute_led_polarity, brightness);
8d3d1ece 4606 return 0;
431e76c3
KY
4607}
4608
4609static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4610 const struct hda_fixup *fix,
4611 int action)
4612{
4613 struct alc_spec *spec = codec->spec;
4614
4615 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4616 spec->mute_led_polarity = 0;
766538ac
TI
4617 spec->mute_led_coef.idx = 0x0b;
4618 spec->mute_led_coef.mask = 1 << 3;
4619 spec->mute_led_coef.on = 1 << 3;
4620 spec->mute_led_coef.off = 0;
8d3d1ece 4621 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
431e76c3
KY
4622 }
4623}
4624
24164f43
KY
4625static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4626 const struct hda_fixup *fix,
4627 int action)
4628{
4629 struct alc_spec *spec = codec->spec;
4630
4631 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4632 spec->mute_led_polarity = 0;
766538ac
TI
4633 spec->mute_led_coef.idx = 0x34;
4634 spec->mute_led_coef.mask = 1 << 5;
4635 spec->mute_led_coef.on = 0;
4636 spec->mute_led_coef.off = 1 << 5;
8d3d1ece 4637 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
24164f43
KY
4638 }
4639}
4640
0659400f
LG
4641static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4642 const struct hda_fixup *fix, int action)
4643{
4644 struct alc_spec *spec = codec->spec;
4645
4646 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4647 spec->mute_led_polarity = 0;
4648 spec->mute_led_coef.idx = 0x07;
4649 spec->mute_led_coef.mask = 1;
4650 spec->mute_led_coef.on = 1;
4651 spec->mute_led_coef.off = 0;
4652 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4653 }
4654}
4655
93dc18e1
SJ
4656static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4657 const struct hda_fixup *fix,
4658 int action)
4659{
4660 struct alc_spec *spec = codec->spec;
4661
4662 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4663 spec->mute_led_polarity = 0;
4664 spec->mute_led_coef.idx = 0x0b;
4665 spec->mute_led_coef.mask = 3 << 2;
4666 spec->mute_led_coef.on = 2 << 2;
4667 spec->mute_led_coef.off = 1 << 2;
4668 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4669 }
4670}
4671
431e76c3 4672/* turn on/off mic-mute LED per capture hook by coef bit */
8a503555
TI
4673static int coef_micmute_led_set(struct led_classdev *led_cdev,
4674 enum led_brightness brightness)
431e76c3 4675{
8a503555 4676 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4677 struct alc_spec *spec = codec->spec;
4678
766538ac
TI
4679 alc_update_coef_led(codec, &spec->mic_led_coef,
4680 spec->micmute_led_polarity, brightness);
8a503555 4681 return 0;
431e76c3
KY
4682}
4683
4684static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4685 const struct hda_fixup *fix, int action)
4686{
4687 struct alc_spec *spec = codec->spec;
4688
4689 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4690 spec->mic_led_coef.idx = 0x19;
4691 spec->mic_led_coef.mask = 1 << 13;
4692 spec->mic_led_coef.on = 1 << 13;
4693 spec->mic_led_coef.off = 0;
8a503555 4694 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
431e76c3
KY
4695 }
4696}
4697
ca88eeb3
LG
4698static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4699 const struct hda_fixup *fix, int action)
4700{
4701 struct alc_spec *spec = codec->spec;
4702
4703 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4704 spec->micmute_led_polarity = 1;
4705 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4706}
4707
24164f43
KY
4708static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4709 const struct hda_fixup *fix, int action)
4710{
4711 struct alc_spec *spec = codec->spec;
4712
4713 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4714 spec->mic_led_coef.idx = 0x35;
4715 spec->mic_led_coef.mask = 3 << 2;
4716 spec->mic_led_coef.on = 2 << 2;
4717 spec->mic_led_coef.off = 1 << 2;
8a503555 4718 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
24164f43
KY
4719 }
4720}
4721
431e76c3
KY
4722static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4723 const struct hda_fixup *fix, int action)
4724{
4725 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4726 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4727}
4728
ca88eeb3
LG
4729static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4730 const struct hda_fixup *fix, int action)
4731{
4732 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4733 alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4734}
4735
24164f43
KY
4736static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4737 const struct hda_fixup *fix, int action)
4738{
4739 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4740 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4741}
4742
75b62ab6
JW
4743static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4744 const struct hda_fixup *fix, int action)
4745{
4746 struct alc_spec *spec = codec->spec;
4747
4748 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4749 spec->cap_mute_led_nid = 0x1a;
4750 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4751 codec->power_filter = led_power_filter;
4752 }
4753}
4754
4755static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4756 const struct hda_fixup *fix, int action)
4757{
4758 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4759 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4760}
4761
a2d57ebe
KM
4762static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4763 const unsigned short coefs[2])
4764{
4765 alc_write_coef_idx(codec, 0x23, coefs[0]);
4766 alc_write_coef_idx(codec, 0x25, coefs[1]);
4767 alc_write_coef_idx(codec, 0x26, 0xb011);
4768}
4769
4770struct alc298_samsung_amp_desc {
4771 unsigned char nid;
4772 unsigned short init_seq[2][2];
4773};
4774
4775static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4776 const struct hda_fixup *fix, int action)
4777{
4778 int i, j;
4779 static const unsigned short init_seq[][2] = {
4780 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4781 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4782 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4783 { 0x41, 0x07 }, { 0x400, 0x1 }
4784 };
4785 static const struct alc298_samsung_amp_desc amps[] = {
4786 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4787 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4788 };
4789
4790 if (action != HDA_FIXUP_ACT_INIT)
4791 return;
4792
4793 for (i = 0; i < ARRAY_SIZE(amps); i++) {
4794 alc_write_coef_idx(codec, 0x22, amps[i].nid);
4795
4796 for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4797 alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4798
4799 for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4800 alc298_samsung_write_coef_pack(codec, init_seq[j]);
4801 }
4802}
4803
6a30abaa 4804#if IS_REACHABLE(CONFIG_INPUT)
33f4acd3
DH
4805static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4806 struct hda_jack_callback *event)
4807{
4808 struct alc_spec *spec = codec->spec;
4809
4810 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4811 send both key on and key off event for every interrupt. */
c7b60a89 4812 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
33f4acd3 4813 input_sync(spec->kb_dev);
c7b60a89 4814 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
33f4acd3
DH
4815 input_sync(spec->kb_dev);
4816}
33f4acd3 4817
3694cb29
K
4818static int alc_register_micmute_input_device(struct hda_codec *codec)
4819{
4820 struct alc_spec *spec = codec->spec;
c7b60a89 4821 int i;
3694cb29
K
4822
4823 spec->kb_dev = input_allocate_device();
4824 if (!spec->kb_dev) {
4825 codec_err(codec, "Out of memory (input_allocate_device)\n");
4826 return -ENOMEM;
4827 }
c7b60a89
HW
4828
4829 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4830
3694cb29
K
4831 spec->kb_dev->name = "Microphone Mute Button";
4832 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
c7b60a89
HW
4833 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4834 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4835 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4836 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4837 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3694cb29
K
4838
4839 if (input_register_device(spec->kb_dev)) {
4840 codec_err(codec, "input_register_device failed\n");
4841 input_free_device(spec->kb_dev);
4842 spec->kb_dev = NULL;
4843 return -ENOMEM;
4844 }
4845
4846 return 0;
4847}
4848
01e4a275
TI
4849/* GPIO1 = set according to SKU external amp
4850 * GPIO2 = mic mute hotkey
4851 * GPIO3 = mute LED
4852 * GPIO4 = mic mute LED
4853 */
33f4acd3
DH
4854static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4855 const struct hda_fixup *fix, int action)
4856{
33f4acd3
DH
4857 struct alc_spec *spec = codec->spec;
4858
01e4a275 4859 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
33f4acd3 4860 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4861 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29 4862 if (alc_register_micmute_input_device(codec) != 0)
33f4acd3 4863 return;
33f4acd3 4864
01e4a275
TI
4865 spec->gpio_mask |= 0x06;
4866 spec->gpio_dir |= 0x02;
4867 spec->gpio_data |= 0x02;
7639a06c 4868 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
33f4acd3 4869 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
7639a06c 4870 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
33f4acd3 4871 gpio2_mic_hotkey_event);
33f4acd3
DH
4872 return;
4873 }
4874
4875 if (!spec->kb_dev)
4876 return;
4877
4878 switch (action) {
33f4acd3
DH
4879 case HDA_FIXUP_ACT_FREE:
4880 input_unregister_device(spec->kb_dev);
33f4acd3
DH
4881 spec->kb_dev = NULL;
4882 }
33f4acd3
DH
4883}
4884
01e4a275
TI
4885/* Line2 = mic mute hotkey
4886 * GPIO2 = mic mute LED
4887 */
3694cb29
K
4888static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4889 const struct hda_fixup *fix, int action)
4890{
3694cb29
K
4891 struct alc_spec *spec = codec->spec;
4892
01e4a275 4893 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
3694cb29 4894 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4895 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29
K
4896 if (alc_register_micmute_input_device(codec) != 0)
4897 return;
4898
3694cb29
K
4899 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4900 gpio2_mic_hotkey_event);
3694cb29
K
4901 return;
4902 }
4903
4904 if (!spec->kb_dev)
4905 return;
4906
4907 switch (action) {
3694cb29
K
4908 case HDA_FIXUP_ACT_FREE:
4909 input_unregister_device(spec->kb_dev);
4910 spec->kb_dev = NULL;
4911 }
4912}
c469652b
TI
4913#else /* INPUT */
4914#define alc280_fixup_hp_gpio2_mic_hotkey NULL
4915#define alc233_fixup_lenovo_line2_mic_hotkey NULL
4916#endif /* INPUT */
3694cb29 4917
9c5dc3bf
KY
4918static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4919 const struct hda_fixup *fix, int action)
4920{
4921 struct alc_spec *spec = codec->spec;
4922
1bce62a6 4923 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
9c5dc3bf 4924 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9c5dc3bf 4925 spec->cap_mute_led_nid = 0x18;
8a503555 4926 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
9c5dc3bf
KY
4927 }
4928}
4929
6b0f95c4 4930static const struct coef_fw alc225_pre_hsmode[] = {
5a36767a
KY
4931 UPDATE_COEF(0x4a, 1<<8, 0),
4932 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4933 UPDATE_COEF(0x63, 3<<14, 3<<14),
4934 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4935 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4936 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4937 UPDATE_COEF(0x4a, 3<<10, 0),
4938 {}
4939};
4940
73bdd597
DH
4941static void alc_headset_mode_unplugged(struct hda_codec *codec)
4942{
92666d45 4943 struct alc_spec *spec = codec->spec;
6b0f95c4 4944 static const struct coef_fw coef0255[] = {
717f43d8 4945 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
54db6c39
TI
4946 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4947 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4948 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4949 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4950 {}
4951 };
6b0f95c4 4952 static const struct coef_fw coef0256[] = {
e69e7e03 4953 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
717f43d8
KY
4954 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4955 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4956 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4957 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
e69e7e03
KY
4958 {}
4959 };
6b0f95c4 4960 static const struct coef_fw coef0233[] = {
54db6c39
TI
4961 WRITE_COEF(0x1b, 0x0c0b),
4962 WRITE_COEF(0x45, 0xc429),
4963 UPDATE_COEF(0x35, 0x4000, 0),
4964 WRITE_COEF(0x06, 0x2104),
4965 WRITE_COEF(0x1a, 0x0001),
4966 WRITE_COEF(0x26, 0x0004),
4967 WRITE_COEF(0x32, 0x42a3),
4968 {}
4969 };
6b0f95c4 4970 static const struct coef_fw coef0288[] = {
f3b70332
KY
4971 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4972 UPDATE_COEF(0x50, 0x2000, 0x2000),
4973 UPDATE_COEF(0x56, 0x0006, 0x0006),
4974 UPDATE_COEF(0x66, 0x0008, 0),
4975 UPDATE_COEF(0x67, 0x2000, 0),
4976 {}
4977 };
6b0f95c4 4978 static const struct coef_fw coef0298[] = {
89542936
KY
4979 UPDATE_COEF(0x19, 0x1300, 0x0300),
4980 {}
4981 };
6b0f95c4 4982 static const struct coef_fw coef0292[] = {
54db6c39
TI
4983 WRITE_COEF(0x76, 0x000e),
4984 WRITE_COEF(0x6c, 0x2400),
4985 WRITE_COEF(0x18, 0x7308),
4986 WRITE_COEF(0x6b, 0xc429),
4987 {}
4988 };
6b0f95c4 4989 static const struct coef_fw coef0293[] = {
54db6c39
TI
4990 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4991 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4992 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4993 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4994 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4995 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4996 {}
4997 };
6b0f95c4 4998 static const struct coef_fw coef0668[] = {
54db6c39
TI
4999 WRITE_COEF(0x15, 0x0d40),
5000 WRITE_COEF(0xb7, 0x802b),
5001 {}
5002 };
6b0f95c4 5003 static const struct coef_fw coef0225[] = {
5a36767a 5004 UPDATE_COEF(0x63, 3<<14, 0),
4cc9b9d6
KY
5005 {}
5006 };
6b0f95c4 5007 static const struct coef_fw coef0274[] = {
71683c32
KY
5008 UPDATE_COEF(0x4a, 0x0100, 0),
5009 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5010 UPDATE_COEF(0x6b, 0xf000, 0x5000),
5011 UPDATE_COEF(0x4a, 0x0010, 0),
5012 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5013 WRITE_COEF(0x45, 0x5289),
5014 UPDATE_COEF(0x4a, 0x0c00, 0),
5015 {}
5016 };
54db6c39 5017
92666d45
KY
5018 if (spec->no_internal_mic_pin) {
5019 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5020 return;
5021 }
5022
7639a06c 5023 switch (codec->core.vendor_id) {
9a22a8f5 5024 case 0x10ec0255:
e69e7e03
KY
5025 alc_process_coef_fw(codec, coef0255);
5026 break;
1948fc06 5027 case 0x10ec0230:
736f20a7 5028 case 0x10ec0236:
7081adf3 5029 case 0x10ec0256:
527f4643 5030 case 0x19e58326:
e69e7e03 5031 alc_process_coef_fw(codec, coef0256);
9a22a8f5 5032 break;
71683c32
KY
5033 case 0x10ec0234:
5034 case 0x10ec0274:
5035 case 0x10ec0294:
5036 alc_process_coef_fw(codec, coef0274);
5037 break;
13fd08a3 5038 case 0x10ec0233:
73bdd597 5039 case 0x10ec0283:
54db6c39 5040 alc_process_coef_fw(codec, coef0233);
73bdd597 5041 break;
f3b70332
KY
5042 case 0x10ec0286:
5043 case 0x10ec0288:
89542936
KY
5044 alc_process_coef_fw(codec, coef0288);
5045 break;
1a5bc8d9 5046 case 0x10ec0298:
89542936 5047 alc_process_coef_fw(codec, coef0298);
f3b70332
KY
5048 alc_process_coef_fw(codec, coef0288);
5049 break;
73bdd597 5050 case 0x10ec0292:
54db6c39 5051 alc_process_coef_fw(codec, coef0292);
73bdd597 5052 break;
a22aa26f 5053 case 0x10ec0293:
54db6c39 5054 alc_process_coef_fw(codec, coef0293);
a22aa26f 5055 break;
73bdd597 5056 case 0x10ec0668:
54db6c39 5057 alc_process_coef_fw(codec, coef0668);
73bdd597 5058 break;
c2b691ee 5059 case 0x10ec0215:
4cc9b9d6 5060 case 0x10ec0225:
c2b691ee 5061 case 0x10ec0285:
7d727869 5062 case 0x10ec0295:
c2b691ee 5063 case 0x10ec0289:
28f1f9b2 5064 case 0x10ec0299:
4d4b0c52 5065 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
5066 alc_process_coef_fw(codec, coef0225);
5067 break;
78f4f7c2
KY
5068 case 0x10ec0867:
5069 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5070 break;
73bdd597 5071 }
4e76a883 5072 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
73bdd597
DH
5073}
5074
5075
5076static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5077 hda_nid_t mic_pin)
5078{
6b0f95c4 5079 static const struct coef_fw coef0255[] = {
54db6c39
TI
5080 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5081 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5082 {}
5083 };
6b0f95c4 5084 static const struct coef_fw coef0256[] = {
717f43d8
KY
5085 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5086 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5087 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5088 {}
5089 };
6b0f95c4 5090 static const struct coef_fw coef0233[] = {
54db6c39
TI
5091 UPDATE_COEF(0x35, 0, 1<<14),
5092 WRITE_COEF(0x06, 0x2100),
5093 WRITE_COEF(0x1a, 0x0021),
5094 WRITE_COEF(0x26, 0x008c),
5095 {}
5096 };
6b0f95c4 5097 static const struct coef_fw coef0288[] = {
89542936 5098 UPDATE_COEF(0x4f, 0x00c0, 0),
f3b70332
KY
5099 UPDATE_COEF(0x50, 0x2000, 0),
5100 UPDATE_COEF(0x56, 0x0006, 0),
5101 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5102 UPDATE_COEF(0x66, 0x0008, 0x0008),
5103 UPDATE_COEF(0x67, 0x2000, 0x2000),
5104 {}
5105 };
6b0f95c4 5106 static const struct coef_fw coef0292[] = {
54db6c39
TI
5107 WRITE_COEF(0x19, 0xa208),
5108 WRITE_COEF(0x2e, 0xacf0),
5109 {}
5110 };
6b0f95c4 5111 static const struct coef_fw coef0293[] = {
54db6c39
TI
5112 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5113 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5114 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5115 {}
5116 };
6b0f95c4 5117 static const struct coef_fw coef0688[] = {
54db6c39
TI
5118 WRITE_COEF(0xb7, 0x802b),
5119 WRITE_COEF(0xb5, 0x1040),
5120 UPDATE_COEF(0xc3, 0, 1<<12),
5121 {}
5122 };
6b0f95c4 5123 static const struct coef_fw coef0225[] = {
4cc9b9d6
KY
5124 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5125 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5126 UPDATE_COEF(0x63, 3<<14, 0),
5127 {}
5128 };
6b0f95c4 5129 static const struct coef_fw coef0274[] = {
71683c32
KY
5130 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5131 UPDATE_COEF(0x4a, 0x0010, 0),
5132 UPDATE_COEF(0x6b, 0xf000, 0),
5133 {}
5134 };
54db6c39 5135
7639a06c 5136 switch (codec->core.vendor_id) {
9a22a8f5
KY
5137 case 0x10ec0255:
5138 alc_write_coef_idx(codec, 0x45, 0xc489);
5139 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5140 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5141 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5142 break;
1948fc06 5143 case 0x10ec0230:
717f43d8
KY
5144 case 0x10ec0236:
5145 case 0x10ec0256:
527f4643 5146 case 0x19e58326:
717f43d8
KY
5147 alc_write_coef_idx(codec, 0x45, 0xc489);
5148 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5149 alc_process_coef_fw(codec, coef0256);
5150 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5151 break;
71683c32
KY
5152 case 0x10ec0234:
5153 case 0x10ec0274:
5154 case 0x10ec0294:
5155 alc_write_coef_idx(codec, 0x45, 0x4689);
5156 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5157 alc_process_coef_fw(codec, coef0274);
5158 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5159 break;
13fd08a3 5160 case 0x10ec0233:
73bdd597
DH
5161 case 0x10ec0283:
5162 alc_write_coef_idx(codec, 0x45, 0xc429);
5163 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5164 alc_process_coef_fw(codec, coef0233);
73bdd597
DH
5165 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5166 break;
f3b70332
KY
5167 case 0x10ec0286:
5168 case 0x10ec0288:
1a5bc8d9 5169 case 0x10ec0298:
f3b70332
KY
5170 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5171 alc_process_coef_fw(codec, coef0288);
5172 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5173 break;
73bdd597
DH
5174 case 0x10ec0292:
5175 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5176 alc_process_coef_fw(codec, coef0292);
73bdd597 5177 break;
a22aa26f
KY
5178 case 0x10ec0293:
5179 /* Set to TRS mode */
5180 alc_write_coef_idx(codec, 0x45, 0xc429);
5181 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5182 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5183 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5184 break;
78f4f7c2
KY
5185 case 0x10ec0867:
5186 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
c0dbbdad 5187 fallthrough;
9eb5d0e6 5188 case 0x10ec0221:
1f8b46cd
DH
5189 case 0x10ec0662:
5190 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5191 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5192 break;
73bdd597
DH
5193 case 0x10ec0668:
5194 alc_write_coef_idx(codec, 0x11, 0x0001);
5195 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5196 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5197 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5198 break;
c2b691ee 5199 case 0x10ec0215:
4cc9b9d6 5200 case 0x10ec0225:
c2b691ee 5201 case 0x10ec0285:
7d727869 5202 case 0x10ec0295:
c2b691ee 5203 case 0x10ec0289:
28f1f9b2 5204 case 0x10ec0299:
5a36767a 5205 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
5206 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5207 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5208 alc_process_coef_fw(codec, coef0225);
5209 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5210 break;
73bdd597 5211 }
4e76a883 5212 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
73bdd597
DH
5213}
5214
5215static void alc_headset_mode_default(struct hda_codec *codec)
5216{
6b0f95c4 5217 static const struct coef_fw coef0225[] = {
5a36767a
KY
5218 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5219 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5220 UPDATE_COEF(0x49, 3<<8, 0<<8),
5221 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5222 UPDATE_COEF(0x63, 3<<14, 0),
5223 UPDATE_COEF(0x67, 0xf000, 0x3000),
2ae95577
DH
5224 {}
5225 };
6b0f95c4 5226 static const struct coef_fw coef0255[] = {
54db6c39
TI
5227 WRITE_COEF(0x45, 0xc089),
5228 WRITE_COEF(0x45, 0xc489),
5229 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5230 WRITE_COEF(0x49, 0x0049),
5231 {}
5232 };
6b0f95c4 5233 static const struct coef_fw coef0256[] = {
717f43d8
KY
5234 WRITE_COEF(0x45, 0xc489),
5235 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5236 WRITE_COEF(0x49, 0x0049),
5237 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5238 WRITE_COEF(0x06, 0x6100),
5239 {}
5240 };
6b0f95c4 5241 static const struct coef_fw coef0233[] = {
54db6c39
TI
5242 WRITE_COEF(0x06, 0x2100),
5243 WRITE_COEF(0x32, 0x4ea3),
5244 {}
5245 };
6b0f95c4 5246 static const struct coef_fw coef0288[] = {
f3b70332
KY
5247 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5248 UPDATE_COEF(0x50, 0x2000, 0x2000),
5249 UPDATE_COEF(0x56, 0x0006, 0x0006),
5250 UPDATE_COEF(0x66, 0x0008, 0),
5251 UPDATE_COEF(0x67, 0x2000, 0),
5252 {}
5253 };
6b0f95c4 5254 static const struct coef_fw coef0292[] = {
54db6c39
TI
5255 WRITE_COEF(0x76, 0x000e),
5256 WRITE_COEF(0x6c, 0x2400),
5257 WRITE_COEF(0x6b, 0xc429),
5258 WRITE_COEF(0x18, 0x7308),
5259 {}
5260 };
6b0f95c4 5261 static const struct coef_fw coef0293[] = {
54db6c39
TI
5262 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5263 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5264 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5265 {}
5266 };
6b0f95c4 5267 static const struct coef_fw coef0688[] = {
54db6c39
TI
5268 WRITE_COEF(0x11, 0x0041),
5269 WRITE_COEF(0x15, 0x0d40),
5270 WRITE_COEF(0xb7, 0x802b),
5271 {}
5272 };
6b0f95c4 5273 static const struct coef_fw coef0274[] = {
71683c32
KY
5274 WRITE_COEF(0x45, 0x4289),
5275 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5276 UPDATE_COEF(0x6b, 0x0f00, 0),
5277 UPDATE_COEF(0x49, 0x0300, 0x0300),
5278 {}
5279 };
54db6c39 5280
7639a06c 5281 switch (codec->core.vendor_id) {
c2b691ee 5282 case 0x10ec0215:
2ae95577 5283 case 0x10ec0225:
c2b691ee 5284 case 0x10ec0285:
7d727869 5285 case 0x10ec0295:
c2b691ee 5286 case 0x10ec0289:
28f1f9b2 5287 case 0x10ec0299:
5a36767a 5288 alc_process_coef_fw(codec, alc225_pre_hsmode);
2ae95577
DH
5289 alc_process_coef_fw(codec, coef0225);
5290 break;
9a22a8f5 5291 case 0x10ec0255:
54db6c39 5292 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5293 break;
1948fc06 5294 case 0x10ec0230:
717f43d8
KY
5295 case 0x10ec0236:
5296 case 0x10ec0256:
527f4643 5297 case 0x19e58326:
717f43d8
KY
5298 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5299 alc_write_coef_idx(codec, 0x45, 0xc089);
5300 msleep(50);
5301 alc_process_coef_fw(codec, coef0256);
5302 break;
71683c32
KY
5303 case 0x10ec0234:
5304 case 0x10ec0274:
5305 case 0x10ec0294:
5306 alc_process_coef_fw(codec, coef0274);
5307 break;
13fd08a3 5308 case 0x10ec0233:
73bdd597 5309 case 0x10ec0283:
54db6c39 5310 alc_process_coef_fw(codec, coef0233);
73bdd597 5311 break;
f3b70332
KY
5312 case 0x10ec0286:
5313 case 0x10ec0288:
1a5bc8d9 5314 case 0x10ec0298:
f3b70332
KY
5315 alc_process_coef_fw(codec, coef0288);
5316 break;
73bdd597 5317 case 0x10ec0292:
54db6c39 5318 alc_process_coef_fw(codec, coef0292);
73bdd597 5319 break;
a22aa26f 5320 case 0x10ec0293:
54db6c39 5321 alc_process_coef_fw(codec, coef0293);
a22aa26f 5322 break;
73bdd597 5323 case 0x10ec0668:
54db6c39 5324 alc_process_coef_fw(codec, coef0688);
73bdd597 5325 break;
78f4f7c2
KY
5326 case 0x10ec0867:
5327 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5328 break;
73bdd597 5329 }
4e76a883 5330 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
73bdd597
DH
5331}
5332
5333/* Iphone type */
5334static void alc_headset_mode_ctia(struct hda_codec *codec)
5335{
89542936
KY
5336 int val;
5337
6b0f95c4 5338 static const struct coef_fw coef0255[] = {
54db6c39
TI
5339 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5340 WRITE_COEF(0x1b, 0x0c2b),
5341 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5342 {}
5343 };
6b0f95c4 5344 static const struct coef_fw coef0256[] = {
e69e7e03 5345 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
717f43d8 5346 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5347 {}
5348 };
6b0f95c4 5349 static const struct coef_fw coef0233[] = {
54db6c39
TI
5350 WRITE_COEF(0x45, 0xd429),
5351 WRITE_COEF(0x1b, 0x0c2b),
5352 WRITE_COEF(0x32, 0x4ea3),
5353 {}
5354 };
6b0f95c4 5355 static const struct coef_fw coef0288[] = {
f3b70332
KY
5356 UPDATE_COEF(0x50, 0x2000, 0x2000),
5357 UPDATE_COEF(0x56, 0x0006, 0x0006),
5358 UPDATE_COEF(0x66, 0x0008, 0),
5359 UPDATE_COEF(0x67, 0x2000, 0),
5360 {}
5361 };
6b0f95c4 5362 static const struct coef_fw coef0292[] = {
54db6c39
TI
5363 WRITE_COEF(0x6b, 0xd429),
5364 WRITE_COEF(0x76, 0x0008),
5365 WRITE_COEF(0x18, 0x7388),
5366 {}
5367 };
6b0f95c4 5368 static const struct coef_fw coef0293[] = {
54db6c39
TI
5369 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5370 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5371 {}
5372 };
6b0f95c4 5373 static const struct coef_fw coef0688[] = {
54db6c39
TI
5374 WRITE_COEF(0x11, 0x0001),
5375 WRITE_COEF(0x15, 0x0d60),
5376 WRITE_COEF(0xc3, 0x0000),
5377 {}
5378 };
6b0f95c4 5379 static const struct coef_fw coef0225_1[] = {
4cc9b9d6 5380 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5a36767a
KY
5381 UPDATE_COEF(0x63, 3<<14, 2<<14),
5382 {}
5383 };
6b0f95c4 5384 static const struct coef_fw coef0225_2[] = {
5a36767a
KY
5385 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5386 UPDATE_COEF(0x63, 3<<14, 1<<14),
4cc9b9d6
KY
5387 {}
5388 };
54db6c39 5389
7639a06c 5390 switch (codec->core.vendor_id) {
9a22a8f5 5391 case 0x10ec0255:
54db6c39 5392 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5393 break;
1948fc06 5394 case 0x10ec0230:
736f20a7 5395 case 0x10ec0236:
e69e7e03 5396 case 0x10ec0256:
527f4643 5397 case 0x19e58326:
e69e7e03
KY
5398 alc_process_coef_fw(codec, coef0256);
5399 break;
71683c32
KY
5400 case 0x10ec0234:
5401 case 0x10ec0274:
5402 case 0x10ec0294:
5403 alc_write_coef_idx(codec, 0x45, 0xd689);
5404 break;
13fd08a3 5405 case 0x10ec0233:
73bdd597 5406 case 0x10ec0283:
54db6c39 5407 alc_process_coef_fw(codec, coef0233);
73bdd597 5408 break;
1a5bc8d9 5409 case 0x10ec0298:
89542936
KY
5410 val = alc_read_coef_idx(codec, 0x50);
5411 if (val & (1 << 12)) {
5412 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5413 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5414 msleep(300);
5415 } else {
5416 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5417 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5418 msleep(300);
5419 }
5420 break;
f3b70332
KY
5421 case 0x10ec0286:
5422 case 0x10ec0288:
5423 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5424 msleep(300);
5425 alc_process_coef_fw(codec, coef0288);
5426 break;
73bdd597 5427 case 0x10ec0292:
54db6c39 5428 alc_process_coef_fw(codec, coef0292);
73bdd597 5429 break;
a22aa26f 5430 case 0x10ec0293:
54db6c39 5431 alc_process_coef_fw(codec, coef0293);
a22aa26f 5432 break;
73bdd597 5433 case 0x10ec0668:
54db6c39 5434 alc_process_coef_fw(codec, coef0688);
73bdd597 5435 break;
c2b691ee 5436 case 0x10ec0215:
4cc9b9d6 5437 case 0x10ec0225:
c2b691ee 5438 case 0x10ec0285:
7d727869 5439 case 0x10ec0295:
c2b691ee 5440 case 0x10ec0289:
28f1f9b2 5441 case 0x10ec0299:
5a36767a
KY
5442 val = alc_read_coef_idx(codec, 0x45);
5443 if (val & (1 << 9))
5444 alc_process_coef_fw(codec, coef0225_2);
5445 else
5446 alc_process_coef_fw(codec, coef0225_1);
4cc9b9d6 5447 break;
78f4f7c2
KY
5448 case 0x10ec0867:
5449 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5450 break;
73bdd597 5451 }
4e76a883 5452 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
73bdd597
DH
5453}
5454
5455/* Nokia type */
5456static void alc_headset_mode_omtp(struct hda_codec *codec)
5457{
6b0f95c4 5458 static const struct coef_fw coef0255[] = {
54db6c39
TI
5459 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5460 WRITE_COEF(0x1b, 0x0c2b),
5461 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5462 {}
5463 };
6b0f95c4 5464 static const struct coef_fw coef0256[] = {
e69e7e03 5465 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
717f43d8 5466 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5467 {}
5468 };
6b0f95c4 5469 static const struct coef_fw coef0233[] = {
54db6c39
TI
5470 WRITE_COEF(0x45, 0xe429),
5471 WRITE_COEF(0x1b, 0x0c2b),
5472 WRITE_COEF(0x32, 0x4ea3),
5473 {}
5474 };
6b0f95c4 5475 static const struct coef_fw coef0288[] = {
f3b70332
KY
5476 UPDATE_COEF(0x50, 0x2000, 0x2000),
5477 UPDATE_COEF(0x56, 0x0006, 0x0006),
5478 UPDATE_COEF(0x66, 0x0008, 0),
5479 UPDATE_COEF(0x67, 0x2000, 0),
5480 {}
5481 };
6b0f95c4 5482 static const struct coef_fw coef0292[] = {
54db6c39
TI
5483 WRITE_COEF(0x6b, 0xe429),
5484 WRITE_COEF(0x76, 0x0008),
5485 WRITE_COEF(0x18, 0x7388),
5486 {}
5487 };
6b0f95c4 5488 static const struct coef_fw coef0293[] = {
54db6c39
TI
5489 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5490 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5491 {}
5492 };
6b0f95c4 5493 static const struct coef_fw coef0688[] = {
54db6c39
TI
5494 WRITE_COEF(0x11, 0x0001),
5495 WRITE_COEF(0x15, 0x0d50),
5496 WRITE_COEF(0xc3, 0x0000),
5497 {}
5498 };
6b0f95c4 5499 static const struct coef_fw coef0225[] = {
4cc9b9d6 5500 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5a36767a 5501 UPDATE_COEF(0x63, 3<<14, 2<<14),
4cc9b9d6
KY
5502 {}
5503 };
54db6c39 5504
7639a06c 5505 switch (codec->core.vendor_id) {
9a22a8f5 5506 case 0x10ec0255:
54db6c39 5507 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5508 break;
1948fc06 5509 case 0x10ec0230:
736f20a7 5510 case 0x10ec0236:
e69e7e03 5511 case 0x10ec0256:
527f4643 5512 case 0x19e58326:
e69e7e03
KY
5513 alc_process_coef_fw(codec, coef0256);
5514 break;
71683c32
KY
5515 case 0x10ec0234:
5516 case 0x10ec0274:
5517 case 0x10ec0294:
5518 alc_write_coef_idx(codec, 0x45, 0xe689);
5519 break;
13fd08a3 5520 case 0x10ec0233:
73bdd597 5521 case 0x10ec0283:
54db6c39 5522 alc_process_coef_fw(codec, coef0233);
73bdd597 5523 break;
1a5bc8d9
KY
5524 case 0x10ec0298:
5525 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
89542936
KY
5526 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5527 msleep(300);
5528 break;
f3b70332
KY
5529 case 0x10ec0286:
5530 case 0x10ec0288:
5531 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5532 msleep(300);
5533 alc_process_coef_fw(codec, coef0288);
5534 break;
73bdd597 5535 case 0x10ec0292:
54db6c39 5536 alc_process_coef_fw(codec, coef0292);
73bdd597 5537 break;
a22aa26f 5538 case 0x10ec0293:
54db6c39 5539 alc_process_coef_fw(codec, coef0293);
a22aa26f 5540 break;
73bdd597 5541 case 0x10ec0668:
54db6c39 5542 alc_process_coef_fw(codec, coef0688);
73bdd597 5543 break;
c2b691ee 5544 case 0x10ec0215:
4cc9b9d6 5545 case 0x10ec0225:
c2b691ee 5546 case 0x10ec0285:
7d727869 5547 case 0x10ec0295:
c2b691ee 5548 case 0x10ec0289:
28f1f9b2 5549 case 0x10ec0299:
4cc9b9d6
KY
5550 alc_process_coef_fw(codec, coef0225);
5551 break;
73bdd597 5552 }
4e76a883 5553 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
73bdd597
DH
5554}
5555
5556static void alc_determine_headset_type(struct hda_codec *codec)
5557{
5558 int val;
5559 bool is_ctia = false;
5560 struct alc_spec *spec = codec->spec;
6b0f95c4 5561 static const struct coef_fw coef0255[] = {
54db6c39
TI
5562 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5563 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5564 conteol) */
5565 {}
5566 };
6b0f95c4 5567 static const struct coef_fw coef0288[] = {
f3b70332
KY
5568 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5569 {}
5570 };
6b0f95c4 5571 static const struct coef_fw coef0298[] = {
89542936
KY
5572 UPDATE_COEF(0x50, 0x2000, 0x2000),
5573 UPDATE_COEF(0x56, 0x0006, 0x0006),
5574 UPDATE_COEF(0x66, 0x0008, 0),
5575 UPDATE_COEF(0x67, 0x2000, 0),
5576 UPDATE_COEF(0x19, 0x1300, 0x1300),
5577 {}
5578 };
6b0f95c4 5579 static const struct coef_fw coef0293[] = {
54db6c39
TI
5580 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5581 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5582 {}
5583 };
6b0f95c4 5584 static const struct coef_fw coef0688[] = {
54db6c39
TI
5585 WRITE_COEF(0x11, 0x0001),
5586 WRITE_COEF(0xb7, 0x802b),
5587 WRITE_COEF(0x15, 0x0d60),
5588 WRITE_COEF(0xc3, 0x0c00),
5589 {}
5590 };
6b0f95c4 5591 static const struct coef_fw coef0274[] = {
71683c32
KY
5592 UPDATE_COEF(0x4a, 0x0010, 0),
5593 UPDATE_COEF(0x4a, 0x8000, 0),
5594 WRITE_COEF(0x45, 0xd289),
5595 UPDATE_COEF(0x49, 0x0300, 0x0300),
5596 {}
5597 };
73bdd597 5598
92666d45
KY
5599 if (spec->no_internal_mic_pin) {
5600 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5601 return;
5602 }
5603
7639a06c 5604 switch (codec->core.vendor_id) {
9a22a8f5 5605 case 0x10ec0255:
717f43d8
KY
5606 alc_process_coef_fw(codec, coef0255);
5607 msleep(300);
5608 val = alc_read_coef_idx(codec, 0x46);
5609 is_ctia = (val & 0x0070) == 0x0070;
5610 break;
1948fc06 5611 case 0x10ec0230:
717f43d8 5612 case 0x10ec0236:
7081adf3 5613 case 0x10ec0256:
527f4643 5614 case 0x19e58326:
717f43d8
KY
5615 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5616 alc_write_coef_idx(codec, 0x06, 0x6104);
5617 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5618
5619 snd_hda_codec_write(codec, 0x21, 0,
5620 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5621 msleep(80);
5622 snd_hda_codec_write(codec, 0x21, 0,
5623 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5624
54db6c39 5625 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5626 msleep(300);
5627 val = alc_read_coef_idx(codec, 0x46);
5628 is_ctia = (val & 0x0070) == 0x0070;
717f43d8
KY
5629
5630 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5631 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5632
5633 snd_hda_codec_write(codec, 0x21, 0,
5634 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5635 msleep(80);
5636 snd_hda_codec_write(codec, 0x21, 0,
5637 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9a22a8f5 5638 break;
71683c32
KY
5639 case 0x10ec0234:
5640 case 0x10ec0274:
5641 case 0x10ec0294:
5642 alc_process_coef_fw(codec, coef0274);
febf2256 5643 msleep(850);
71683c32
KY
5644 val = alc_read_coef_idx(codec, 0x46);
5645 is_ctia = (val & 0x00f0) == 0x00f0;
5646 break;
13fd08a3 5647 case 0x10ec0233:
73bdd597
DH
5648 case 0x10ec0283:
5649 alc_write_coef_idx(codec, 0x45, 0xd029);
5650 msleep(300);
5651 val = alc_read_coef_idx(codec, 0x46);
5652 is_ctia = (val & 0x0070) == 0x0070;
5653 break;
1a5bc8d9 5654 case 0x10ec0298:
89542936
KY
5655 snd_hda_codec_write(codec, 0x21, 0,
5656 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5657 msleep(100);
5658 snd_hda_codec_write(codec, 0x21, 0,
5659 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5660 msleep(200);
5661
5662 val = alc_read_coef_idx(codec, 0x50);
5663 if (val & (1 << 12)) {
5664 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5665 alc_process_coef_fw(codec, coef0288);
5666 msleep(350);
5667 val = alc_read_coef_idx(codec, 0x50);
5668 is_ctia = (val & 0x0070) == 0x0070;
5669 } else {
5670 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5671 alc_process_coef_fw(codec, coef0288);
5672 msleep(350);
5673 val = alc_read_coef_idx(codec, 0x50);
5674 is_ctia = (val & 0x0070) == 0x0070;
5675 }
5676 alc_process_coef_fw(codec, coef0298);
5677 snd_hda_codec_write(codec, 0x21, 0,
5678 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5679 msleep(75);
5680 snd_hda_codec_write(codec, 0x21, 0,
5681 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5682 break;
f3b70332
KY
5683 case 0x10ec0286:
5684 case 0x10ec0288:
5685 alc_process_coef_fw(codec, coef0288);
5686 msleep(350);
5687 val = alc_read_coef_idx(codec, 0x50);
5688 is_ctia = (val & 0x0070) == 0x0070;
5689 break;
73bdd597
DH
5690 case 0x10ec0292:
5691 alc_write_coef_idx(codec, 0x6b, 0xd429);
5692 msleep(300);
5693 val = alc_read_coef_idx(codec, 0x6c);
5694 is_ctia = (val & 0x001c) == 0x001c;
5695 break;
a22aa26f 5696 case 0x10ec0293:
54db6c39 5697 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5698 msleep(300);
5699 val = alc_read_coef_idx(codec, 0x46);
5700 is_ctia = (val & 0x0070) == 0x0070;
5701 break;
73bdd597 5702 case 0x10ec0668:
54db6c39 5703 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5704 msleep(300);
5705 val = alc_read_coef_idx(codec, 0xbe);
5706 is_ctia = (val & 0x1c02) == 0x1c02;
5707 break;
c2b691ee 5708 case 0x10ec0215:
4cc9b9d6 5709 case 0x10ec0225:
c2b691ee 5710 case 0x10ec0285:
7d727869 5711 case 0x10ec0295:
c2b691ee 5712 case 0x10ec0289:
28f1f9b2 5713 case 0x10ec0299:
da911b1f
KY
5714 snd_hda_codec_write(codec, 0x21, 0,
5715 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5716 msleep(80);
5717 snd_hda_codec_write(codec, 0x21, 0,
5718 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5719
5a36767a
KY
5720 alc_process_coef_fw(codec, alc225_pre_hsmode);
5721 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5722 val = alc_read_coef_idx(codec, 0x45);
5723 if (val & (1 << 9)) {
5724 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5725 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5726 msleep(800);
5727 val = alc_read_coef_idx(codec, 0x46);
5728 is_ctia = (val & 0x00f0) == 0x00f0;
5729 } else {
5730 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5731 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5732 msleep(800);
5733 val = alc_read_coef_idx(codec, 0x46);
5734 is_ctia = (val & 0x00f0) == 0x00f0;
5735 }
5736 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5737 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5738 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
da911b1f
KY
5739
5740 snd_hda_codec_write(codec, 0x21, 0,
5741 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5742 msleep(80);
5743 snd_hda_codec_write(codec, 0x21, 0,
5744 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4cc9b9d6 5745 break;
78f4f7c2
KY
5746 case 0x10ec0867:
5747 is_ctia = true;
5748 break;
73bdd597
DH
5749 }
5750
4e76a883 5751 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
73bdd597
DH
5752 is_ctia ? "yes" : "no");
5753 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5754}
5755
5756static void alc_update_headset_mode(struct hda_codec *codec)
5757{
5758 struct alc_spec *spec = codec->spec;
5759
5760 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
35a39f98 5761 hda_nid_t hp_pin = alc_get_hp_pin(spec);
73bdd597
DH
5762
5763 int new_headset_mode;
5764
5765 if (!snd_hda_jack_detect(codec, hp_pin))
5766 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5767 else if (mux_pin == spec->headset_mic_pin)
5768 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5769 else if (mux_pin == spec->headphone_mic_pin)
5770 new_headset_mode = ALC_HEADSET_MODE_MIC;
5771 else
5772 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5773
5959a6bc
DH
5774 if (new_headset_mode == spec->current_headset_mode) {
5775 snd_hda_gen_update_outputs(codec);
73bdd597 5776 return;
5959a6bc 5777 }
73bdd597
DH
5778
5779 switch (new_headset_mode) {
5780 case ALC_HEADSET_MODE_UNPLUGGED:
5781 alc_headset_mode_unplugged(codec);
aeac1a0d
KY
5782 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5783 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
5784 spec->gen.hp_jack_present = false;
5785 break;
5786 case ALC_HEADSET_MODE_HEADSET:
5787 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5788 alc_determine_headset_type(codec);
5789 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5790 alc_headset_mode_ctia(codec);
5791 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5792 alc_headset_mode_omtp(codec);
5793 spec->gen.hp_jack_present = true;
5794 break;
5795 case ALC_HEADSET_MODE_MIC:
5796 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5797 spec->gen.hp_jack_present = false;
5798 break;
5799 case ALC_HEADSET_MODE_HEADPHONE:
5800 alc_headset_mode_default(codec);
5801 spec->gen.hp_jack_present = true;
5802 break;
5803 }
5804 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5805 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5806 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1f8b46cd 5807 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
73bdd597
DH
5808 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5809 PIN_VREFHIZ);
5810 }
5811 spec->current_headset_mode = new_headset_mode;
5812
5813 snd_hda_gen_update_outputs(codec);
5814}
5815
5816static void alc_update_headset_mode_hook(struct hda_codec *codec,
7fe30711
TI
5817 struct snd_kcontrol *kcontrol,
5818 struct snd_ctl_elem_value *ucontrol)
73bdd597
DH
5819{
5820 alc_update_headset_mode(codec);
5821}
5822
1a4f69d5
TI
5823static void alc_update_headset_jack_cb(struct hda_codec *codec,
5824 struct hda_jack_callback *jack)
73bdd597 5825{
73bdd597 5826 snd_hda_gen_hp_automute(codec, jack);
e54f30be 5827 alc_update_headset_mode(codec);
73bdd597
DH
5828}
5829
5830static void alc_probe_headset_mode(struct hda_codec *codec)
5831{
5832 int i;
5833 struct alc_spec *spec = codec->spec;
5834 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5835
5836 /* Find mic pins */
5837 for (i = 0; i < cfg->num_inputs; i++) {
5838 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5839 spec->headset_mic_pin = cfg->inputs[i].pin;
5840 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5841 spec->headphone_mic_pin = cfg->inputs[i].pin;
5842 }
5843
0bed2aa3 5844 WARN_ON(spec->gen.cap_sync_hook);
73bdd597
DH
5845 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5846 spec->gen.automute_hook = alc_update_headset_mode;
5847 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5848}
5849
5850static void alc_fixup_headset_mode(struct hda_codec *codec,
5851 const struct hda_fixup *fix, int action)
5852{
5853 struct alc_spec *spec = codec->spec;
5854
5855 switch (action) {
5856 case HDA_FIXUP_ACT_PRE_PROBE:
5857 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5858 break;
5859 case HDA_FIXUP_ACT_PROBE:
5860 alc_probe_headset_mode(codec);
5861 break;
5862 case HDA_FIXUP_ACT_INIT:
aeac1a0d
KY
5863 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5864 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5865 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5866 }
73bdd597
DH
5867 alc_update_headset_mode(codec);
5868 break;
5869 }
5870}
5871
5872static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5873 const struct hda_fixup *fix, int action)
5874{
5875 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5876 struct alc_spec *spec = codec->spec;
5877 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5878 }
5879 else
5880 alc_fixup_headset_mode(codec, fix, action);
5881}
5882
31278997
KY
5883static void alc255_set_default_jack_type(struct hda_codec *codec)
5884{
5885 /* Set to iphone type */
6b0f95c4 5886 static const struct coef_fw alc255fw[] = {
54db6c39
TI
5887 WRITE_COEF(0x1b, 0x880b),
5888 WRITE_COEF(0x45, 0xd089),
5889 WRITE_COEF(0x1b, 0x080b),
5890 WRITE_COEF(0x46, 0x0004),
5891 WRITE_COEF(0x1b, 0x0c0b),
5892 {}
5893 };
6b0f95c4 5894 static const struct coef_fw alc256fw[] = {
e69e7e03
KY
5895 WRITE_COEF(0x1b, 0x884b),
5896 WRITE_COEF(0x45, 0xd089),
5897 WRITE_COEF(0x1b, 0x084b),
5898 WRITE_COEF(0x46, 0x0004),
5899 WRITE_COEF(0x1b, 0x0c4b),
5900 {}
5901 };
5902 switch (codec->core.vendor_id) {
5903 case 0x10ec0255:
5904 alc_process_coef_fw(codec, alc255fw);
5905 break;
1948fc06 5906 case 0x10ec0230:
736f20a7 5907 case 0x10ec0236:
e69e7e03 5908 case 0x10ec0256:
527f4643 5909 case 0x19e58326:
e69e7e03
KY
5910 alc_process_coef_fw(codec, alc256fw);
5911 break;
5912 }
31278997
KY
5913 msleep(30);
5914}
5915
9a22a8f5
KY
5916static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5917 const struct hda_fixup *fix, int action)
5918{
5919 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
31278997 5920 alc255_set_default_jack_type(codec);
9a22a8f5
KY
5921 }
5922 alc_fixup_headset_mode(codec, fix, action);
5923}
5924
31278997
KY
5925static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5926 const struct hda_fixup *fix, int action)
5927{
5928 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5929 struct alc_spec *spec = codec->spec;
5930 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5931 alc255_set_default_jack_type(codec);
72cea3a3 5932 }
31278997
KY
5933 else
5934 alc_fixup_headset_mode(codec, fix, action);
5935}
5936
e1e62b98
KY
5937static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5938 struct hda_jack_callback *jack)
5939{
5940 struct alc_spec *spec = codec->spec;
e1e62b98
KY
5941
5942 alc_update_headset_jack_cb(codec, jack);
5943 /* Headset Mic enable or disable, only for Dell Dino */
d44a6864 5944 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
e1e62b98
KY
5945}
5946
5947static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5948 const struct hda_fixup *fix, int action)
5949{
5950 alc_fixup_headset_mode(codec, fix, action);
5951 if (action == HDA_FIXUP_ACT_PROBE) {
5952 struct alc_spec *spec = codec->spec;
d44a6864
TI
5953 /* toggled via hp_automute_hook */
5954 spec->gpio_mask |= 0x40;
5955 spec->gpio_dir |= 0x40;
e1e62b98
KY
5956 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5957 }
5958}
5959
493a52a9
HW
5960static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5961 const struct hda_fixup *fix, int action)
5962{
5963 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5964 struct alc_spec *spec = codec->spec;
5965 spec->gen.auto_mute_via_amp = 1;
5966 }
5967}
5968
9b745ab8
TI
5969static void alc_fixup_no_shutup(struct hda_codec *codec,
5970 const struct hda_fixup *fix, int action)
5971{
efe55732 5972 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9b745ab8 5973 struct alc_spec *spec = codec->spec;
c0ca5ece 5974 spec->no_shutup_pins = 1;
9b745ab8
TI
5975 }
5976}
5977
5e6db669
GM
5978static void alc_fixup_disable_aamix(struct hda_codec *codec,
5979 const struct hda_fixup *fix, int action)
5980{
5981 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5982 struct alc_spec *spec = codec->spec;
5983 /* Disable AA-loopback as it causes white noise */
5984 spec->gen.mixer_nid = 0;
5985 }
5986}
5987
7f57d803
TI
5988/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5989static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5990 const struct hda_fixup *fix, int action)
5991{
5992 static const struct hda_pintbl pincfgs[] = {
5993 { 0x16, 0x21211010 }, /* dock headphone */
5994 { 0x19, 0x21a11010 }, /* dock mic */
5995 { }
5996 };
5997 struct alc_spec *spec = codec->spec;
5998
5999 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6000 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6001 codec->power_save_node = 0; /* avoid click noises */
6002 snd_hda_apply_pincfgs(codec, pincfgs);
6003 }
6004}
6005
61fcf8ec
KY
6006static void alc_fixup_tpt470_dock(struct hda_codec *codec,
6007 const struct hda_fixup *fix, int action)
6008{
6009 static const struct hda_pintbl pincfgs[] = {
6010 { 0x17, 0x21211010 }, /* dock headphone */
6011 { 0x19, 0x21a11010 }, /* dock mic */
6012 { }
6013 };
6014 struct alc_spec *spec = codec->spec;
6015
6016 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6017 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
71db96dd
TI
6018 snd_hda_apply_pincfgs(codec, pincfgs);
6019 } else if (action == HDA_FIXUP_ACT_INIT) {
61fcf8ec
KY
6020 /* Enable DOCK device */
6021 snd_hda_codec_write(codec, 0x17, 0,
6022 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6023 /* Enable DOCK device */
6024 snd_hda_codec_write(codec, 0x19, 0,
6025 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
61fcf8ec
KY
6026 }
6027}
6028
399c01aa
TI
6029static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6030 const struct hda_fixup *fix, int action)
6031{
6032 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6033 * the speaker output becomes too low by some reason on Thinkpads with
6034 * ALC298 codec
6035 */
6036 static const hda_nid_t preferred_pairs[] = {
6037 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6038 0
6039 };
6040 struct alc_spec *spec = codec->spec;
6041
6042 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6043 spec->gen.preferred_dacs = preferred_pairs;
6044}
6045
8eedd3a7
TI
6046static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6047 const struct hda_fixup *fix, int action)
6048{
6049 static const hda_nid_t preferred_pairs[] = {
6050 0x17, 0x02, 0x21, 0x03, 0
6051 };
6052 struct alc_spec *spec = codec->spec;
6053
6054 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6055 spec->gen.preferred_dacs = preferred_pairs;
6056}
6057
9476d369 6058static void alc_shutup_dell_xps13(struct hda_codec *codec)
033b0a7c
GM
6059{
6060 struct alc_spec *spec = codec->spec;
35a39f98 6061 int hp_pin = alc_get_hp_pin(spec);
033b0a7c 6062
9476d369
GM
6063 /* Prevent pop noises when headphones are plugged in */
6064 snd_hda_codec_write(codec, hp_pin, 0,
6065 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6066 msleep(20);
033b0a7c
GM
6067}
6068
6069static void alc_fixup_dell_xps13(struct hda_codec *codec,
6070 const struct hda_fixup *fix, int action)
6071{
3e1b0c4a
TI
6072 struct alc_spec *spec = codec->spec;
6073 struct hda_input_mux *imux = &spec->gen.input_mux;
6074 int i;
f38663ab 6075
3e1b0c4a
TI
6076 switch (action) {
6077 case HDA_FIXUP_ACT_PRE_PROBE:
6078 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6079 * it causes a click noise at start up
6080 */
6081 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
efe55732 6082 spec->shutup = alc_shutup_dell_xps13;
3e1b0c4a
TI
6083 break;
6084 case HDA_FIXUP_ACT_PROBE:
f38663ab
GM
6085 /* Make the internal mic the default input source. */
6086 for (i = 0; i < imux->num_items; i++) {
6087 if (spec->gen.imux_pins[i] == 0x12) {
6088 spec->gen.cur_mux[0] = i;
6089 break;
6090 }
6091 }
3e1b0c4a 6092 break;
033b0a7c
GM
6093 }
6094}
6095
1f8b46cd
DH
6096static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6097 const struct hda_fixup *fix, int action)
6098{
6099 struct alc_spec *spec = codec->spec;
6100
6101 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6102 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6103 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
b40eda64
DH
6104
6105 /* Disable boost for mic-in permanently. (This code is only called
6106 from quirks that guarantee that the headphone is at NID 0x1b.) */
6107 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6108 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
1f8b46cd
DH
6109 } else
6110 alc_fixup_headset_mode(codec, fix, action);
6111}
6112
73bdd597
DH
6113static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6114 const struct hda_fixup *fix, int action)
6115{
6116 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
73bdd597 6117 alc_write_coef_idx(codec, 0xc4, 0x8000);
98b24883 6118 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
73bdd597
DH
6119 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6120 }
6121 alc_fixup_headset_mode(codec, fix, action);
6122}
6123
bde7bc60
CCC
6124/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6125static int find_ext_mic_pin(struct hda_codec *codec)
6126{
6127 struct alc_spec *spec = codec->spec;
6128 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6129 hda_nid_t nid;
6130 unsigned int defcfg;
6131 int i;
6132
6133 for (i = 0; i < cfg->num_inputs; i++) {
6134 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6135 continue;
6136 nid = cfg->inputs[i].pin;
6137 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6138 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6139 continue;
6140 return nid;
6141 }
6142
6143 return 0;
6144}
6145
08a978db 6146static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 6147 const struct hda_fixup *fix,
08a978db
DR
6148 int action)
6149{
6150 struct alc_spec *spec = codec->spec;
6151
0db75790 6152 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60 6153 int mic_pin = find_ext_mic_pin(codec);
35a39f98 6154 int hp_pin = alc_get_hp_pin(spec);
bde7bc60
CCC
6155
6156 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 6157 return;
bde7bc60 6158 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 6159 }
08a978db 6160}
693b613d 6161
3e0d611b
DH
6162static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6163 const struct hda_fixup *fix,
6164 int action)
6165{
6166 struct alc_spec *spec = codec->spec;
6167 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6168 int i;
6169
6170 /* The mic boosts on level 2 and 3 are too noisy
6171 on the internal mic input.
6172 Therefore limit the boost to 0 or 1. */
6173
6174 if (action != HDA_FIXUP_ACT_PROBE)
6175 return;
6176
6177 for (i = 0; i < cfg->num_inputs; i++) {
6178 hda_nid_t nid = cfg->inputs[i].pin;
6179 unsigned int defcfg;
6180 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6181 continue;
6182 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6183 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6184 continue;
6185
6186 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6187 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6188 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6189 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6190 (0 << AC_AMPCAP_MUTE_SHIFT));
6191 }
6192}
6193
cd217a63 6194static void alc283_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 6195 struct hda_jack_callback *jack)
cd217a63
KY
6196{
6197 struct alc_spec *spec = codec->spec;
6198 int vref;
6199
6200 msleep(200);
6201 snd_hda_gen_hp_automute(codec, jack);
6202
6203 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6204
6205 msleep(600);
6206 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6207 vref);
6208}
6209
cd217a63
KY
6210static void alc283_fixup_chromebook(struct hda_codec *codec,
6211 const struct hda_fixup *fix, int action)
6212{
6213 struct alc_spec *spec = codec->spec;
cd217a63
KY
6214
6215 switch (action) {
6216 case HDA_FIXUP_ACT_PRE_PROBE:
0202e99c 6217 snd_hda_override_wcaps(codec, 0x03, 0);
d2e92709
TI
6218 /* Disable AA-loopback as it causes white noise */
6219 spec->gen.mixer_nid = 0;
38070219 6220 break;
0202e99c 6221 case HDA_FIXUP_ACT_INIT:
de9481cb
KY
6222 /* MIC2-VREF control */
6223 /* Set to manual mode */
98b24883 6224 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
0202e99c 6225 /* Enable Line1 input control by verb */
98b24883 6226 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
0202e99c
KY
6227 break;
6228 }
6229}
6230
6231static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6232 const struct hda_fixup *fix, int action)
6233{
6234 struct alc_spec *spec = codec->spec;
0202e99c
KY
6235
6236 switch (action) {
6237 case HDA_FIXUP_ACT_PRE_PROBE:
cd217a63 6238 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
6239 break;
6240 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
6241 /* MIC2-VREF control */
6242 /* Set to manual mode */
98b24883 6243 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
cd217a63
KY
6244 break;
6245 }
6246}
6247
7bba2157
TI
6248/* mute tablet speaker pin (0x14) via dock plugging in addition */
6249static void asus_tx300_automute(struct hda_codec *codec)
6250{
6251 struct alc_spec *spec = codec->spec;
6252 snd_hda_gen_update_outputs(codec);
6253 if (snd_hda_jack_detect(codec, 0x1b))
6254 spec->gen.mute_bits |= (1ULL << 0x14);
6255}
6256
6257static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6258 const struct hda_fixup *fix, int action)
6259{
6260 struct alc_spec *spec = codec->spec;
7bba2157
TI
6261 static const struct hda_pintbl dock_pins[] = {
6262 { 0x1b, 0x21114000 }, /* dock speaker pin */
6263 {}
6264 };
7bba2157
TI
6265
6266 switch (action) {
6267 case HDA_FIXUP_ACT_PRE_PROBE:
1c76aa5f 6268 spec->init_amp = ALC_INIT_DEFAULT;
ae065f1c
TI
6269 /* TX300 needs to set up GPIO2 for the speaker amp */
6270 alc_setup_gpio(codec, 0x04);
7bba2157
TI
6271 snd_hda_apply_pincfgs(codec, dock_pins);
6272 spec->gen.auto_mute_via_amp = 1;
6273 spec->gen.automute_hook = asus_tx300_automute;
6274 snd_hda_jack_detect_enable_callback(codec, 0x1b,
7bba2157
TI
6275 snd_hda_gen_hp_automute);
6276 break;
5579cd6f
TI
6277 case HDA_FIXUP_ACT_PROBE:
6278 spec->init_amp = ALC_INIT_DEFAULT;
6279 break;
7bba2157
TI
6280 case HDA_FIXUP_ACT_BUILD:
6281 /* this is a bit tricky; give more sane names for the main
6282 * (tablet) speaker and the dock speaker, respectively
6283 */
56798e6b
TI
6284 rename_ctl(codec, "Speaker Playback Switch",
6285 "Dock Speaker Playback Switch");
6286 rename_ctl(codec, "Bass Speaker Playback Switch",
6287 "Speaker Playback Switch");
7bba2157
TI
6288 break;
6289 }
6290}
6291
338cae56
DH
6292static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6293 const struct hda_fixup *fix, int action)
6294{
0f4881dc
DH
6295 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6296 /* DAC node 0x03 is giving mono output. We therefore want to
6297 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6298 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
caf3c043
MM
6299 static const hda_nid_t conn1[] = { 0x0c };
6300 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6301 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
0f4881dc 6302 }
338cae56
DH
6303}
6304
dd9aa335
HW
6305static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6306 const struct hda_fixup *fix, int action)
6307{
6308 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6309 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6310 we can't adjust the speaker's volume since this node does not has
6311 Amp-out capability. we change the speaker's route to:
6312 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6313 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6314 speaker's volume now. */
6315
caf3c043
MM
6316 static const hda_nid_t conn1[] = { 0x0c };
6317 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
dd9aa335
HW
6318 }
6319}
6320
e312a869
TI
6321/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6322static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6323 const struct hda_fixup *fix, int action)
6324{
6325 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6326 static const hda_nid_t conn[] = { 0x02, 0x03 };
6327 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
e312a869
TI
6328 }
6329}
6330
d2cd795c
JK
6331/* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6332static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6333 const struct hda_fixup *fix, int action)
6334{
6335 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6336 static const hda_nid_t conn[] = { 0x02 };
6337 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
d2cd795c
JK
6338 }
6339}
6340
98973f2f
KP
6341/* Hook to update amp GPIO4 for automute */
6342static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6343 struct hda_jack_callback *jack)
6344{
6345 struct alc_spec *spec = codec->spec;
6346
6347 snd_hda_gen_hp_automute(codec, jack);
6348 /* mute_led_polarity is set to 0, so we pass inverted value here */
dbd13179
KHF
6349 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6350 !spec->gen.hp_jack_present);
98973f2f
KP
6351}
6352
6353/* Manage GPIOs for HP EliteBook Folio 9480m.
6354 *
6355 * GPIO4 is the headphone amplifier power control
6356 * GPIO3 is the audio output mute indicator LED
6357 */
6358
6359static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6360 const struct hda_fixup *fix,
6361 int action)
6362{
6363 struct alc_spec *spec = codec->spec;
98973f2f 6364
01e4a275 6365 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
98973f2f 6366 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
6367 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6368 spec->gpio_mask |= 0x10;
6369 spec->gpio_dir |= 0x10;
98973f2f 6370 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
98973f2f
KP
6371 }
6372}
6373
ae065f1c
TI
6374static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6375 const struct hda_fixup *fix,
6376 int action)
6377{
6378 struct alc_spec *spec = codec->spec;
6379
6380 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6381 spec->gpio_mask |= 0x04;
6382 spec->gpio_dir |= 0x04;
6383 /* set data bit low */
6384 }
6385}
6386
6a6660d0
TI
6387/* Quirk for Thinkpad X1 7th and 8th Gen
6388 * The following fixed routing needed
6389 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6390 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6391 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6392 */
6393static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6394 const struct hda_fixup *fix, int action)
6395{
6396 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6397 static const hda_nid_t preferred_pairs[] = {
6398 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6399 };
6400 struct alc_spec *spec = codec->spec;
6401
6402 switch (action) {
6403 case HDA_FIXUP_ACT_PRE_PROBE:
6404 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6405 spec->gen.preferred_dacs = preferred_pairs;
6406 break;
6407 case HDA_FIXUP_ACT_BUILD:
6408 /* The generic parser creates somewhat unintuitive volume ctls
6409 * with the fixed routing above, and the shared DAC2 may be
6410 * confusing for PA.
6411 * Rename those to unique names so that PA doesn't touch them
6412 * and use only Master volume.
6413 */
6414 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6415 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6416 break;
6417 }
6418}
6419
ca169cc2
KY
6420static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6421 const struct hda_fixup *fix,
6422 int action)
6423{
6424 alc_fixup_dual_codecs(codec, fix, action);
6425 switch (action) {
6426 case HDA_FIXUP_ACT_PRE_PROBE:
6427 /* override card longname to provide a unique UCM profile */
6428 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6429 break;
6430 case HDA_FIXUP_ACT_BUILD:
6431 /* rename Capture controls depending on the codec */
6432 rename_ctl(codec, "Capture Volume",
6433 codec->addr == 0 ?
6434 "Rear-Panel Capture Volume" :
6435 "Front-Panel Capture Volume");
6436 rename_ctl(codec, "Capture Switch",
6437 codec->addr == 0 ?
6438 "Rear-Panel Capture Switch" :
6439 "Front-Panel Capture Switch");
6440 break;
6441 }
6442}
6443
52e4e368
KHF
6444static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6445 const struct hda_fixup *fix, int action)
6446{
6447 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6448 return;
6449
6450 codec->power_save_node = 1;
6451}
6452
92266651
KY
6453/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6454static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6455 const struct hda_fixup *fix, int action)
6456{
6457 struct alc_spec *spec = codec->spec;
caf3c043 6458 static const hda_nid_t preferred_pairs[] = {
92266651
KY
6459 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6460 0
6461 };
6462
6463 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6464 return;
6465
6466 spec->gen.preferred_dacs = preferred_pairs;
0700d3d1
KY
6467 spec->gen.auto_mute_via_amp = 1;
6468 codec->power_save_node = 0;
92266651
KY
6469}
6470
c84bfedc
TI
6471/* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6472static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6473 const struct hda_fixup *fix, int action)
6474{
6475 static const hda_nid_t preferred_pairs[] = {
6476 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6477 };
6478 struct alc_spec *spec = codec->spec;
6479
6480 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6481 spec->gen.preferred_dacs = preferred_pairs;
6482 spec->gen.obey_preferred_dacs = 1;
6483 }
6484}
6485
c4cfcf6f
HW
6486/* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6487static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6488 const struct hda_fixup *fix, int action)
6489{
6490 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6491 return;
6492
6493 snd_hda_override_wcaps(codec, 0x03, 0);
6494}
6495
8a8de09c
KY
6496static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6497{
6498 switch (codec->core.vendor_id) {
6499 case 0x10ec0274:
6500 case 0x10ec0294:
6501 case 0x10ec0225:
6502 case 0x10ec0295:
6503 case 0x10ec0299:
6504 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6505 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6506 break;
1948fc06 6507 case 0x10ec0230:
8a8de09c
KY
6508 case 0x10ec0235:
6509 case 0x10ec0236:
6510 case 0x10ec0255:
6511 case 0x10ec0256:
cae2bdb5 6512 case 0x10ec0257:
527f4643 6513 case 0x19e58326:
8a8de09c
KY
6514 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6515 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6516 break;
6517 }
6518}
6519
8983eb60
KY
6520static void alc295_fixup_chromebook(struct hda_codec *codec,
6521 const struct hda_fixup *fix, int action)
6522{
d3ba58bb
KY
6523 struct alc_spec *spec = codec->spec;
6524
8983eb60 6525 switch (action) {
d3ba58bb
KY
6526 case HDA_FIXUP_ACT_PRE_PROBE:
6527 spec->ultra_low_power = true;
6528 break;
8983eb60 6529 case HDA_FIXUP_ACT_INIT:
8a8de09c 6530 alc_combo_jack_hp_jd_restart(codec);
8983eb60
KY
6531 break;
6532 }
6533}
6534
d1dd4211
KY
6535static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6536 const struct hda_fixup *fix, int action)
6537{
6538 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6539 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6540}
6541
c3cdf189
LJ
6542
6543static void alc294_gx502_toggle_output(struct hda_codec *codec,
6544 struct hda_jack_callback *cb)
6545{
6546 /* The Windows driver sets the codec up in a very different way where
6547 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6548 */
6549 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6550 alc_write_coef_idx(codec, 0x10, 0x8a20);
6551 else
6552 alc_write_coef_idx(codec, 0x10, 0x0a20);
6553}
6554
6555static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6556 const struct hda_fixup *fix, int action)
6557{
6558 /* Pin 0x21: headphones/headset mic */
6559 if (!is_jack_detectable(codec, 0x21))
6560 return;
6561
6562 switch (action) {
6563 case HDA_FIXUP_ACT_PRE_PROBE:
6564 snd_hda_jack_detect_enable_callback(codec, 0x21,
6565 alc294_gx502_toggle_output);
6566 break;
6567 case HDA_FIXUP_ACT_INIT:
6568 /* Make sure to start in a correct state, i.e. if
6569 * headphones have been plugged in before powering up the system
6570 */
6571 alc294_gx502_toggle_output(codec, NULL);
6572 break;
6573 }
6574}
6575
c1b55029
DC
6576static void alc294_gu502_toggle_output(struct hda_codec *codec,
6577 struct hda_jack_callback *cb)
6578{
6579 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6580 * responsible from changes between speakers and headphones
6581 */
6582 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6583 alc_write_coef_idx(codec, 0x10, 0x8420);
6584 else
6585 alc_write_coef_idx(codec, 0x10, 0x0a20);
6586}
6587
6588static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6589 const struct hda_fixup *fix, int action)
6590{
6591 if (!is_jack_detectable(codec, 0x21))
6592 return;
6593
6594 switch (action) {
6595 case HDA_FIXUP_ACT_PRE_PROBE:
6596 snd_hda_jack_detect_enable_callback(codec, 0x21,
6597 alc294_gu502_toggle_output);
6598 break;
6599 case HDA_FIXUP_ACT_INIT:
6600 alc294_gu502_toggle_output(codec, NULL);
6601 break;
6602 }
6603}
6604
56496253
KY
6605static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6606 const struct hda_fixup *fix, int action)
6607{
6608 if (action != HDA_FIXUP_ACT_INIT)
6609 return;
6610
6611 msleep(100);
6612 alc_write_coef_idx(codec, 0x65, 0x0);
6613}
6614
8a8de09c
KY
6615static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6616 const struct hda_fixup *fix, int action)
6617{
6618 switch (action) {
6619 case HDA_FIXUP_ACT_INIT:
6620 alc_combo_jack_hp_jd_restart(codec);
6621 break;
6622 }
6623}
6624
92666d45
KY
6625static void alc_fixup_no_int_mic(struct hda_codec *codec,
6626 const struct hda_fixup *fix, int action)
6627{
6628 struct alc_spec *spec = codec->spec;
6629
6630 switch (action) {
6631 case HDA_FIXUP_ACT_PRE_PROBE:
6632 /* Mic RING SLEEVE swap for combo jack */
6633 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6634 spec->no_internal_mic_pin = true;
6635 break;
6636 case HDA_FIXUP_ACT_INIT:
6637 alc_combo_jack_hp_jd_restart(codec);
6638 break;
6639 }
6640}
6641
d94befbb
DB
6642/* GPIO1 = amplifier on/off
6643 * GPIO3 = mic mute LED
6644 */
6645static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6646 const struct hda_fixup *fix, int action)
6647{
6648 static const hda_nid_t conn[] = { 0x02 };
6649
6650 struct alc_spec *spec = codec->spec;
6651 static const struct hda_pintbl pincfgs[] = {
6652 { 0x14, 0x90170110 }, /* front/high speakers */
6653 { 0x17, 0x90170130 }, /* back/bass speakers */
6654 { }
6655 };
6656
6657 //enable micmute led
6658 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6659
6660 switch (action) {
6661 case HDA_FIXUP_ACT_PRE_PROBE:
6662 spec->micmute_led_polarity = 1;
6663 /* needed for amp of back speakers */
6664 spec->gpio_mask |= 0x01;
6665 spec->gpio_dir |= 0x01;
6666 snd_hda_apply_pincfgs(codec, pincfgs);
6667 /* share DAC to have unified volume control */
6668 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6669 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6670 break;
6671 case HDA_FIXUP_ACT_INIT:
6672 /* need to toggle GPIO to enable the amp of back speakers */
6673 alc_update_gpio_data(codec, 0x01, true);
6674 msleep(100);
6675 alc_update_gpio_data(codec, 0x01, false);
6676 break;
6677 }
6678}
6679
434591b2
ED
6680static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6681 const struct hda_fixup *fix, int action)
6682{
6683 static const hda_nid_t conn[] = { 0x02 };
6684 static const struct hda_pintbl pincfgs[] = {
6685 { 0x14, 0x90170110 }, /* rear speaker */
6686 { }
6687 };
6688
6689 switch (action) {
6690 case HDA_FIXUP_ACT_PRE_PROBE:
6691 snd_hda_apply_pincfgs(codec, pincfgs);
6692 /* force front speaker to DAC1 */
6693 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6694 break;
6695 }
6696}
6697
b317b032
TI
6698/* for hda_fixup_thinkpad_acpi() */
6699#include "thinkpad_helper.c"
b67ae3f1 6700
d5a6cabf
TI
6701static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6702 const struct hda_fixup *fix, int action)
6703{
6704 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6705 hda_fixup_thinkpad_acpi(codec, fix, action);
6706}
6707
ad7cc2d4
CB
6708/* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6709static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6710 const struct hda_fixup *fix,
6711 int action)
6712{
6713 struct alc_spec *spec = codec->spec;
6714
6715 switch (action) {
6716 case HDA_FIXUP_ACT_PRE_PROBE:
6717 spec->gen.suppress_auto_mute = 1;
6718 break;
6719 }
6720}
6721
7ce66933
SB
6722#ifdef CONFIG_ACPI
6723static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data)
6724{
6725 struct hda_codec *cdc = data;
6726 struct alc_spec *spec = cdc->spec;
6727 int i;
6728
6729 codec_info(cdc, "ACPI Notification %d\n", event);
6730
6731 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6732 if (spec->comps[i].dev && spec->comps[i].acpi_notify)
6733 spec->comps[i].acpi_notify(acpi_device_handle(spec->comps[i].adev), event,
6734 spec->comps[i].dev);
6735 }
6736}
6737
6738static int comp_bind_acpi(struct device *dev)
6739{
6740 struct hda_codec *cdc = dev_to_hda_codec(dev);
6741 struct alc_spec *spec = cdc->spec;
6742 bool support_notifications = false;
6743 struct acpi_device *adev;
6744 int ret;
6745 int i;
6746
6747 adev = spec->comps[0].adev;
6748 if (!acpi_device_handle(adev))
6749 return 0;
6750
6751 for (i = 0; i < HDA_MAX_COMPONENTS; i++)
6752 support_notifications = support_notifications ||
6753 spec->comps[i].acpi_notifications_supported;
6754
6755 if (support_notifications) {
6756 ret = acpi_install_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6757 comp_acpi_device_notify, cdc);
6758 if (ret < 0) {
6759 codec_warn(cdc, "Failed to install notify handler: %d\n", ret);
6760 return 0;
6761 }
6762
6763 codec_dbg(cdc, "Notify handler installed\n");
6764 }
6765
6766 return 0;
6767}
6768
6769static void comp_unbind_acpi(struct device *dev)
6770{
6771 struct hda_codec *cdc = dev_to_hda_codec(dev);
6772 struct alc_spec *spec = cdc->spec;
6773 struct acpi_device *adev;
6774 int ret;
6775
6776 adev = spec->comps[0].adev;
6777 if (!acpi_device_handle(adev))
6778 return;
6779
6780 ret = acpi_remove_notify_handler(adev->handle, ACPI_DEVICE_NOTIFY,
6781 comp_acpi_device_notify);
6782 if (ret < 0)
6783 codec_warn(cdc, "Failed to uninstall notify handler: %d\n", ret);
6784}
6785#else
6786static int comp_bind_acpi(struct device *dev)
6787{
6788 return 0;
6789}
6790
6791static void comp_unbind_acpi(struct device *dev)
6792{
6793}
6794#endif
6795
d3dca026
LT
6796static int comp_bind(struct device *dev)
6797{
6798 struct hda_codec *cdc = dev_to_hda_codec(dev);
6799 struct alc_spec *spec = cdc->spec;
7ce66933
SB
6800 int ret;
6801
6802 ret = component_bind_all(dev, spec->comps);
6803 if (ret)
6804 return ret;
1873ebd3 6805
7ce66933 6806 return comp_bind_acpi(dev);
d3dca026
LT
6807}
6808
6809static void comp_unbind(struct device *dev)
6810{
6811 struct hda_codec *cdc = dev_to_hda_codec(dev);
6812 struct alc_spec *spec = cdc->spec;
6813
7ce66933 6814 comp_unbind_acpi(dev);
d3dca026
LT
6815 component_unbind_all(dev, spec->comps);
6816}
6817
6818static const struct component_master_ops comp_master_ops = {
6819 .bind = comp_bind,
6820 .unbind = comp_unbind,
6821};
6822
6823static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6824 struct snd_pcm_substream *sub, int action)
6825{
6826 struct alc_spec *spec = cdc->spec;
6827 int i;
6828
6829 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
4eae4892
SB
6830 if (spec->comps[i].dev && spec->comps[i].pre_playback_hook)
6831 spec->comps[i].pre_playback_hook(spec->comps[i].dev, action);
6832 }
6833 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6834 if (spec->comps[i].dev && spec->comps[i].playback_hook)
d3dca026
LT
6835 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6836 }
4eae4892
SB
6837 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6838 if (spec->comps[i].dev && spec->comps[i].post_playback_hook)
6839 spec->comps[i].post_playback_hook(spec->comps[i].dev, action);
6840 }
d3dca026
LT
6841}
6842
3babae91 6843struct scodec_dev_name {
35a17444
TI
6844 const char *bus;
6845 const char *hid;
6846 int index;
6847};
6848
6849/* match the device name in a slightly relaxed manner */
6850static int comp_match_cs35l41_dev_name(struct device *dev, void *data)
6851{
3babae91 6852 struct scodec_dev_name *p = data;
35a17444
TI
6853 const char *d = dev_name(dev);
6854 int n = strlen(p->bus);
6855 char tmp[32];
6856
6857 /* check the bus name */
6858 if (strncmp(d, p->bus, n))
6859 return 0;
6860 /* skip the bus number */
6861 if (isdigit(d[n]))
6862 n++;
6863 /* the rest must be exact matching */
6864 snprintf(tmp, sizeof(tmp), "-%s:00-cs35l41-hda.%d", p->hid, p->index);
6865 return !strcmp(d + n, tmp);
6866}
6867
3babae91
SD
6868static int comp_match_tas2781_dev_name(struct device *dev,
6869 void *data)
6870{
6871 struct scodec_dev_name *p = data;
6872 const char *d = dev_name(dev);
6873 int n = strlen(p->bus);
6874 char tmp[32];
6875
6876 /* check the bus name */
6877 if (strncmp(d, p->bus, n))
6878 return 0;
6879 /* skip the bus number */
6880 if (isdigit(d[n]))
6881 n++;
6882 /* the rest must be exact matching */
6883 snprintf(tmp, sizeof(tmp), "-%s:00", p->hid);
6884
6885 return !strcmp(d + n, tmp);
6886}
6887
ae7abe36
SB
6888static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6889 const char *hid, int count)
6890{
6891 struct device *dev = hda_codec_dev(cdc);
6892 struct alc_spec *spec = cdc->spec;
3babae91 6893 struct scodec_dev_name *rec;
ae7abe36
SB
6894 int ret, i;
6895
6896 switch (action) {
6897 case HDA_FIXUP_ACT_PRE_PROBE:
6898 for (i = 0; i < count; i++) {
35a17444
TI
6899 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6900 if (!rec)
ae7abe36 6901 return;
35a17444
TI
6902 rec->bus = bus;
6903 rec->hid = hid;
6904 rec->index = i;
22d5cbd2 6905 spec->comps[i].codec = cdc;
35a17444
TI
6906 component_match_add(dev, &spec->match,
6907 comp_match_cs35l41_dev_name, rec);
ae7abe36
SB
6908 }
6909 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6910 if (ret)
6911 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6912 else
6913 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6914 break;
ebcbfd84
SB
6915 case HDA_FIXUP_ACT_FREE:
6916 component_master_del(dev, &comp_master_ops);
6917 break;
ae7abe36
SB
6918 }
6919}
6920
3babae91
SD
6921static void tas2781_generic_fixup(struct hda_codec *cdc, int action,
6922 const char *bus, const char *hid)
6923{
6924 struct device *dev = hda_codec_dev(cdc);
6925 struct alc_spec *spec = cdc->spec;
6926 struct scodec_dev_name *rec;
6927 int ret;
6928
6929 switch (action) {
6930 case HDA_FIXUP_ACT_PRE_PROBE:
6931 rec = devm_kmalloc(dev, sizeof(*rec), GFP_KERNEL);
6932 if (!rec)
6933 return;
6934 rec->bus = bus;
6935 rec->hid = hid;
6936 rec->index = 0;
6937 spec->comps[0].codec = cdc;
6938 component_match_add(dev, &spec->match,
6939 comp_match_tas2781_dev_name, rec);
6940 ret = component_master_add_with_match(dev, &comp_master_ops,
6941 spec->match);
6942 if (ret)
6943 codec_err(cdc,
6944 "Fail to register component aggregator %d\n",
6945 ret);
6946 else
6947 spec->gen.pcm_playback_hook =
6948 comp_generic_playback_hook;
6949 break;
6950 case HDA_FIXUP_ACT_FREE:
6951 component_master_del(dev, &comp_master_ops);
6952 break;
6953 }
6954}
6955
ae7abe36
SB
6956static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6957{
6958 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6959}
6960
42320660
SB
6961static void cs35l41_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6962{
6963 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 4);
6964}
6965
07bcab93
LT
6966static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6967{
35a17444 6968 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 2);
225f6e1b
TI
6969}
6970
07bcab93
LT
6971static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6972{
35a17444 6973 cs35l41_generic_fixup(codec, action, "spi", "CSC3551", 4);
07bcab93
LT
6974}
6975
d3dca026
LT
6976static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6977 int action)
6978{
14e42cee 6979 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0100", 2);
d3dca026
LT
6980}
6981
1e24881d
LT
6982static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6983 int action)
6984{
6985 cs35l41_generic_fixup(cdc, action, "i2c", "CLSA0101", 2);
6986}
6987
3babae91
SD
6988static void tas2781_fixup_i2c(struct hda_codec *cdc,
6989 const struct hda_fixup *fix, int action)
6990{
6991 tas2781_generic_fixup(cdc, action, "i2c", "TIAS2781");
6992}
6993
b5cb53fd
GK
6994static void yoga7_14arb7_fixup_i2c(struct hda_codec *cdc,
6995 const struct hda_fixup *fix, int action)
6996{
6997 tas2781_generic_fixup(cdc, action, "i2c", "INT8866");
6998}
6999
bbf8ff6b
TB
7000/* for alc295_fixup_hp_top_speakers */
7001#include "hp_x360_helper.c"
7002
26928ca1
TI
7003/* for alc285_fixup_ideapad_s740_coef() */
7004#include "ideapad_s740_helper.c"
7005
619764cc
WS
7006static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
7007 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
7008 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
7009 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
7010 {}
7011};
7012
7013static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
7014 const struct hda_fixup *fix,
7015 int action)
dd6dd6e3
WS
7016{
7017 /*
619764cc
WS
7018 * A certain other OS sets these coeffs to different values. On at least
7019 * one TongFang barebone these settings might survive even a cold
7020 * reboot. So to restore a clean slate the values are explicitly reset
7021 * to default here. Without this, the external microphone is always in a
7022 * plugged-in state, while the internal microphone is always in an
7023 * unplugged state, breaking the ability to use the internal microphone.
7024 */
7025 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
dd6dd6e3
WS
7026}
7027
174a7fb3
WS
7028static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
7029 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
7030 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
7031 WRITE_COEF(0x49, 0x0149),
7032 {}
7033};
7034
7035static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
7036 const struct hda_fixup *fix,
7037 int action)
7038{
7039 /*
7040 * The audio jack input and output is not detected on the ASRock NUC Box
7041 * 1100 series when cold booting without this fix. Warm rebooting from a
7042 * certain other OS makes the audio functional, as COEF settings are
7043 * preserved in this case. This fix sets these altered COEF values as
7044 * the default.
7045 */
7046 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
7047}
7048
edca7cc4
WS
7049static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
7050 const struct hda_fixup *fix,
7051 int action)
7052{
7053 /*
7054 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
7055 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
7056 * needs an additional quirk for sound working after suspend and resume.
7057 */
7058 if (codec->core.vendor_id == 0x10ec0256) {
7059 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
7060 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
7061 } else {
7062 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
7063 }
7064}
7065
1efcdd9c
GM
7066static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
7067 const struct hda_fixup *fix,
7068 int action)
7069{
7070 struct alc_spec *spec = codec->spec;
7071 struct hda_input_mux *imux = &spec->gen.input_mux;
7072 int i;
7073
7074 alc269_fixup_limit_int_mic_boost(codec, fix, action);
7075
7076 switch (action) {
7077 case HDA_FIXUP_ACT_PRE_PROBE:
7078 /**
7079 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
7080 * to Hi-Z to avoid pop noises at startup and when plugging and
7081 * unplugging headphones.
7082 */
7083 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
7084 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
7085 break;
7086 case HDA_FIXUP_ACT_PROBE:
7087 /**
7088 * Make the internal mic (0x12) the default input source to
7089 * prevent pop noises on cold boot.
7090 */
7091 for (i = 0; i < imux->num_items; i++) {
7092 if (spec->gen.imux_pins[i] == 0x12) {
7093 spec->gen.cur_mux[0] = i;
7094 break;
7095 }
7096 }
7097 break;
7098 }
7099}
7100
3790a3d6
PJ
7101static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
7102 const struct hda_fixup *fix, int action)
7103{
7104 /*
7105 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
7106 * unconnected.
7107 */
7108 static const struct hda_pintbl pincfgs[] = {
7109 { 0x17, 0x90170121 },
7110 { }
7111 };
7112 /*
7113 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
7114 * DAC 0x02 and 0x03 would be fine.
7115 */
7116 static const hda_nid_t conn[] = { 0x02, 0x03 };
7117 /*
7118 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
7119 * Headphones (0x21) are connected to DAC 0x03.
7120 */
7121 static const hda_nid_t preferred_pairs[] = {
7122 0x14, 0x02,
7123 0x17, 0x02,
7124 0x21, 0x03,
7125 0
7126 };
7127 struct alc_spec *spec = codec->spec;
7128
7129 switch (action) {
7130 case HDA_FIXUP_ACT_PRE_PROBE:
7131 snd_hda_apply_pincfgs(codec, pincfgs);
7132 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7133 spec->gen.preferred_dacs = preferred_pairs;
7134 break;
7135 }
7136}
7137
2912cdda
PJ
7138static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
7139 const struct hda_fixup *fix, int action)
7140{
7141 static const struct hda_pintbl pincfgs[] = {
7142 { 0x14, 0x90170151 },
7143 { 0x17, 0x90170150 },
7144 { }
7145 };
7146 static const hda_nid_t conn[] = { 0x02, 0x03 };
7147 static const hda_nid_t preferred_pairs[] = {
7148 0x14, 0x02,
7149 0x17, 0x03,
7150 0x21, 0x02,
7151 0
7152 };
7153 struct alc_spec *spec = codec->spec;
7154
7155 alc_fixup_no_shutup(codec, fix, action);
7156
7157 switch (action) {
7158 case HDA_FIXUP_ACT_PRE_PROBE:
7159 snd_hda_apply_pincfgs(codec, pincfgs);
7160 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7161 spec->gen.preferred_dacs = preferred_pairs;
7162 break;
7163 }
7164}
7165
e43252db
KY
7166/* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7167static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7168 const struct hda_fixup *fix, int action)
7169{
7170 struct alc_spec *spec = codec->spec;
7171 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7172 static const hda_nid_t preferred_pairs[] = {
7173 0x17, 0x02, 0x21, 0x03, 0
7174 };
7175
7176 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7177 return;
7178
7179 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7180 spec->gen.preferred_dacs = preferred_pairs;
7181 spec->gen.auto_mute_via_amp = 1;
fb6254df
KY
7182 if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7183 snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7184 0x0); /* Make sure 0x14 was disable */
7185 }
e43252db 7186}
c8c0a03e
KY
7187/* Fix none verb table of Headset Mic pin */
7188static void alc_fixup_headset_mic(struct hda_codec *codec,
7189 const struct hda_fixup *fix, int action)
7190{
7191 struct alc_spec *spec = codec->spec;
7192 static const struct hda_pintbl pincfgs[] = {
7193 { 0x19, 0x03a1103c },
7194 { }
7195 };
7196
7197 switch (action) {
7198 case HDA_FIXUP_ACT_PRE_PROBE:
7199 snd_hda_apply_pincfgs(codec, pincfgs);
7200 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7201 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7202 break;
7203 }
7204}
e43252db
KY
7205
7206
1d045db9 7207enum {
f73bbf63 7208 ALC269_FIXUP_GPIO2,
1d045db9
TI
7209 ALC269_FIXUP_SONY_VAIO,
7210 ALC275_FIXUP_SONY_VAIO_GPIO2,
7211 ALC269_FIXUP_DELL_M101Z,
7212 ALC269_FIXUP_SKU_IGNORE,
7213 ALC269_FIXUP_ASUS_G73JW,
e959f2be
PLB
7214 ALC269_FIXUP_ASUS_N7601ZM_PINS,
7215 ALC269_FIXUP_ASUS_N7601ZM,
1d045db9
TI
7216 ALC269_FIXUP_LENOVO_EAPD,
7217 ALC275_FIXUP_SONY_HWEQ,
e9bd7d5c 7218 ALC275_FIXUP_SONY_DISABLE_AAMIX,
1d045db9 7219 ALC271_FIXUP_DMIC,
017f2a10 7220 ALC269_FIXUP_PCM_44K,
adabb3ec 7221 ALC269_FIXUP_STEREO_DMIC,
7c478f03 7222 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
7223 ALC269_FIXUP_QUANTA_MUTE,
7224 ALC269_FIXUP_LIFEBOOK,
2041d564 7225 ALC269_FIXUP_LIFEBOOK_EXTMIC,
cc7016ab 7226 ALC269_FIXUP_LIFEBOOK_HP_PIN,
4df3fd17 7227 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
fdcc968a 7228 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
a4297b5d
TI
7229 ALC269_FIXUP_AMIC,
7230 ALC269_FIXUP_DMIC,
7231 ALC269VB_FIXUP_AMIC,
7232 ALC269VB_FIXUP_DMIC,
08fb0d0e 7233 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 7234 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 7235 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7f783bd5 7236 ALC269_FIXUP_HP_MUTE_LED_MIC3,
9f5c6faf 7237 ALC269_FIXUP_HP_GPIO_LED,
9c5dc3bf
KY
7238 ALC269_FIXUP_HP_GPIO_MIC1_LED,
7239 ALC269_FIXUP_HP_LINE1_MIC1_LED,
693b613d 7240 ALC269_FIXUP_INV_DMIC,
108cc108 7241 ALC269_FIXUP_LENOVO_DOCK,
b590b38c 7242 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
9b745ab8 7243 ALC269_FIXUP_NO_SHUTUP,
88cfcf86 7244 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 7245 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
7246 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7247 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 7248 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
fcc6c877 7249 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
1efcdd9c 7250 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
73bdd597
DH
7251 ALC269_FIXUP_HEADSET_MODE,
7252 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7819717b 7253 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
d240d1dc
DH
7254 ALC269_FIXUP_ASUS_X101_FUNC,
7255 ALC269_FIXUP_ASUS_X101_VERB,
7256 ALC269_FIXUP_ASUS_X101,
08a978db
DR
7257 ALC271_FIXUP_AMIC_MIC2,
7258 ALC271_FIXUP_HP_GATE_MIC_JACK,
b1e8972e 7259 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
42397004 7260 ALC269_FIXUP_ACER_AC700,
3e0d611b 7261 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 7262 ALC269VB_FIXUP_ASUS_ZENBOOK,
23870831 7263 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
f882c4be 7264 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
8e35cd4a 7265 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 7266 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 7267 ALC283_FIXUP_CHROME_BOOK,
0202e99c 7268 ALC283_FIXUP_SENSE_COMBO_JACK,
7bba2157 7269 ALC282_FIXUP_ASUS_TX300,
1bb3e062 7270 ALC283_FIXUP_INT_MIC,
338cae56 7271 ALC290_FIXUP_MONO_SPEAKERS,
0f4881dc
DH
7272 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7273 ALC290_FIXUP_SUBWOOFER,
7274 ALC290_FIXUP_SUBWOOFER_HSJACK,
b67ae3f1 7275 ALC269_FIXUP_THINKPAD_ACPI,
56f27013 7276 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7c9caa29 7277 ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO,
5824ce8d 7278 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
615966ad 7279 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9a22a8f5 7280 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
31278997 7281 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9a22a8f5 7282 ALC255_FIXUP_HEADSET_MODE,
31278997 7283 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
a22aa26f 7284 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
1c37c223 7285 ALC292_FIXUP_TPT440_DOCK,
9a811230 7286 ALC292_FIXUP_TPT440,
abaa2274 7287 ALC283_FIXUP_HEADSET_MIC,
b3802783 7288 ALC255_FIXUP_MIC_MUTE_LED,
1a22e775 7289 ALC282_FIXUP_ASPIRE_V5_PINS,
c8426b27 7290 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7a5255f1 7291 ALC280_FIXUP_HP_GPIO4,
eaa8e5ef 7292 ALC286_FIXUP_HP_GPIO_LED,
33f4acd3 7293 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
b4b33f9d 7294 ALC280_FIXUP_HP_DOCK_PINS,
04d5466a 7295 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
98973f2f 7296 ALC280_FIXUP_HP_9480M,
c3bb2b52 7297 ALC245_FIXUP_HP_X360_AMP,
d94befbb 7298 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
e1e62b98
KY
7299 ALC288_FIXUP_DELL_HEADSET_MODE,
7300 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
831bfdf9
HW
7301 ALC288_FIXUP_DELL_XPS_13,
7302 ALC288_FIXUP_DISABLE_AAMIX,
5fab5829 7303 ALC292_FIXUP_DELL_E7X_AAMIX,
8b99aba7
TI
7304 ALC292_FIXUP_DELL_E7X,
7305 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 7306 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
54324221 7307 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
977e6276 7308 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 7309 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 7310 ALC275_FIXUP_DELL_XPS,
23adc192 7311 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 7312 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 7313 ALC255_FIXUP_DELL_SPK_NOISE,
d1dd4211 7314 ALC225_FIXUP_DISABLE_MIC_VREF,
2ae95577 7315 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 7316 ALC295_FIXUP_DISABLE_DAC3,
d2cd795c 7317 ALC285_FIXUP_SPEAKER2_TO_DAC1,
4b963ae1
AS
7318 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7319 ALC285_FIXUP_ASUS_HEADSET_MIC,
b759a5f0 7320 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
8cc87c05
LJ
7321 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7322 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
f883982d 7323 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 7324 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 7325 ALC292_FIXUP_TPT460,
dd9aa335 7326 ALC298_FIXUP_SPK_VOLUME,
f86de9b1 7327 ALC298_FIXUP_LENOVO_SPK_VOLUME,
fd06c77e 7328 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 7329 ALC269_FIXUP_ATIV_BOOK_8,
4ba5c853 7330 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
9eb5d0e6 7331 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
7332 ALC256_FIXUP_ASUS_HEADSET_MODE,
7333 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 7334 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
7335 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7336 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 7337 ALC233_FIXUP_LENOVO_MULTI_CODECS,
ea5c7eba 7338 ALC233_FIXUP_ACER_HEADSET_MIC,
f33f79f3 7339 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 7340 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
52e4e368 7341 ALC225_FIXUP_S3_POP_NOISE,
b84e8436 7342 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
7343 ALC274_FIXUP_DELL_BIND_DACS,
7344 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
399c01aa 7345 ALC298_FIXUP_TPT470_DOCK_FIX,
61fcf8ec 7346 ALC298_FIXUP_TPT470_DOCK,
ae104a21 7347 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 7348 ALC255_FIXUP_DELL_HEADSET_MIC,
0fbf21c3 7349 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
a2ef03fe 7350 ALC298_FIXUP_HUAWEI_MBX_STEREO,
bbf8ff6b 7351 ALC295_FIXUP_HP_X360,
8a328ac1 7352 ALC221_FIXUP_HP_HEADSET_MIC,
c4cfcf6f 7353 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
e8ed64b0 7354 ALC295_FIXUP_HP_AUTO_MUTE,
33aaebd4 7355 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
d8ae458e 7356 ALC294_FIXUP_ASUS_MIC,
4e051106
JHP
7357 ALC294_FIXUP_ASUS_HEADSET_MIC,
7358 ALC294_FIXUP_ASUS_SPK,
89e3a568 7359 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
c8c6ee61 7360 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
cbc05fd6 7361 ALC255_FIXUP_ACER_HEADSET_MIC,
10f5b1b8 7362 ALC295_FIXUP_CHROME_BOOK,
8983eb60 7363 ALC225_FIXUP_HEADSET_JACK,
136824ef
KY
7364 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7365 ALC225_FIXUP_WYSE_AUTO_MUTE,
7366 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
667a8f73 7367 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
8c8967a7 7368 ALC256_FIXUP_ASUS_HEADSET_MIC,
e1037354 7369 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
e2a829b3 7370 ALC299_FIXUP_PREDATOR_SPK,
bd9c10bc 7371 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
f0d9da19 7372 ALC289_FIXUP_DELL_SPK1,
e79c2269
KY
7373 ALC289_FIXUP_DELL_SPK2,
7374 ALC289_FIXUP_DUAL_SPK,
f0d9da19 7375 ALC289_FIXUP_RTK_AMP_DUAL_SPK,
48e01504
CC
7376 ALC294_FIXUP_SPK2_TO_DAC1,
7377 ALC294_FIXUP_ASUS_DUAL_SPK,
6a6660d0 7378 ALC285_FIXUP_THINKPAD_X1_GEN7,
76f7dec0 7379 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
724418b8
MA
7380 ALC294_FIXUP_ASUS_ALLY,
7381 ALC294_FIXUP_ASUS_ALLY_PINS,
7382 ALC294_FIXUP_ASUS_ALLY_VERBS,
7383 ALC294_FIXUP_ASUS_ALLY_SPEAKER,
8b33a134 7384 ALC294_FIXUP_ASUS_HPE,
1b94e59d 7385 ALC294_FIXUP_ASUS_COEF_1B,
c3cdf189
LJ
7386 ALC294_FIXUP_ASUS_GX502_HP,
7387 ALC294_FIXUP_ASUS_GX502_PINS,
7388 ALC294_FIXUP_ASUS_GX502_VERBS,
c1b55029
DC
7389 ALC294_FIXUP_ASUS_GU502_HP,
7390 ALC294_FIXUP_ASUS_GU502_PINS,
7391 ALC294_FIXUP_ASUS_GU502_VERBS,
c611e659 7392 ALC294_FIXUP_ASUS_G513_PINS,
bc2c2354 7393 ALC285_FIXUP_ASUS_G533Z_PINS,
f5a88b0a 7394 ALC285_FIXUP_HP_GPIO_LED,
431e76c3 7395 ALC285_FIXUP_HP_MUTE_LED,
ca88eeb3 7396 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
0659400f 7397 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
e7d66cf7 7398 ALC236_FIXUP_HP_GPIO_LED,
24164f43 7399 ALC236_FIXUP_HP_MUTE_LED,
75b62ab6 7400 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
a2d57ebe 7401 ALC298_FIXUP_SAMSUNG_AMP,
14425f1f 7402 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
ef248d9b 7403 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
9e43342b 7404 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
8eae7e9b 7405 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
6e15d126 7406 ALC269VC_FIXUP_ACER_HEADSET_MIC,
781c90c0 7407 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
293a92c1 7408 ALC289_FIXUP_ASUS_GA401,
4b43d05a 7409 ALC289_FIXUP_ASUS_GA502,
f50a121d 7410 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
56496253 7411 ALC285_FIXUP_HP_GPIO_AMP_INIT,
f1ec5be1
HC
7412 ALC269_FIXUP_CZC_B20,
7413 ALC269_FIXUP_CZC_TMI,
7414 ALC269_FIXUP_CZC_L101,
7415 ALC269_FIXUP_LEMOTE_A1802,
7416 ALC269_FIXUP_LEMOTE_A190X,
e2d2fded 7417 ALC256_FIXUP_INTEL_NUC8_RUGGED,
d1ee66c5
PC
7418 ALC233_FIXUP_INTEL_NUC8_DMIC,
7419 ALC233_FIXUP_INTEL_NUC8_BOOST,
73e7161e 7420 ALC256_FIXUP_INTEL_NUC10,
fc19d559 7421 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
13468bfa 7422 ALC274_FIXUP_HP_MIC,
8a8de09c 7423 ALC274_FIXUP_HP_HEADSET_MIC,
622464c8 7424 ALC274_FIXUP_HP_ENVY_GPIO,
ef9ce66f 7425 ALC256_FIXUP_ASUS_HPE,
446b8185 7426 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
a0ccbc53 7427 ALC287_FIXUP_HP_GPIO_LED,
9e885770 7428 ALC256_FIXUP_HP_HEADSET_MIC,
5fc462c3 7429 ALC245_FIXUP_HP_GPIO_LED,
92666d45 7430 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
34cdf405 7431 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
495dc763 7432 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
d0e18561 7433 ALC256_FIXUP_ACER_HEADSET_MIC,
26928ca1 7434 ALC285_FIXUP_IDEAPAD_S740_COEF,
bd15b155 7435 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
8eedd3a7 7436 ALC295_FIXUP_ASUS_DACS,
5d84b531 7437 ALC295_FIXUP_HP_OMEN,
f2be77fe 7438 ALC285_FIXUP_HP_SPECTRE_X360,
9ebaef05 7439 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
29c8f40b 7440 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
57c9e21a 7441 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
8903376d 7442 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
ad7cc2d4
CB
7443 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7444 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7445 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
56ec3e75 7446 ALC298_FIXUP_LENOVO_C940_DUET7,
dd6dd6e3 7447 ALC287_FIXUP_13S_GEN2_SPEAKERS,
619764cc 7448 ALC256_FIXUP_SET_COEF_DEFAULTS,
1278cc5a 7449 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
174a7fb3 7450 ALC233_FIXUP_NO_AUDIO_JACK,
edca7cc4 7451 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
8f4c9042
BF
7452 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7453 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
d3dca026 7454 ALC287_FIXUP_LEGION_16ACHG6,
ae7abe36 7455 ALC287_FIXUP_CS35L41_I2C_2,
b3fbe536 7456 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
42320660 7457 ALC287_FIXUP_CS35L41_I2C_4,
07bcab93 7458 ALC245_FIXUP_CS35L41_SPI_2,
ce18f905 7459 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
07bcab93
LT
7460 ALC245_FIXUP_CS35L41_SPI_4,
7461 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
91502a9a 7462 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
309d7363 7463 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
1e24881d 7464 ALC287_FIXUP_LEGION_16ITHG6,
3790a3d6
PJ
7465 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7466 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
2912cdda 7467 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
a4517c4f 7468 ALC236_FIXUP_DELL_DUAL_CODECS,
f7b069cf 7469 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
3babae91 7470 ALC287_FIXUP_TAS2781_I2C,
b5cb53fd 7471 ALC287_FIXUP_YOGA7_14ARB7_I2C,
93dc18e1 7472 ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
c99c26b1 7473 ALC245_FIXUP_HP_X360_MUTE_LEDS,
e43252db 7474 ALC287_FIXUP_THINKPAD_I2S_SPK,
d93eeca6 7475 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
c8c0a03e 7476 ALC2XX_FIXUP_HEADSET_MIC,
f0d9da19 7477 ALC289_FIXUP_DELL_CS35L41_SPI_2,
6ae90e90 7478 ALC294_FIXUP_CS35L41_I2C_2,
f1d4e28b
KY
7479};
7480
56ec3e75
TI
7481/* A special fixup for Lenovo C940 and Yoga Duet 7;
7482 * both have the very same PCI SSID, and we need to apply different fixups
7483 * depending on the codec ID
7484 */
7485static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7486 const struct hda_fixup *fix,
7487 int action)
7488{
7489 int id;
7490
7491 if (codec->core.vendor_id == 0x10ec0298)
7492 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7493 else
7494 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7495 __snd_hda_apply_fixup(codec, id, action, 0);
7496}
7497
1727a771 7498static const struct hda_fixup alc269_fixups[] = {
f73bbf63
KHF
7499 [ALC269_FIXUP_GPIO2] = {
7500 .type = HDA_FIXUP_FUNC,
7501 .v.func = alc_fixup_gpio2,
7502 },
1d045db9 7503 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
7504 .type = HDA_FIXUP_PINCTLS,
7505 .v.pins = (const struct hda_pintbl[]) {
7506 {0x19, PIN_VREFGRD},
1d045db9
TI
7507 {}
7508 }
f1d4e28b 7509 },
1d045db9 7510 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
7511 .type = HDA_FIXUP_FUNC,
7512 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
7513 .chained = true,
7514 .chain_id = ALC269_FIXUP_SONY_VAIO
7515 },
7516 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 7517 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7518 .v.verbs = (const struct hda_verb[]) {
7519 /* Enables internal speaker */
7520 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7521 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7522 {}
7523 }
7524 },
7525 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 7526 .type = HDA_FIXUP_FUNC,
23d30f28 7527 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
7528 },
7529 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
7530 .type = HDA_FIXUP_PINS,
7531 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
7532 { 0x17, 0x99130111 }, /* subwoofer */
7533 { }
7534 }
7535 },
e959f2be
PLB
7536 [ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7537 .type = HDA_FIXUP_PINS,
7538 .v.pins = (const struct hda_pintbl[]) {
7539 { 0x19, 0x03A11050 },
7540 { 0x1a, 0x03A11C30 },
7541 { 0x21, 0x03211420 },
7542 { }
7543 }
7544 },
7545 [ALC269_FIXUP_ASUS_N7601ZM] = {
7546 .type = HDA_FIXUP_VERBS,
7547 .v.verbs = (const struct hda_verb[]) {
7548 {0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7549 {0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7550 {0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7551 {0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7552 {0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7553 {0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7554 { }
7555 },
7556 .chained = true,
7557 .chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7558 },
1d045db9 7559 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 7560 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7561 .v.verbs = (const struct hda_verb[]) {
7562 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7563 {}
7564 }
7565 },
7566 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 7567 .type = HDA_FIXUP_FUNC,
1d045db9
TI
7568 .v.func = alc269_fixup_hweq,
7569 .chained = true,
7570 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7571 },
e9bd7d5c
TI
7572 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7573 .type = HDA_FIXUP_FUNC,
7574 .v.func = alc_fixup_disable_aamix,
7575 .chained = true,
7576 .chain_id = ALC269_FIXUP_SONY_VAIO
7577 },
1d045db9 7578 [ALC271_FIXUP_DMIC] = {
1727a771 7579 .type = HDA_FIXUP_FUNC,
1d045db9 7580 .v.func = alc271_fixup_dmic,
f1d4e28b 7581 },
017f2a10 7582 [ALC269_FIXUP_PCM_44K] = {
1727a771 7583 .type = HDA_FIXUP_FUNC,
017f2a10 7584 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
7585 .chained = true,
7586 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 7587 },
adabb3ec 7588 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 7589 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
7590 .v.func = alc269_fixup_stereo_dmic,
7591 },
7c478f03
DH
7592 [ALC269_FIXUP_HEADSET_MIC] = {
7593 .type = HDA_FIXUP_FUNC,
7594 .v.func = alc269_fixup_headset_mic,
7595 },
24519911 7596 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 7597 .type = HDA_FIXUP_FUNC,
24519911
TI
7598 .v.func = alc269_fixup_quanta_mute,
7599 },
7600 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
7601 .type = HDA_FIXUP_PINS,
7602 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
7603 { 0x1a, 0x2101103f }, /* dock line-out */
7604 { 0x1b, 0x23a11040 }, /* dock mic-in */
7605 { }
7606 },
7607 .chained = true,
7608 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7609 },
2041d564
DH
7610 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7611 .type = HDA_FIXUP_PINS,
7612 .v.pins = (const struct hda_pintbl[]) {
7613 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7614 { }
7615 },
7616 },
cc7016ab
TI
7617 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7618 .type = HDA_FIXUP_PINS,
7619 .v.pins = (const struct hda_pintbl[]) {
7620 { 0x21, 0x0221102f }, /* HP out */
7621 { }
7622 },
7623 },
4df3fd17
TI
7624 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7625 .type = HDA_FIXUP_FUNC,
7626 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7627 },
fdcc968a
JMG
7628 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7629 .type = HDA_FIXUP_FUNC,
7630 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7631 },
7c9caa29
VK
7632 [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = {
7633 .type = HDA_FIXUP_PINS,
7634 .v.pins = (const struct hda_pintbl[]) {
7635 { 0x18, 0x03a19020 }, /* headset mic */
7636 { 0x1b, 0x90170150 }, /* speaker */
7637 { }
7638 },
7639 },
a4297b5d 7640 [ALC269_FIXUP_AMIC] = {
1727a771
TI
7641 .type = HDA_FIXUP_PINS,
7642 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7643 { 0x14, 0x99130110 }, /* speaker */
7644 { 0x15, 0x0121401f }, /* HP out */
7645 { 0x18, 0x01a19c20 }, /* mic */
7646 { 0x19, 0x99a3092f }, /* int-mic */
7647 { }
7648 },
7649 },
7650 [ALC269_FIXUP_DMIC] = {
1727a771
TI
7651 .type = HDA_FIXUP_PINS,
7652 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7653 { 0x12, 0x99a3092f }, /* int-mic */
7654 { 0x14, 0x99130110 }, /* speaker */
7655 { 0x15, 0x0121401f }, /* HP out */
7656 { 0x18, 0x01a19c20 }, /* mic */
7657 { }
7658 },
7659 },
7660 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
7661 .type = HDA_FIXUP_PINS,
7662 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7663 { 0x14, 0x99130110 }, /* speaker */
7664 { 0x18, 0x01a19c20 }, /* mic */
7665 { 0x19, 0x99a3092f }, /* int-mic */
7666 { 0x21, 0x0121401f }, /* HP out */
7667 { }
7668 },
7669 },
2267ea97 7670 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
7671 .type = HDA_FIXUP_PINS,
7672 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7673 { 0x12, 0x99a3092f }, /* int-mic */
7674 { 0x14, 0x99130110 }, /* speaker */
7675 { 0x18, 0x01a19c20 }, /* mic */
7676 { 0x21, 0x0121401f }, /* HP out */
7677 { }
7678 },
7679 },
08fb0d0e 7680 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 7681 .type = HDA_FIXUP_FUNC,
08fb0d0e 7682 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 7683 },
d06ac143
DH
7684 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7685 .type = HDA_FIXUP_FUNC,
7686 .v.func = alc269_fixup_hp_mute_led_mic1,
7687 },
08fb0d0e 7688 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 7689 .type = HDA_FIXUP_FUNC,
08fb0d0e 7690 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 7691 },
7f783bd5
TB
7692 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7693 .type = HDA_FIXUP_FUNC,
7694 .v.func = alc269_fixup_hp_mute_led_mic3,
e8ed64b0
GKK
7695 .chained = true,
7696 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7f783bd5 7697 },
9f5c6faf
TI
7698 [ALC269_FIXUP_HP_GPIO_LED] = {
7699 .type = HDA_FIXUP_FUNC,
7700 .v.func = alc269_fixup_hp_gpio_led,
7701 },
9c5dc3bf
KY
7702 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7703 .type = HDA_FIXUP_FUNC,
7704 .v.func = alc269_fixup_hp_gpio_mic1_led,
7705 },
7706 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7707 .type = HDA_FIXUP_FUNC,
7708 .v.func = alc269_fixup_hp_line1_mic1_led,
7709 },
693b613d 7710 [ALC269_FIXUP_INV_DMIC] = {
1727a771 7711 .type = HDA_FIXUP_FUNC,
9d36a7dc 7712 .v.func = alc_fixup_inv_dmic,
693b613d 7713 },
9b745ab8
TI
7714 [ALC269_FIXUP_NO_SHUTUP] = {
7715 .type = HDA_FIXUP_FUNC,
7716 .v.func = alc_fixup_no_shutup,
7717 },
108cc108 7718 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
7719 .type = HDA_FIXUP_PINS,
7720 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
7721 { 0x19, 0x23a11040 }, /* dock mic */
7722 { 0x1b, 0x2121103f }, /* dock headphone */
7723 { }
7724 },
7725 .chained = true,
7726 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7727 },
b590b38c
TI
7728 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7729 .type = HDA_FIXUP_FUNC,
7730 .v.func = alc269_fixup_limit_int_mic_boost,
7731 .chained = true,
7732 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7733 },
108cc108 7734 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 7735 .type = HDA_FIXUP_FUNC,
108cc108 7736 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
7737 .chained = true,
7738 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 7739 },
73bdd597
DH
7740 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7741 .type = HDA_FIXUP_PINS,
7742 .v.pins = (const struct hda_pintbl[]) {
7743 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7744 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7745 { }
7746 },
7747 .chained = true,
7748 .chain_id = ALC269_FIXUP_HEADSET_MODE
7749 },
7750 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7751 .type = HDA_FIXUP_PINS,
7752 .v.pins = (const struct hda_pintbl[]) {
7753 { 0x16, 0x21014020 }, /* dock line out */
7754 { 0x19, 0x21a19030 }, /* dock mic */
7755 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7756 { }
7757 },
7758 .chained = true,
7759 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7760 },
338cae56
DH
7761 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7762 .type = HDA_FIXUP_PINS,
7763 .v.pins = (const struct hda_pintbl[]) {
7764 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7765 { }
7766 },
7767 .chained = true,
7768 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7769 },
fcc6c877
KY
7770 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7771 .type = HDA_FIXUP_PINS,
7772 .v.pins = (const struct hda_pintbl[]) {
7773 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7774 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7775 { }
7776 },
7777 .chained = true,
7778 .chain_id = ALC269_FIXUP_HEADSET_MODE
7779 },
73bdd597
DH
7780 [ALC269_FIXUP_HEADSET_MODE] = {
7781 .type = HDA_FIXUP_FUNC,
7782 .v.func = alc_fixup_headset_mode,
6676f308 7783 .chained = true,
b3802783 7784 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
73bdd597
DH
7785 },
7786 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7787 .type = HDA_FIXUP_FUNC,
7788 .v.func = alc_fixup_headset_mode_no_hp_mic,
7789 },
7819717b
TI
7790 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7791 .type = HDA_FIXUP_PINS,
7792 .v.pins = (const struct hda_pintbl[]) {
7793 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7794 { }
7795 },
7796 .chained = true,
7797 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7798 },
88cfcf86
DH
7799 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7800 .type = HDA_FIXUP_PINS,
7801 .v.pins = (const struct hda_pintbl[]) {
7802 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7803 { }
7804 },
fbc78ad6
DH
7805 .chained = true,
7806 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 7807 },
0fbf21c3 7808 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
8ac51bbc
AB
7809 .type = HDA_FIXUP_PINS,
7810 .v.pins = (const struct hda_pintbl[]) {
7811 {0x12, 0x90a60130},
7812 {0x13, 0x40000000},
7813 {0x14, 0x90170110},
7814 {0x18, 0x411111f0},
7815 {0x19, 0x04a11040},
7816 {0x1a, 0x411111f0},
7817 {0x1b, 0x90170112},
7818 {0x1d, 0x40759a05},
7819 {0x1e, 0x411111f0},
7820 {0x21, 0x04211020},
7821 { }
7822 },
e2744fd7
AB
7823 .chained = true,
7824 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8ac51bbc 7825 },
a2ef03fe
TE
7826 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7827 .type = HDA_FIXUP_FUNC,
7828 .v.func = alc298_fixup_huawei_mbx_stereo,
7829 .chained = true,
7830 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7831 },
d240d1dc
DH
7832 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7833 .type = HDA_FIXUP_FUNC,
7834 .v.func = alc269_fixup_x101_headset_mic,
7835 },
7836 [ALC269_FIXUP_ASUS_X101_VERB] = {
7837 .type = HDA_FIXUP_VERBS,
7838 .v.verbs = (const struct hda_verb[]) {
7839 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7840 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7841 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7842 { }
7843 },
7844 .chained = true,
7845 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7846 },
7847 [ALC269_FIXUP_ASUS_X101] = {
7848 .type = HDA_FIXUP_PINS,
7849 .v.pins = (const struct hda_pintbl[]) {
7850 { 0x18, 0x04a1182c }, /* Headset mic */
7851 { }
7852 },
7853 .chained = true,
7854 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7855 },
08a978db 7856 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
7857 .type = HDA_FIXUP_PINS,
7858 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
7859 { 0x14, 0x99130110 }, /* speaker */
7860 { 0x19, 0x01a19c20 }, /* mic */
7861 { 0x1b, 0x99a7012f }, /* int-mic */
7862 { 0x21, 0x0121401f }, /* HP out */
7863 { }
7864 },
7865 },
7866 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 7867 .type = HDA_FIXUP_FUNC,
08a978db
DR
7868 .v.func = alc271_hp_gate_mic_jack,
7869 .chained = true,
7870 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7871 },
b1e8972e
OR
7872 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7873 .type = HDA_FIXUP_FUNC,
7874 .v.func = alc269_fixup_limit_int_mic_boost,
7875 .chained = true,
7876 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7877 },
42397004
DR
7878 [ALC269_FIXUP_ACER_AC700] = {
7879 .type = HDA_FIXUP_PINS,
7880 .v.pins = (const struct hda_pintbl[]) {
7881 { 0x12, 0x99a3092f }, /* int-mic */
7882 { 0x14, 0x99130110 }, /* speaker */
7883 { 0x18, 0x03a11c20 }, /* mic */
7884 { 0x1e, 0x0346101e }, /* SPDIF1 */
7885 { 0x21, 0x0321101f }, /* HP out */
7886 { }
7887 },
7888 .chained = true,
7889 .chain_id = ALC271_FIXUP_DMIC,
7890 },
3e0d611b
DH
7891 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7892 .type = HDA_FIXUP_FUNC,
7893 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
7894 .chained = true,
7895 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 7896 },
2cede303
OR
7897 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7898 .type = HDA_FIXUP_FUNC,
7899 .v.func = alc269_fixup_limit_int_mic_boost,
7900 .chained = true,
7901 .chain_id = ALC269VB_FIXUP_DMIC,
7902 },
23870831
TI
7903 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7904 .type = HDA_FIXUP_VERBS,
7905 .v.verbs = (const struct hda_verb[]) {
7906 /* class-D output amp +5dB */
7907 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7908 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7909 {}
7910 },
7911 .chained = true,
7912 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7913 },
f882c4be
MT
7914 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7915 .type = HDA_FIXUP_PINS,
7916 .v.pins = (const struct hda_pintbl[]) {
7917 { 0x18, 0x01a110f0 }, /* use as headset mic */
7918 { }
7919 },
7920 .chained = true,
7921 .chain_id = ALC269_FIXUP_HEADSET_MIC
7922 },
8e35cd4a
DH
7923 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7924 .type = HDA_FIXUP_FUNC,
7925 .v.func = alc269_fixup_limit_int_mic_boost,
7926 .chained = true,
7927 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7928 },
02b504d9
AA
7929 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7930 .type = HDA_FIXUP_PINS,
7931 .v.pins = (const struct hda_pintbl[]) {
7932 { 0x12, 0x99a3092f }, /* int-mic */
7933 { 0x18, 0x03a11d20 }, /* mic */
7934 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7935 { }
7936 },
7937 },
cd217a63
KY
7938 [ALC283_FIXUP_CHROME_BOOK] = {
7939 .type = HDA_FIXUP_FUNC,
7940 .v.func = alc283_fixup_chromebook,
7941 },
0202e99c
KY
7942 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7943 .type = HDA_FIXUP_FUNC,
7944 .v.func = alc283_fixup_sense_combo_jack,
7945 .chained = true,
7946 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7947 },
7bba2157
TI
7948 [ALC282_FIXUP_ASUS_TX300] = {
7949 .type = HDA_FIXUP_FUNC,
7950 .v.func = alc282_fixup_asus_tx300,
7951 },
1bb3e062
KY
7952 [ALC283_FIXUP_INT_MIC] = {
7953 .type = HDA_FIXUP_VERBS,
7954 .v.verbs = (const struct hda_verb[]) {
7955 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7956 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7957 { }
7958 },
7959 .chained = true,
7960 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7961 },
0f4881dc
DH
7962 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7963 .type = HDA_FIXUP_PINS,
7964 .v.pins = (const struct hda_pintbl[]) {
7965 { 0x17, 0x90170112 }, /* subwoofer */
7966 { }
7967 },
7968 .chained = true,
7969 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7970 },
7971 [ALC290_FIXUP_SUBWOOFER] = {
7972 .type = HDA_FIXUP_PINS,
7973 .v.pins = (const struct hda_pintbl[]) {
7974 { 0x17, 0x90170112 }, /* subwoofer */
7975 { }
7976 },
7977 .chained = true,
7978 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7979 },
338cae56
DH
7980 [ALC290_FIXUP_MONO_SPEAKERS] = {
7981 .type = HDA_FIXUP_FUNC,
7982 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
7983 },
7984 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7985 .type = HDA_FIXUP_FUNC,
7986 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
7987 .chained = true,
7988 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7989 },
b67ae3f1
DH
7990 [ALC269_FIXUP_THINKPAD_ACPI] = {
7991 .type = HDA_FIXUP_FUNC,
d5a6cabf 7992 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
7993 .chained = true,
7994 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 7995 },
56f27013
DH
7996 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7997 .type = HDA_FIXUP_FUNC,
7998 .v.func = alc_fixup_inv_dmic,
7999 .chained = true,
8000 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8001 },
5824ce8d 8002 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
17d30460
HW
8003 .type = HDA_FIXUP_PINS,
8004 .v.pins = (const struct hda_pintbl[]) {
8005 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8006 { }
5824ce8d
CC
8007 },
8008 .chained = true,
17d30460 8009 .chain_id = ALC255_FIXUP_HEADSET_MODE
5824ce8d 8010 },
615966ad
CC
8011 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8012 .type = HDA_FIXUP_PINS,
8013 .v.pins = (const struct hda_pintbl[]) {
8014 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8015 { }
8016 },
8017 .chained = true,
8018 .chain_id = ALC255_FIXUP_HEADSET_MODE
8019 },
9a22a8f5
KY
8020 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8021 .type = HDA_FIXUP_PINS,
8022 .v.pins = (const struct hda_pintbl[]) {
8023 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8024 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8025 { }
8026 },
8027 .chained = true,
8028 .chain_id = ALC255_FIXUP_HEADSET_MODE
8029 },
31278997
KY
8030 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
8031 .type = HDA_FIXUP_PINS,
8032 .v.pins = (const struct hda_pintbl[]) {
8033 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8034 { }
8035 },
8036 .chained = true,
8037 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8038 },
9a22a8f5
KY
8039 [ALC255_FIXUP_HEADSET_MODE] = {
8040 .type = HDA_FIXUP_FUNC,
8041 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a 8042 .chained = true,
b3802783 8043 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
9a22a8f5 8044 },
31278997
KY
8045 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
8046 .type = HDA_FIXUP_FUNC,
8047 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
8048 },
a22aa26f
KY
8049 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8050 .type = HDA_FIXUP_PINS,
8051 .v.pins = (const struct hda_pintbl[]) {
8052 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8053 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8054 { }
8055 },
8056 .chained = true,
8057 .chain_id = ALC269_FIXUP_HEADSET_MODE
8058 },
1c37c223 8059 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 8060 .type = HDA_FIXUP_FUNC,
7f57d803 8061 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
8062 .chained = true,
8063 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
8064 },
9a811230
TI
8065 [ALC292_FIXUP_TPT440] = {
8066 .type = HDA_FIXUP_FUNC,
157f0b7f 8067 .v.func = alc_fixup_disable_aamix,
9a811230
TI
8068 .chained = true,
8069 .chain_id = ALC292_FIXUP_TPT440_DOCK,
8070 },
abaa2274 8071 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
8072 .type = HDA_FIXUP_PINS,
8073 .v.pins = (const struct hda_pintbl[]) {
8074 { 0x19, 0x04a110f0 },
8075 { },
8076 },
8077 },
b3802783 8078 [ALC255_FIXUP_MIC_MUTE_LED] = {
00ef9940 8079 .type = HDA_FIXUP_FUNC,
8a503555 8080 .v.func = alc_fixup_micmute_led,
00ef9940 8081 },
1a22e775
TI
8082 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
8083 .type = HDA_FIXUP_PINS,
8084 .v.pins = (const struct hda_pintbl[]) {
8085 { 0x12, 0x90a60130 },
8086 { 0x14, 0x90170110 },
8087 { 0x17, 0x40000008 },
8088 { 0x18, 0x411111f0 },
0420694d 8089 { 0x19, 0x01a1913c },
1a22e775
TI
8090 { 0x1a, 0x411111f0 },
8091 { 0x1b, 0x411111f0 },
8092 { 0x1d, 0x40f89b2d },
8093 { 0x1e, 0x411111f0 },
8094 { 0x21, 0x0321101f },
8095 { },
8096 },
8097 },
c8426b27
TI
8098 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
8099 .type = HDA_FIXUP_FUNC,
8100 .v.func = alc269vb_fixup_aspire_e1_coef,
8101 },
7a5255f1
DH
8102 [ALC280_FIXUP_HP_GPIO4] = {
8103 .type = HDA_FIXUP_FUNC,
8104 .v.func = alc280_fixup_hp_gpio4,
8105 },
eaa8e5ef
KY
8106 [ALC286_FIXUP_HP_GPIO_LED] = {
8107 .type = HDA_FIXUP_FUNC,
8108 .v.func = alc286_fixup_hp_gpio_led,
8109 },
33f4acd3
DH
8110 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
8111 .type = HDA_FIXUP_FUNC,
8112 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
8113 },
b4b33f9d
TC
8114 [ALC280_FIXUP_HP_DOCK_PINS] = {
8115 .type = HDA_FIXUP_PINS,
8116 .v.pins = (const struct hda_pintbl[]) {
8117 { 0x1b, 0x21011020 }, /* line-out */
8118 { 0x1a, 0x01a1903c }, /* headset mic */
8119 { 0x18, 0x2181103f }, /* line-in */
8120 { },
8121 },
8122 .chained = true,
8123 .chain_id = ALC280_FIXUP_HP_GPIO4
8124 },
04d5466a
JK
8125 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
8126 .type = HDA_FIXUP_PINS,
8127 .v.pins = (const struct hda_pintbl[]) {
8128 { 0x1b, 0x21011020 }, /* line-out */
8129 { 0x18, 0x2181103f }, /* line-in */
8130 { },
8131 },
8132 .chained = true,
8133 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
8134 },
98973f2f
KP
8135 [ALC280_FIXUP_HP_9480M] = {
8136 .type = HDA_FIXUP_FUNC,
8137 .v.func = alc280_fixup_hp_9480m,
8138 },
c3bb2b52
TI
8139 [ALC245_FIXUP_HP_X360_AMP] = {
8140 .type = HDA_FIXUP_FUNC,
8141 .v.func = alc245_fixup_hp_x360_amp,
5fc462c3
JC
8142 .chained = true,
8143 .chain_id = ALC245_FIXUP_HP_GPIO_LED
c3bb2b52 8144 },
e1e62b98
KY
8145 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
8146 .type = HDA_FIXUP_FUNC,
8147 .v.func = alc_fixup_headset_mode_dell_alc288,
8148 .chained = true,
b3802783 8149 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
e1e62b98
KY
8150 },
8151 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8152 .type = HDA_FIXUP_PINS,
8153 .v.pins = (const struct hda_pintbl[]) {
8154 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8155 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8156 { }
8157 },
8158 .chained = true,
8159 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
8160 },
831bfdf9
HW
8161 [ALC288_FIXUP_DISABLE_AAMIX] = {
8162 .type = HDA_FIXUP_FUNC,
8163 .v.func = alc_fixup_disable_aamix,
8164 .chained = true,
d44a6864 8165 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
8166 },
8167 [ALC288_FIXUP_DELL_XPS_13] = {
8168 .type = HDA_FIXUP_FUNC,
8169 .v.func = alc_fixup_dell_xps13,
8170 .chained = true,
8171 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
8172 },
8b99aba7
TI
8173 [ALC292_FIXUP_DISABLE_AAMIX] = {
8174 .type = HDA_FIXUP_FUNC,
8175 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
8176 .chained = true,
8177 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 8178 },
c04017ea
DH
8179 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8180 .type = HDA_FIXUP_FUNC,
8181 .v.func = alc_fixup_disable_aamix,
8182 .chained = true,
8183 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8184 },
5fab5829 8185 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8b99aba7
TI
8186 .type = HDA_FIXUP_FUNC,
8187 .v.func = alc_fixup_dell_xps13,
8188 .chained = true,
8189 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
8190 },
5fab5829
TI
8191 [ALC292_FIXUP_DELL_E7X] = {
8192 .type = HDA_FIXUP_FUNC,
8a503555 8193 .v.func = alc_fixup_micmute_led,
5fab5829
TI
8194 /* micmute fixup must be applied at last */
8195 .chained_before = true,
8196 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8197 },
54324221
JM
8198 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8199 .type = HDA_FIXUP_PINS,
8200 .v.pins = (const struct hda_pintbl[]) {
8201 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8202 { }
8203 },
8204 .chained_before = true,
8205 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8206 },
977e6276
KY
8207 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8208 .type = HDA_FIXUP_PINS,
8209 .v.pins = (const struct hda_pintbl[]) {
8210 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8211 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8212 { }
8213 },
8214 .chained = true,
8215 .chain_id = ALC269_FIXUP_HEADSET_MODE
8216 },
2f726aec
HW
8217 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8218 .type = HDA_FIXUP_PINS,
8219 .v.pins = (const struct hda_pintbl[]) {
8220 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8221 { }
8222 },
8223 .chained = true,
8224 .chain_id = ALC269_FIXUP_HEADSET_MODE
8225 },
6ed1131f
KY
8226 [ALC275_FIXUP_DELL_XPS] = {
8227 .type = HDA_FIXUP_VERBS,
8228 .v.verbs = (const struct hda_verb[]) {
8229 /* Enables internal speaker */
8230 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8231 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8232 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8233 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8234 {}
8235 }
8236 },
23adc192
HW
8237 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8238 .type = HDA_FIXUP_FUNC,
8239 .v.func = alc_fixup_disable_aamix,
8240 .chained = true,
8241 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8242 },
3694cb29
K
8243 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8244 .type = HDA_FIXUP_FUNC,
8245 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8246 },
d1ee66c5
PC
8247 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8248 .type = HDA_FIXUP_FUNC,
8249 .v.func = alc_fixup_inv_dmic,
8250 .chained = true,
8251 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8252 },
8253 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8254 .type = HDA_FIXUP_FUNC,
8255 .v.func = alc269_fixup_limit_int_mic_boost
8256 },
3b43b71f
KHF
8257 [ALC255_FIXUP_DELL_SPK_NOISE] = {
8258 .type = HDA_FIXUP_FUNC,
8259 .v.func = alc_fixup_disable_aamix,
8260 .chained = true,
8261 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8262 },
d1dd4211
KY
8263 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
8264 .type = HDA_FIXUP_FUNC,
8265 .v.func = alc_fixup_disable_mic_vref,
8266 .chained = true,
8267 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8268 },
2ae95577
DH
8269 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8270 .type = HDA_FIXUP_VERBS,
8271 .v.verbs = (const struct hda_verb[]) {
8272 /* Disable pass-through path for FRONT 14h */
8273 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8274 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8275 {}
8276 },
8277 .chained = true,
d1dd4211 8278 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
2ae95577 8279 },
f883982d
TI
8280 [ALC280_FIXUP_HP_HEADSET_MIC] = {
8281 .type = HDA_FIXUP_FUNC,
8282 .v.func = alc_fixup_disable_aamix,
8283 .chained = true,
8284 .chain_id = ALC269_FIXUP_HEADSET_MIC,
8285 },
e549d190
HW
8286 [ALC221_FIXUP_HP_FRONT_MIC] = {
8287 .type = HDA_FIXUP_PINS,
8288 .v.pins = (const struct hda_pintbl[]) {
8289 { 0x19, 0x02a19020 }, /* Front Mic */
8290 { }
8291 },
8292 },
c636b95e
SE
8293 [ALC292_FIXUP_TPT460] = {
8294 .type = HDA_FIXUP_FUNC,
8295 .v.func = alc_fixup_tpt440_dock,
8296 .chained = true,
8297 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8298 },
dd9aa335
HW
8299 [ALC298_FIXUP_SPK_VOLUME] = {
8300 .type = HDA_FIXUP_FUNC,
8301 .v.func = alc298_fixup_speaker_volume,
59ec4b57 8302 .chained = true,
2f726aec 8303 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 8304 },
f86de9b1
KY
8305 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8306 .type = HDA_FIXUP_FUNC,
8307 .v.func = alc298_fixup_speaker_volume,
8308 },
e312a869
TI
8309 [ALC295_FIXUP_DISABLE_DAC3] = {
8310 .type = HDA_FIXUP_FUNC,
8311 .v.func = alc295_fixup_disable_dac3,
8312 },
d2cd795c
JK
8313 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8314 .type = HDA_FIXUP_FUNC,
8315 .v.func = alc285_fixup_speaker2_to_dac1,
c37c0ab0
HW
8316 .chained = true,
8317 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
d2cd795c 8318 },
4b963ae1
AS
8319 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8320 .type = HDA_FIXUP_FUNC,
8321 .v.func = alc285_fixup_speaker2_to_dac1,
8322 .chained = true,
8323 .chain_id = ALC245_FIXUP_CS35L41_SPI_2
8324 },
8325 [ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8326 .type = HDA_FIXUP_PINS,
8327 .v.pins = (const struct hda_pintbl[]) {
8328 { 0x19, 0x03a11050 },
8329 { 0x1b, 0x03a11c30 },
8330 { }
8331 },
8332 .chained = true,
8333 .chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8334 },
b759a5f0
LJ
8335 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8336 .type = HDA_FIXUP_PINS,
8337 .v.pins = (const struct hda_pintbl[]) {
8338 { 0x14, 0x90170120 },
8339 { }
8340 },
8341 .chained = true,
8342 .chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8343 },
8cc87c05
LJ
8344 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8345 .type = HDA_FIXUP_FUNC,
8346 .v.func = alc285_fixup_speaker2_to_dac1,
8347 .chained = true,
8348 .chain_id = ALC287_FIXUP_CS35L41_I2C_2
8349 },
8350 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8351 .type = HDA_FIXUP_PINS,
8352 .v.pins = (const struct hda_pintbl[]) {
8353 { 0x19, 0x03a11050 },
8354 { 0x1b, 0x03a11c30 },
8355 { }
8356 },
8357 .chained = true,
8358 .chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8359 },
fd06c77e
KHF
8360 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8361 .type = HDA_FIXUP_PINS,
8362 .v.pins = (const struct hda_pintbl[]) {
8363 { 0x1b, 0x90170151 },
8364 { }
8365 },
8366 .chained = true,
8367 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8368 },
823ff161
GM
8369 [ALC269_FIXUP_ATIV_BOOK_8] = {
8370 .type = HDA_FIXUP_FUNC,
8371 .v.func = alc_fixup_auto_mute_via_amp,
8372 .chained = true,
8373 .chain_id = ALC269_FIXUP_NO_SHUTUP
8374 },
4ba5c853
MT
8375 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8376 .type = HDA_FIXUP_PINS,
8377 .v.pins = (const struct hda_pintbl[]) {
8378 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8379 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8380 { }
8381 },
8382 .chained = true,
8383 .chain_id = ALC269_FIXUP_HEADSET_MODE
8384 },
9eb5d0e6
KY
8385 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8386 .type = HDA_FIXUP_PINS,
8387 .v.pins = (const struct hda_pintbl[]) {
8388 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8389 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8390 { }
8391 },
8392 .chained = true,
8393 .chain_id = ALC269_FIXUP_HEADSET_MODE
8394 },
c1732ede
CC
8395 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8396 .type = HDA_FIXUP_FUNC,
8397 .v.func = alc_fixup_headset_mode,
8398 },
8399 [ALC256_FIXUP_ASUS_MIC] = {
8400 .type = HDA_FIXUP_PINS,
8401 .v.pins = (const struct hda_pintbl[]) {
8402 { 0x13, 0x90a60160 }, /* use as internal mic */
8403 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8404 { }
8405 },
8406 .chained = true,
8407 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8408 },
eeed4cd1 8409 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
8410 .type = HDA_FIXUP_FUNC,
8411 /* Set up GPIO2 for the speaker amp */
8412 .v.func = alc_fixup_gpio4,
eeed4cd1 8413 },
216d7aeb
CC
8414 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8415 .type = HDA_FIXUP_PINS,
8416 .v.pins = (const struct hda_pintbl[]) {
8417 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8418 { }
8419 },
8420 .chained = true,
8421 .chain_id = ALC269_FIXUP_HEADSET_MIC
8422 },
8423 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8424 .type = HDA_FIXUP_VERBS,
8425 .v.verbs = (const struct hda_verb[]) {
8426 /* Enables internal speaker */
8427 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8428 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8429 {}
8430 },
8431 .chained = true,
8432 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8433 },
ca169cc2
KY
8434 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8435 .type = HDA_FIXUP_FUNC,
8436 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
f73bbf63
KHF
8437 .chained = true,
8438 .chain_id = ALC269_FIXUP_GPIO2
ca169cc2 8439 },
ea5c7eba
JHP
8440 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
8441 .type = HDA_FIXUP_VERBS,
8442 .v.verbs = (const struct hda_verb[]) {
8443 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8444 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8445 { }
8446 },
8447 .chained = true,
8448 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8449 },
f33f79f3
HW
8450 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8451 .type = HDA_FIXUP_PINS,
8452 .v.pins = (const struct hda_pintbl[]) {
8453 /* Change the mic location from front to right, otherwise there are
8454 two front mics with the same name, pulseaudio can't handle them.
8455 This is just a temporary workaround, after applying this fixup,
8456 there will be one "Front Mic" and one "Mic" in this machine.
8457 */
8458 { 0x1a, 0x04a19040 },
8459 { }
8460 },
8461 },
5f364135
KY
8462 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8463 .type = HDA_FIXUP_PINS,
8464 .v.pins = (const struct hda_pintbl[]) {
8465 { 0x16, 0x0101102f }, /* Rear Headset HP */
8466 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8467 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8468 { 0x1b, 0x02011020 },
8469 { }
8470 },
8471 .chained = true,
52e4e368
KHF
8472 .chain_id = ALC225_FIXUP_S3_POP_NOISE
8473 },
8474 [ALC225_FIXUP_S3_POP_NOISE] = {
8475 .type = HDA_FIXUP_FUNC,
8476 .v.func = alc225_fixup_s3_pop_noise,
8477 .chained = true,
5f364135
KY
8478 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8479 },
b84e8436
PH
8480 [ALC700_FIXUP_INTEL_REFERENCE] = {
8481 .type = HDA_FIXUP_VERBS,
8482 .v.verbs = (const struct hda_verb[]) {
8483 /* Enables internal speaker */
8484 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8485 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8486 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8487 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8488 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8489 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8490 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8491 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8492 {}
8493 }
8494 },
92266651
KY
8495 [ALC274_FIXUP_DELL_BIND_DACS] = {
8496 .type = HDA_FIXUP_FUNC,
8497 .v.func = alc274_fixup_bind_dacs,
8498 .chained = true,
8499 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8500 },
8501 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8502 .type = HDA_FIXUP_PINS,
8503 .v.pins = (const struct hda_pintbl[]) {
8504 { 0x1b, 0x0401102f },
8505 { }
8506 },
8507 .chained = true,
8508 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8509 },
399c01aa 8510 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
61fcf8ec
KY
8511 .type = HDA_FIXUP_FUNC,
8512 .v.func = alc_fixup_tpt470_dock,
8513 .chained = true,
8514 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8515 },
399c01aa
TI
8516 [ALC298_FIXUP_TPT470_DOCK] = {
8517 .type = HDA_FIXUP_FUNC,
8518 .v.func = alc_fixup_tpt470_dacs,
8519 .chained = true,
8520 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8521 },
ae104a21
KY
8522 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8523 .type = HDA_FIXUP_PINS,
8524 .v.pins = (const struct hda_pintbl[]) {
8525 { 0x14, 0x0201101f },
8526 { }
8527 },
8528 .chained = true,
8529 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8530 },
f0ba9d69
KY
8531 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8532 .type = HDA_FIXUP_PINS,
8533 .v.pins = (const struct hda_pintbl[]) {
8534 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8535 { }
8536 },
3ce0d5aa
HW
8537 .chained = true,
8538 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 8539 },
bbf8ff6b
TB
8540 [ALC295_FIXUP_HP_X360] = {
8541 .type = HDA_FIXUP_FUNC,
8542 .v.func = alc295_fixup_hp_top_speakers,
8543 .chained = true,
8544 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
8545 },
8546 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8547 .type = HDA_FIXUP_PINS,
8548 .v.pins = (const struct hda_pintbl[]) {
8549 { 0x19, 0x0181313f},
8550 { }
8551 },
8552 .chained = true,
8553 .chain_id = ALC269_FIXUP_HEADSET_MIC
8554 },
c4cfcf6f
HW
8555 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8556 .type = HDA_FIXUP_FUNC,
8557 .v.func = alc285_fixup_invalidate_dacs,
6ba189c5
HW
8558 .chained = true,
8559 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
c4cfcf6f 8560 },
e8ed64b0
GKK
8561 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8562 .type = HDA_FIXUP_FUNC,
8563 .v.func = alc_fixup_auto_mute_via_amp,
8564 },
33aaebd4
CC
8565 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8566 .type = HDA_FIXUP_PINS,
8567 .v.pins = (const struct hda_pintbl[]) {
8568 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8569 { }
8570 },
8571 .chained = true,
8572 .chain_id = ALC269_FIXUP_HEADSET_MIC
8573 },
d8ae458e
CC
8574 [ALC294_FIXUP_ASUS_MIC] = {
8575 .type = HDA_FIXUP_PINS,
8576 .v.pins = (const struct hda_pintbl[]) {
8577 { 0x13, 0x90a60160 }, /* use as internal mic */
8578 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8579 { }
8580 },
8581 .chained = true,
ef9ddb9d 8582 .chain_id = ALC269_FIXUP_HEADSET_MIC
d8ae458e 8583 },
4e051106
JHP
8584 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8585 .type = HDA_FIXUP_PINS,
8586 .v.pins = (const struct hda_pintbl[]) {
82b01149 8587 { 0x19, 0x01a1103c }, /* use as headset mic */
4e051106
JHP
8588 { }
8589 },
8590 .chained = true,
ef9ddb9d 8591 .chain_id = ALC269_FIXUP_HEADSET_MIC
4e051106
JHP
8592 },
8593 [ALC294_FIXUP_ASUS_SPK] = {
8594 .type = HDA_FIXUP_VERBS,
8595 .v.verbs = (const struct hda_verb[]) {
8596 /* Set EAPD high */
8597 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8598 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
473fbe13
KY
8599 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8600 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
4e051106
JHP
8601 { }
8602 },
8603 .chained = true,
8604 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8605 },
c8a9afa6 8606 [ALC295_FIXUP_CHROME_BOOK] = {
e854747d 8607 .type = HDA_FIXUP_FUNC,
c8a9afa6 8608 .v.func = alc295_fixup_chromebook,
8983eb60
KY
8609 .chained = true,
8610 .chain_id = ALC225_FIXUP_HEADSET_JACK
8611 },
8612 [ALC225_FIXUP_HEADSET_JACK] = {
8613 .type = HDA_FIXUP_FUNC,
8614 .v.func = alc_fixup_headset_jack,
e854747d 8615 },
89e3a568
JS
8616 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8617 .type = HDA_FIXUP_PINS,
8618 .v.pins = (const struct hda_pintbl[]) {
8619 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8620 { }
8621 },
8622 .chained = true,
8623 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8624 },
c8c6ee61
HW
8625 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8626 .type = HDA_FIXUP_VERBS,
8627 .v.verbs = (const struct hda_verb[]) {
8628 /* Disable PCBEEP-IN passthrough */
8629 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8630 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8631 { }
8632 },
8633 .chained = true,
8634 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8635 },
cbc05fd6
JHP
8636 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8637 .type = HDA_FIXUP_PINS,
8638 .v.pins = (const struct hda_pintbl[]) {
8639 { 0x19, 0x03a11130 },
8640 { 0x1a, 0x90a60140 }, /* use as internal mic */
8641 { }
8642 },
8643 .chained = true,
8644 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8645 },
136824ef
KY
8646 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8647 .type = HDA_FIXUP_PINS,
8648 .v.pins = (const struct hda_pintbl[]) {
8649 { 0x16, 0x01011020 }, /* Rear Line out */
8650 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8651 { }
8652 },
8653 .chained = true,
8654 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8655 },
8656 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8657 .type = HDA_FIXUP_FUNC,
8658 .v.func = alc_fixup_auto_mute_via_amp,
8659 .chained = true,
8660 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8661 },
8662 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8663 .type = HDA_FIXUP_FUNC,
8664 .v.func = alc_fixup_disable_mic_vref,
8665 .chained = true,
8666 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8667 },
667a8f73
JHP
8668 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8669 .type = HDA_FIXUP_VERBS,
8670 .v.verbs = (const struct hda_verb[]) {
8671 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8672 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8673 { }
8674 },
8675 .chained = true,
8676 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8677 },
8c8967a7
DD
8678 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8679 .type = HDA_FIXUP_PINS,
8680 .v.pins = (const struct hda_pintbl[]) {
8681 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8682 { }
8683 },
8684 .chained = true,
8685 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8686 },
e1037354
JHP
8687 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8688 .type = HDA_FIXUP_PINS,
8689 .v.pins = (const struct hda_pintbl[]) {
8690 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8691 { }
8692 },
8693 .chained = true,
8694 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8695 },
e2a829b3
BR
8696 [ALC299_FIXUP_PREDATOR_SPK] = {
8697 .type = HDA_FIXUP_PINS,
8698 .v.pins = (const struct hda_pintbl[]) {
8699 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8700 { }
8701 }
8702 },
bd9c10bc 8703 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
60083f9e
JHP
8704 .type = HDA_FIXUP_PINS,
8705 .v.pins = (const struct hda_pintbl[]) {
bd9c10bc
JMG
8706 { 0x19, 0x04a11040 },
8707 { 0x21, 0x04211020 },
60083f9e
JHP
8708 { }
8709 },
8710 .chained = true,
bd9c10bc 8711 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
60083f9e 8712 },
f0d9da19
KY
8713 [ALC289_FIXUP_DELL_SPK1] = {
8714 .type = HDA_FIXUP_PINS,
8715 .v.pins = (const struct hda_pintbl[]) {
8716 { 0x14, 0x90170140 },
8717 { }
8718 },
8719 .chained = true,
8720 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8721 },
e79c2269 8722 [ALC289_FIXUP_DELL_SPK2] = {
bd9c10bc
JMG
8723 .type = HDA_FIXUP_PINS,
8724 .v.pins = (const struct hda_pintbl[]) {
e79c2269 8725 { 0x17, 0x90170130 }, /* bass spk */
bd9c10bc
JMG
8726 { }
8727 },
8728 .chained = true,
e79c2269 8729 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
bd9c10bc 8730 },
e79c2269
KY
8731 [ALC289_FIXUP_DUAL_SPK] = {
8732 .type = HDA_FIXUP_FUNC,
8733 .v.func = alc285_fixup_speaker2_to_dac1,
8734 .chained = true,
8735 .chain_id = ALC289_FIXUP_DELL_SPK2
8736 },
f0d9da19
KY
8737 [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8738 .type = HDA_FIXUP_FUNC,
8739 .v.func = alc285_fixup_speaker2_to_dac1,
8740 .chained = true,
8741 .chain_id = ALC289_FIXUP_DELL_SPK1
8742 },
48e01504
CC
8743 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8744 .type = HDA_FIXUP_FUNC,
8745 .v.func = alc285_fixup_speaker2_to_dac1,
8746 .chained = true,
8747 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8748 },
8749 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
436e2550
JHP
8750 .type = HDA_FIXUP_FUNC,
8751 /* The GPIO must be pulled to initialize the AMP */
8752 .v.func = alc_fixup_gpio4,
8753 .chained = true,
48e01504 8754 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
436e2550 8755 },
724418b8
MA
8756 [ALC294_FIXUP_ASUS_ALLY] = {
8757 .type = HDA_FIXUP_FUNC,
8758 .v.func = cs35l41_fixup_i2c_two,
8759 .chained = true,
8760 .chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8761 },
8762 [ALC294_FIXUP_ASUS_ALLY_PINS] = {
8763 .type = HDA_FIXUP_PINS,
8764 .v.pins = (const struct hda_pintbl[]) {
8765 { 0x19, 0x03a11050 },
8766 { 0x1a, 0x03a11c30 },
8767 { 0x21, 0x03211420 },
8768 { }
8769 },
8770 .chained = true,
8771 .chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8772 },
8773 [ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8774 .type = HDA_FIXUP_VERBS,
8775 .v.verbs = (const struct hda_verb[]) {
8776 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8777 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8778 { 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8779 { 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8780 { 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8781 { 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8782 { 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8783 { 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8784 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8785 { 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8786 { 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8787 { 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8788 { }
8789 },
8790 .chained = true,
8791 .chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8792 },
8793 [ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8794 .type = HDA_FIXUP_FUNC,
8795 .v.func = alc285_fixup_speaker2_to_dac1,
8796 },
6a6660d0
TI
8797 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8798 .type = HDA_FIXUP_FUNC,
8799 .v.func = alc285_fixup_thinkpad_x1_gen7,
8800 .chained = true,
8801 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8802 },
76f7dec0
KY
8803 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8804 .type = HDA_FIXUP_FUNC,
8805 .v.func = alc_fixup_headset_jack,
8806 .chained = true,
6a6660d0 8807 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
76f7dec0 8808 },
8b33a134
JHP
8809 [ALC294_FIXUP_ASUS_HPE] = {
8810 .type = HDA_FIXUP_VERBS,
8811 .v.verbs = (const struct hda_verb[]) {
8812 /* Set EAPD high */
8813 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8814 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8815 { }
8816 },
8817 .chained = true,
8818 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8819 },
c3cdf189
LJ
8820 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8821 .type = HDA_FIXUP_PINS,
8822 .v.pins = (const struct hda_pintbl[]) {
8823 { 0x19, 0x03a11050 }, /* front HP mic */
8824 { 0x1a, 0x01a11830 }, /* rear external mic */
8825 { 0x21, 0x03211020 }, /* front HP out */
8826 { }
8827 },
8828 .chained = true,
8829 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8830 },
8831 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8832 .type = HDA_FIXUP_VERBS,
8833 .v.verbs = (const struct hda_verb[]) {
8834 /* set 0x15 to HP-OUT ctrl */
8835 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8836 /* unmute the 0x15 amp */
8837 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8838 { }
8839 },
8840 .chained = true,
8841 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8842 },
8843 [ALC294_FIXUP_ASUS_GX502_HP] = {
8844 .type = HDA_FIXUP_FUNC,
8845 .v.func = alc294_fixup_gx502_hp,
8846 },
c1b55029
DC
8847 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8848 .type = HDA_FIXUP_PINS,
8849 .v.pins = (const struct hda_pintbl[]) {
8850 { 0x19, 0x01a11050 }, /* rear HP mic */
8851 { 0x1a, 0x01a11830 }, /* rear external mic */
8852 { 0x21, 0x012110f0 }, /* rear HP out */
8853 { }
8854 },
8855 .chained = true,
8856 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8857 },
8858 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8859 .type = HDA_FIXUP_VERBS,
8860 .v.verbs = (const struct hda_verb[]) {
8861 /* set 0x15 to HP-OUT ctrl */
8862 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8863 /* unmute the 0x15 amp */
8864 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8865 /* set 0x1b to HP-OUT */
8866 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8867 { }
8868 },
8869 .chained = true,
8870 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8871 },
8872 [ALC294_FIXUP_ASUS_GU502_HP] = {
8873 .type = HDA_FIXUP_FUNC,
8874 .v.func = alc294_fixup_gu502_hp,
c611e659
LJ
8875 },
8876 [ALC294_FIXUP_ASUS_G513_PINS] = {
8877 .type = HDA_FIXUP_PINS,
8878 .v.pins = (const struct hda_pintbl[]) {
8879 { 0x19, 0x03a11050 }, /* front HP mic */
8880 { 0x1a, 0x03a11c30 }, /* rear external mic */
8881 { 0x21, 0x03211420 }, /* front HP out */
8882 { }
8883 },
c1b55029 8884 },
bc2c2354
LJ
8885 [ALC285_FIXUP_ASUS_G533Z_PINS] = {
8886 .type = HDA_FIXUP_PINS,
8887 .v.pins = (const struct hda_pintbl[]) {
66ba7c88
LJ
8888 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8889 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
8890 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8891 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8892 { 0x21, 0x03211420 },
bc2c2354
LJ
8893 { }
8894 },
bc2c2354 8895 },
1b94e59d
TI
8896 [ALC294_FIXUP_ASUS_COEF_1B] = {
8897 .type = HDA_FIXUP_VERBS,
8898 .v.verbs = (const struct hda_verb[]) {
8899 /* Set bit 10 to correct noisy output after reboot from
8900 * Windows 10 (due to pop noise reduction?)
8901 */
8902 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8903 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8904 { }
8905 },
f8fbcdfb
TI
8906 .chained = true,
8907 .chain_id = ALC289_FIXUP_ASUS_GA401,
1b94e59d 8908 },
f5a88b0a
KHF
8909 [ALC285_FIXUP_HP_GPIO_LED] = {
8910 .type = HDA_FIXUP_FUNC,
8911 .v.func = alc285_fixup_hp_gpio_led,
8912 },
431e76c3
KY
8913 [ALC285_FIXUP_HP_MUTE_LED] = {
8914 .type = HDA_FIXUP_FUNC,
8915 .v.func = alc285_fixup_hp_mute_led,
8916 },
ca88eeb3
LG
8917 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
8918 .type = HDA_FIXUP_FUNC,
8919 .v.func = alc285_fixup_hp_spectre_x360_mute_led,
8920 },
0659400f
LG
8921 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
8922 .type = HDA_FIXUP_FUNC,
8923 .v.func = alc236_fixup_hp_mute_led_coefbit2,
8924 },
e7d66cf7
JS
8925 [ALC236_FIXUP_HP_GPIO_LED] = {
8926 .type = HDA_FIXUP_FUNC,
8927 .v.func = alc236_fixup_hp_gpio_led,
8928 },
24164f43
KY
8929 [ALC236_FIXUP_HP_MUTE_LED] = {
8930 .type = HDA_FIXUP_FUNC,
8931 .v.func = alc236_fixup_hp_mute_led,
8932 },
75b62ab6
JW
8933 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8934 .type = HDA_FIXUP_FUNC,
8935 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8936 },
a2d57ebe
KM
8937 [ALC298_FIXUP_SAMSUNG_AMP] = {
8938 .type = HDA_FIXUP_FUNC,
8939 .v.func = alc298_fixup_samsung_amp,
8940 .chained = true,
8941 .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
8942 },
14425f1f
MP
8943 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8944 .type = HDA_FIXUP_VERBS,
8945 .v.verbs = (const struct hda_verb[]) {
8946 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8947 { }
8948 },
8949 },
ef248d9b
MK
8950 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8951 .type = HDA_FIXUP_VERBS,
8952 .v.verbs = (const struct hda_verb[]) {
8953 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8954 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8955 { }
8956 },
8957 },
9e43342b
CC
8958 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8959 .type = HDA_FIXUP_PINS,
8960 .v.pins = (const struct hda_pintbl[]) {
8961 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8962 { }
8963 },
8964 .chained = true,
8965 .chain_id = ALC269_FIXUP_HEADSET_MODE
8966 },
8eae7e9b
JHP
8967 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8968 .type = HDA_FIXUP_PINS,
8969 .v.pins = (const struct hda_pintbl[]) {
8970 { 0x14, 0x90100120 }, /* use as internal speaker */
8971 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8972 { 0x1a, 0x01011020 }, /* use as line out */
8973 { },
8974 },
8975 .chained = true,
8976 .chain_id = ALC269_FIXUP_HEADSET_MIC
8977 },
6e15d126
JHP
8978 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8979 .type = HDA_FIXUP_PINS,
8980 .v.pins = (const struct hda_pintbl[]) {
8981 { 0x18, 0x02a11030 }, /* use as headset mic */
8982 { }
8983 },
8984 .chained = true,
8985 .chain_id = ALC269_FIXUP_HEADSET_MIC
8986 },
781c90c0
JHP
8987 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8988 .type = HDA_FIXUP_PINS,
8989 .v.pins = (const struct hda_pintbl[]) {
8990 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8991 { }
8992 },
8993 .chained = true,
8994 .chain_id = ALC269_FIXUP_HEADSET_MIC
8995 },
293a92c1 8996 [ALC289_FIXUP_ASUS_GA401] = {
c84bfedc
TI
8997 .type = HDA_FIXUP_FUNC,
8998 .v.func = alc289_fixup_asus_ga401,
8999 .chained = true,
9000 .chain_id = ALC289_FIXUP_ASUS_GA502,
ff53664d 9001 },
4b43d05a
AS
9002 [ALC289_FIXUP_ASUS_GA502] = {
9003 .type = HDA_FIXUP_PINS,
9004 .v.pins = (const struct hda_pintbl[]) {
9005 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
9006 { }
9007 },
9008 },
f50a121d
JHP
9009 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
9010 .type = HDA_FIXUP_PINS,
9011 .v.pins = (const struct hda_pintbl[]) {
9012 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
9013 { }
9014 },
9015 .chained = true,
9016 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
9017 },
56496253
KY
9018 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
9019 .type = HDA_FIXUP_FUNC,
9020 .v.func = alc285_fixup_hp_gpio_amp_init,
9021 .chained = true,
9022 .chain_id = ALC285_FIXUP_HP_GPIO_LED
9023 },
f1ec5be1
HC
9024 [ALC269_FIXUP_CZC_B20] = {
9025 .type = HDA_FIXUP_PINS,
9026 .v.pins = (const struct hda_pintbl[]) {
9027 { 0x12, 0x411111f0 },
9028 { 0x14, 0x90170110 }, /* speaker */
9029 { 0x15, 0x032f1020 }, /* HP out */
9030 { 0x17, 0x411111f0 },
9031 { 0x18, 0x03ab1040 }, /* mic */
9032 { 0x19, 0xb7a7013f },
9033 { 0x1a, 0x0181305f },
9034 { 0x1b, 0x411111f0 },
9035 { 0x1d, 0x411111f0 },
9036 { 0x1e, 0x411111f0 },
9037 { }
9038 },
9039 .chain_id = ALC269_FIXUP_DMIC,
9040 },
9041 [ALC269_FIXUP_CZC_TMI] = {
9042 .type = HDA_FIXUP_PINS,
9043 .v.pins = (const struct hda_pintbl[]) {
9044 { 0x12, 0x4000c000 },
9045 { 0x14, 0x90170110 }, /* speaker */
9046 { 0x15, 0x0421401f }, /* HP out */
9047 { 0x17, 0x411111f0 },
9048 { 0x18, 0x04a19020 }, /* mic */
9049 { 0x19, 0x411111f0 },
9050 { 0x1a, 0x411111f0 },
9051 { 0x1b, 0x411111f0 },
9052 { 0x1d, 0x40448505 },
9053 { 0x1e, 0x411111f0 },
9054 { 0x20, 0x8000ffff },
9055 { }
9056 },
9057 .chain_id = ALC269_FIXUP_DMIC,
9058 },
9059 [ALC269_FIXUP_CZC_L101] = {
9060 .type = HDA_FIXUP_PINS,
9061 .v.pins = (const struct hda_pintbl[]) {
9062 { 0x12, 0x40000000 },
9063 { 0x14, 0x01014010 }, /* speaker */
9064 { 0x15, 0x411111f0 }, /* HP out */
9065 { 0x16, 0x411111f0 },
9066 { 0x18, 0x01a19020 }, /* mic */
9067 { 0x19, 0x02a19021 },
9068 { 0x1a, 0x0181302f },
9069 { 0x1b, 0x0221401f },
9070 { 0x1c, 0x411111f0 },
9071 { 0x1d, 0x4044c601 },
9072 { 0x1e, 0x411111f0 },
9073 { }
9074 },
9075 .chain_id = ALC269_FIXUP_DMIC,
9076 },
9077 [ALC269_FIXUP_LEMOTE_A1802] = {
9078 .type = HDA_FIXUP_PINS,
9079 .v.pins = (const struct hda_pintbl[]) {
9080 { 0x12, 0x40000000 },
9081 { 0x14, 0x90170110 }, /* speaker */
9082 { 0x17, 0x411111f0 },
9083 { 0x18, 0x03a19040 }, /* mic1 */
9084 { 0x19, 0x90a70130 }, /* mic2 */
9085 { 0x1a, 0x411111f0 },
9086 { 0x1b, 0x411111f0 },
9087 { 0x1d, 0x40489d2d },
9088 { 0x1e, 0x411111f0 },
9089 { 0x20, 0x0003ffff },
9090 { 0x21, 0x03214020 },
9091 { }
9092 },
9093 .chain_id = ALC269_FIXUP_DMIC,
9094 },
9095 [ALC269_FIXUP_LEMOTE_A190X] = {
9096 .type = HDA_FIXUP_PINS,
9097 .v.pins = (const struct hda_pintbl[]) {
9098 { 0x14, 0x99130110 }, /* speaker */
9099 { 0x15, 0x0121401f }, /* HP out */
9100 { 0x18, 0x01a19c20 }, /* rear mic */
9101 { 0x19, 0x99a3092f }, /* front mic */
9102 { 0x1b, 0x0201401f }, /* front lineout */
9103 { }
9104 },
9105 .chain_id = ALC269_FIXUP_DMIC,
9106 },
e2d2fded
KHF
9107 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
9108 .type = HDA_FIXUP_PINS,
9109 .v.pins = (const struct hda_pintbl[]) {
9110 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9111 { }
9112 },
9113 .chained = true,
9114 .chain_id = ALC269_FIXUP_HEADSET_MODE
9115 },
73e7161e
WS
9116 [ALC256_FIXUP_INTEL_NUC10] = {
9117 .type = HDA_FIXUP_PINS,
9118 .v.pins = (const struct hda_pintbl[]) {
9119 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9120 { }
9121 },
9122 .chained = true,
9123 .chain_id = ALC269_FIXUP_HEADSET_MODE
9124 },
fc19d559
HW
9125 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
9126 .type = HDA_FIXUP_VERBS,
9127 .v.verbs = (const struct hda_verb[]) {
9128 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9129 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9130 { }
9131 },
9132 .chained = true,
c84bfedc 9133 .chain_id = ALC289_FIXUP_ASUS_GA502
fc19d559 9134 },
13468bfa
HW
9135 [ALC274_FIXUP_HP_MIC] = {
9136 .type = HDA_FIXUP_VERBS,
9137 .v.verbs = (const struct hda_verb[]) {
9138 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
9139 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
9140 { }
9141 },
9142 },
8a8de09c
KY
9143 [ALC274_FIXUP_HP_HEADSET_MIC] = {
9144 .type = HDA_FIXUP_FUNC,
9145 .v.func = alc274_fixup_hp_headset_mic,
9146 .chained = true,
9147 .chain_id = ALC274_FIXUP_HP_MIC
9148 },
622464c8
TI
9149 [ALC274_FIXUP_HP_ENVY_GPIO] = {
9150 .type = HDA_FIXUP_FUNC,
9151 .v.func = alc274_fixup_hp_envy_gpio,
9152 },
ef9ce66f
KY
9153 [ALC256_FIXUP_ASUS_HPE] = {
9154 .type = HDA_FIXUP_VERBS,
9155 .v.verbs = (const struct hda_verb[]) {
9156 /* Set EAPD high */
9157 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
9158 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
9159 { }
9160 },
9161 .chained = true,
9162 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9163 },
446b8185
KY
9164 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9165 .type = HDA_FIXUP_FUNC,
9166 .v.func = alc_fixup_headset_jack,
9167 .chained = true,
9168 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
9169 },
a0ccbc53
KY
9170 [ALC287_FIXUP_HP_GPIO_LED] = {
9171 .type = HDA_FIXUP_FUNC,
9172 .v.func = alc287_fixup_hp_gpio_led,
9173 },
9e885770
KY
9174 [ALC256_FIXUP_HP_HEADSET_MIC] = {
9175 .type = HDA_FIXUP_FUNC,
9176 .v.func = alc274_fixup_hp_headset_mic,
9177 },
92666d45
KY
9178 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9179 .type = HDA_FIXUP_FUNC,
9180 .v.func = alc_fixup_no_int_mic,
9181 .chained = true,
9182 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9183 },
34cdf405
CC
9184 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9185 .type = HDA_FIXUP_PINS,
9186 .v.pins = (const struct hda_pintbl[]) {
9187 { 0x1b, 0x411111f0 },
9188 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9189 { },
9190 },
9191 .chained = true,
9192 .chain_id = ALC269_FIXUP_HEADSET_MODE
9193 },
495dc763
CC
9194 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9195 .type = HDA_FIXUP_FUNC,
9196 .v.func = alc269_fixup_limit_int_mic_boost,
9197 .chained = true,
9198 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9199 },
d0e18561
CC
9200 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
9201 .type = HDA_FIXUP_PINS,
9202 .v.pins = (const struct hda_pintbl[]) {
9203 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9204 { 0x1a, 0x90a1092f }, /* use as internal mic */
9205 { }
9206 },
9207 .chained = true,
9208 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9209 },
26928ca1
TI
9210 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9211 .type = HDA_FIXUP_FUNC,
9212 .v.func = alc285_fixup_ideapad_s740_coef,
9213 .chained = true,
9214 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9215 },
bd15b155
KHF
9216 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9217 .type = HDA_FIXUP_FUNC,
9218 .v.func = alc269_fixup_limit_int_mic_boost,
9219 .chained = true,
9220 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9221 },
8eedd3a7
TI
9222 [ALC295_FIXUP_ASUS_DACS] = {
9223 .type = HDA_FIXUP_FUNC,
9224 .v.func = alc295_fixup_asus_dacs,
9225 },
5d84b531
TI
9226 [ALC295_FIXUP_HP_OMEN] = {
9227 .type = HDA_FIXUP_PINS,
9228 .v.pins = (const struct hda_pintbl[]) {
9229 { 0x12, 0xb7a60130 },
9230 { 0x13, 0x40000000 },
9231 { 0x14, 0x411111f0 },
9232 { 0x16, 0x411111f0 },
9233 { 0x17, 0x90170110 },
9234 { 0x18, 0x411111f0 },
9235 { 0x19, 0x02a11030 },
9236 { 0x1a, 0x411111f0 },
9237 { 0x1b, 0x04a19030 },
9238 { 0x1d, 0x40600001 },
9239 { 0x1e, 0x411111f0 },
9240 { 0x21, 0x03211020 },
9241 {}
9242 },
9243 .chained = true,
9244 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9245 },
f2be77fe 9246 [ALC285_FIXUP_HP_SPECTRE_X360] = {
434591b2
ED
9247 .type = HDA_FIXUP_FUNC,
9248 .v.func = alc285_fixup_hp_spectre_x360,
f2be77fe 9249 },
d94befbb
DB
9250 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9251 .type = HDA_FIXUP_FUNC,
9252 .v.func = alc285_fixup_hp_spectre_x360_eb1
9253 },
9ebaef05
HW
9254 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9255 .type = HDA_FIXUP_FUNC,
9256 .v.func = alc285_fixup_ideapad_s740_coef,
9257 .chained = true,
9258 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9259 },
29c8f40b
PU
9260 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9261 .type = HDA_FIXUP_FUNC,
9262 .v.func = alc_fixup_no_shutup,
9263 .chained = true,
9264 .chain_id = ALC283_FIXUP_HEADSET_MIC,
9265 },
57c9e21a
HW
9266 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9267 .type = HDA_FIXUP_PINS,
9268 .v.pins = (const struct hda_pintbl[]) {
9269 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9270 { }
9271 },
9272 .chained = true,
9273 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9274 },
8903376d
KHF
9275 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9276 .type = HDA_FIXUP_FUNC,
9277 .v.func = alc269_fixup_limit_int_mic_boost,
9278 .chained = true,
9279 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9280 },
8f4c9042
BF
9281 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9282 .type = HDA_FIXUP_FUNC,
9283 .v.func = alc285_fixup_ideapad_s740_coef,
9284 .chained = true,
9285 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9286 },
9287 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9288 .type = HDA_FIXUP_FUNC,
9289 .v.func = alc287_fixup_legion_15imhg05_speakers,
9290 .chained = true,
9291 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9292 },
ad7cc2d4
CB
9293 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9294 .type = HDA_FIXUP_VERBS,
9295 //.v.verbs = legion_15imhg05_coefs,
9296 .v.verbs = (const struct hda_verb[]) {
9297 // set left speaker Legion 7i.
9298 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9299 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9300
9301 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9302 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9303 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9304 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9305 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9306
9307 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9308 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9309 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9310 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9311 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9312
9313 // set right speaker Legion 7i.
9314 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9315 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9316
9317 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9318 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9319 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9320 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9321 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9322
9323 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9324 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9325 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9326 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9327 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9328 {}
9329 },
9330 .chained = true,
9331 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9332 },
9333 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9334 .type = HDA_FIXUP_FUNC,
9335 .v.func = alc287_fixup_legion_15imhg05_speakers,
9336 .chained = true,
9337 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9338 },
9339 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9340 .type = HDA_FIXUP_VERBS,
9341 .v.verbs = (const struct hda_verb[]) {
9342 // set left speaker Yoga 7i.
9343 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9344 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9345
9346 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9347 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9348 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9349 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9350 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9351
9352 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9353 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9354 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9355 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9356 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9357
9358 // set right speaker Yoga 7i.
9359 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9360 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9361
9362 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9363 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9364 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9365 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9366 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9367
9368 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9369 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9370 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9371 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9372 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9373 {}
9374 },
9375 .chained = true,
9376 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9377 },
56ec3e75
TI
9378 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
9379 .type = HDA_FIXUP_FUNC,
9380 .v.func = alc298_fixup_lenovo_c940_duet7,
9381 },
ad7cc2d4
CB
9382 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9383 .type = HDA_FIXUP_VERBS,
9384 .v.verbs = (const struct hda_verb[]) {
9385 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9386 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
023a062f 9387 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
ad7cc2d4
CB
9388 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9389 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9390 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9391 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9392 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9393 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9394 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9395 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9396 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9397 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9398 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9399 {}
9400 },
9401 .chained = true,
9402 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9403 },
619764cc 9404 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
dd6dd6e3 9405 .type = HDA_FIXUP_FUNC,
619764cc 9406 .v.func = alc256_fixup_set_coef_defaults,
dd6dd6e3 9407 },
5fc462c3
JC
9408 [ALC245_FIXUP_HP_GPIO_LED] = {
9409 .type = HDA_FIXUP_FUNC,
9410 .v.func = alc245_fixup_hp_gpio_led,
9411 },
1278cc5a
JS
9412 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9413 .type = HDA_FIXUP_PINS,
9414 .v.pins = (const struct hda_pintbl[]) {
9415 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9416 { }
9417 },
9418 .chained = true,
9419 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9420 },
174a7fb3
WS
9421 [ALC233_FIXUP_NO_AUDIO_JACK] = {
9422 .type = HDA_FIXUP_FUNC,
9423 .v.func = alc233_fixup_no_audio_jack,
9424 },
edca7cc4
WS
9425 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9426 .type = HDA_FIXUP_FUNC,
9427 .v.func = alc256_fixup_mic_no_presence_and_resume,
9428 .chained = true,
9429 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9430 },
d3dca026
LT
9431 [ALC287_FIXUP_LEGION_16ACHG6] = {
9432 .type = HDA_FIXUP_FUNC,
9433 .v.func = alc287_fixup_legion_16achg6_speakers,
9434 },
ae7abe36
SB
9435 [ALC287_FIXUP_CS35L41_I2C_2] = {
9436 .type = HDA_FIXUP_FUNC,
9437 .v.func = cs35l41_fixup_i2c_two,
9438 },
b3fbe536
AC
9439 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9440 .type = HDA_FIXUP_FUNC,
9441 .v.func = cs35l41_fixup_i2c_two,
9442 .chained = true,
9443 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
ae7abe36 9444 },
42320660
SB
9445 [ALC287_FIXUP_CS35L41_I2C_4] = {
9446 .type = HDA_FIXUP_FUNC,
9447 .v.func = cs35l41_fixup_i2c_four,
9448 },
07bcab93
LT
9449 [ALC245_FIXUP_CS35L41_SPI_2] = {
9450 .type = HDA_FIXUP_FUNC,
9451 .v.func = cs35l41_fixup_spi_two,
9452 },
ce18f905
KHF
9453 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9454 .type = HDA_FIXUP_FUNC,
9455 .v.func = cs35l41_fixup_spi_two,
9456 .chained = true,
9457 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9458 },
07bcab93
LT
9459 [ALC245_FIXUP_CS35L41_SPI_4] = {
9460 .type = HDA_FIXUP_FUNC,
9461 .v.func = cs35l41_fixup_spi_four,
9462 },
9463 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9464 .type = HDA_FIXUP_FUNC,
864cb14c 9465 .v.func = cs35l41_fixup_spi_four,
07bcab93 9466 .chained = true,
864cb14c 9467 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
07bcab93 9468 },
91502a9a
AS
9469 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9470 .type = HDA_FIXUP_VERBS,
9471 .v.verbs = (const struct hda_verb[]) {
9472 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9473 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9474 { }
9475 },
9476 .chained = true,
9477 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9478 },
1efcdd9c
GM
9479 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9480 .type = HDA_FIXUP_FUNC,
9481 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
9482 .chained = true,
9483 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9484 },
309d7363
DH
9485 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9486 .type = HDA_FIXUP_PINS,
9487 .v.pins = (const struct hda_pintbl[]) {
9488 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9489 { }
9490 },
9491 .chained = true,
9492 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9493 },
1e24881d
LT
9494 [ALC287_FIXUP_LEGION_16ITHG6] = {
9495 .type = HDA_FIXUP_FUNC,
9496 .v.func = alc287_fixup_legion_16ithg6_speakers,
9497 },
3790a3d6
PJ
9498 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9499 .type = HDA_FIXUP_VERBS,
9500 .v.verbs = (const struct hda_verb[]) {
9501 // enable left speaker
9502 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9503 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9504
9505 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9506 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9507 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9508 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9509 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9510
9511 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9512 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9513 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9514 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9515 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9516
9517 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9518 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9519 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9520 { 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9521 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9522
9523 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9524 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9525 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9526 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9527 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9528
9529 // enable right speaker
9530 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9531 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9532
9533 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9534 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9535 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9536 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9537 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9538
9539 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9540 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9541 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9542 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9543 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9544
9545 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9546 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9547 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9548 { 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9549 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9550
9551 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9552 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9553 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9554 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9555 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9556
9557 { },
9558 },
9559 },
9560 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9561 .type = HDA_FIXUP_FUNC,
9562 .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9563 .chained = true,
9564 .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9565 },
2912cdda
PJ
9566 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9567 .type = HDA_FIXUP_FUNC,
9568 .v.func = alc295_fixup_dell_inspiron_top_speakers,
9569 .chained = true,
9570 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9571 },
a4517c4f
CC
9572 [ALC236_FIXUP_DELL_DUAL_CODECS] = {
9573 .type = HDA_FIXUP_PINS,
9574 .v.func = alc1220_fixup_gb_dual_codecs,
9575 .chained = true,
9576 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9577 },
f7b069cf
VR
9578 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9579 .type = HDA_FIXUP_FUNC,
9580 .v.func = cs35l41_fixup_i2c_two,
9581 .chained = true,
2468e892 9582 .chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
f7b069cf 9583 },
3babae91
SD
9584 [ALC287_FIXUP_TAS2781_I2C] = {
9585 .type = HDA_FIXUP_FUNC,
9586 .v.func = tas2781_fixup_i2c,
9587 .chained = true,
9588 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9589 },
b5cb53fd
GK
9590 [ALC287_FIXUP_YOGA7_14ARB7_I2C] = {
9591 .type = HDA_FIXUP_FUNC,
9592 .v.func = yoga7_14arb7_fixup_i2c,
9593 .chained = true,
9594 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9595 },
93dc18e1
SJ
9596 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9597 .type = HDA_FIXUP_FUNC,
9598 .v.func = alc245_fixup_hp_mute_led_coefbit,
9599 },
c99c26b1
FV
9600 [ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9601 .type = HDA_FIXUP_FUNC,
9602 .v.func = alc245_fixup_hp_mute_led_coefbit,
9603 .chained = true,
9604 .chain_id = ALC245_FIXUP_HP_GPIO_LED
9605 },
e43252db
KY
9606 [ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9607 .type = HDA_FIXUP_FUNC,
9608 .v.func = alc287_fixup_bind_dacs,
2468e892
JR
9609 .chained = true,
9610 .chain_id = ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
e43252db 9611 },
d93eeca6
KY
9612 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9613 .type = HDA_FIXUP_FUNC,
9614 .v.func = alc287_fixup_bind_dacs,
9615 .chained = true,
9616 .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9617 },
c8c0a03e
KY
9618 [ALC2XX_FIXUP_HEADSET_MIC] = {
9619 .type = HDA_FIXUP_FUNC,
9620 .v.func = alc_fixup_headset_mic,
9621 },
f0d9da19
KY
9622 [ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9623 .type = HDA_FIXUP_FUNC,
9624 .v.func = cs35l41_fixup_spi_two,
9625 .chained = true,
9626 .chain_id = ALC289_FIXUP_DUAL_SPK
9627 },
6ae90e90
VT
9628 [ALC294_FIXUP_CS35L41_I2C_2] = {
9629 .type = HDA_FIXUP_FUNC,
9630 .v.func = cs35l41_fixup_i2c_two,
9631 },
f1d4e28b
KY
9632};
9633
1d045db9 9634static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 9635 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
9636 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9637 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 9638 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b 9639 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
9640 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9641 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 9642 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 9643 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 9644 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
433f894e 9645 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
c8426b27 9646 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
13be30f1 9647 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
705b65f1 9648 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
6e15d126 9649 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
b9c2fa52 9650 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
495dc763 9651 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
c7531e31
CC
9652 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9653 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
13be30f1
CC
9654 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9655 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
e2a829b3 9656 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
8eae7e9b 9657 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
781c90c0 9658 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
d0e18561 9659 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
efb56d84 9660 SND_PCI_QUIRK(0x1025, 0x126a, "Acer Swift SF114-32", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
667a8f73
JHP
9661 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9662 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9663 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
d0e18561 9664 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
5f3fe25e 9665 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
35171fbf 9666 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
2733cceb 9667 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
ea5c7eba 9668 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
cbc05fd6 9669 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
2a5bb694 9670 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
0d4867a1 9671 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
f50a121d 9672 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
57c9e21a 9673 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
6a28a25d 9674 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
aaedfb47 9675 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
841bdf85 9676 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
6ed1131f 9677 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 9678 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 9679 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
9680 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9681 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 9682 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
9683 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9684 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9685 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
9686 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9687 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 9688 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 9689 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 9690 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
9691 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9692 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 9693 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 9694 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 9695 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 9696 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
9697 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9698 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
9699 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9700 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9701 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9702 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9703 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
fd06c77e 9704 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 9705 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
c0ca5ece 9706 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
709ae62e 9707 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 9708 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
493de342 9709 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
aa143ad3 9710 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
5f364135 9711 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
40e2c4e5
KY
9712 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9713 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
9714 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9715 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 9716 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
136824ef 9717 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
da484d00 9718 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
c2a7c55a 9719 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
e79c2269 9720 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
aa143ad3 9721 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
78def224
KY
9722 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9723 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
92666d45
KY
9724 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9725 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
1efcdd9c 9726 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
c1e89523 9727 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
da946920 9728 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
eb676622 9729 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
2b987fe8
CC
9730 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9731 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
15dad62f 9732 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
bdc9b739 9733 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
42320660
SB
9734 SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9735 SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
2912cdda
PJ
9736 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9737 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
cd14dedf 9738 SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2),
a5751933 9739 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
fddab35f 9740 SND_PCI_QUIRK(0x1028, 0x0c0b, "Dell Oasis 14 RPL-P", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
fcfc9f71 9741 SND_PCI_QUIRK(0x1028, 0x0c0d, "Dell Oasis", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
fddab35f 9742 SND_PCI_QUIRK(0x1028, 0x0c0e, "Dell Oasis 16", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
a4517c4f
CC
9743 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9744 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9745 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9746 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9747 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9748 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
42320660 9749 SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4),
f0d9da19
KY
9750 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9751 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9752 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9753 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9754 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9755 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9756 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9757 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9758 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
a22aa26f
KY
9759 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9760 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 9761 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 9762 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 9763 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
7976eb49 9764 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 9765 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 9766 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9767 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9768 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9769 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9770 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
9771 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9772 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9773 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9774 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 9775 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf
KY
9776 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9777 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9778 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9779 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9780 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 9781 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 9782 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
45461e3b 9783 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 9784 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
9785 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9786 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9787 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9788 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9789 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9790 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9791 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9792 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9c5dc3bf 9793 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 9794 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 9795 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 9796 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 9797 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 9798 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9799 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9800 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9801 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9802 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9803 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9804 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9805 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9806 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9807 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
9808 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9809 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9810 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9811 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9812 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9813 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8a02b164
KY
9814 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9815 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9816 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9817 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4ba5c853 9818 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
167897f4
JK
9819 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9820 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
1c9d9dfd
KY
9821 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9822 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
92553ee0 9823 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
e549d190 9824 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 9825 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
aeedad25 9826 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
167897f4
JK
9827 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9828 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 9829 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
901be145 9830 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
190d0381 9831 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9b726bf6 9832 SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
5d84b531 9833 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
d33cd42d 9834 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
f2be77fe 9835 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
b6ce6e6c 9836 SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
d296a74b 9837 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
0ac05b25 9838 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
b2c22910 9839 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
622464c8 9840 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
24df5428
IH
9841 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9842 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
ca88eeb3 9843 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
15d295b5 9844 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
61d3e874 9845 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
a598098c 9846 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
c058493d 9847 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
b2c22910 9848 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
75b62ab6 9849 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
05ec7161 9850 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
56496253 9851 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
08befca4 9852 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
6b3d14b7 9853 SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
431e76c3 9854 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
24164f43 9855 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
91bc1568
JS
9856 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9857 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9858 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9859 ALC285_FIXUP_HP_GPIO_AMP_INIT),
30267718 9860 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
b2e6b3d9 9861 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
375f8426 9862 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
f0d78972 9863 SND_PCI_QUIRK(0x103c, 0x87b7, "HP Laptop 14-fq0xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
48422958 9864 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
e7d66cf7 9865 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
2b70b264 9866 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
fb3acdb2 9867 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
417eadfd 9868 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
a0ccbc53
KY
9869 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9870 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
93ab3eaf 9871 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
c3bb2b52 9872 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
bc7863d1 9873 SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
d07149ab 9874 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
dfc2e8ae 9875 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
d94befbb
DB
9876 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9877 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
d510acb6 9878 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
53b861be 9879 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
c3d2c882 9880 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
dfb06401 9881 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
ca688339 9882 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
8903376d
KHF
9883 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9884 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
50dbfae9 9885 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
e650c1a9 9886 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
bbe183e0 9887 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
0659400f 9888 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
c99c26b1 9889 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
600dd2a7 9890 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
91502a9a 9891 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
0e68c4b1 9892 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
bd15b155 9893 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
42334fbc 9894 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
49632230 9895 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
8384c0ba 9896 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
e7477cb9 9897 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
f86bfeb6 9898 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
5f5d8890
AC
9899 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9900 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9901 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9902 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9903 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9904 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
07bcab93
LT
9905 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9906 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9907 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9908 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9909 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9910 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9911 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
e6194c8d
AC
9912 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9913 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
024a7ad9 9914 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
e6194c8d
AC
9915 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9916 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
f86bfeb6 9917 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
07bcab93 9918 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
ce18f905 9919 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
f7ac570d 9920 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9a6804aa 9921 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
13a5b211 9922 SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED),
56e85993 9923 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
93dc18e1 9924 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
5f3d696e 9925 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
61d30785
JS
9926 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9927 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9928 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9929 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
3e10f6ca 9930 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
c578d5da
KHF
9931 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9932 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
32f03f40 9933 SND_PCI_QUIRK(0x103c, 0x8b0f, "HP Elite mt645 G7 Mobile Thin Client U81", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
b944aa9d 9934 SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9251584a
AC
9935 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9936 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9937 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9938 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9939 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9940 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
32f03f40 9941 SND_PCI_QUIRK(0x103c, 0x8b59, "HP Elite mt645 G7 Mobile Thin Client U89", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
1d8025ec
AC
9942 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9943 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
3e10f6ca 9944 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
2ae147d6 9945 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9fdc1605 9946 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
e94f1f96
AC
9947 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9948 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9949 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
3e10f6ca 9950 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
6c4715aa
AC
9951 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9952 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
5007b848 9953 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
6c4715aa
AC
9954 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9955 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
9956 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
b752a385 9957 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
858c5415 9958 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
56fc217f 9959 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9dc68a4f 9960 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9c694fbf 9961 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
fb8cce69
SB
9962 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9963 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9964 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9965 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9966 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9967 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9968 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
18a434f3 9969 SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
b018cee7 9970 SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
1513664f
AC
9971 SND_PCI_QUIRK(0x103c, 0x8ca1, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
9972 SND_PCI_QUIRK(0x103c, 0x8ca2, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
5d639b60
SB
9973 SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9974 SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9975 SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
c1732ede 9976 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 9977 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 9978 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9cf6533e 9979 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
c1732ede 9980 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 9981 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
713f040c 9982 SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK),
3e0d611b 9983 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1 9984 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3cd0ed63 9985 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
5cfca596 9986 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1
TI
9987 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9988 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
e959f2be 9989 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
461122b9 9990 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
c1732ede 9991 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
3cd0ed63 9992 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
f882c4be 9993 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
c1732ede 9994 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 9995 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
a40ce9f4
SB
9996 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9997 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9998 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC),
9999 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10000 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10001 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10002 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2),
10003 SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2),
23870831 10004 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
a40ce9f4
SB
10005 SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2),
10006 SND_PCI_QUIRK(0x1043, 0x1573, "ASUS GZ301VV/VQ/VU/VJ/VA/VC/VE/VVC/VQC/VUC/VJC/VEC/VCC", ALC285_FIXUP_ASUS_HEADSET_MIC),
b16c8f22 10007 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
a40ce9f4 10008 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
7e2d0662 10009 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
852d432a 10010 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
b16c8f22 10011 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
ae53e219 10012 SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2),
3e0d611b 10013 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
ae53e219 10014 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2),
8eedd3a7 10015 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
48e01504 10016 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
a40ce9f4 10017 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY),
ae53e219 10018 SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2),
3cd0ed63 10019 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
8c8967a7 10020 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
c5c325bb 10021 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2),
4963d66b 10022 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
158ae2f5 10023 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
4fad4fb9 10024 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
5de3b943 10025 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
8b33a134 10026 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
7900e817 10027 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
017f2a10 10028 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 10029 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
61cbc08f 10030 SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2),
6ae90e90 10031 SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
461122b9 10032 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
1b94e59d 10033 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
693b613d 10034 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
811dd426 10035 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
615966ad 10036 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
61cbc08f 10037 SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2),
4eab0ea1 10038 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61cbc08f
SB
10039 SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2),
10040 SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2),
a4671b7f 10041 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
bc2c2354 10042 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
a40ce9f4
SB
10043 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
10044 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
c1732ede 10045 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
a40ce9f4
SB
10046 SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2),
10047 SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
10048 SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC),
10049 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2),
b16c8f22 10050 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
ef9ce66f 10051 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
51d97607 10052 SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2),
07058dce 10053 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
4b43d05a 10054 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
b9105044 10055 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
c1b55029 10056 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
c611e659 10057 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
76fae618 10058 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
b9105044 10059 SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2),
ba1f8180 10060 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
293a92c1 10061 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
8d06679b 10062 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
ae53e219 10063 SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2),
51d97607 10064 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
2ea8e129 10065 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
eeed4cd1 10066 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
811dd426
SB
10067 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
10068 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
10069 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC245_FIXUP_CS35L41_SPI_2),
10070 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
10071 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
adabb3ec
TI
10072 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
10073 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
10074 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
10075 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 10076 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
1d045db9
TI
10077 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
10078 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
10079 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 10080 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
cab561f8
TI
10081 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
10082 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
24519911 10083 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 10084 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 10085 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 10086 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
c656f747 10087 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
2041d564 10088 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 10089 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
c656f747 10090 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
6fa38ef1 10091 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
4f2e56a5 10092 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
ce2e79b2
PH
10093 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
10094 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
ccbd88be 10095 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
0fca97a2 10096 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 10097 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
a2d57ebe
KM
10098 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
10099 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
10100 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
10101 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
b18a4563 10102 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
1abfd71e 10103 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
823ff161 10104 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
a2d57ebe
KM
10105 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
10106 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
ef248d9b 10107 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
bd401fd7 10108 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
a86e79e3 10109 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
abaa2274
AA
10110 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
10111 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 10112 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
6ca653e3 10113 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
b5acfe15 10114 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b 10115 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10116 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10117 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10118 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10119 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10120 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10121 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10122 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
be561ffa 10123 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10124 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10125 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10126 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
10127 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10128 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10129 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10130 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10131 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10132 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10133 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
10134 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10135 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 10136 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 10137 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 10138 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
10139 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10140 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10141 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10142 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10143 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
da209f7a 10144 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
c250ef89 10145 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b7a58228 10146 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10147 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10148 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
10149 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10150 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10151 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10152 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
627ce0d6 10153 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
90d74fdb 10154 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
11bea269 10155 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
0a6b36c5 10156 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10157 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10158 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10159 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10160 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10161 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
10162 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10163 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10164 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10165 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10166 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
b5acfe15 10167 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9cb72750 10168 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
86222af0 10169 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
0c20fce1 10170 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 10171 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
edca7cc4 10172 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
b5acfe15
PH
10173 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10174 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10175 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10176 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 10177 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10178 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10179 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
10180 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10181 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
22065e42 10182 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b7a58228 10183 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
10184 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10185 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10186 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10187 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10188 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10189 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
ca169cc2 10190 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
29c8f40b 10191 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
1d045db9
TI
10192 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10193 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10194 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10195 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10196 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
f552ff54 10197 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
b590b38c 10198 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
c8415a48 10199 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 10200 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 10201 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 10202 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 10203 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 10204 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 10205 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 10206 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 10207 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 10208 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 10209 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 10210 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 10211 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 10212 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
10213 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10214 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 10215 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 10216 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10217 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10218 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10219 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 10220 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10221 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10222 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10223 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 10224 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9774dc21 10225 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
ca707b3f 10226 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
446b8185
KY
10227 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10228 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
d93eeca6
KY
10229 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10230 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10231 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10232 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10233 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10234 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10235 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10236 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
3694cb29 10237 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 10238 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 10239 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
bef33e19 10240 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 10241 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 10242 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 10243 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
2a36c16e 10244 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
8a6c55d0
AM
10245 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10246 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
e4efa826 10247 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
fb3c007f 10248 SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC),
3790a3d6 10249 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
85743a84 10250 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
2aac550d 10251 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
56ec3e75 10252 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
2aac550d 10253 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
3b79954f 10254 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
8f4c9042 10255 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
2aac550d 10256 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
b81e9e5c 10257 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
c07f2c7b 10258 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
9ebaef05 10259 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
d3dca026 10260 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
2aac550d 10261 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
ad7cc2d4
CB
10262 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10263 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
1e24881d 10264 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
70cfdd03 10265 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
24b6332c 10266 SND_PCI_QUIRK(0x17aa, 0x386f, "Legion 7i 16IAX7", ALC287_FIXUP_CS35L41_I2C_2),
b5cb53fd 10267 SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C),
3babae91
SD
10268 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10269 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
f286620b 10270 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
634e5e1e 10271 SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
3babae91
SD
10272 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10273 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10274 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10275 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
99af5b11
DC
10276 SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10277 SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10278 SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10279 SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
3babae91
SD
10280 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10281 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10282 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10283 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10284 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10285 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10286 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
56f27013 10287 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 10288 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
56df90b6 10289 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
f552ff54 10290 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
a4a9e082 10291 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 10292 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 10293 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 10294 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 10295 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 10296 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 10297 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 10298 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 10299 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 10300 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 10301 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 10302 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10303 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10304 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10305 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
264fb034 10306 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
cd5302c0 10307 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
10308 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10309 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
1d045db9 10310 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
52aad393 10311 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
174a7fb3 10312 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
79e28f2a 10313 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
0fbf21c3 10314 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
cbcdf8c4 10315 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
f1ec5be1
HC
10316 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10317 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10318 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
02b504d9 10319 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
c656f747
TI
10320 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10321 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
88d18b88 10322 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
619764cc 10323 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
8b3b2392
WS
10324 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10325 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10326 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10327 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10328 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10329 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10330 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10331 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
fc19d559 10332 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
b95bc12e 10333 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
695d1ec3 10334 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
9b043a8f 10335 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
e1c86210 10336 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
7c9caa29 10337 SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
c7de2d9b 10338 SND_PCI_QUIRK(0x2782, 0x1707, "Vaio VJFE-ADL", ALC298_FIXUP_SPK_VOLUME),
d1ee66c5 10339 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
e2d2fded 10340 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
73e7161e 10341 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
ccbd88be 10342 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
309d7363 10343 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
8804fa04 10344 SND_PCI_QUIRK(0xf111, 0x0005, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
33038efb 10345 SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
a4297b5d 10346
a7f3eedc 10347#if 0
a4297b5d
TI
10348 /* Below is a quirk table taken from the old code.
10349 * Basically the device should work as is without the fixup table.
10350 * If BIOS doesn't give a proper info, enable the corresponding
10351 * fixup entry.
7d7eb9ea 10352 */
a4297b5d
TI
10353 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10354 ALC269_FIXUP_AMIC),
10355 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
10356 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10357 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10358 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10359 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10360 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10361 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10362 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10363 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10364 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10365 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10366 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10367 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10368 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10369 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10370 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10371 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10372 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10373 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10374 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10375 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10376 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10377 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10378 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10379 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10380 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10381 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10382 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10383 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10384 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10385 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10386 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10387 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10388 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10389 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10390 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10391 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10392 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10393 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10394#endif
10395 {}
10396};
10397
214eef76
DH
10398static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10399 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10400 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10401 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10402 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
0fbf21c3 10403 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
214eef76
DH
10404 {}
10405};
10406
1727a771 10407static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
10408 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10409 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
10410 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10411 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10412 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 10413 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
10414 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10415 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 10416 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
b590b38c 10417 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
9f5c6faf 10418 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 10419 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
10420 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10421 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
10422 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10423 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 10424 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 10425 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 10426 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 10427 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 10428 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
399c01aa 10429 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
a26d96c7 10430 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 10431 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 10432 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
10433 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10434 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10435 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10436 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10437 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10438 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10439 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10440 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10441 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10442 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10443 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10444 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10445 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10446 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10447 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10448 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10449 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10450 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10451 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10452 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10453 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10454 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10455 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10456 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10457 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10458 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10459 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10460 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10461 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10462 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10463 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10464 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10465 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10466 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10467 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10468 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10469 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10470 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10471 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10472 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
b3802783 10473 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
a26d96c7 10474 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
c8426b27 10475 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
a26d96c7
TI
10476 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10477 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10478 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10479 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10480 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10481 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10482 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10483 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10484 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10485 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10486 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10487 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10488 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10489 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
a26d96c7
TI
10490 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10491 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10492 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
82aa0d7e 10493 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
a26d96c7 10494 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
d2cd795c 10495 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
a26d96c7
TI
10496 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10497 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10498 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10499 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10500 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10501 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10502 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10503 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10504 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10505 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10506 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10507 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10508 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10509 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10510 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10511 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10512 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
8983eb60
KY
10513 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10514 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
e2a829b3 10515 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
a2ef03fe 10516 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
bd9c10bc 10517 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
a2d57ebe 10518 {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
ef248d9b 10519 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
fc19d559 10520 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
13468bfa 10521 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
c3bb2b52 10522 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
5d84b531 10523 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
f2be77fe 10524 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
d94befbb 10525 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
9ebaef05 10526 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
3790a3d6 10527 {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
29c8f40b 10528 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
57c9e21a 10529 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
aa723946 10530 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
1d045db9 10531 {}
6dda9f4a 10532};
cfc5a845 10533#define ALC225_STANDARD_PINS \
cfc5a845 10534 {0x21, 0x04211020}
6dda9f4a 10535
e8191a8e
HW
10536#define ALC256_STANDARD_PINS \
10537 {0x12, 0x90a60140}, \
10538 {0x14, 0x90170110}, \
e8191a8e
HW
10539 {0x21, 0x02211020}
10540
fea185e2 10541#define ALC282_STANDARD_PINS \
11580297 10542 {0x14, 0x90170110}
e1e62b98 10543
fea185e2 10544#define ALC290_STANDARD_PINS \
11580297 10545 {0x12, 0x99a30130}
fea185e2
DH
10546
10547#define ALC292_STANDARD_PINS \
10548 {0x14, 0x90170110}, \
11580297 10549 {0x15, 0x0221401f}
977e6276 10550
3f640970
HW
10551#define ALC295_STANDARD_PINS \
10552 {0x12, 0xb7a60130}, \
10553 {0x14, 0x90170110}, \
3f640970
HW
10554 {0x21, 0x04211020}
10555
703867e2
WS
10556#define ALC298_STANDARD_PINS \
10557 {0x12, 0x90a60130}, \
10558 {0x21, 0x03211020}
10559
e1918938 10560static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
10561 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10562 {0x14, 0x01014020},
10563 {0x17, 0x90170110},
10564 {0x18, 0x02a11030},
10565 {0x19, 0x0181303F},
10566 {0x21, 0x0221102f}),
5824ce8d
CC
10567 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10568 {0x12, 0x90a601c0},
10569 {0x14, 0x90171120},
10570 {0x21, 0x02211030}),
615966ad
CC
10571 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10572 {0x14, 0x90170110},
10573 {0x1b, 0x90a70130},
10574 {0x21, 0x03211020}),
10575 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10576 {0x1a, 0x90a70130},
10577 {0x1b, 0x90170110},
10578 {0x21, 0x03211020}),
2ae95577 10579 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 10580 ALC225_STANDARD_PINS,
8a132099 10581 {0x12, 0xb7a60130},
cfc5a845 10582 {0x14, 0x901701a0}),
2ae95577 10583 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 10584 ALC225_STANDARD_PINS,
8a132099 10585 {0x12, 0xb7a60130},
cfc5a845 10586 {0x14, 0x901701b0}),
8a132099
HW
10587 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10588 ALC225_STANDARD_PINS,
10589 {0x12, 0xb7a60150},
10590 {0x14, 0x901701a0}),
10591 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10592 ALC225_STANDARD_PINS,
10593 {0x12, 0xb7a60150},
10594 {0x14, 0x901701b0}),
10595 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10596 ALC225_STANDARD_PINS,
10597 {0x12, 0xb7a60130},
10598 {0x1b, 0x90170110}),
0ce48e17
KHF
10599 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10600 {0x1b, 0x01111010},
10601 {0x1e, 0x01451130},
10602 {0x21, 0x02211020}),
986376b6
HW
10603 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10604 {0x12, 0x90a60140},
10605 {0x14, 0x90170110},
10606 {0x19, 0x02a11030},
10607 {0x21, 0x02211020}),
e41fc8c5
HW
10608 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10609 {0x14, 0x90170110},
10610 {0x19, 0x02a11030},
10611 {0x1a, 0x02a11040},
10612 {0x1b, 0x01014020},
10613 {0x21, 0x0221101f}),
d06fb562
HW
10614 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10615 {0x14, 0x90170110},
10616 {0x19, 0x02a11030},
10617 {0x1a, 0x02a11040},
10618 {0x1b, 0x01011020},
10619 {0x21, 0x0221101f}),
c6b17f10
HW
10620 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10621 {0x14, 0x90170110},
10622 {0x19, 0x02a11020},
10623 {0x1a, 0x02a11030},
10624 {0x21, 0x0221101f}),
92666d45
KY
10625 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10626 {0x21, 0x02211010}),
9e885770
KY
10627 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10628 {0x14, 0x90170110},
10629 {0x19, 0x02a11020},
10630 {0x21, 0x02211030}),
c77900e6 10631 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 10632 {0x14, 0x90170110},
c77900e6 10633 {0x21, 0x02211020}),
86c72d1c
HW
10634 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10635 {0x14, 0x90170130},
10636 {0x21, 0x02211040}),
76c2132e
DH
10637 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10638 {0x12, 0x90a60140},
10639 {0x14, 0x90170110},
76c2132e
DH
10640 {0x21, 0x02211020}),
10641 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10642 {0x12, 0x90a60160},
10643 {0x14, 0x90170120},
76c2132e 10644 {0x21, 0x02211030}),
392c9da2
HW
10645 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10646 {0x14, 0x90170110},
10647 {0x1b, 0x02011020},
10648 {0x21, 0x0221101f}),
6aecd871
HW
10649 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10650 {0x14, 0x90170110},
10651 {0x1b, 0x01011020},
10652 {0x21, 0x0221101f}),
cba59972 10653 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 10654 {0x14, 0x90170130},
cba59972 10655 {0x1b, 0x01014020},
cba59972 10656 {0x21, 0x0221103f}),
6aecd871
HW
10657 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10658 {0x14, 0x90170130},
10659 {0x1b, 0x01011020},
10660 {0x21, 0x0221103f}),
59ec4b57
HW
10661 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10662 {0x14, 0x90170130},
10663 {0x1b, 0x02011020},
10664 {0x21, 0x0221103f}),
e9c28e16 10665 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 10666 {0x14, 0x90170150},
e9c28e16 10667 {0x1b, 0x02011020},
e9c28e16
WS
10668 {0x21, 0x0221105f}),
10669 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 10670 {0x14, 0x90170110},
e9c28e16 10671 {0x1b, 0x01014020},
e9c28e16 10672 {0x21, 0x0221101f}),
76c2132e
DH
10673 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10674 {0x12, 0x90a60160},
10675 {0x14, 0x90170120},
10676 {0x17, 0x90170140},
76c2132e
DH
10677 {0x21, 0x0321102f}),
10678 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10679 {0x12, 0x90a60160},
10680 {0x14, 0x90170130},
76c2132e
DH
10681 {0x21, 0x02211040}),
10682 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10683 {0x12, 0x90a60160},
10684 {0x14, 0x90170140},
76c2132e
DH
10685 {0x21, 0x02211050}),
10686 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10687 {0x12, 0x90a60170},
10688 {0x14, 0x90170120},
76c2132e
DH
10689 {0x21, 0x02211030}),
10690 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10691 {0x12, 0x90a60170},
10692 {0x14, 0x90170130},
76c2132e 10693 {0x21, 0x02211040}),
0a1f90a9
HW
10694 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10695 {0x12, 0x90a60170},
10696 {0x14, 0x90171130},
10697 {0x21, 0x02211040}),
70658b99 10698 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
10699 {0x12, 0x90a60170},
10700 {0x14, 0x90170140},
70658b99 10701 {0x21, 0x02211050}),
9b5a4e39 10702 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
10703 {0x12, 0x90a60180},
10704 {0x14, 0x90170130},
9b5a4e39 10705 {0x21, 0x02211040}),
f90d83b3
AK
10706 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10707 {0x12, 0x90a60180},
10708 {0x14, 0x90170120},
10709 {0x21, 0x02211030}),
989dbe4a
HW
10710 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10711 {0x1b, 0x01011020},
10712 {0x21, 0x02211010}),
c1732ede
CC
10713 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10714 {0x14, 0x90170110},
10715 {0x1b, 0x90a70130},
10716 {0x21, 0x04211020}),
10717 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10718 {0x14, 0x90170110},
10719 {0x1b, 0x90a70130},
10720 {0x21, 0x03211020}),
a806ef1c
CC
10721 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10722 {0x12, 0x90a60130},
10723 {0x14, 0x90170110},
10724 {0x21, 0x03211020}),
6ac371aa
JHP
10725 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10726 {0x12, 0x90a60130},
10727 {0x14, 0x90170110},
10728 {0x21, 0x04211020}),
e1037354
JHP
10729 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10730 {0x1a, 0x90a70130},
10731 {0x1b, 0x90170110},
10732 {0x21, 0x03211020}),
9e885770
KY
10733 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10734 {0x14, 0x90170110},
10735 {0x19, 0x02a11020},
10736 {0x21, 0x0221101f}),
8a8de09c
KY
10737 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
10738 {0x17, 0x90170110},
10739 {0x19, 0x03a11030},
10740 {0x21, 0x03211020}),
cf51eb9d
DH
10741 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
10742 {0x12, 0x90a60130},
cf51eb9d
DH
10743 {0x14, 0x90170110},
10744 {0x15, 0x0421101f},
11580297 10745 {0x1a, 0x04a11020}),
0279661b
HW
10746 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
10747 {0x12, 0x90a60140},
0279661b
HW
10748 {0x14, 0x90170110},
10749 {0x15, 0x0421101f},
0279661b 10750 {0x18, 0x02811030},
0279661b 10751 {0x1a, 0x04a1103f},
11580297 10752 {0x1b, 0x02011020}),
42304474 10753 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10754 ALC282_STANDARD_PINS,
42304474 10755 {0x12, 0x99a30130},
42304474 10756 {0x19, 0x03a11020},
42304474 10757 {0x21, 0x0321101f}),
2c609999 10758 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10759 ALC282_STANDARD_PINS,
2c609999 10760 {0x12, 0x99a30130},
2c609999 10761 {0x19, 0x03a11020},
2c609999
HW
10762 {0x21, 0x03211040}),
10763 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10764 ALC282_STANDARD_PINS,
2c609999 10765 {0x12, 0x99a30130},
2c609999 10766 {0x19, 0x03a11030},
2c609999
HW
10767 {0x21, 0x03211020}),
10768 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10769 ALC282_STANDARD_PINS,
2c609999 10770 {0x12, 0x99a30130},
2c609999 10771 {0x19, 0x04a11020},
2c609999 10772 {0x21, 0x0421101f}),
200afc09 10773 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 10774 ALC282_STANDARD_PINS,
200afc09 10775 {0x12, 0x90a60140},
200afc09 10776 {0x19, 0x04a11030},
200afc09 10777 {0x21, 0x04211020}),
34cdf405
CC
10778 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10779 ALC282_STANDARD_PINS,
10780 {0x12, 0x90a609c0},
10781 {0x18, 0x03a11830},
10782 {0x19, 0x04a19831},
10783 {0x1a, 0x0481303f},
10784 {0x1b, 0x04211020},
10785 {0x21, 0x0321101f}),
10786 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10787 ALC282_STANDARD_PINS,
10788 {0x12, 0x90a60940},
10789 {0x18, 0x03a11830},
10790 {0x19, 0x04a19831},
10791 {0x1a, 0x0481303f},
10792 {0x1b, 0x04211020},
10793 {0x21, 0x0321101f}),
76c2132e 10794 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10795 ALC282_STANDARD_PINS,
76c2132e 10796 {0x12, 0x90a60130},
76c2132e
DH
10797 {0x21, 0x0321101f}),
10798 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10799 {0x12, 0x90a60160},
10800 {0x14, 0x90170120},
76c2132e 10801 {0x21, 0x02211030}),
bc262179 10802 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10803 ALC282_STANDARD_PINS,
bc262179 10804 {0x12, 0x90a60130},
bc262179 10805 {0x19, 0x03a11020},
bc262179 10806 {0x21, 0x0321101f}),
c8c6ee61 10807 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
266fd994
SL
10808 {0x12, 0x90a60130},
10809 {0x14, 0x90170110},
10810 {0x19, 0x04a11040},
10811 {0x21, 0x04211020}),
10812 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10813 {0x14, 0x90170110},
10814 {0x19, 0x04a11040},
10815 {0x1d, 0x40600001},
10816 {0x21, 0x04211020}),
10817 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
c4cfcf6f
HW
10818 {0x14, 0x90170110},
10819 {0x19, 0x04a11040},
10820 {0x21, 0x04211020}),
c72b9bfe
HW
10821 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
10822 {0x14, 0x90170110},
10823 {0x17, 0x90170111},
10824 {0x19, 0x03a11030},
10825 {0x21, 0x03211020}),
e43252db
KY
10826 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10827 {0x17, 0x90170110},
10828 {0x19, 0x03a11030},
10829 {0x21, 0x03211020}),
41b07476
KY
10830 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10831 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
10832 {0x19, 0x04a11040},
10833 {0x21, 0x04211020}),
33aaebd4
CC
10834 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
10835 {0x12, 0x90a60130},
10836 {0x17, 0x90170110},
10837 {0x21, 0x02211020}),
d44a6864 10838 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 10839 {0x12, 0x90a60120},
e1e62b98 10840 {0x14, 0x90170110},
e1e62b98 10841 {0x21, 0x0321101f}),
e4442bcf 10842 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10843 ALC290_STANDARD_PINS,
e4442bcf 10844 {0x15, 0x04211040},
e4442bcf 10845 {0x18, 0x90170112},
11580297 10846 {0x1a, 0x04a11020}),
e4442bcf 10847 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10848 ALC290_STANDARD_PINS,
e4442bcf 10849 {0x15, 0x04211040},
e4442bcf 10850 {0x18, 0x90170110},
11580297 10851 {0x1a, 0x04a11020}),
e4442bcf 10852 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10853 ALC290_STANDARD_PINS,
e4442bcf 10854 {0x15, 0x0421101f},
11580297 10855 {0x1a, 0x04a11020}),
e4442bcf 10856 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10857 ALC290_STANDARD_PINS,
e4442bcf 10858 {0x15, 0x04211020},
11580297 10859 {0x1a, 0x04a11040}),
e4442bcf 10860 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10861 ALC290_STANDARD_PINS,
e4442bcf
HW
10862 {0x14, 0x90170110},
10863 {0x15, 0x04211020},
11580297 10864 {0x1a, 0x04a11040}),
e4442bcf 10865 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10866 ALC290_STANDARD_PINS,
e4442bcf
HW
10867 {0x14, 0x90170110},
10868 {0x15, 0x04211020},
11580297 10869 {0x1a, 0x04a11020}),
e4442bcf 10870 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10871 ALC290_STANDARD_PINS,
e4442bcf
HW
10872 {0x14, 0x90170110},
10873 {0x15, 0x0421101f},
11580297 10874 {0x1a, 0x04a11020}),
e8818fa8 10875 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 10876 ALC292_STANDARD_PINS,
e8818fa8 10877 {0x12, 0x90a60140},
e8818fa8 10878 {0x16, 0x01014020},
11580297 10879 {0x19, 0x01a19030}),
e8818fa8 10880 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 10881 ALC292_STANDARD_PINS,
e8818fa8 10882 {0x12, 0x90a60140},
e8818fa8
HW
10883 {0x16, 0x01014020},
10884 {0x18, 0x02a19031},
11580297 10885 {0x19, 0x01a1903e}),
76c2132e 10886 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 10887 ALC292_STANDARD_PINS,
11580297 10888 {0x12, 0x90a60140}),
76c2132e 10889 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10890 ALC292_STANDARD_PINS,
76c2132e 10891 {0x13, 0x90a60140},
76c2132e 10892 {0x16, 0x21014020},
11580297 10893 {0x19, 0x21a19030}),
e03fdbde 10894 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10895 ALC292_STANDARD_PINS,
11580297 10896 {0x13, 0x90a60140}),
eeacd80f
JHP
10897 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
10898 {0x17, 0x90170110},
10899 {0x21, 0x04211020}),
d8ae458e
CC
10900 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
10901 {0x14, 0x90170110},
10902 {0x1b, 0x90a70130},
10903 {0x21, 0x04211020}),
8bb37a2a
JHP
10904 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10905 {0x12, 0x90a60130},
10906 {0x17, 0x90170110},
10907 {0x21, 0x03211020}),
0bea4cc8
JHP
10908 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10909 {0x12, 0x90a60130},
10910 {0x17, 0x90170110},
10911 {0x21, 0x04211020}),
3887c26c
TI
10912 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10913 {0x12, 0x90a60130},
10914 {0x17, 0x90170110},
10915 {0x21, 0x03211020}),
9e43342b 10916 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
ad97d667
JHP
10917 {0x12, 0x90a60120},
10918 {0x17, 0x90170110},
10919 {0x21, 0x04211030}),
10920 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9e43342b
CC
10921 {0x12, 0x90a60130},
10922 {0x17, 0x90170110},
10923 {0x21, 0x03211020}),
10924 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10925 {0x12, 0x90a60130},
10926 {0x17, 0x90170110},
10927 {0x21, 0x03211020}),
9f502ff5
TI
10928 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10929 ALC298_STANDARD_PINS,
10930 {0x17, 0x90170110}),
977e6276 10931 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
10932 ALC298_STANDARD_PINS,
10933 {0x17, 0x90170140}),
10934 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10935 ALC298_STANDARD_PINS,
9f502ff5 10936 {0x17, 0x90170150}),
9f1bc2c4
KHF
10937 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10938 {0x12, 0xb7a60140},
10939 {0x13, 0xb7a60150},
10940 {0x17, 0x90170110},
10941 {0x1a, 0x03011020},
10942 {0x21, 0x03211030}),
54324221
JM
10943 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10944 {0x12, 0xb7a60140},
10945 {0x17, 0x90170110},
10946 {0x1a, 0x03a11030},
10947 {0x21, 0x03211020}),
fcc6c877
KY
10948 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10949 ALC225_STANDARD_PINS,
10950 {0x12, 0xb7a60130},
fcc6c877 10951 {0x17, 0x90170110}),
573fcbfd
HW
10952 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10953 {0x14, 0x01014010},
10954 {0x17, 0x90170120},
10955 {0x18, 0x02a11030},
10956 {0x19, 0x02a1103f},
10957 {0x21, 0x0221101f}),
e1918938
HW
10958 {}
10959};
6dda9f4a 10960
7c0a6939
HW
10961/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10962 * more machines, don't need to match all valid pins, just need to match
10963 * all the pins defined in the tbl. Just because of this reason, it is possible
10964 * that a single machine matches multiple tbls, so there is one limitation:
10965 * at most one tbl is allowed to define for the same vendor and same codec
10966 */
10967static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
10968 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10969 {0x19, 0x40000000},
10970 {0x1b, 0x40000000}),
4b21a669
KY
10971 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10972 {0x19, 0x40000000},
10973 {0x1b, 0x40000000}),
aed8c7f4
HW
10974 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10975 {0x19, 0x40000000},
10976 {0x1a, 0x40000000}),
d64ebdbf
HW
10977 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10978 {0x19, 0x40000000},
10979 {0x1a, 0x40000000}),
5815bdfd
HW
10980 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
10981 {0x19, 0x40000000},
10982 {0x1a, 0x40000000}),
c8c0a03e
KY
10983 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
10984 {0x19, 0x40000000}),
7c0a6939
HW
10985 {}
10986};
10987
546bb678 10988static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 10989{
526af6eb 10990 struct alc_spec *spec = codec->spec;
1d045db9 10991 int val;
ebb83eeb 10992
526af6eb 10993 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 10994 return;
526af6eb 10995
1bb7e43e 10996 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
10997 alc_write_coef_idx(codec, 0xf, 0x960b);
10998 alc_write_coef_idx(codec, 0xe, 0x8817);
10999 }
ebb83eeb 11000
1bb7e43e 11001 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
11002 alc_write_coef_idx(codec, 0xf, 0x960b);
11003 alc_write_coef_idx(codec, 0xe, 0x8814);
11004 }
ebb83eeb 11005
1bb7e43e 11006 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 11007 /* Power up output pin */
98b24883 11008 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 11009 }
ebb83eeb 11010
1bb7e43e 11011 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 11012 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 11013 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
11014 /* Capless ramp up clock control */
11015 alc_write_coef_idx(codec, 0xd, val | (1<<10));
11016 }
11017 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 11018 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
11019 /* Class D power on reset */
11020 alc_write_coef_idx(codec, 0x17, val | (1<<7));
11021 }
11022 }
ebb83eeb 11023
98b24883
TI
11024 /* HP */
11025 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 11026}
a7f2371f 11027
1d045db9
TI
11028/*
11029 */
1d045db9
TI
11030static int patch_alc269(struct hda_codec *codec)
11031{
11032 struct alc_spec *spec;
3de95173 11033 int err;
f1d4e28b 11034
3de95173 11035 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 11036 if (err < 0)
3de95173
TI
11037 return err;
11038
11039 spec = codec->spec;
08c189f2 11040 spec->gen.shared_mic_vref_pin = 0x18;
317d9313 11041 codec->power_save_node = 0;
46cdff23 11042 spec->en_3kpull_low = true;
e16fb6d1 11043
225068ab
TI
11044#ifdef CONFIG_PM
11045 codec->patch_ops.suspend = alc269_suspend;
11046 codec->patch_ops.resume = alc269_resume;
11047#endif
c2d6af53
KY
11048 spec->shutup = alc_default_shutup;
11049 spec->init_hook = alc_default_init;
225068ab 11050
7639a06c 11051 switch (codec->core.vendor_id) {
065380f0 11052 case 0x10ec0269:
1d045db9 11053 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
11054 switch (alc_get_coef0(codec) & 0x00f0) {
11055 case 0x0010:
5100cd07
TI
11056 if (codec->bus->pci &&
11057 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 11058 spec->cdefine.platform_type == 1)
20ca0c35 11059 err = alc_codec_rename(codec, "ALC271X");
1d045db9 11060 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
11061 break;
11062 case 0x0020:
5100cd07
TI
11063 if (codec->bus->pci &&
11064 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 11065 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 11066 err = alc_codec_rename(codec, "ALC3202");
1d045db9 11067 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 11068 break;
adcc70b2
KY
11069 case 0x0030:
11070 spec->codec_variant = ALC269_TYPE_ALC269VD;
11071 break;
1bb7e43e 11072 default:
1d045db9 11073 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 11074 }
e16fb6d1
TI
11075 if (err < 0)
11076 goto error;
c2d6af53 11077 spec->shutup = alc269_shutup;
546bb678 11078 spec->init_hook = alc269_fill_coef;
1d045db9 11079 alc269_fill_coef(codec);
065380f0
KY
11080 break;
11081
11082 case 0x10ec0280:
11083 case 0x10ec0290:
11084 spec->codec_variant = ALC269_TYPE_ALC280;
11085 break;
11086 case 0x10ec0282:
065380f0 11087 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
11088 spec->shutup = alc282_shutup;
11089 spec->init_hook = alc282_init;
065380f0 11090 break;
2af02be7
KY
11091 case 0x10ec0233:
11092 case 0x10ec0283:
11093 spec->codec_variant = ALC269_TYPE_ALC283;
11094 spec->shutup = alc283_shutup;
11095 spec->init_hook = alc283_init;
11096 break;
065380f0
KY
11097 case 0x10ec0284:
11098 case 0x10ec0292:
11099 spec->codec_variant = ALC269_TYPE_ALC284;
11100 break;
161ebf29 11101 case 0x10ec0293:
4731d5de 11102 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 11103 break;
7fc7d047 11104 case 0x10ec0286:
7c665932 11105 case 0x10ec0288:
7fc7d047
KY
11106 spec->codec_variant = ALC269_TYPE_ALC286;
11107 break;
506b62c3
KY
11108 case 0x10ec0298:
11109 spec->codec_variant = ALC269_TYPE_ALC298;
11110 break;
ea04a1db 11111 case 0x10ec0235:
1d04c9de
KY
11112 case 0x10ec0255:
11113 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
11114 spec->shutup = alc256_shutup;
11115 spec->init_hook = alc256_init;
1d04c9de 11116 break;
1948fc06 11117 case 0x10ec0230:
736f20a7 11118 case 0x10ec0236:
4344aec8 11119 case 0x10ec0256:
527f4643 11120 case 0x19e58326:
4344aec8 11121 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
11122 spec->shutup = alc256_shutup;
11123 spec->init_hook = alc256_init;
7d1b6e29 11124 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
46cdff23
KY
11125 if (codec->core.vendor_id == 0x10ec0236 &&
11126 codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
11127 spec->en_3kpull_low = false;
4344aec8 11128 break;
f429e7e4
KY
11129 case 0x10ec0257:
11130 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
11131 spec->shutup = alc256_shutup;
11132 spec->init_hook = alc256_init;
f429e7e4 11133 spec->gen.mixer_nid = 0;
46cdff23 11134 spec->en_3kpull_low = false;
f429e7e4 11135 break;
0a6f0600 11136 case 0x10ec0215:
7fbdcd83 11137 case 0x10ec0245:
0a6f0600
KY
11138 case 0x10ec0285:
11139 case 0x10ec0289:
60571929
KY
11140 if (alc_get_coef0(codec) & 0x0010)
11141 spec->codec_variant = ALC269_TYPE_ALC245;
11142 else
11143 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
11144 spec->shutup = alc225_shutup;
11145 spec->init_hook = alc225_init;
0a6f0600
KY
11146 spec->gen.mixer_nid = 0;
11147 break;
4231430d 11148 case 0x10ec0225:
7d727869 11149 case 0x10ec0295:
28f1f9b2 11150 case 0x10ec0299:
4231430d 11151 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
11152 spec->shutup = alc225_shutup;
11153 spec->init_hook = alc225_init;
c1350bff 11154 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 11155 break;
99cee034
KY
11156 case 0x10ec0287:
11157 spec->codec_variant = ALC269_TYPE_ALC287;
11158 spec->shutup = alc225_shutup;
11159 spec->init_hook = alc225_init;
11160 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
11161 break;
dcd4f0db
KY
11162 case 0x10ec0234:
11163 case 0x10ec0274:
11164 case 0x10ec0294:
11165 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 11166 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 11167 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
693abe11 11168 spec->init_hook = alc294_init;
dcd4f0db 11169 break;
1078bef0
KY
11170 case 0x10ec0300:
11171 spec->codec_variant = ALC269_TYPE_ALC300;
11172 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
dcd4f0db 11173 break;
f0778871
KY
11174 case 0x10ec0623:
11175 spec->codec_variant = ALC269_TYPE_ALC623;
11176 break;
6fbae35a
KY
11177 case 0x10ec0700:
11178 case 0x10ec0701:
11179 case 0x10ec0703:
83629532 11180 case 0x10ec0711:
6fbae35a
KY
11181 spec->codec_variant = ALC269_TYPE_ALC700;
11182 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 11183 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
693abe11 11184 spec->init_hook = alc294_init;
6fbae35a
KY
11185 break;
11186
1d045db9 11187 }
6dda9f4a 11188
ad60d502 11189 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 11190 spec->has_alc5505_dsp = 1;
ad60d502
KY
11191 spec->init_hook = alc5505_dsp_init;
11192 }
11193
c9af753f
TI
11194 alc_pre_init(codec);
11195
efe55732
TI
11196 snd_hda_pick_fixup(codec, alc269_fixup_models,
11197 alc269_fixup_tbl, alc269_fixups);
13d9c6b9
TI
11198 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11199 * the quirk breaks the latter (bko#214101).
11200 * Clear the wrong entry.
11201 */
11202 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11203 codec->core.vendor_id == 0x10ec0294) {
11204 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11205 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11206 }
11207
0fc1e447 11208 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
7c0a6939 11209 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
efe55732
TI
11210 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
11211 alc269_fixups);
11212 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11213
11214 alc_auto_parse_customize_define(codec);
11215
11216 if (has_cdefine_beep(codec))
11217 spec->gen.beep_nid = 0x01;
11218
a4297b5d
TI
11219 /* automatic parse from the BIOS config */
11220 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
11221 if (err < 0)
11222 goto error;
6dda9f4a 11223
fea80fae
TI
11224 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11225 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11226 if (err < 0)
11227 goto error;
11228 }
f1d4e28b 11229
1727a771 11230 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11231
1d045db9 11232 return 0;
e16fb6d1
TI
11233
11234 error:
11235 alc_free(codec);
11236 return err;
1d045db9 11237}
f1d4e28b 11238
1d045db9
TI
11239/*
11240 * ALC861
11241 */
622e84cd 11242
1d045db9 11243static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 11244{
1d045db9 11245 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11246 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11247 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
11248}
11249
1d045db9
TI
11250/* Pin config fixes */
11251enum {
e652f4c8
TI
11252 ALC861_FIXUP_FSC_AMILO_PI1505,
11253 ALC861_FIXUP_AMP_VREF_0F,
11254 ALC861_FIXUP_NO_JACK_DETECT,
11255 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 11256 ALC660_FIXUP_ASUS_W7J,
1d045db9 11257};
7085ec12 11258
31150f23
TI
11259/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11260static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 11261 const struct hda_fixup *fix, int action)
31150f23
TI
11262{
11263 struct alc_spec *spec = codec->spec;
11264 unsigned int val;
11265
1727a771 11266 if (action != HDA_FIXUP_ACT_INIT)
31150f23 11267 return;
d3f02d60 11268 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
11269 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11270 val |= AC_PINCTL_IN_EN;
11271 val |= AC_PINCTL_VREF_50;
cdd03ced 11272 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 11273 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
11274}
11275
e652f4c8
TI
11276/* suppress the jack-detection */
11277static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 11278 const struct hda_fixup *fix, int action)
e652f4c8 11279{
1727a771 11280 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 11281 codec->no_jack_detect = 1;
7d7eb9ea 11282}
e652f4c8 11283
1727a771 11284static const struct hda_fixup alc861_fixups[] = {
e652f4c8 11285 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
11286 .type = HDA_FIXUP_PINS,
11287 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
11288 { 0x0b, 0x0221101f }, /* HP */
11289 { 0x0f, 0x90170310 }, /* speaker */
11290 { }
11291 }
11292 },
e652f4c8 11293 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 11294 .type = HDA_FIXUP_FUNC,
31150f23 11295 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 11296 },
e652f4c8 11297 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 11298 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
11299 .v.func = alc_fixup_no_jack_detect,
11300 },
11301 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 11302 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
11303 .v.func = alc861_fixup_asus_amp_vref_0f,
11304 .chained = true,
11305 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
11306 },
11307 [ALC660_FIXUP_ASUS_W7J] = {
11308 .type = HDA_FIXUP_VERBS,
11309 .v.verbs = (const struct hda_verb[]) {
11310 /* ASUS W7J needs a magic pin setup on unused NID 0x10
11311 * for enabling outputs
11312 */
11313 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11314 { }
11315 },
e652f4c8 11316 }
1d045db9 11317};
7085ec12 11318
1d045db9 11319static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 11320 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 11321 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
11322 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11323 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11324 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
defce244 11325 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
e652f4c8 11326 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
11327 {}
11328};
3af9ee6b 11329
1d045db9
TI
11330/*
11331 */
1d045db9 11332static int patch_alc861(struct hda_codec *codec)
7085ec12 11333{
1d045db9 11334 struct alc_spec *spec;
1d045db9 11335 int err;
7085ec12 11336
3de95173
TI
11337 err = alc_alloc_spec(codec, 0x15);
11338 if (err < 0)
11339 return err;
1d045db9 11340
3de95173 11341 spec = codec->spec;
2722b535
TI
11342 if (has_cdefine_beep(codec))
11343 spec->gen.beep_nid = 0x23;
1d045db9 11344
225068ab
TI
11345#ifdef CONFIG_PM
11346 spec->power_hook = alc_power_eapd;
11347#endif
11348
c9af753f
TI
11349 alc_pre_init(codec);
11350
1727a771
TI
11351 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11352 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 11353
cb4e4824
TI
11354 /* automatic parse from the BIOS config */
11355 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
11356 if (err < 0)
11357 goto error;
3af9ee6b 11358
fea80fae
TI
11359 if (!spec->gen.no_analog) {
11360 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11361 if (err < 0)
11362 goto error;
11363 }
7085ec12 11364
1727a771 11365 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11366
1d045db9 11367 return 0;
e16fb6d1
TI
11368
11369 error:
11370 alc_free(codec);
11371 return err;
7085ec12
TI
11372}
11373
1d045db9
TI
11374/*
11375 * ALC861-VD support
11376 *
11377 * Based on ALC882
11378 *
11379 * In addition, an independent DAC
11380 */
1d045db9 11381static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 11382{
1d045db9 11383 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11384 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11385 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
11386}
11387
1d045db9 11388enum {
8fdcb6fe
TI
11389 ALC660VD_FIX_ASUS_GPIO1,
11390 ALC861VD_FIX_DALLAS,
1d045db9 11391};
ce764ab2 11392
8fdcb6fe
TI
11393/* exclude VREF80 */
11394static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 11395 const struct hda_fixup *fix, int action)
8fdcb6fe 11396{
1727a771 11397 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
11398 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11399 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
11400 }
11401}
11402
df73d83f
TI
11403/* reset GPIO1 */
11404static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11405 const struct hda_fixup *fix, int action)
11406{
11407 struct alc_spec *spec = codec->spec;
11408
11409 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11410 spec->gpio_mask |= 0x02;
11411 alc_fixup_gpio(codec, action, 0x01);
11412}
11413
1727a771 11414static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 11415 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
11416 .type = HDA_FIXUP_FUNC,
11417 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 11418 },
8fdcb6fe 11419 [ALC861VD_FIX_DALLAS] = {
1727a771 11420 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
11421 .v.func = alc861vd_fixup_dallas,
11422 },
1d045db9 11423};
ce764ab2 11424
1d045db9 11425static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 11426 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 11427 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 11428 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
11429 {}
11430};
ce764ab2 11431
1d045db9
TI
11432/*
11433 */
1d045db9 11434static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 11435{
1d045db9 11436 struct alc_spec *spec;
cb4e4824 11437 int err;
ce764ab2 11438
3de95173
TI
11439 err = alc_alloc_spec(codec, 0x0b);
11440 if (err < 0)
11441 return err;
1d045db9 11442
3de95173 11443 spec = codec->spec;
2722b535
TI
11444 if (has_cdefine_beep(codec))
11445 spec->gen.beep_nid = 0x23;
1d045db9 11446
225068ab
TI
11447 spec->shutup = alc_eapd_shutup;
11448
c9af753f
TI
11449 alc_pre_init(codec);
11450
1727a771
TI
11451 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11452 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 11453
cb4e4824
TI
11454 /* automatic parse from the BIOS config */
11455 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
11456 if (err < 0)
11457 goto error;
ce764ab2 11458
fea80fae
TI
11459 if (!spec->gen.no_analog) {
11460 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11461 if (err < 0)
11462 goto error;
11463 }
1d045db9 11464
1727a771 11465 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11466
ce764ab2 11467 return 0;
e16fb6d1
TI
11468
11469 error:
11470 alc_free(codec);
11471 return err;
ce764ab2
TI
11472}
11473
1d045db9
TI
11474/*
11475 * ALC662 support
11476 *
11477 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11478 * configuration. Each pin widget can choose any input DACs and a mixer.
11479 * Each ADC is connected from a mixer of all inputs. This makes possible
11480 * 6-channel independent captures.
11481 *
11482 * In addition, an independent DAC for the multi-playback (not used in this
11483 * driver yet).
11484 */
1d045db9
TI
11485
11486/*
11487 * BIOS auto configuration
11488 */
11489
bc9f98a9
KY
11490static int alc662_parse_auto_config(struct hda_codec *codec)
11491{
4c6d72d1 11492 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11493 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11494 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11495 const hda_nid_t *ssids;
ee979a14 11496
7639a06c
TI
11497 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11498 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11499 codec->core.vendor_id == 0x10ec0671)
3e6179b8 11500 ssids = alc663_ssids;
6227cdce 11501 else
3e6179b8
TI
11502 ssids = alc662_ssids;
11503 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
11504}
11505
6be7948f 11506static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 11507 const struct hda_fixup *fix, int action)
6fc398cb 11508{
9bb1f06f 11509 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 11510 return;
6be7948f
TB
11511 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11512 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11513 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11514 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11515 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 11516 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
11517}
11518
8e383953
TI
11519static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11520 { .channels = 2,
11521 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11522 { .channels = 4,
11523 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11524 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11525 { }
11526};
11527
11528/* override the 2.1 chmap */
eb9ca3ab 11529static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
11530 const struct hda_fixup *fix, int action)
11531{
11532 if (action == HDA_FIXUP_ACT_BUILD) {
11533 struct alc_spec *spec = codec->spec;
bbbc7e85 11534 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
11535 }
11536}
11537
bf68665d
TI
11538/* avoid D3 for keeping GPIO up */
11539static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11540 hda_nid_t nid,
11541 unsigned int power_state)
11542{
11543 struct alc_spec *spec = codec->spec;
d261eec8 11544 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
11545 return AC_PWRST_D0;
11546 return power_state;
11547}
11548
3e887f37
TI
11549static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11550 const struct hda_fixup *fix, int action)
11551{
11552 struct alc_spec *spec = codec->spec;
3e887f37 11553
01e4a275 11554 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 11555 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 11556 spec->mute_led_polarity = 1;
bf68665d 11557 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
11558 }
11559}
11560
c6790c8e
KY
11561static void alc662_usi_automute_hook(struct hda_codec *codec,
11562 struct hda_jack_callback *jack)
11563{
11564 struct alc_spec *spec = codec->spec;
11565 int vref;
11566 msleep(200);
11567 snd_hda_gen_hp_automute(codec, jack);
11568
11569 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11570 msleep(100);
11571 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11572 vref);
11573}
11574
11575static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11576 const struct hda_fixup *fix, int action)
11577{
11578 struct alc_spec *spec = codec->spec;
11579 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11580 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11581 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11582 }
11583}
11584
00066e97
SB
11585static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11586 struct hda_jack_callback *cb)
11587{
11588 /* surround speakers at 0x1b already get muted automatically when
11589 * headphones are plugged in, but we have to mute/unmute the remaining
11590 * channels manually:
11591 * 0x15 - front left/front right
11592 * 0x18 - front center/ LFE
11593 */
11594 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11595 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11596 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11597 } else {
11598 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11599 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11600 }
11601}
11602
11603static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11604 const struct hda_fixup *fix, int action)
11605{
11606 /* Pin 0x1b: shared headphones jack and surround speakers */
11607 if (!is_jack_detectable(codec, 0x1b))
11608 return;
11609
11610 switch (action) {
11611 case HDA_FIXUP_ACT_PRE_PROBE:
11612 snd_hda_jack_detect_enable_callback(codec, 0x1b,
11613 alc662_aspire_ethos_mute_speakers);
336820c4
TI
11614 /* subwoofer needs an extra GPIO setting to become audible */
11615 alc_setup_gpio(codec, 0x02);
00066e97
SB
11616 break;
11617 case HDA_FIXUP_ACT_INIT:
11618 /* Make sure to start in a correct state, i.e. if
11619 * headphones have been plugged in before powering up the system
11620 */
11621 alc662_aspire_ethos_mute_speakers(codec, NULL);
11622 break;
11623 }
11624}
11625
5af29028
KY
11626static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11627 const struct hda_fixup *fix, int action)
11628{
11629 struct alc_spec *spec = codec->spec;
11630
11631 static const struct hda_pintbl pincfgs[] = {
11632 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11633 { 0x1b, 0x0181304f },
11634 { }
11635 };
11636
11637 switch (action) {
11638 case HDA_FIXUP_ACT_PRE_PROBE:
11639 spec->gen.mixer_nid = 0;
11640 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11641 snd_hda_apply_pincfgs(codec, pincfgs);
11642 break;
11643 case HDA_FIXUP_ACT_INIT:
11644 alc_write_coef_idx(codec, 0x19, 0xa054);
11645 break;
11646 }
11647}
11648
d7f32791
KY
11649static void alc897_hp_automute_hook(struct hda_codec *codec,
11650 struct hda_jack_callback *jack)
11651{
11652 struct alc_spec *spec = codec->spec;
11653 int vref;
11654
11655 snd_hda_gen_hp_automute(codec, jack);
11656 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11657 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11658 vref);
11659}
11660
11661static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11662 const struct hda_fixup *fix, int action)
11663{
11664 struct alc_spec *spec = codec->spec;
11665 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11666 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11667 }
11668}
11669
4bf5bf54
EP
11670static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11671 const struct hda_fixup *fix, int action)
11672{
11673 struct alc_spec *spec = codec->spec;
11674
11675 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11676 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11677 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11678 }
11679}
11680
6b0f95c4 11681static const struct coef_fw alc668_coefs[] = {
f3f9185f
KY
11682 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
11683 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
11684 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
11685 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11686 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11687 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11688 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
11689 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
11690 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11691 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11692 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11693 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11694 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
11695 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11696 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
11697 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
11698 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11699 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
11700 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
11701 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
11702 {}
11703};
11704
11705static void alc668_restore_default_value(struct hda_codec *codec)
11706{
11707 alc_process_coef_fw(codec, alc668_coefs);
11708}
11709
6cb3b707 11710enum {
2df03514 11711 ALC662_FIXUP_ASPIRE,
3e887f37 11712 ALC662_FIXUP_LED_GPIO1,
6cb3b707 11713 ALC662_FIXUP_IDEAPAD,
6be7948f 11714 ALC272_FIXUP_MARIO,
f1ec5be1 11715 ALC662_FIXUP_CZC_ET26,
d2ebd479 11716 ALC662_FIXUP_CZC_P10T,
94024cd1 11717 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 11718 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
11719 ALC662_FIXUP_ASUS_MODE1,
11720 ALC662_FIXUP_ASUS_MODE2,
11721 ALC662_FIXUP_ASUS_MODE3,
11722 ALC662_FIXUP_ASUS_MODE4,
11723 ALC662_FIXUP_ASUS_MODE5,
11724 ALC662_FIXUP_ASUS_MODE6,
11725 ALC662_FIXUP_ASUS_MODE7,
11726 ALC662_FIXUP_ASUS_MODE8,
1565cc35 11727 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 11728 ALC662_FIXUP_ZOTAC_Z68,
125821ae 11729 ALC662_FIXUP_INV_DMIC,
1f8b46cd 11730 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 11731 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 11732 ALC662_FIXUP_HEADSET_MODE,
73bdd597 11733 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 11734 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 11735 ALC662_FIXUP_BASS_16,
a30c9aaa 11736 ALC662_FIXUP_BASS_1A,
8e54b4ac 11737 ALC662_FIXUP_BASS_CHMAP,
493a52a9 11738 ALC668_FIXUP_AUTO_MUTE,
5e6db669 11739 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 11740 ALC668_FIXUP_DELL_XPS13,
9d4dc584 11741 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 11742 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 11743 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 11744 ALC668_FIXUP_MIC_COEF,
11ba6111 11745 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
11746 ALC891_FIXUP_HEADSET_MODE,
11747 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 11748 ALC662_FIXUP_ACER_VERITON,
1a3f0991 11749 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
11750 ALC662_FIXUP_USI_FUNC,
11751 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 11752 ALC662_FIXUP_LENOVO_MULTI_CODECS,
00066e97 11753 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
00066e97 11754 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
5af29028 11755 ALC671_FIXUP_HP_HEADSET_MIC2,
d858c706 11756 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
a124458a 11757 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
a3fd1a98
HW
11758 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
11759 ALC668_FIXUP_HEADSET_MIC,
11760 ALC668_FIXUP_MIC_DET_COEF,
d7f32791
KY
11761 ALC897_FIXUP_LENOVO_HEADSET_MIC,
11762 ALC897_FIXUP_HEADSET_MIC_PIN,
fe6900bd 11763 ALC897_FIXUP_HP_HSMIC_VERB,
4bf5bf54
EP
11764 ALC897_FIXUP_LENOVO_HEADSET_MODE,
11765 ALC897_FIXUP_HEADSET_MIC_PIN2,
73f1c75d 11766 ALC897_FIXUP_UNIS_H3C_X500S,
6cb3b707
DH
11767};
11768
1727a771 11769static const struct hda_fixup alc662_fixups[] = {
2df03514 11770 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
11771 .type = HDA_FIXUP_PINS,
11772 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
11773 { 0x15, 0x99130112 }, /* subwoofer */
11774 { }
11775 }
11776 },
3e887f37
TI
11777 [ALC662_FIXUP_LED_GPIO1] = {
11778 .type = HDA_FIXUP_FUNC,
11779 .v.func = alc662_fixup_led_gpio1,
11780 },
6cb3b707 11781 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
11782 .type = HDA_FIXUP_PINS,
11783 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
11784 { 0x17, 0x99130112 }, /* subwoofer */
11785 { }
3e887f37
TI
11786 },
11787 .chained = true,
11788 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 11789 },
6be7948f 11790 [ALC272_FIXUP_MARIO] = {
1727a771 11791 .type = HDA_FIXUP_FUNC,
b5bfbc67 11792 .v.func = alc272_fixup_mario,
d2ebd479 11793 },
f1ec5be1
HC
11794 [ALC662_FIXUP_CZC_ET26] = {
11795 .type = HDA_FIXUP_PINS,
11796 .v.pins = (const struct hda_pintbl[]) {
11797 {0x12, 0x403cc000},
11798 {0x14, 0x90170110}, /* speaker */
11799 {0x15, 0x411111f0},
11800 {0x16, 0x411111f0},
11801 {0x18, 0x01a19030}, /* mic */
11802 {0x19, 0x90a7013f}, /* int-mic */
11803 {0x1a, 0x01014020},
11804 {0x1b, 0x0121401f},
11805 {0x1c, 0x411111f0},
11806 {0x1d, 0x411111f0},
11807 {0x1e, 0x40478e35},
11808 {}
11809 },
11810 .chained = true,
11811 .chain_id = ALC662_FIXUP_SKU_IGNORE
11812 },
d2ebd479 11813 [ALC662_FIXUP_CZC_P10T] = {
1727a771 11814 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
11815 .v.verbs = (const struct hda_verb[]) {
11816 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
11817 {}
11818 }
11819 },
94024cd1 11820 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 11821 .type = HDA_FIXUP_FUNC,
23d30f28 11822 .v.func = alc_fixup_sku_ignore,
c6b35874 11823 },
e59ea3ed 11824 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
11825 .type = HDA_FIXUP_PINS,
11826 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
11827 { 0x14, 0x0221201f }, /* HP out */
11828 { }
11829 },
11830 .chained = true,
11831 .chain_id = ALC662_FIXUP_SKU_IGNORE
11832 },
53c334ad 11833 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
11834 .type = HDA_FIXUP_PINS,
11835 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11836 { 0x14, 0x99130110 }, /* speaker */
11837 { 0x18, 0x01a19c20 }, /* mic */
11838 { 0x19, 0x99a3092f }, /* int-mic */
11839 { 0x21, 0x0121401f }, /* HP out */
11840 { }
11841 },
11842 .chained = true,
11843 .chain_id = ALC662_FIXUP_SKU_IGNORE
11844 },
11845 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
11846 .type = HDA_FIXUP_PINS,
11847 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
11848 { 0x14, 0x99130110 }, /* speaker */
11849 { 0x18, 0x01a19820 }, /* mic */
11850 { 0x19, 0x99a3092f }, /* int-mic */
11851 { 0x1b, 0x0121401f }, /* HP out */
11852 { }
11853 },
53c334ad
TI
11854 .chained = true,
11855 .chain_id = ALC662_FIXUP_SKU_IGNORE
11856 },
11857 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
11858 .type = HDA_FIXUP_PINS,
11859 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11860 { 0x14, 0x99130110 }, /* speaker */
11861 { 0x15, 0x0121441f }, /* HP */
11862 { 0x18, 0x01a19840 }, /* mic */
11863 { 0x19, 0x99a3094f }, /* int-mic */
11864 { 0x21, 0x01211420 }, /* HP2 */
11865 { }
11866 },
11867 .chained = true,
11868 .chain_id = ALC662_FIXUP_SKU_IGNORE
11869 },
11870 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
11871 .type = HDA_FIXUP_PINS,
11872 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11873 { 0x14, 0x99130110 }, /* speaker */
11874 { 0x16, 0x99130111 }, /* speaker */
11875 { 0x18, 0x01a19840 }, /* mic */
11876 { 0x19, 0x99a3094f }, /* int-mic */
11877 { 0x21, 0x0121441f }, /* HP */
11878 { }
11879 },
11880 .chained = true,
11881 .chain_id = ALC662_FIXUP_SKU_IGNORE
11882 },
11883 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
11884 .type = HDA_FIXUP_PINS,
11885 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11886 { 0x14, 0x99130110 }, /* speaker */
11887 { 0x15, 0x0121441f }, /* HP */
11888 { 0x16, 0x99130111 }, /* speaker */
11889 { 0x18, 0x01a19840 }, /* mic */
11890 { 0x19, 0x99a3094f }, /* int-mic */
11891 { }
11892 },
11893 .chained = true,
11894 .chain_id = ALC662_FIXUP_SKU_IGNORE
11895 },
11896 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
11897 .type = HDA_FIXUP_PINS,
11898 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11899 { 0x14, 0x99130110 }, /* speaker */
11900 { 0x15, 0x01211420 }, /* HP2 */
11901 { 0x18, 0x01a19840 }, /* mic */
11902 { 0x19, 0x99a3094f }, /* int-mic */
11903 { 0x1b, 0x0121441f }, /* HP */
11904 { }
11905 },
11906 .chained = true,
11907 .chain_id = ALC662_FIXUP_SKU_IGNORE
11908 },
11909 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
11910 .type = HDA_FIXUP_PINS,
11911 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11912 { 0x14, 0x99130110 }, /* speaker */
11913 { 0x17, 0x99130111 }, /* speaker */
11914 { 0x18, 0x01a19840 }, /* mic */
11915 { 0x19, 0x99a3094f }, /* int-mic */
11916 { 0x1b, 0x01214020 }, /* HP */
11917 { 0x21, 0x0121401f }, /* HP */
11918 { }
11919 },
11920 .chained = true,
11921 .chain_id = ALC662_FIXUP_SKU_IGNORE
11922 },
11923 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
11924 .type = HDA_FIXUP_PINS,
11925 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11926 { 0x14, 0x99130110 }, /* speaker */
11927 { 0x12, 0x99a30970 }, /* int-mic */
11928 { 0x15, 0x01214020 }, /* HP */
11929 { 0x17, 0x99130111 }, /* speaker */
11930 { 0x18, 0x01a19840 }, /* mic */
11931 { 0x21, 0x0121401f }, /* HP */
11932 { }
11933 },
11934 .chained = true,
11935 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 11936 },
1565cc35 11937 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 11938 .type = HDA_FIXUP_FUNC,
1565cc35
TI
11939 .v.func = alc_fixup_no_jack_detect,
11940 },
edfe3bfc 11941 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
11942 .type = HDA_FIXUP_PINS,
11943 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
11944 { 0x1b, 0x02214020 }, /* Front HP */
11945 { }
11946 }
11947 },
125821ae 11948 [ALC662_FIXUP_INV_DMIC] = {
1727a771 11949 .type = HDA_FIXUP_FUNC,
9d36a7dc 11950 .v.func = alc_fixup_inv_dmic,
125821ae 11951 },
033b0a7c
GM
11952 [ALC668_FIXUP_DELL_XPS13] = {
11953 .type = HDA_FIXUP_FUNC,
11954 .v.func = alc_fixup_dell_xps13,
11955 .chained = true,
11956 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11957 },
5e6db669
GM
11958 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
11959 .type = HDA_FIXUP_FUNC,
11960 .v.func = alc_fixup_disable_aamix,
11961 .chained = true,
11962 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11963 },
493a52a9
HW
11964 [ALC668_FIXUP_AUTO_MUTE] = {
11965 .type = HDA_FIXUP_FUNC,
11966 .v.func = alc_fixup_auto_mute_via_amp,
11967 .chained = true,
11968 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11969 },
1f8b46cd
DH
11970 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
11971 .type = HDA_FIXUP_PINS,
11972 .v.pins = (const struct hda_pintbl[]) {
11973 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11974 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
11975 { }
11976 },
11977 .chained = true,
11978 .chain_id = ALC662_FIXUP_HEADSET_MODE
11979 },
11980 [ALC662_FIXUP_HEADSET_MODE] = {
11981 .type = HDA_FIXUP_FUNC,
11982 .v.func = alc_fixup_headset_mode_alc662,
11983 },
73bdd597
DH
11984 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
11985 .type = HDA_FIXUP_PINS,
11986 .v.pins = (const struct hda_pintbl[]) {
11987 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11988 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11989 { }
11990 },
11991 .chained = true,
11992 .chain_id = ALC668_FIXUP_HEADSET_MODE
11993 },
11994 [ALC668_FIXUP_HEADSET_MODE] = {
11995 .type = HDA_FIXUP_FUNC,
11996 .v.func = alc_fixup_headset_mode_alc668,
11997 },
8e54b4ac 11998 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 11999 .type = HDA_FIXUP_FUNC,
eb9ca3ab 12000 .v.func = alc_fixup_bass_chmap,
8e383953
TI
12001 .chained = true,
12002 .chain_id = ALC662_FIXUP_ASUS_MODE4
12003 },
61a75f13
DH
12004 [ALC662_FIXUP_BASS_16] = {
12005 .type = HDA_FIXUP_PINS,
12006 .v.pins = (const struct hda_pintbl[]) {
12007 {0x16, 0x80106111}, /* bass speaker */
12008 {}
12009 },
12010 .chained = true,
12011 .chain_id = ALC662_FIXUP_BASS_CHMAP,
12012 },
a30c9aaa
TI
12013 [ALC662_FIXUP_BASS_1A] = {
12014 .type = HDA_FIXUP_PINS,
12015 .v.pins = (const struct hda_pintbl[]) {
12016 {0x1a, 0x80106111}, /* bass speaker */
12017 {}
12018 },
8e54b4ac
DH
12019 .chained = true,
12020 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 12021 },
8e54b4ac 12022 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 12023 .type = HDA_FIXUP_FUNC,
eb9ca3ab 12024 .v.func = alc_fixup_bass_chmap,
a30c9aaa 12025 },
9d4dc584
BM
12026 [ALC662_FIXUP_ASUS_Nx50] = {
12027 .type = HDA_FIXUP_FUNC,
12028 .v.func = alc_fixup_auto_mute_via_amp,
12029 .chained = true,
12030 .chain_id = ALC662_FIXUP_BASS_1A
12031 },
fc7438b1
MP
12032 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
12033 .type = HDA_FIXUP_FUNC,
12034 .v.func = alc_fixup_headset_mode_alc668,
12035 .chain_id = ALC662_FIXUP_BASS_CHMAP
12036 },
3231e205
YP
12037 [ALC668_FIXUP_ASUS_Nx51] = {
12038 .type = HDA_FIXUP_PINS,
12039 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
12040 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12041 { 0x1a, 0x90170151 }, /* bass speaker */
12042 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
12043 {}
12044 },
12045 .chained = true,
fc7438b1 12046 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 12047 },
5b7c5e1f 12048 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
12049 .type = HDA_FIXUP_VERBS,
12050 .v.verbs = (const struct hda_verb[]) {
12051 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
12052 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
12053 {}
12054 },
12055 },
5b7c5e1f
TI
12056 [ALC668_FIXUP_ASUS_G751] = {
12057 .type = HDA_FIXUP_PINS,
12058 .v.pins = (const struct hda_pintbl[]) {
12059 { 0x16, 0x0421101f }, /* HP */
12060 {}
12061 },
12062 .chained = true,
12063 .chain_id = ALC668_FIXUP_MIC_COEF
12064 },
78f4f7c2
KY
12065 [ALC891_FIXUP_HEADSET_MODE] = {
12066 .type = HDA_FIXUP_FUNC,
12067 .v.func = alc_fixup_headset_mode,
12068 },
12069 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
12070 .type = HDA_FIXUP_PINS,
12071 .v.pins = (const struct hda_pintbl[]) {
12072 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
12073 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
12074 { }
12075 },
12076 .chained = true,
12077 .chain_id = ALC891_FIXUP_HEADSET_MODE
12078 },
9b51fe3e
SB
12079 [ALC662_FIXUP_ACER_VERITON] = {
12080 .type = HDA_FIXUP_PINS,
12081 .v.pins = (const struct hda_pintbl[]) {
12082 { 0x15, 0x50170120 }, /* no internal speaker */
12083 { }
12084 }
12085 },
1a3f0991
TI
12086 [ALC892_FIXUP_ASROCK_MOBO] = {
12087 .type = HDA_FIXUP_PINS,
12088 .v.pins = (const struct hda_pintbl[]) {
12089 { 0x15, 0x40f000f0 }, /* disabled */
12090 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
12091 { }
12092 }
12093 },
c6790c8e
KY
12094 [ALC662_FIXUP_USI_FUNC] = {
12095 .type = HDA_FIXUP_FUNC,
12096 .v.func = alc662_fixup_usi_headset_mic,
12097 },
12098 [ALC662_FIXUP_USI_HEADSET_MODE] = {
12099 .type = HDA_FIXUP_PINS,
12100 .v.pins = (const struct hda_pintbl[]) {
12101 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
12102 { 0x18, 0x01a1903d },
12103 { }
12104 },
12105 .chained = true,
12106 .chain_id = ALC662_FIXUP_USI_FUNC
12107 },
ca169cc2
KY
12108 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
12109 .type = HDA_FIXUP_FUNC,
12110 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
12111 },
00066e97
SB
12112 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
12113 .type = HDA_FIXUP_FUNC,
12114 .v.func = alc662_fixup_aspire_ethos_hp,
12115 },
00066e97
SB
12116 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
12117 .type = HDA_FIXUP_PINS,
12118 .v.pins = (const struct hda_pintbl[]) {
12119 { 0x15, 0x92130110 }, /* front speakers */
12120 { 0x18, 0x99130111 }, /* center/subwoofer */
12121 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
12122 { }
12123 },
12124 .chained = true,
336820c4 12125 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
00066e97 12126 },
5af29028
KY
12127 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
12128 .type = HDA_FIXUP_FUNC,
12129 .v.func = alc671_fixup_hp_headset_mic2,
12130 },
d858c706
JHP
12131 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
12132 .type = HDA_FIXUP_PINS,
12133 .v.pins = (const struct hda_pintbl[]) {
12134 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
12135 { }
12136 },
12137 .chained = true,
12138 .chain_id = ALC662_FIXUP_USI_FUNC
12139 },
a124458a
JHP
12140 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
12141 .type = HDA_FIXUP_PINS,
12142 .v.pins = (const struct hda_pintbl[]) {
12143 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12144 { 0x1b, 0x0221144f },
12145 { }
12146 },
12147 .chained = true,
12148 .chain_id = ALC662_FIXUP_USI_FUNC
12149 },
a3fd1a98
HW
12150 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
12151 .type = HDA_FIXUP_PINS,
12152 .v.pins = (const struct hda_pintbl[]) {
12153 { 0x1b, 0x04a1112c },
12154 { }
12155 },
12156 .chained = true,
12157 .chain_id = ALC668_FIXUP_HEADSET_MIC
12158 },
12159 [ALC668_FIXUP_HEADSET_MIC] = {
12160 .type = HDA_FIXUP_FUNC,
12161 .v.func = alc269_fixup_headset_mic,
12162 .chained = true,
12163 .chain_id = ALC668_FIXUP_MIC_DET_COEF
12164 },
12165 [ALC668_FIXUP_MIC_DET_COEF] = {
12166 .type = HDA_FIXUP_VERBS,
12167 .v.verbs = (const struct hda_verb[]) {
12168 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
12169 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
12170 {}
12171 },
12172 },
d7f32791
KY
12173 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
12174 .type = HDA_FIXUP_FUNC,
12175 .v.func = alc897_fixup_lenovo_headset_mic,
12176 },
12177 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
12178 .type = HDA_FIXUP_PINS,
12179 .v.pins = (const struct hda_pintbl[]) {
12180 { 0x1a, 0x03a11050 },
12181 { }
12182 },
12183 .chained = true,
12184 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12185 },
fe6900bd
KY
12186 [ALC897_FIXUP_HP_HSMIC_VERB] = {
12187 .type = HDA_FIXUP_PINS,
12188 .v.pins = (const struct hda_pintbl[]) {
12189 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12190 { }
12191 },
12192 },
4bf5bf54
EP
12193 [ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12194 .type = HDA_FIXUP_FUNC,
12195 .v.func = alc897_fixup_lenovo_headset_mode,
12196 },
12197 [ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12198 .type = HDA_FIXUP_PINS,
12199 .v.pins = (const struct hda_pintbl[]) {
12200 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12201 { }
12202 },
12203 .chained = true,
12204 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12205 },
73f1c75d 12206 [ALC897_FIXUP_UNIS_H3C_X500S] = {
12207 .type = HDA_FIXUP_VERBS,
12208 .v.verbs = (const struct hda_verb[]) {
12209 { 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12210 {}
12211 },
12212 },
6cb3b707
DH
12213};
12214
a9111321 12215static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 12216 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 12217 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 12218 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 12219 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 12220 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 12221 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 12222 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 12223 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
9edeb110 12224 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
a124458a 12225 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
d858c706 12226 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
73bdd597
DH
12227 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12228 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 12229 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 12230 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 12231 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 12232 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 12233 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
12234 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12235 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 12236 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 12237 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
ea24b995 12238 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
fe6900bd 12239 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
90670ef7 12240 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
148ebf54 12241 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
527c356b 12242 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
dbe75d31 12243 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
882bd07f 12244 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
2da2dc9e 12245 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 12246 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
9d4dc584 12247 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 12248 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
9edeb110 12249 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
8e54b4ac 12250 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 12251 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
12252 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12253 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
a3fd1a98 12254 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
c7efff92 12255 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 12256 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 12257 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 12258 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 12259 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 12260 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 12261 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 12262 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
5a873857 12263 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
7ca4c8d4 12264 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
d7f32791
KY
12265 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12266 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12267 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12268 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
4ca110ca
BL
12269 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12270 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
6f7e4664 12271 SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN),
4bf5bf54 12272 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
d4118588 12273 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 12274 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 12275 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 12276 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 12277 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
f1ec5be1 12278 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
d2ebd479 12279 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
a2a87148 12280 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
53c334ad
TI
12281
12282#if 0
12283 /* Below is a quirk table taken from the old code.
12284 * Basically the device should work as is without the fixup table.
12285 * If BIOS doesn't give a proper info, enable the corresponding
12286 * fixup entry.
7d7eb9ea 12287 */
53c334ad
TI
12288 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12289 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12290 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12291 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12292 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12293 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12294 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12295 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12296 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12297 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12298 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12299 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12300 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12301 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12302 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12303 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12304 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12305 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12306 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12307 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12308 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12309 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12310 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12311 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12312 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12313 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12314 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12315 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12316 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12317 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12318 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12319 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12320 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12321 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12322 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12323 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12324 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12325 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12326 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12327 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12328 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12329 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12330 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12331 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12332 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12333 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12334 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12335 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12336 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12337 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12338#endif
6cb3b707
DH
12339 {}
12340};
12341
1727a771 12342static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
12343 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12344 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 12345 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 12346 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
12347 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12348 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12349 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12350 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12351 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12352 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12353 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12354 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 12355 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 12356 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 12357 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 12358 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
12359 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12360 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12361 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12362 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12363 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12364 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12365 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12366 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 12367 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
12368 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12369 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12370 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12371 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12372 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 12373 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
00066e97 12374 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
73f1c75d 12375 {.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
6be7948f
TB
12376 {}
12377};
6cb3b707 12378
532895c5 12379static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
12380 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12381 {0x17, 0x02211010},
12382 {0x18, 0x01a19030},
12383 {0x1a, 0x01813040},
12384 {0x21, 0x01014020}),
4b4e0e32
HW
12385 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12386 {0x16, 0x01813030},
12387 {0x17, 0x02211010},
12388 {0x18, 0x01a19040},
12389 {0x21, 0x01014020}),
1f8b46cd 12390 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 12391 {0x14, 0x01014010},
1f8b46cd 12392 {0x18, 0x01a19020},
1f8b46cd 12393 {0x1a, 0x0181302f},
11580297 12394 {0x1b, 0x0221401f}),
76c2132e
DH
12395 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12396 {0x12, 0x99a30130},
12397 {0x14, 0x90170110},
12398 {0x15, 0x0321101f},
11580297 12399 {0x16, 0x03011020}),
76c2132e
DH
12400 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12401 {0x12, 0x99a30140},
12402 {0x14, 0x90170110},
12403 {0x15, 0x0321101f},
11580297 12404 {0x16, 0x03011020}),
76c2132e
DH
12405 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12406 {0x12, 0x99a30150},
12407 {0x14, 0x90170110},
12408 {0x15, 0x0321101f},
11580297 12409 {0x16, 0x03011020}),
76c2132e 12410 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
12411 {0x14, 0x90170110},
12412 {0x15, 0x0321101f},
11580297 12413 {0x16, 0x03011020}),
76c2132e
DH
12414 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12415 {0x12, 0x90a60130},
12416 {0x14, 0x90170110},
11580297 12417 {0x15, 0x0321101f}),
5af29028
KY
12418 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12419 {0x14, 0x01014010},
12420 {0x17, 0x90170150},
f2adbae0 12421 {0x19, 0x02a11060},
5af29028
KY
12422 {0x1b, 0x01813030},
12423 {0x21, 0x02211020}),
12424 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12425 {0x14, 0x01014010},
12426 {0x18, 0x01a19040},
12427 {0x1b, 0x01813030},
12428 {0x21, 0x02211020}),
12429 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12430 {0x14, 0x01014020},
12431 {0x17, 0x90170110},
12432 {0x18, 0x01a19050},
12433 {0x1b, 0x01813040},
12434 {0x21, 0x02211030}),
532895c5
HW
12435 {}
12436};
12437
1d045db9
TI
12438/*
12439 */
bc9f98a9
KY
12440static int patch_alc662(struct hda_codec *codec)
12441{
12442 struct alc_spec *spec;
3de95173 12443 int err;
bc9f98a9 12444
3de95173
TI
12445 err = alc_alloc_spec(codec, 0x0b);
12446 if (err < 0)
12447 return err;
bc9f98a9 12448
3de95173 12449 spec = codec->spec;
1f0f4b80 12450
225068ab
TI
12451 spec->shutup = alc_eapd_shutup;
12452
53c334ad
TI
12453 /* handle multiple HPs as is */
12454 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12455
2c3bf9ab
TI
12456 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12457
7639a06c 12458 switch (codec->core.vendor_id) {
f3f9185f
KY
12459 case 0x10ec0668:
12460 spec->init_hook = alc668_restore_default_value;
12461 break;
f3f9185f 12462 }
8663ff75 12463
c9af753f
TI
12464 alc_pre_init(codec);
12465
1727a771 12466 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 12467 alc662_fixup_tbl, alc662_fixups);
0fc1e447 12468 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
1727a771 12469 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
12470
12471 alc_auto_parse_customize_define(codec);
12472
7504b6cd
TI
12473 if (has_cdefine_beep(codec))
12474 spec->gen.beep_nid = 0x01;
12475
1bb7e43e 12476 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 12477 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 12478 spec->cdefine.platform_type == 1) {
6134b1a2
WY
12479 err = alc_codec_rename(codec, "ALC272X");
12480 if (err < 0)
e16fb6d1 12481 goto error;
20ca0c35 12482 }
274693f3 12483
b9c5106c
TI
12484 /* automatic parse from the BIOS config */
12485 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
12486 if (err < 0)
12487 goto error;
bc9f98a9 12488
7504b6cd 12489 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 12490 switch (codec->core.vendor_id) {
da00c244 12491 case 0x10ec0662:
fea80fae 12492 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
12493 break;
12494 case 0x10ec0272:
12495 case 0x10ec0663:
12496 case 0x10ec0665:
9ad54547 12497 case 0x10ec0668:
fea80fae 12498 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
12499 break;
12500 case 0x10ec0273:
fea80fae 12501 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
12502 break;
12503 }
fea80fae
TI
12504 if (err < 0)
12505 goto error;
cec27c89 12506 }
2134ea4f 12507
1727a771 12508 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 12509
bc9f98a9 12510 return 0;
801f49d3 12511
e16fb6d1
TI
12512 error:
12513 alc_free(codec);
12514 return err;
b478b998
KY
12515}
12516
d1eb57f4
KY
12517/*
12518 * ALC680 support
12519 */
d1eb57f4 12520
d1eb57f4
KY
12521static int alc680_parse_auto_config(struct hda_codec *codec)
12522{
3e6179b8 12523 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
12524}
12525
d1eb57f4 12526/*
d1eb57f4 12527 */
d1eb57f4
KY
12528static int patch_alc680(struct hda_codec *codec)
12529{
d1eb57f4
KY
12530 int err;
12531
1f0f4b80 12532 /* ALC680 has no aa-loopback mixer */
3de95173
TI
12533 err = alc_alloc_spec(codec, 0);
12534 if (err < 0)
12535 return err;
1f0f4b80 12536
1ebec5f2
TI
12537 /* automatic parse from the BIOS config */
12538 err = alc680_parse_auto_config(codec);
12539 if (err < 0) {
12540 alc_free(codec);
12541 return err;
d1eb57f4
KY
12542 }
12543
d1eb57f4
KY
12544 return 0;
12545}
12546
1da177e4
LT
12547/*
12548 * patch entries
12549 */
b9a94a9c 12550static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 12551 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 12552 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
2a36c16e 12553 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
4231430d 12554 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
1948fc06 12555 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
b9a94a9c
TI
12556 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12557 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 12558 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 12559 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 12560 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
7fbdcd83 12561 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
b9a94a9c
TI
12562 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12563 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 12564 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
12565 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12566 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12567 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12568 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12569 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12570 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12571 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 12572 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
12573 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12574 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12575 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12576 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12577 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12578 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 12579 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c 12580 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
630e3612 12581 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
b9a94a9c 12582 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 12583 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
12584 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12585 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12586 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 12587 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 12588 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 12589 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 12590 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
1078bef0 12591 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
f0778871 12592 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
b9a94a9c
TI
12593 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12594 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12595 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12596 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12597 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12598 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12599 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12600 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12601 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12602 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12603 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12604 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12605 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12606 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
12607 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12608 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12609 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
83629532 12610 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
78f4f7c2 12611 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
12612 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12613 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12614 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12615 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12616 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12617 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12618 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12619 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12620 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12621 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12622 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
e5782a5d 12623 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
b9a94a9c
TI
12624 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12625 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
6d9ffcff 12626 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
65553b12 12627 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 12628 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
527f4643 12629 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
1da177e4
LT
12630 {} /* terminator */
12631};
b9a94a9c 12632MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
12633
12634MODULE_LICENSE("GPL");
12635MODULE_DESCRIPTION("Realtek HD-audio codec");
12636
d8a766a1 12637static struct hda_codec_driver realtek_driver = {
b9a94a9c 12638 .id = snd_hda_id_realtek,
1289e9e8
TI
12639};
12640
d8a766a1 12641module_hda_codec_driver(realtek_driver);