]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
ALSA: hda: cs35l41: Support HP models without _DSD using dual Speaker ID
[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 */
d3dca026 136 struct hda_component comps[HDA_MAX_COMPONENTS];
df694daa
KY
137};
138
f2a227cd
TI
139/*
140 * COEF access helper functions
141 */
142
2a845837
TI
143static void coef_mutex_lock(struct hda_codec *codec)
144{
145 struct alc_spec *spec = codec->spec;
146
147 snd_hda_power_up_pm(codec);
148 mutex_lock(&spec->coef_mutex);
149}
150
151static void coef_mutex_unlock(struct hda_codec *codec)
152{
153 struct alc_spec *spec = codec->spec;
154
155 mutex_unlock(&spec->coef_mutex);
156 snd_hda_power_down_pm(codec);
157}
158
b837a9f5
TI
159static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
160 unsigned int coef_idx)
f2a227cd
TI
161{
162 unsigned int val;
163
164 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
165 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
166 return val;
167}
168
b837a9f5
TI
169static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
170 unsigned int coef_idx)
171{
b837a9f5
TI
172 unsigned int val;
173
2a845837 174 coef_mutex_lock(codec);
b837a9f5 175 val = __alc_read_coefex_idx(codec, nid, coef_idx);
2a845837 176 coef_mutex_unlock(codec);
b837a9f5
TI
177 return val;
178}
179
f2a227cd
TI
180#define alc_read_coef_idx(codec, coef_idx) \
181 alc_read_coefex_idx(codec, 0x20, coef_idx)
182
b837a9f5
TI
183static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
184 unsigned int coef_idx, unsigned int coef_val)
f2a227cd
TI
185{
186 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
187 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
188}
189
b837a9f5
TI
190static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
191 unsigned int coef_idx, unsigned int coef_val)
192{
2a845837 193 coef_mutex_lock(codec);
b837a9f5 194 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
2a845837 195 coef_mutex_unlock(codec);
b837a9f5
TI
196}
197
f2a227cd
TI
198#define alc_write_coef_idx(codec, coef_idx, coef_val) \
199 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
200
b837a9f5
TI
201static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
202 unsigned int coef_idx, unsigned int mask,
203 unsigned int bits_set)
204{
205 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
206
207 if (val != -1)
208 __alc_write_coefex_idx(codec, nid, coef_idx,
209 (val & ~mask) | bits_set);
210}
211
98b24883
TI
212static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
213 unsigned int coef_idx, unsigned int mask,
214 unsigned int bits_set)
215{
2a845837 216 coef_mutex_lock(codec);
b837a9f5 217 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
2a845837 218 coef_mutex_unlock(codec);
98b24883
TI
219}
220
221#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
222 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
223
f2a227cd
TI
224/* a special bypass for COEF 0; read the cached value at the second time */
225static unsigned int alc_get_coef0(struct hda_codec *codec)
226{
227 struct alc_spec *spec = codec->spec;
228
229 if (!spec->coef0)
230 spec->coef0 = alc_read_coef_idx(codec, 0);
231 return spec->coef0;
232}
233
54db6c39
TI
234/* coef writes/updates batch */
235struct coef_fw {
236 unsigned char nid;
237 unsigned char idx;
238 unsigned short mask;
239 unsigned short val;
240};
241
242#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
243 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
244#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
245#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
246#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
247
248static void alc_process_coef_fw(struct hda_codec *codec,
249 const struct coef_fw *fw)
250{
2a845837 251 coef_mutex_lock(codec);
54db6c39
TI
252 for (; fw->nid; fw++) {
253 if (fw->mask == (unsigned short)-1)
b837a9f5 254 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
54db6c39 255 else
b837a9f5
TI
256 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
257 fw->mask, fw->val);
54db6c39 258 }
2a845837 259 coef_mutex_unlock(codec);
54db6c39
TI
260}
261
df694daa 262/*
1d045db9 263 * GPIO setup tables, used in initialization
df694daa 264 */
5579cd6f 265
bc9f98a9 266/* Enable GPIO mask and set output */
5579cd6f
TI
267static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
268{
269 struct alc_spec *spec = codec->spec;
bc9f98a9 270
5579cd6f
TI
271 spec->gpio_mask |= mask;
272 spec->gpio_dir |= mask;
273 spec->gpio_data |= mask;
274}
bc9f98a9 275
5579cd6f
TI
276static void alc_write_gpio_data(struct hda_codec *codec)
277{
278 struct alc_spec *spec = codec->spec;
279
280 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
281 spec->gpio_data);
282}
283
aaf312de
TI
284static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
285 bool on)
286{
287 struct alc_spec *spec = codec->spec;
288 unsigned int oldval = spec->gpio_data;
289
290 if (on)
291 spec->gpio_data |= mask;
292 else
293 spec->gpio_data &= ~mask;
294 if (oldval != spec->gpio_data)
295 alc_write_gpio_data(codec);
296}
297
5579cd6f
TI
298static void alc_write_gpio(struct hda_codec *codec)
299{
300 struct alc_spec *spec = codec->spec;
301
302 if (!spec->gpio_mask)
303 return;
304
305 snd_hda_codec_write(codec, codec->core.afg, 0,
306 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
307 snd_hda_codec_write(codec, codec->core.afg, 0,
308 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
215c850c
TI
309 if (spec->gpio_write_delay)
310 msleep(1);
5579cd6f
TI
311 alc_write_gpio_data(codec);
312}
313
314static void alc_fixup_gpio(struct hda_codec *codec, int action,
315 unsigned int mask)
316{
317 if (action == HDA_FIXUP_ACT_PRE_PROBE)
318 alc_setup_gpio(codec, mask);
319}
320
321static void alc_fixup_gpio1(struct hda_codec *codec,
322 const struct hda_fixup *fix, int action)
323{
324 alc_fixup_gpio(codec, action, 0x01);
325}
326
327static void alc_fixup_gpio2(struct hda_codec *codec,
328 const struct hda_fixup *fix, int action)
329{
330 alc_fixup_gpio(codec, action, 0x02);
331}
332
333static void alc_fixup_gpio3(struct hda_codec *codec,
334 const struct hda_fixup *fix, int action)
335{
336 alc_fixup_gpio(codec, action, 0x03);
337}
bdd148a3 338
ae065f1c
TI
339static void alc_fixup_gpio4(struct hda_codec *codec,
340 const struct hda_fixup *fix, int action)
341{
342 alc_fixup_gpio(codec, action, 0x04);
343}
344
8a503555
TI
345static void alc_fixup_micmute_led(struct hda_codec *codec,
346 const struct hda_fixup *fix, int action)
347{
e65bf997 348 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8a503555
TI
349 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
350}
351
2c3bf9ab
TI
352/*
353 * Fix hardware PLL issue
354 * On some codecs, the analog PLL gating control must be off while
355 * the default value is 1.
356 */
357static void alc_fix_pll(struct hda_codec *codec)
358{
359 struct alc_spec *spec = codec->spec;
2c3bf9ab 360
98b24883
TI
361 if (spec->pll_nid)
362 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
363 1 << spec->pll_coef_bit, 0);
2c3bf9ab
TI
364}
365
366static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
367 unsigned int coef_idx, unsigned int coef_bit)
368{
369 struct alc_spec *spec = codec->spec;
370 spec->pll_nid = nid;
371 spec->pll_coef_idx = coef_idx;
372 spec->pll_coef_bit = coef_bit;
373 alc_fix_pll(codec);
374}
375
cf5a2279 376/* update the master volume per volume-knob's unsol event */
1a4f69d5
TI
377static void alc_update_knob_master(struct hda_codec *codec,
378 struct hda_jack_callback *jack)
cf5a2279
TI
379{
380 unsigned int val;
381 struct snd_kcontrol *kctl;
382 struct snd_ctl_elem_value *uctl;
383
384 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
385 if (!kctl)
386 return;
387 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
388 if (!uctl)
389 return;
2ebab40e 390 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
391 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
392 val &= HDA_AMP_VOLMASK;
393 uctl->value.integer.value[0] = val;
394 uctl->value.integer.value[1] = val;
395 kctl->put(kctl, uctl);
396 kfree(uctl);
397}
398
29adc4b9 399static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 400{
29adc4b9
DH
401 /* For some reason, the res given from ALC880 is broken.
402 Here we adjust it properly. */
403 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
404}
405
394c97f8
KY
406/* Change EAPD to verb control */
407static void alc_fill_eapd_coef(struct hda_codec *codec)
408{
409 int coef;
410
411 coef = alc_get_coef0(codec);
412
7639a06c 413 switch (codec->core.vendor_id) {
394c97f8
KY
414 case 0x10ec0262:
415 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
416 break;
417 case 0x10ec0267:
418 case 0x10ec0268:
419 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
420 break;
421 case 0x10ec0269:
422 if ((coef & 0x00f0) == 0x0010)
423 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
424 if ((coef & 0x00f0) == 0x0020)
425 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
426 if ((coef & 0x00f0) == 0x0030)
427 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
428 break;
429 case 0x10ec0280:
430 case 0x10ec0284:
431 case 0x10ec0290:
432 case 0x10ec0292:
433 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
434 break;
4231430d 435 case 0x10ec0225:
44be77c5
TI
436 case 0x10ec0295:
437 case 0x10ec0299:
438 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
c0dbbdad 439 fallthrough;
44be77c5 440 case 0x10ec0215:
1948fc06 441 case 0x10ec0230:
394c97f8 442 case 0x10ec0233:
ea04a1db 443 case 0x10ec0235:
c4473744 444 case 0x10ec0236:
7fbdcd83 445 case 0x10ec0245:
394c97f8 446 case 0x10ec0255:
c4473744 447 case 0x10ec0256:
527f4643 448 case 0x19e58326:
f429e7e4 449 case 0x10ec0257:
394c97f8
KY
450 case 0x10ec0282:
451 case 0x10ec0283:
452 case 0x10ec0286:
453 case 0x10ec0288:
0a6f0600 454 case 0x10ec0285:
506b62c3 455 case 0x10ec0298:
0a6f0600 456 case 0x10ec0289:
1078bef0 457 case 0x10ec0300:
394c97f8
KY
458 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
459 break;
3aabf94c
KY
460 case 0x10ec0275:
461 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
462 break;
8822702f
HW
463 case 0x10ec0287:
464 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
465 alc_write_coef_idx(codec, 0x8, 0x4ab7);
466 break;
394c97f8
KY
467 case 0x10ec0293:
468 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
469 break;
dcd4f0db
KY
470 case 0x10ec0234:
471 case 0x10ec0274:
472 case 0x10ec0294:
6fbae35a
KY
473 case 0x10ec0700:
474 case 0x10ec0701:
475 case 0x10ec0703:
83629532 476 case 0x10ec0711:
dcd4f0db
KY
477 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
478 break;
394c97f8
KY
479 case 0x10ec0662:
480 if ((coef & 0x00f0) == 0x0030)
481 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
482 break;
483 case 0x10ec0272:
484 case 0x10ec0273:
485 case 0x10ec0663:
486 case 0x10ec0665:
487 case 0x10ec0670:
488 case 0x10ec0671:
489 case 0x10ec0672:
490 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
491 break;
9194a1eb 492 case 0x10ec0222:
f0778871
KY
493 case 0x10ec0623:
494 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
495 break;
394c97f8
KY
496 case 0x10ec0668:
497 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
498 break;
499 case 0x10ec0867:
500 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
501 break;
502 case 0x10ec0888:
503 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
504 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
505 break;
506 case 0x10ec0892:
e5782a5d 507 case 0x10ec0897:
394c97f8
KY
508 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
509 break;
510 case 0x10ec0899:
511 case 0x10ec0900:
6d9ffcff 512 case 0x10ec0b00:
65553b12 513 case 0x10ec1168:
a535ad57 514 case 0x10ec1220:
394c97f8
KY
515 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
516 break;
517 }
518}
519
f9423e7a
KY
520/* additional initialization for ALC888 variants */
521static void alc888_coef_init(struct hda_codec *codec)
522{
1df8874b
KY
523 switch (alc_get_coef0(codec) & 0x00f0) {
524 /* alc888-VA */
525 case 0x00:
526 /* alc888-VB */
527 case 0x10:
528 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
529 break;
530 }
87a8c370
JK
531}
532
3fb4a508
TI
533/* turn on/off EAPD control (only if available) */
534static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
535{
536 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
537 return;
538 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
539 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
540 on ? 2 : 0);
541}
542
691f1fcc
TI
543/* turn on/off EAPD controls of the codec */
544static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
545{
546 /* We currently only handle front, HP */
caf3c043 547 static const hda_nid_t pins[] = {
af95b414 548 0x0f, 0x10, 0x14, 0x15, 0x17, 0
39fa84e9 549 };
caf3c043 550 const hda_nid_t *p;
39fa84e9
TI
551 for (p = pins; *p; p++)
552 set_eapd(codec, *p, on);
691f1fcc
TI
553}
554
dad3197d
KY
555static int find_ext_mic_pin(struct hda_codec *codec);
556
557static void alc_headset_mic_no_shutup(struct hda_codec *codec)
558{
559 const struct hda_pincfg *pin;
560 int mic_pin = find_ext_mic_pin(codec);
561 int i;
562
563 /* don't shut up pins when unloading the driver; otherwise it breaks
564 * the default pin setup at the next load of the driver
565 */
566 if (codec->bus->shutdown)
567 return;
568
569 snd_array_for_each(&codec->init_pins, i, pin) {
570 /* use read here for syncing after issuing each verb */
571 if (pin->nid != mic_pin)
572 snd_hda_codec_read(codec, pin->nid, 0,
573 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
574 }
575
576 codec->pins_shutup = 1;
577}
578
c0ca5ece
TI
579static void alc_shutup_pins(struct hda_codec *codec)
580{
581 struct alc_spec *spec = codec->spec;
582
dad3197d 583 switch (codec->core.vendor_id) {
5aec9891
KY
584 case 0x10ec0236:
585 case 0x10ec0256:
527f4643 586 case 0x19e58326:
66c5d718 587 case 0x10ec0283:
dad3197d
KY
588 case 0x10ec0286:
589 case 0x10ec0288:
590 case 0x10ec0298:
591 alc_headset_mic_no_shutup(codec);
592 break;
593 default:
594 if (!spec->no_shutup_pins)
595 snd_hda_shutup_pins(codec);
596 break;
597 }
c0ca5ece
TI
598}
599
1c716153 600/* generic shutup callback;
4ce8e6a5 601 * just turning off EAPD and a little pause for avoiding pop-noise
1c716153
TI
602 */
603static void alc_eapd_shutup(struct hda_codec *codec)
604{
97a26570
KY
605 struct alc_spec *spec = codec->spec;
606
1c716153 607 alc_auto_setup_eapd(codec, false);
97a26570
KY
608 if (!spec->no_depop_delay)
609 msleep(200);
c0ca5ece 610 alc_shutup_pins(codec);
1c716153
TI
611}
612
1d045db9 613/* generic EAPD initialization */
4a79ba34 614static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 615{
39fa84e9 616 alc_auto_setup_eapd(codec, true);
5579cd6f 617 alc_write_gpio(codec);
4a79ba34 618 switch (type) {
4a79ba34 619 case ALC_INIT_DEFAULT:
7639a06c 620 switch (codec->core.vendor_id) {
c9b58006 621 case 0x10ec0260:
98b24883 622 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
c9b58006 623 break;
c9b58006
KY
624 case 0x10ec0880:
625 case 0x10ec0882:
626 case 0x10ec0883:
627 case 0x10ec0885:
1df8874b 628 alc_update_coef_idx(codec, 7, 0, 0x2030);
c9b58006 629 break;
f9423e7a 630 case 0x10ec0888:
4a79ba34 631 alc888_coef_init(codec);
f9423e7a 632 break;
bc9f98a9 633 }
4a79ba34
TI
634 break;
635 }
636}
637
35a39f98
TI
638/* get a primary headphone pin if available */
639static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
640{
641 if (spec->gen.autocfg.hp_pins[0])
642 return spec->gen.autocfg.hp_pins[0];
643 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
644 return spec->gen.autocfg.line_out_pins[0];
645 return 0;
646}
08c189f2 647
1d045db9 648/*
08c189f2 649 * Realtek SSID verification
1d045db9 650 */
42cf0d01 651
08c189f2
TI
652/* Could be any non-zero and even value. When used as fixup, tells
653 * the driver to ignore any present sku defines.
654 */
655#define ALC_FIXUP_SKU_IGNORE (2)
1a1455de 656
08c189f2
TI
657static void alc_fixup_sku_ignore(struct hda_codec *codec,
658 const struct hda_fixup *fix, int action)
1a1455de 659{
1a1455de 660 struct alc_spec *spec = codec->spec;
08c189f2
TI
661 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
662 spec->cdefine.fixup = 1;
663 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1a1455de 664 }
1a1455de
TI
665}
666
b5c6611f
ML
667static void alc_fixup_no_depop_delay(struct hda_codec *codec,
668 const struct hda_fixup *fix, int action)
669{
670 struct alc_spec *spec = codec->spec;
671
84d2dc3e 672 if (action == HDA_FIXUP_ACT_PROBE) {
b5c6611f 673 spec->no_depop_delay = 1;
84d2dc3e
ML
674 codec->depop_delay = 0;
675 }
b5c6611f
ML
676}
677
08c189f2 678static int alc_auto_parse_customize_define(struct hda_codec *codec)
4a79ba34 679{
08c189f2
TI
680 unsigned int ass, tmp, i;
681 unsigned nid = 0;
4a79ba34
TI
682 struct alc_spec *spec = codec->spec;
683
08c189f2 684 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
4a79ba34 685
08c189f2
TI
686 if (spec->cdefine.fixup) {
687 ass = spec->cdefine.sku_cfg;
688 if (ass == ALC_FIXUP_SKU_IGNORE)
689 return -1;
690 goto do_sku;
bb35febd
TI
691 }
692
5100cd07
TI
693 if (!codec->bus->pci)
694 return -1;
7639a06c 695 ass = codec->core.subsystem_id & 0xffff;
08c189f2
TI
696 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
697 goto do_sku;
4a79ba34 698
08c189f2 699 nid = 0x1d;
7639a06c 700 if (codec->core.vendor_id == 0x10ec0260)
08c189f2
TI
701 nid = 0x17;
702 ass = snd_hda_codec_get_pincfg(codec, nid);
42cf0d01 703
08c189f2 704 if (!(ass & 1)) {
4e76a883 705 codec_info(codec, "%s: SKU not ready 0x%08x\n",
7639a06c 706 codec->core.chip_name, ass);
08c189f2 707 return -1;
42cf0d01
DH
708 }
709
08c189f2
TI
710 /* check sum */
711 tmp = 0;
712 for (i = 1; i < 16; i++) {
713 if ((ass >> i) & 1)
714 tmp++;
ae8a60a5 715 }
08c189f2
TI
716 if (((ass >> 16) & 0xf) != tmp)
717 return -1;
ae8a60a5 718
da00c244
KY
719 spec->cdefine.port_connectivity = ass >> 30;
720 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
721 spec->cdefine.check_sum = (ass >> 16) & 0xf;
722 spec->cdefine.customization = ass >> 8;
723do_sku:
724 spec->cdefine.sku_cfg = ass;
725 spec->cdefine.external_amp = (ass & 0x38) >> 3;
726 spec->cdefine.platform_type = (ass & 0x4) >> 2;
727 spec->cdefine.swap = (ass & 0x2) >> 1;
728 spec->cdefine.override = ass & 0x1;
729
4e76a883 730 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
da00c244 731 nid, spec->cdefine.sku_cfg);
4e76a883 732 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
da00c244 733 spec->cdefine.port_connectivity);
4e76a883
TI
734 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
735 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
736 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
737 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
738 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
739 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
740 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
da00c244
KY
741
742 return 0;
743}
744
08c189f2
TI
745/* return the position of NID in the list, or -1 if not found */
746static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
747{
748 int i;
749 for (i = 0; i < nums; i++)
750 if (list[i] == nid)
751 return i;
752 return -1;
753}
1d045db9 754/* return true if the given NID is found in the list */
3af9ee6b
TI
755static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
756{
21268961 757 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
758}
759
4a79ba34
TI
760/* check subsystem ID and set up device-specific initialization;
761 * return 1 if initialized, 0 if invalid SSID
762 */
763/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
764 * 31 ~ 16 : Manufacture ID
765 * 15 ~ 8 : SKU ID
766 * 7 ~ 0 : Assembly ID
767 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
768 */
58c57cfa 769static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34
TI
770{
771 unsigned int ass, tmp, i;
772 unsigned nid;
773 struct alc_spec *spec = codec->spec;
774
90622917
DH
775 if (spec->cdefine.fixup) {
776 ass = spec->cdefine.sku_cfg;
777 if (ass == ALC_FIXUP_SKU_IGNORE)
778 return 0;
779 goto do_sku;
780 }
781
7639a06c 782 ass = codec->core.subsystem_id & 0xffff;
5100cd07
TI
783 if (codec->bus->pci &&
784 ass != codec->bus->pci->subsystem_device && (ass & 1))
4a79ba34
TI
785 goto do_sku;
786
787 /* invalid SSID, check the special NID pin defcfg instead */
788 /*
def319f9 789 * 31~30 : port connectivity
4a79ba34
TI
790 * 29~21 : reserve
791 * 20 : PCBEEP input
792 * 19~16 : Check sum (15:1)
793 * 15~1 : Custom
794 * 0 : override
795 */
796 nid = 0x1d;
7639a06c 797 if (codec->core.vendor_id == 0x10ec0260)
4a79ba34
TI
798 nid = 0x17;
799 ass = snd_hda_codec_get_pincfg(codec, nid);
4e76a883
TI
800 codec_dbg(codec,
801 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 802 ass, nid);
6227cdce 803 if (!(ass & 1))
4a79ba34
TI
804 return 0;
805 if ((ass >> 30) != 1) /* no physical connection */
806 return 0;
807
808 /* check sum */
809 tmp = 0;
810 for (i = 1; i < 16; i++) {
811 if ((ass >> i) & 1)
812 tmp++;
813 }
814 if (((ass >> 16) & 0xf) != tmp)
815 return 0;
816do_sku:
4e76a883 817 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
7639a06c 818 ass & 0xffff, codec->core.vendor_id);
4a79ba34
TI
819 /*
820 * 0 : override
821 * 1 : Swap Jack
822 * 2 : 0 --> Desktop, 1 --> Laptop
823 * 3~5 : External Amplifier control
824 * 7~6 : Reserved
825 */
826 tmp = (ass & 0x38) >> 3; /* external Amp control */
1c76aa5f
TI
827 if (spec->init_amp == ALC_INIT_UNDEFINED) {
828 switch (tmp) {
829 case 1:
5579cd6f 830 alc_setup_gpio(codec, 0x01);
1c76aa5f
TI
831 break;
832 case 3:
5579cd6f 833 alc_setup_gpio(codec, 0x02);
1c76aa5f
TI
834 break;
835 case 7:
2bdccfd2 836 alc_setup_gpio(codec, 0x04);
1c76aa5f
TI
837 break;
838 case 5:
839 default:
840 spec->init_amp = ALC_INIT_DEFAULT;
841 break;
842 }
bc9f98a9 843 }
ea1fb29a 844
8c427226 845 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
846 * when the external headphone out jack is plugged"
847 */
8c427226 848 if (!(ass & 0x8000))
4a79ba34 849 return 1;
c9b58006
KY
850 /*
851 * 10~8 : Jack location
852 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
853 * 14~13: Resvered
854 * 15 : 1 --> enable the function "Mute internal speaker
855 * when the external headphone out jack is plugged"
856 */
35a39f98 857 if (!alc_get_hp_pin(spec)) {
01d4825d 858 hda_nid_t nid;
c9b58006 859 tmp = (ass >> 11) & 0x3; /* HP to chassis */
58c57cfa 860 nid = ports[tmp];
08c189f2
TI
861 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
862 spec->gen.autocfg.line_outs))
3af9ee6b 863 return 1;
08c189f2 864 spec->gen.autocfg.hp_pins[0] = nid;
c9b58006 865 }
4a79ba34
TI
866 return 1;
867}
ea1fb29a 868
3e6179b8
TI
869/* Check the validity of ALC subsystem-id
870 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
871static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 872{
58c57cfa 873 if (!alc_subsystem_id(codec, ports)) {
4a79ba34 874 struct alc_spec *spec = codec->spec;
67791202
TI
875 if (spec->init_amp == ALC_INIT_UNDEFINED) {
876 codec_dbg(codec,
877 "realtek: Enable default setup for auto mode as fallback\n");
878 spec->init_amp = ALC_INIT_DEFAULT;
879 }
4a79ba34 880 }
21268961 881}
1a1455de 882
1d045db9 883/*
ef8ef5fb 884 */
f9e336f6 885
9d36a7dc
DH
886static void alc_fixup_inv_dmic(struct hda_codec *codec,
887 const struct hda_fixup *fix, int action)
125821ae
TI
888{
889 struct alc_spec *spec = codec->spec;
668d1e96 890
9d36a7dc 891 spec->gen.inv_dmic_split = 1;
6e72aa5f
TI
892}
893
e9edcee0 894
08c189f2 895static int alc_build_controls(struct hda_codec *codec)
1d045db9 896{
a5cb463a 897 int err;
e9427969 898
08c189f2
TI
899 err = snd_hda_gen_build_controls(codec);
900 if (err < 0)
901 return err;
1da177e4 902
1727a771 903 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
1c4a54b4 904 return 0;
a361d84b
KY
905}
906
a361d84b 907
df694daa 908/*
08c189f2 909 * Common callbacks
df694daa 910 */
a361d84b 911
c9af753f
TI
912static void alc_pre_init(struct hda_codec *codec)
913{
914 alc_fill_eapd_coef(codec);
915}
916
aeac1a0d
KY
917#define is_s3_resume(codec) \
918 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
c9af753f
TI
919#define is_s4_resume(codec) \
920 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
921
08c189f2 922static int alc_init(struct hda_codec *codec)
1d045db9
TI
923{
924 struct alc_spec *spec = codec->spec;
a361d84b 925
c9af753f
TI
926 /* hibernation resume needs the full chip initialization */
927 if (is_s4_resume(codec))
928 alc_pre_init(codec);
929
08c189f2
TI
930 if (spec->init_hook)
931 spec->init_hook(codec);
a361d84b 932
89781d08 933 spec->gen.skip_verbs = 1; /* applied in below */
607ca3bd 934 snd_hda_gen_init(codec);
08c189f2
TI
935 alc_fix_pll(codec);
936 alc_auto_init_amp(codec, spec->init_amp);
89781d08 937 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
3abf2f36 938
1727a771 939 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
a361d84b 940
1d045db9
TI
941 return 0;
942}
a361d84b 943
c3d9ca93
RD
944#define alc_free snd_hda_gen_free
945
946#ifdef CONFIG_PM
08c189f2 947static inline void alc_shutup(struct hda_codec *codec)
1d045db9
TI
948{
949 struct alc_spec *spec = codec->spec;
a361d84b 950
c7273bd6
TI
951 if (!snd_hda_get_bool_hint(codec, "shutup"))
952 return; /* disabled explicitly by hints */
953
08c189f2
TI
954 if (spec && spec->shutup)
955 spec->shutup(codec);
9bfb2844 956 else
c0ca5ece 957 alc_shutup_pins(codec);
1d045db9
TI
958}
959
08c189f2 960static void alc_power_eapd(struct hda_codec *codec)
1d045db9 961{
08c189f2 962 alc_auto_setup_eapd(codec, false);
1d045db9 963}
2134ea4f 964
08c189f2 965static int alc_suspend(struct hda_codec *codec)
1d045db9
TI
966{
967 struct alc_spec *spec = codec->spec;
08c189f2
TI
968 alc_shutup(codec);
969 if (spec && spec->power_hook)
970 spec->power_hook(codec);
a361d84b
KY
971 return 0;
972}
973
08c189f2 974static int alc_resume(struct hda_codec *codec)
1d045db9 975{
97a26570
KY
976 struct alc_spec *spec = codec->spec;
977
978 if (!spec->no_depop_delay)
979 msleep(150); /* to avoid pop noise */
08c189f2 980 codec->patch_ops.init(codec);
1a462be5 981 snd_hda_regmap_sync(codec);
08c189f2
TI
982 hda_call_check_power_status(codec, 0x01);
983 return 0;
1d045db9 984}
08c189f2 985#endif
f6a92248 986
1d045db9 987/*
1d045db9 988 */
08c189f2
TI
989static const struct hda_codec_ops alc_patch_ops = {
990 .build_controls = alc_build_controls,
991 .build_pcms = snd_hda_gen_build_pcms,
992 .init = alc_init,
993 .free = alc_free,
994 .unsol_event = snd_hda_jack_unsol_event,
995#ifdef CONFIG_PM
996 .resume = alc_resume,
08c189f2 997 .suspend = alc_suspend,
fce52a3b 998 .check_power_status = snd_hda_gen_check_power_status,
08c189f2 999#endif
08c189f2 1000};
f6a92248 1001
f53281e6 1002
ded255be 1003#define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
e01bf509 1004
e4770629 1005/*
4b016931 1006 * Rename codecs appropriately from COEF value or subvendor id
e4770629 1007 */
08c189f2
TI
1008struct alc_codec_rename_table {
1009 unsigned int vendor_id;
1010 unsigned short coef_mask;
1011 unsigned short coef_bits;
1012 const char *name;
1013};
84898e87 1014
4b016931
KY
1015struct alc_codec_rename_pci_table {
1016 unsigned int codec_vendor_id;
1017 unsigned short pci_subvendor;
1018 unsigned short pci_subdevice;
1019 const char *name;
1020};
1021
6b0f95c4 1022static const struct alc_codec_rename_table rename_tbl[] = {
e6e5f7ad 1023 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
08c189f2
TI
1024 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1025 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1026 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1027 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1028 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1029 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1030 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1031 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
e6e5f7ad 1032 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
08c189f2
TI
1033 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1034 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1035 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1036 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1037 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1038 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1039 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1040 { } /* terminator */
1041};
84898e87 1042
6b0f95c4 1043static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
4b016931
KY
1044 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1045 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1046 { 0x10ec0283, 0x1028, 0, "ALC3223" },
193177de 1047 { 0x10ec0288, 0x1028, 0, "ALC3263" },
4b016931 1048 { 0x10ec0292, 0x1028, 0, "ALC3226" },
193177de 1049 { 0x10ec0293, 0x1028, 0, "ALC3235" },
4b016931
KY
1050 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1051 { 0x10ec0668, 0x1028, 0, "ALC3661" },
e6e5f7ad
KY
1052 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1053 { 0x10ec0899, 0x1028, 0, "ALC3861" },
2c674fac 1054 { 0x10ec0298, 0x1028, 0, "ALC3266" },
736f20a7 1055 { 0x10ec0236, 0x1028, 0, "ALC3204" },
82324502 1056 { 0x10ec0256, 0x1028, 0, "ALC3246" },
4231430d 1057 { 0x10ec0225, 0x1028, 0, "ALC3253" },
7d727869 1058 { 0x10ec0295, 0x1028, 0, "ALC3254" },
28f1f9b2 1059 { 0x10ec0299, 0x1028, 0, "ALC3271" },
e6e5f7ad
KY
1060 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1061 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1062 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1063 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1064 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1065 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1066 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1067 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1068 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1069 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1070 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
4b016931
KY
1071 { } /* terminator */
1072};
1073
08c189f2 1074static int alc_codec_rename_from_preset(struct hda_codec *codec)
1d045db9 1075{
08c189f2 1076 const struct alc_codec_rename_table *p;
4b016931 1077 const struct alc_codec_rename_pci_table *q;
60db6b53 1078
08c189f2 1079 for (p = rename_tbl; p->vendor_id; p++) {
7639a06c 1080 if (p->vendor_id != codec->core.vendor_id)
08c189f2
TI
1081 continue;
1082 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1083 return alc_codec_rename(codec, p->name);
1d045db9 1084 }
4b016931 1085
5100cd07
TI
1086 if (!codec->bus->pci)
1087 return 0;
4b016931 1088 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
7639a06c 1089 if (q->codec_vendor_id != codec->core.vendor_id)
4b016931
KY
1090 continue;
1091 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1092 continue;
1093 if (!q->pci_subdevice ||
1094 q->pci_subdevice == codec->bus->pci->subsystem_device)
1095 return alc_codec_rename(codec, q->name);
1096 }
1097
08c189f2 1098 return 0;
1d045db9 1099}
f53281e6 1100
e4770629 1101
1d045db9
TI
1102/*
1103 * Digital-beep handlers
1104 */
1105#ifdef CONFIG_SND_HDA_INPUT_BEEP
fea80fae
TI
1106
1107/* additional beep mixers; private_value will be overwritten */
1108static const struct snd_kcontrol_new alc_beep_mixer[] = {
1109 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1110 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1111};
1112
1113/* set up and create beep controls */
1114static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1115 int idx, int dir)
1116{
1117 struct snd_kcontrol_new *knew;
1118 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1119 int i;
1120
1121 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1122 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1123 &alc_beep_mixer[i]);
1124 if (!knew)
1125 return -ENOMEM;
1126 knew->private_value = beep_amp;
1127 }
1128 return 0;
1129}
84898e87 1130
6317e5eb 1131static const struct snd_pci_quirk beep_allow_list[] = {
7110005e 1132 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
a4b7f21d 1133 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1d045db9 1134 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
8554ee40 1135 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1d045db9
TI
1136 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1137 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1138 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
78f8baf1 1139 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1d045db9 1140 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
6317e5eb 1141 /* denylist -- no beep available */
051c78af
TI
1142 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1143 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1d045db9 1144 {}
fe3eb0a7
KY
1145};
1146
1d045db9
TI
1147static inline int has_cdefine_beep(struct hda_codec *codec)
1148{
1149 struct alc_spec *spec = codec->spec;
1150 const struct snd_pci_quirk *q;
6317e5eb 1151 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1d045db9
TI
1152 if (q)
1153 return q->value;
1154 return spec->cdefine.enable_pcbeep;
1155}
1156#else
fea80fae 1157#define set_beep_amp(spec, nid, idx, dir) 0
1d045db9
TI
1158#define has_cdefine_beep(codec) 0
1159#endif
84898e87 1160
1d045db9
TI
1161/* parse the BIOS configuration and set up the alc_spec */
1162/* return 1 if successful, 0 if the proper config is not found,
1163 * or a negative error code
1164 */
3e6179b8
TI
1165static int alc_parse_auto_config(struct hda_codec *codec,
1166 const hda_nid_t *ignore_nids,
1167 const hda_nid_t *ssid_nids)
1d045db9
TI
1168{
1169 struct alc_spec *spec = codec->spec;
08c189f2 1170 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1d045db9 1171 int err;
26f5df26 1172
53c334ad
TI
1173 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1174 spec->parse_flags);
1d045db9
TI
1175 if (err < 0)
1176 return err;
3e6179b8
TI
1177
1178 if (ssid_nids)
1179 alc_ssid_check(codec, ssid_nids);
64154835 1180
08c189f2
TI
1181 err = snd_hda_gen_parse_auto_config(codec, cfg);
1182 if (err < 0)
1183 return err;
070cff4c 1184
1d045db9 1185 return 1;
60db6b53 1186}
f6a92248 1187
3de95173
TI
1188/* common preparation job for alc_spec */
1189static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1190{
1191 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1192 int err;
1193
1194 if (!spec)
1195 return -ENOMEM;
1196 codec->spec = spec;
08c189f2
TI
1197 snd_hda_gen_spec_init(&spec->gen);
1198 spec->gen.mixer_nid = mixer_nid;
1199 spec->gen.own_eapd_ctl = 1;
1098b7c2 1200 codec->single_adc_amp = 1;
08c189f2
TI
1201 /* FIXME: do we need this for all Realtek codec models? */
1202 codec->spdif_status_reset = 1;
a6e7d0a4 1203 codec->forced_resume = 1;
225068ab 1204 codec->patch_ops = alc_patch_ops;
b837a9f5 1205 mutex_init(&spec->coef_mutex);
3de95173
TI
1206
1207 err = alc_codec_rename_from_preset(codec);
1208 if (err < 0) {
1209 kfree(spec);
1210 return err;
1211 }
1212 return 0;
1213}
1214
3e6179b8
TI
1215static int alc880_parse_auto_config(struct hda_codec *codec)
1216{
1217 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
7d7eb9ea 1218 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3e6179b8
TI
1219 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1220}
1221
ee3b2969
TI
1222/*
1223 * ALC880 fix-ups
1224 */
1225enum {
411225a0 1226 ALC880_FIXUP_GPIO1,
ee3b2969
TI
1227 ALC880_FIXUP_GPIO2,
1228 ALC880_FIXUP_MEDION_RIM,
dc6af52d 1229 ALC880_FIXUP_LG,
db8a38e5 1230 ALC880_FIXUP_LG_LW25,
f02aab5d 1231 ALC880_FIXUP_W810,
27e917f8 1232 ALC880_FIXUP_EAPD_COEF,
b9368f5c 1233 ALC880_FIXUP_TCL_S700,
cf5a2279
TI
1234 ALC880_FIXUP_VOL_KNOB,
1235 ALC880_FIXUP_FUJITSU,
ba533818 1236 ALC880_FIXUP_F1734,
817de92f 1237 ALC880_FIXUP_UNIWILL,
967b88c4 1238 ALC880_FIXUP_UNIWILL_DIG,
96e225f6 1239 ALC880_FIXUP_Z71V,
487a588d 1240 ALC880_FIXUP_ASUS_W5A,
67b6ec31
TI
1241 ALC880_FIXUP_3ST_BASE,
1242 ALC880_FIXUP_3ST,
1243 ALC880_FIXUP_3ST_DIG,
1244 ALC880_FIXUP_5ST_BASE,
1245 ALC880_FIXUP_5ST,
1246 ALC880_FIXUP_5ST_DIG,
1247 ALC880_FIXUP_6ST_BASE,
1248 ALC880_FIXUP_6ST,
1249 ALC880_FIXUP_6ST_DIG,
5397145f 1250 ALC880_FIXUP_6ST_AUTOMUTE,
ee3b2969
TI
1251};
1252
cf5a2279
TI
1253/* enable the volume-knob widget support on NID 0x21 */
1254static void alc880_fixup_vol_knob(struct hda_codec *codec,
1727a771 1255 const struct hda_fixup *fix, int action)
cf5a2279 1256{
1727a771 1257 if (action == HDA_FIXUP_ACT_PROBE)
62f949bf
TI
1258 snd_hda_jack_detect_enable_callback(codec, 0x21,
1259 alc_update_knob_master);
cf5a2279
TI
1260}
1261
1727a771 1262static const struct hda_fixup alc880_fixups[] = {
411225a0 1263 [ALC880_FIXUP_GPIO1] = {
5579cd6f
TI
1264 .type = HDA_FIXUP_FUNC,
1265 .v.func = alc_fixup_gpio1,
411225a0 1266 },
ee3b2969 1267 [ALC880_FIXUP_GPIO2] = {
5579cd6f
TI
1268 .type = HDA_FIXUP_FUNC,
1269 .v.func = alc_fixup_gpio2,
ee3b2969
TI
1270 },
1271 [ALC880_FIXUP_MEDION_RIM] = {
1727a771 1272 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1273 .v.verbs = (const struct hda_verb[]) {
1274 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1275 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1276 { }
1277 },
1278 .chained = true,
1279 .chain_id = ALC880_FIXUP_GPIO2,
1280 },
dc6af52d 1281 [ALC880_FIXUP_LG] = {
1727a771
TI
1282 .type = HDA_FIXUP_PINS,
1283 .v.pins = (const struct hda_pintbl[]) {
dc6af52d
TI
1284 /* disable bogus unused pins */
1285 { 0x16, 0x411111f0 },
1286 { 0x18, 0x411111f0 },
1287 { 0x1a, 0x411111f0 },
1288 { }
1289 }
1290 },
db8a38e5
TI
1291 [ALC880_FIXUP_LG_LW25] = {
1292 .type = HDA_FIXUP_PINS,
1293 .v.pins = (const struct hda_pintbl[]) {
1294 { 0x1a, 0x0181344f }, /* line-in */
1295 { 0x1b, 0x0321403f }, /* headphone */
1296 { }
1297 }
1298 },
f02aab5d 1299 [ALC880_FIXUP_W810] = {
1727a771
TI
1300 .type = HDA_FIXUP_PINS,
1301 .v.pins = (const struct hda_pintbl[]) {
f02aab5d
TI
1302 /* disable bogus unused pins */
1303 { 0x17, 0x411111f0 },
1304 { }
1305 },
1306 .chained = true,
1307 .chain_id = ALC880_FIXUP_GPIO2,
1308 },
27e917f8 1309 [ALC880_FIXUP_EAPD_COEF] = {
1727a771 1310 .type = HDA_FIXUP_VERBS,
27e917f8
TI
1311 .v.verbs = (const struct hda_verb[]) {
1312 /* change to EAPD mode */
1313 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1314 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1315 {}
1316 },
1317 },
b9368f5c 1318 [ALC880_FIXUP_TCL_S700] = {
1727a771 1319 .type = HDA_FIXUP_VERBS,
b9368f5c
TI
1320 .v.verbs = (const struct hda_verb[]) {
1321 /* change to EAPD mode */
1322 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1323 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1324 {}
1325 },
1326 .chained = true,
1327 .chain_id = ALC880_FIXUP_GPIO2,
1328 },
cf5a2279 1329 [ALC880_FIXUP_VOL_KNOB] = {
1727a771 1330 .type = HDA_FIXUP_FUNC,
cf5a2279
TI
1331 .v.func = alc880_fixup_vol_knob,
1332 },
1333 [ALC880_FIXUP_FUJITSU] = {
1334 /* override all pins as BIOS on old Amilo is broken */
1727a771
TI
1335 .type = HDA_FIXUP_PINS,
1336 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1337 { 0x14, 0x0121401f }, /* HP */
cf5a2279
TI
1338 { 0x15, 0x99030120 }, /* speaker */
1339 { 0x16, 0x99030130 }, /* bass speaker */
1340 { 0x17, 0x411111f0 }, /* N/A */
1341 { 0x18, 0x411111f0 }, /* N/A */
1342 { 0x19, 0x01a19950 }, /* mic-in */
1343 { 0x1a, 0x411111f0 }, /* N/A */
1344 { 0x1b, 0x411111f0 }, /* N/A */
1345 { 0x1c, 0x411111f0 }, /* N/A */
1346 { 0x1d, 0x411111f0 }, /* N/A */
1347 { 0x1e, 0x01454140 }, /* SPDIF out */
1348 { }
1349 },
1350 .chained = true,
1351 .chain_id = ALC880_FIXUP_VOL_KNOB,
1352 },
ba533818
TI
1353 [ALC880_FIXUP_F1734] = {
1354 /* almost compatible with FUJITSU, but no bass and SPDIF */
1727a771
TI
1355 .type = HDA_FIXUP_PINS,
1356 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1357 { 0x14, 0x0121401f }, /* HP */
ba533818
TI
1358 { 0x15, 0x99030120 }, /* speaker */
1359 { 0x16, 0x411111f0 }, /* N/A */
1360 { 0x17, 0x411111f0 }, /* N/A */
1361 { 0x18, 0x411111f0 }, /* N/A */
1362 { 0x19, 0x01a19950 }, /* mic-in */
1363 { 0x1a, 0x411111f0 }, /* N/A */
1364 { 0x1b, 0x411111f0 }, /* N/A */
1365 { 0x1c, 0x411111f0 }, /* N/A */
1366 { 0x1d, 0x411111f0 }, /* N/A */
1367 { 0x1e, 0x411111f0 }, /* N/A */
1368 { }
1369 },
1370 .chained = true,
1371 .chain_id = ALC880_FIXUP_VOL_KNOB,
1372 },
817de92f
TI
1373 [ALC880_FIXUP_UNIWILL] = {
1374 /* need to fix HP and speaker pins to be parsed correctly */
1727a771
TI
1375 .type = HDA_FIXUP_PINS,
1376 .v.pins = (const struct hda_pintbl[]) {
817de92f
TI
1377 { 0x14, 0x0121411f }, /* HP */
1378 { 0x15, 0x99030120 }, /* speaker */
1379 { 0x16, 0x99030130 }, /* bass speaker */
1380 { }
1381 },
1382 },
967b88c4 1383 [ALC880_FIXUP_UNIWILL_DIG] = {
1727a771
TI
1384 .type = HDA_FIXUP_PINS,
1385 .v.pins = (const struct hda_pintbl[]) {
967b88c4
TI
1386 /* disable bogus unused pins */
1387 { 0x17, 0x411111f0 },
1388 { 0x19, 0x411111f0 },
1389 { 0x1b, 0x411111f0 },
1390 { 0x1f, 0x411111f0 },
1391 { }
1392 }
1393 },
96e225f6 1394 [ALC880_FIXUP_Z71V] = {
1727a771
TI
1395 .type = HDA_FIXUP_PINS,
1396 .v.pins = (const struct hda_pintbl[]) {
96e225f6
TI
1397 /* set up the whole pins as BIOS is utterly broken */
1398 { 0x14, 0x99030120 }, /* speaker */
1399 { 0x15, 0x0121411f }, /* HP */
1400 { 0x16, 0x411111f0 }, /* N/A */
1401 { 0x17, 0x411111f0 }, /* N/A */
1402 { 0x18, 0x01a19950 }, /* mic-in */
1403 { 0x19, 0x411111f0 }, /* N/A */
1404 { 0x1a, 0x01813031 }, /* line-in */
1405 { 0x1b, 0x411111f0 }, /* N/A */
1406 { 0x1c, 0x411111f0 }, /* N/A */
1407 { 0x1d, 0x411111f0 }, /* N/A */
1408 { 0x1e, 0x0144111e }, /* SPDIF */
1409 { }
1410 }
1411 },
487a588d
TI
1412 [ALC880_FIXUP_ASUS_W5A] = {
1413 .type = HDA_FIXUP_PINS,
1414 .v.pins = (const struct hda_pintbl[]) {
1415 /* set up the whole pins as BIOS is utterly broken */
1416 { 0x14, 0x0121411f }, /* HP */
1417 { 0x15, 0x411111f0 }, /* N/A */
1418 { 0x16, 0x411111f0 }, /* N/A */
1419 { 0x17, 0x411111f0 }, /* N/A */
1420 { 0x18, 0x90a60160 }, /* mic */
1421 { 0x19, 0x411111f0 }, /* N/A */
1422 { 0x1a, 0x411111f0 }, /* N/A */
1423 { 0x1b, 0x411111f0 }, /* N/A */
1424 { 0x1c, 0x411111f0 }, /* N/A */
1425 { 0x1d, 0x411111f0 }, /* N/A */
1426 { 0x1e, 0xb743111e }, /* SPDIF out */
1427 { }
1428 },
1429 .chained = true,
1430 .chain_id = ALC880_FIXUP_GPIO1,
1431 },
67b6ec31 1432 [ALC880_FIXUP_3ST_BASE] = {
1727a771
TI
1433 .type = HDA_FIXUP_PINS,
1434 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1435 { 0x14, 0x01014010 }, /* line-out */
1436 { 0x15, 0x411111f0 }, /* N/A */
1437 { 0x16, 0x411111f0 }, /* N/A */
1438 { 0x17, 0x411111f0 }, /* N/A */
1439 { 0x18, 0x01a19c30 }, /* mic-in */
1440 { 0x19, 0x0121411f }, /* HP */
1441 { 0x1a, 0x01813031 }, /* line-in */
1442 { 0x1b, 0x02a19c40 }, /* front-mic */
1443 { 0x1c, 0x411111f0 }, /* N/A */
1444 { 0x1d, 0x411111f0 }, /* N/A */
1445 /* 0x1e is filled in below */
1446 { 0x1f, 0x411111f0 }, /* N/A */
1447 { }
1448 }
1449 },
1450 [ALC880_FIXUP_3ST] = {
1727a771
TI
1451 .type = HDA_FIXUP_PINS,
1452 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1453 { 0x1e, 0x411111f0 }, /* N/A */
1454 { }
1455 },
1456 .chained = true,
1457 .chain_id = ALC880_FIXUP_3ST_BASE,
1458 },
1459 [ALC880_FIXUP_3ST_DIG] = {
1727a771
TI
1460 .type = HDA_FIXUP_PINS,
1461 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1462 { 0x1e, 0x0144111e }, /* SPDIF */
1463 { }
1464 },
1465 .chained = true,
1466 .chain_id = ALC880_FIXUP_3ST_BASE,
1467 },
1468 [ALC880_FIXUP_5ST_BASE] = {
1727a771
TI
1469 .type = HDA_FIXUP_PINS,
1470 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1471 { 0x14, 0x01014010 }, /* front */
1472 { 0x15, 0x411111f0 }, /* N/A */
1473 { 0x16, 0x01011411 }, /* CLFE */
1474 { 0x17, 0x01016412 }, /* surr */
1475 { 0x18, 0x01a19c30 }, /* mic-in */
1476 { 0x19, 0x0121411f }, /* HP */
1477 { 0x1a, 0x01813031 }, /* line-in */
1478 { 0x1b, 0x02a19c40 }, /* front-mic */
1479 { 0x1c, 0x411111f0 }, /* N/A */
1480 { 0x1d, 0x411111f0 }, /* N/A */
1481 /* 0x1e is filled in below */
1482 { 0x1f, 0x411111f0 }, /* N/A */
1483 { }
1484 }
1485 },
1486 [ALC880_FIXUP_5ST] = {
1727a771
TI
1487 .type = HDA_FIXUP_PINS,
1488 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1489 { 0x1e, 0x411111f0 }, /* N/A */
1490 { }
1491 },
1492 .chained = true,
1493 .chain_id = ALC880_FIXUP_5ST_BASE,
1494 },
1495 [ALC880_FIXUP_5ST_DIG] = {
1727a771
TI
1496 .type = HDA_FIXUP_PINS,
1497 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1498 { 0x1e, 0x0144111e }, /* SPDIF */
1499 { }
1500 },
1501 .chained = true,
1502 .chain_id = ALC880_FIXUP_5ST_BASE,
1503 },
1504 [ALC880_FIXUP_6ST_BASE] = {
1727a771
TI
1505 .type = HDA_FIXUP_PINS,
1506 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1507 { 0x14, 0x01014010 }, /* front */
1508 { 0x15, 0x01016412 }, /* surr */
1509 { 0x16, 0x01011411 }, /* CLFE */
1510 { 0x17, 0x01012414 }, /* side */
1511 { 0x18, 0x01a19c30 }, /* mic-in */
1512 { 0x19, 0x02a19c40 }, /* front-mic */
1513 { 0x1a, 0x01813031 }, /* line-in */
1514 { 0x1b, 0x0121411f }, /* HP */
1515 { 0x1c, 0x411111f0 }, /* N/A */
1516 { 0x1d, 0x411111f0 }, /* N/A */
1517 /* 0x1e is filled in below */
1518 { 0x1f, 0x411111f0 }, /* N/A */
1519 { }
1520 }
1521 },
1522 [ALC880_FIXUP_6ST] = {
1727a771
TI
1523 .type = HDA_FIXUP_PINS,
1524 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1525 { 0x1e, 0x411111f0 }, /* N/A */
1526 { }
1527 },
1528 .chained = true,
1529 .chain_id = ALC880_FIXUP_6ST_BASE,
1530 },
1531 [ALC880_FIXUP_6ST_DIG] = {
1727a771
TI
1532 .type = HDA_FIXUP_PINS,
1533 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1534 { 0x1e, 0x0144111e }, /* SPDIF */
1535 { }
1536 },
1537 .chained = true,
1538 .chain_id = ALC880_FIXUP_6ST_BASE,
1539 },
5397145f
TI
1540 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1541 .type = HDA_FIXUP_PINS,
1542 .v.pins = (const struct hda_pintbl[]) {
1543 { 0x1b, 0x0121401f }, /* HP with jack detect */
1544 { }
1545 },
1546 .chained_before = true,
1547 .chain_id = ALC880_FIXUP_6ST_BASE,
1548 },
ee3b2969
TI
1549};
1550
1551static const struct snd_pci_quirk alc880_fixup_tbl[] = {
f02aab5d 1552 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
487a588d 1553 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
96e225f6 1554 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
29e3fdcc 1555 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
6538de03 1556 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
29e3fdcc 1557 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
27e917f8 1558 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
967b88c4 1559 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
ba533818 1560 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
817de92f 1561 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
7833c7e8 1562 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
f02aab5d 1563 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
ee3b2969 1564 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
5397145f 1565 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
a161574e 1566 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
cf5a2279 1567 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
ba533818 1568 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
cf5a2279 1569 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
dc6af52d
TI
1570 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1571 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1572 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
db8a38e5 1573 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
b9368f5c 1574 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
67b6ec31
TI
1575
1576 /* Below is the copied entries from alc880_quirks.c.
1577 * It's not quite sure whether BIOS sets the correct pin-config table
1578 * on these machines, thus they are kept to be compatible with
1579 * the old static quirks. Once when it's confirmed to work without
1580 * these overrides, it'd be better to remove.
1581 */
1582 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1583 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1584 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1585 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1586 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1587 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1588 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1589 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1590 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1591 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1592 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1593 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1594 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1595 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1596 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1597 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1598 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1599 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1600 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1601 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1602 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1603 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1604 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1605 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1607 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1613 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1614 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1615 /* default Intel */
1616 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1617 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1618 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1619 {}
1620};
1621
1727a771 1622static const struct hda_model_fixup alc880_fixup_models[] = {
67b6ec31
TI
1623 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1624 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1625 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1626 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1627 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1628 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
5397145f 1629 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
ee3b2969
TI
1630 {}
1631};
1632
1633
1d045db9
TI
1634/*
1635 * OK, here we have finally the patch for ALC880
1636 */
1d045db9 1637static int patch_alc880(struct hda_codec *codec)
60db6b53 1638{
1d045db9 1639 struct alc_spec *spec;
1d045db9 1640 int err;
f6a92248 1641
3de95173
TI
1642 err = alc_alloc_spec(codec, 0x0b);
1643 if (err < 0)
1644 return err;
64154835 1645
3de95173 1646 spec = codec->spec;
08c189f2 1647 spec->gen.need_dac_fix = 1;
7504b6cd 1648 spec->gen.beep_nid = 0x01;
f53281e6 1649
225068ab
TI
1650 codec->patch_ops.unsol_event = alc880_unsol_event;
1651
c9af753f
TI
1652 alc_pre_init(codec);
1653
1727a771 1654 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
67b6ec31 1655 alc880_fixups);
1727a771 1656 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ee3b2969 1657
67b6ec31
TI
1658 /* automatic parse from the BIOS config */
1659 err = alc880_parse_auto_config(codec);
1660 if (err < 0)
1661 goto error;
fe3eb0a7 1662
fea80fae
TI
1663 if (!spec->gen.no_analog) {
1664 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1665 if (err < 0)
1666 goto error;
1667 }
f53281e6 1668
1727a771 1669 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1670
1d045db9 1671 return 0;
e16fb6d1
TI
1672
1673 error:
1674 alc_free(codec);
1675 return err;
226b1ec8
KY
1676}
1677
1d045db9 1678
60db6b53 1679/*
1d045db9 1680 * ALC260 support
60db6b53 1681 */
1d045db9 1682static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 1683{
1d045db9 1684 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
1685 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1686 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
1687}
1688
1d045db9
TI
1689/*
1690 * Pin config fixes
1691 */
1692enum {
ca8f0424
TI
1693 ALC260_FIXUP_HP_DC5750,
1694 ALC260_FIXUP_HP_PIN_0F,
1695 ALC260_FIXUP_COEF,
15317ab2 1696 ALC260_FIXUP_GPIO1,
20f7d928
TI
1697 ALC260_FIXUP_GPIO1_TOGGLE,
1698 ALC260_FIXUP_REPLACER,
0a1c4fa2 1699 ALC260_FIXUP_HP_B1900,
118cb4a4 1700 ALC260_FIXUP_KN1,
39aedee7 1701 ALC260_FIXUP_FSC_S7020,
5ebd3bbd 1702 ALC260_FIXUP_FSC_S7020_JWSE,
d08c5ef2 1703 ALC260_FIXUP_VAIO_PINS,
1d045db9
TI
1704};
1705
20f7d928
TI
1706static void alc260_gpio1_automute(struct hda_codec *codec)
1707{
1708 struct alc_spec *spec = codec->spec;
aaf312de
TI
1709
1710 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
20f7d928
TI
1711}
1712
1713static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1727a771 1714 const struct hda_fixup *fix, int action)
20f7d928
TI
1715{
1716 struct alc_spec *spec = codec->spec;
1727a771 1717 if (action == HDA_FIXUP_ACT_PROBE) {
20f7d928
TI
1718 /* although the machine has only one output pin, we need to
1719 * toggle GPIO1 according to the jack state
1720 */
08c189f2
TI
1721 spec->gen.automute_hook = alc260_gpio1_automute;
1722 spec->gen.detect_hp = 1;
1723 spec->gen.automute_speaker = 1;
1724 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
62f949bf 1725 snd_hda_jack_detect_enable_callback(codec, 0x0f,
08c189f2 1726 snd_hda_gen_hp_automute);
5579cd6f 1727 alc_setup_gpio(codec, 0x01);
20f7d928
TI
1728 }
1729}
1730
118cb4a4 1731static void alc260_fixup_kn1(struct hda_codec *codec,
1727a771 1732 const struct hda_fixup *fix, int action)
118cb4a4
TI
1733{
1734 struct alc_spec *spec = codec->spec;
1727a771 1735 static const struct hda_pintbl pincfgs[] = {
118cb4a4
TI
1736 { 0x0f, 0x02214000 }, /* HP/speaker */
1737 { 0x12, 0x90a60160 }, /* int mic */
1738 { 0x13, 0x02a19000 }, /* ext mic */
1739 { 0x18, 0x01446000 }, /* SPDIF out */
1740 /* disable bogus I/O pins */
1741 { 0x10, 0x411111f0 },
1742 { 0x11, 0x411111f0 },
1743 { 0x14, 0x411111f0 },
1744 { 0x15, 0x411111f0 },
1745 { 0x16, 0x411111f0 },
1746 { 0x17, 0x411111f0 },
1747 { 0x19, 0x411111f0 },
1748 { }
1749 };
1750
1751 switch (action) {
1727a771
TI
1752 case HDA_FIXUP_ACT_PRE_PROBE:
1753 snd_hda_apply_pincfgs(codec, pincfgs);
118cb4a4
TI
1754 spec->init_amp = ALC_INIT_NONE;
1755 break;
1756 }
1757}
1758
39aedee7
TI
1759static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1760 const struct hda_fixup *fix, int action)
1761{
1762 struct alc_spec *spec = codec->spec;
1c76aa5f 1763 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5ebd3bbd
TI
1764 spec->init_amp = ALC_INIT_NONE;
1765}
39aedee7 1766
5ebd3bbd
TI
1767static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1768 const struct hda_fixup *fix, int action)
1769{
1770 struct alc_spec *spec = codec->spec;
1771 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
f811c3cf 1772 spec->gen.add_jack_modes = 1;
5ebd3bbd 1773 spec->gen.hp_mic = 1;
e6e0ee50 1774 }
39aedee7
TI
1775}
1776
1727a771 1777static const struct hda_fixup alc260_fixups[] = {
ca8f0424 1778 [ALC260_FIXUP_HP_DC5750] = {
1727a771
TI
1779 .type = HDA_FIXUP_PINS,
1780 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1781 { 0x11, 0x90130110 }, /* speaker */
1782 { }
1783 }
1784 },
ca8f0424 1785 [ALC260_FIXUP_HP_PIN_0F] = {
1727a771
TI
1786 .type = HDA_FIXUP_PINS,
1787 .v.pins = (const struct hda_pintbl[]) {
ca8f0424
TI
1788 { 0x0f, 0x01214000 }, /* HP */
1789 { }
1790 }
1791 },
1792 [ALC260_FIXUP_COEF] = {
1727a771 1793 .type = HDA_FIXUP_VERBS,
ca8f0424 1794 .v.verbs = (const struct hda_verb[]) {
e30cf2d2
RM
1795 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1796 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
ca8f0424
TI
1797 { }
1798 },
ca8f0424 1799 },
15317ab2 1800 [ALC260_FIXUP_GPIO1] = {
5579cd6f
TI
1801 .type = HDA_FIXUP_FUNC,
1802 .v.func = alc_fixup_gpio1,
15317ab2 1803 },
20f7d928 1804 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727a771 1805 .type = HDA_FIXUP_FUNC,
20f7d928
TI
1806 .v.func = alc260_fixup_gpio1_toggle,
1807 .chained = true,
1808 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1809 },
1810 [ALC260_FIXUP_REPLACER] = {
1727a771 1811 .type = HDA_FIXUP_VERBS,
20f7d928 1812 .v.verbs = (const struct hda_verb[]) {
192a98e2
TI
1813 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1814 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
20f7d928
TI
1815 { }
1816 },
1817 .chained = true,
1818 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1819 },
0a1c4fa2 1820 [ALC260_FIXUP_HP_B1900] = {
1727a771 1821 .type = HDA_FIXUP_FUNC,
0a1c4fa2
TI
1822 .v.func = alc260_fixup_gpio1_toggle,
1823 .chained = true,
1824 .chain_id = ALC260_FIXUP_COEF,
118cb4a4
TI
1825 },
1826 [ALC260_FIXUP_KN1] = {
1727a771 1827 .type = HDA_FIXUP_FUNC,
118cb4a4
TI
1828 .v.func = alc260_fixup_kn1,
1829 },
39aedee7
TI
1830 [ALC260_FIXUP_FSC_S7020] = {
1831 .type = HDA_FIXUP_FUNC,
1832 .v.func = alc260_fixup_fsc_s7020,
1833 },
5ebd3bbd
TI
1834 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1835 .type = HDA_FIXUP_FUNC,
1836 .v.func = alc260_fixup_fsc_s7020_jwse,
1837 .chained = true,
1838 .chain_id = ALC260_FIXUP_FSC_S7020,
1839 },
d08c5ef2
TI
1840 [ALC260_FIXUP_VAIO_PINS] = {
1841 .type = HDA_FIXUP_PINS,
1842 .v.pins = (const struct hda_pintbl[]) {
1843 /* Pin configs are missing completely on some VAIOs */
1844 { 0x0f, 0x01211020 },
1845 { 0x10, 0x0001003f },
1846 { 0x11, 0x411111f0 },
1847 { 0x12, 0x01a15930 },
1848 { 0x13, 0x411111f0 },
1849 { 0x14, 0x411111f0 },
1850 { 0x15, 0x411111f0 },
1851 { 0x16, 0x411111f0 },
1852 { 0x17, 0x411111f0 },
1853 { 0x18, 0x411111f0 },
1854 { 0x19, 0x411111f0 },
1855 { }
1856 }
1857 },
1d045db9
TI
1858};
1859
1860static const struct snd_pci_quirk alc260_fixup_tbl[] = {
15317ab2 1861 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
ca8f0424 1862 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
15317ab2 1863 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
ca8f0424 1864 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
0a1c4fa2 1865 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
d08c5ef2 1866 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
0f5a5b85 1867 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
39aedee7 1868 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
b1f58085 1869 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
118cb4a4 1870 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
20f7d928 1871 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
ca8f0424 1872 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1d045db9
TI
1873 {}
1874};
1875
5ebd3bbd
TI
1876static const struct hda_model_fixup alc260_fixup_models[] = {
1877 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1878 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1879 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1880 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1881 {}
1882};
1883
1d045db9
TI
1884/*
1885 */
1d045db9 1886static int patch_alc260(struct hda_codec *codec)
977ddd6b 1887{
1d045db9 1888 struct alc_spec *spec;
c3c2c9e7 1889 int err;
1d045db9 1890
3de95173
TI
1891 err = alc_alloc_spec(codec, 0x07);
1892 if (err < 0)
1893 return err;
1d045db9 1894
3de95173 1895 spec = codec->spec;
ea46c3c8
TI
1896 /* as quite a few machines require HP amp for speaker outputs,
1897 * it's easier to enable it unconditionally; even if it's unneeded,
1898 * it's almost harmless.
1899 */
1900 spec->gen.prefer_hp_amp = 1;
7504b6cd 1901 spec->gen.beep_nid = 0x01;
1d045db9 1902
225068ab
TI
1903 spec->shutup = alc_eapd_shutup;
1904
c9af753f
TI
1905 alc_pre_init(codec);
1906
5ebd3bbd
TI
1907 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1908 alc260_fixups);
1727a771 1909 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
977ddd6b 1910
c3c2c9e7
TI
1911 /* automatic parse from the BIOS config */
1912 err = alc260_parse_auto_config(codec);
1913 if (err < 0)
1914 goto error;
977ddd6b 1915
fea80fae
TI
1916 if (!spec->gen.no_analog) {
1917 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1918 if (err < 0)
1919 goto error;
1920 }
977ddd6b 1921
1727a771 1922 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1923
1d045db9 1924 return 0;
e16fb6d1
TI
1925
1926 error:
1927 alc_free(codec);
1928 return err;
6981d184
TI
1929}
1930
1d045db9
TI
1931
1932/*
1933 * ALC882/883/885/888/889 support
1934 *
1935 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1936 * configuration. Each pin widget can choose any input DACs and a mixer.
1937 * Each ADC is connected from a mixer of all inputs. This makes possible
1938 * 6-channel independent captures.
1939 *
1940 * In addition, an independent DAC for the multi-playback (not used in this
1941 * driver yet).
1942 */
1d045db9
TI
1943
1944/*
1945 * Pin config fixes
1946 */
ff818c24 1947enum {
5c0ebfbe
TI
1948 ALC882_FIXUP_ABIT_AW9D_MAX,
1949 ALC882_FIXUP_LENOVO_Y530,
1950 ALC882_FIXUP_PB_M5210,
1951 ALC882_FIXUP_ACER_ASPIRE_7736,
1952 ALC882_FIXUP_ASUS_W90V,
8f239214 1953 ALC889_FIXUP_CD,
b2c53e20 1954 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
5c0ebfbe 1955 ALC889_FIXUP_VAIO_TT,
0e7cc2e7 1956 ALC888_FIXUP_EEE1601,
4841b8e6 1957 ALC886_FIXUP_EAPD,
177943a3 1958 ALC882_FIXUP_EAPD,
7a6069bf 1959 ALC883_FIXUP_EAPD,
8812c4f9 1960 ALC883_FIXUP_ACER_EAPD,
1a97b7f2
TI
1961 ALC882_FIXUP_GPIO1,
1962 ALC882_FIXUP_GPIO2,
eb844d51 1963 ALC882_FIXUP_GPIO3,
68ef0561
TI
1964 ALC889_FIXUP_COEF,
1965 ALC882_FIXUP_ASUS_W2JC,
c3e837bb
TI
1966 ALC882_FIXUP_ACER_ASPIRE_4930G,
1967 ALC882_FIXUP_ACER_ASPIRE_8930G,
1968 ALC882_FIXUP_ASPIRE_8930G_VERBS,
5671087f 1969 ALC885_FIXUP_MACPRO_GPIO,
02a237b2 1970 ALC889_FIXUP_DAC_ROUTE,
1a97b7f2
TI
1971 ALC889_FIXUP_MBP_VREF,
1972 ALC889_FIXUP_IMAC91_VREF,
e7729a41 1973 ALC889_FIXUP_MBA11_VREF,
0756f09c 1974 ALC889_FIXUP_MBA21_VREF,
c20f31ec 1975 ALC889_FIXUP_MP11_VREF,
9f660a1c 1976 ALC889_FIXUP_MP41_VREF,
6e72aa5f 1977 ALC882_FIXUP_INV_DMIC,
e427c237 1978 ALC882_FIXUP_NO_PRIMARY_HP,
1f0bbf03 1979 ALC887_FIXUP_ASUS_BASS,
eb9ca3ab 1980 ALC887_FIXUP_BASS_CHMAP,
7beb3a6e 1981 ALC1220_FIXUP_GB_DUAL_CODECS,
c1933008 1982 ALC1220_FIXUP_GB_X570,
0202f5cd 1983 ALC1220_FIXUP_CLEVO_P950,
80690a27
RS
1984 ALC1220_FIXUP_CLEVO_PB51ED,
1985 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
ca184355
JHP
1986 ALC887_FIXUP_ASUS_AUDIO,
1987 ALC887_FIXUP_ASUS_HMIC,
9bfa7b36 1988 ALCS1200A_FIXUP_MIC_VREF,
baaacbff 1989 ALC888VD_FIXUP_MIC_100VREF,
ff818c24
TI
1990};
1991
68ef0561 1992static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1993 const struct hda_fixup *fix, int action)
68ef0561 1994{
1727a771 1995 if (action != HDA_FIXUP_ACT_INIT)
68ef0561 1996 return;
1df8874b 1997 alc_update_coef_idx(codec, 7, 0, 0x2030);
68ef0561
TI
1998}
1999
5671087f
TI
2000/* set up GPIO at initialization */
2001static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 2002 const struct hda_fixup *fix, int action)
5671087f 2003{
215c850c
TI
2004 struct alc_spec *spec = codec->spec;
2005
2006 spec->gpio_write_delay = true;
2007 alc_fixup_gpio3(codec, fix, action);
5671087f
TI
2008}
2009
02a237b2
TI
2010/* Fix the connection of some pins for ALC889:
2011 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2012 * work correctly (bko#42740)
2013 */
2014static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 2015 const struct hda_fixup *fix, int action)
02a237b2 2016{
1727a771 2017 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 2018 /* fake the connections during parsing the tree */
caf3c043
MM
2019 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2020 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2021 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2022 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2023 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2024 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
1727a771 2025 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb 2026 /* restore the connections */
caf3c043
MM
2027 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2028 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2029 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2030 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2031 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
02a237b2
TI
2032 }
2033}
2034
1a97b7f2
TI
2035/* Set VREF on HP pin */
2036static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 2037 const struct hda_fixup *fix, int action)
1a97b7f2 2038{
caf3c043 2039 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
1a97b7f2 2040 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2041 int i;
2042
1727a771 2043 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
2044 return;
2045 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2046 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2047 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2048 continue;
d3f02d60 2049 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2050 val |= AC_PINCTL_VREF_80;
cdd03ced 2051 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 2052 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2053 break;
2054 }
2055}
2056
0756f09c
TI
2057static void alc889_fixup_mac_pins(struct hda_codec *codec,
2058 const hda_nid_t *nids, int num_nids)
1a97b7f2
TI
2059{
2060 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2061 int i;
2062
0756f09c 2063 for (i = 0; i < num_nids; i++) {
1a97b7f2 2064 unsigned int val;
d3f02d60 2065 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2066 val |= AC_PINCTL_VREF_50;
cdd03ced 2067 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 2068 }
08c189f2 2069 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2070}
2071
0756f09c
TI
2072/* Set VREF on speaker pins on imac91 */
2073static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2074 const struct hda_fixup *fix, int action)
2075{
caf3c043 2076 static const hda_nid_t nids[] = { 0x18, 0x1a };
0756f09c
TI
2077
2078 if (action == HDA_FIXUP_ACT_INIT)
2079 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2080}
2081
e7729a41
AV
2082/* Set VREF on speaker pins on mba11 */
2083static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2084 const struct hda_fixup *fix, int action)
2085{
caf3c043 2086 static const hda_nid_t nids[] = { 0x18 };
e7729a41
AV
2087
2088 if (action == HDA_FIXUP_ACT_INIT)
2089 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2090}
2091
0756f09c
TI
2092/* Set VREF on speaker pins on mba21 */
2093static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2094 const struct hda_fixup *fix, int action)
2095{
caf3c043 2096 static const hda_nid_t nids[] = { 0x18, 0x19 };
0756f09c
TI
2097
2098 if (action == HDA_FIXUP_ACT_INIT)
2099 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2100}
2101
e427c237 2102/* Don't take HP output as primary
d9111496
FLVC
2103 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2104 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
e427c237
TI
2105 */
2106static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 2107 const struct hda_fixup *fix, int action)
e427c237
TI
2108{
2109 struct alc_spec *spec = codec->spec;
da96fb5b 2110 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08c189f2 2111 spec->gen.no_primary_hp = 1;
da96fb5b
TI
2112 spec->gen.no_multi_io = 1;
2113 }
e427c237
TI
2114}
2115
eb9ca3ab
TI
2116static void alc_fixup_bass_chmap(struct hda_codec *codec,
2117 const struct hda_fixup *fix, int action);
2118
7beb3a6e
TI
2119/* For dual-codec configuration, we need to disable some features to avoid
2120 * conflicts of kctls and PCM streams
2121 */
2122static void alc_fixup_dual_codecs(struct hda_codec *codec,
2123 const struct hda_fixup *fix, int action)
2124{
2125 struct alc_spec *spec = codec->spec;
2126
2127 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2128 return;
2129 /* disable vmaster */
2130 spec->gen.suppress_vmaster = 1;
2131 /* auto-mute and auto-mic switch don't work with multiple codecs */
2132 spec->gen.suppress_auto_mute = 1;
2133 spec->gen.suppress_auto_mic = 1;
2134 /* disable aamix as well */
2135 spec->gen.mixer_nid = 0;
2136 /* add location prefix to avoid conflicts */
2137 codec->force_pin_prefix = 1;
2138}
2139
2140static void rename_ctl(struct hda_codec *codec, const char *oldname,
2141 const char *newname)
2142{
2143 struct snd_kcontrol *kctl;
2144
2145 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2146 if (kctl)
b51c2253 2147 snd_ctl_rename(codec->card, kctl, newname);
7beb3a6e
TI
2148}
2149
2150static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2151 const struct hda_fixup *fix,
2152 int action)
2153{
2154 alc_fixup_dual_codecs(codec, fix, action);
2155 switch (action) {
2156 case HDA_FIXUP_ACT_PRE_PROBE:
2157 /* override card longname to provide a unique UCM profile */
2158 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2159 break;
2160 case HDA_FIXUP_ACT_BUILD:
2161 /* rename Capture controls depending on the codec */
2162 rename_ctl(codec, "Capture Volume",
2163 codec->addr == 0 ?
2164 "Rear-Panel Capture Volume" :
2165 "Front-Panel Capture Volume");
2166 rename_ctl(codec, "Capture Switch",
2167 codec->addr == 0 ?
2168 "Rear-Panel Capture Switch" :
2169 "Front-Panel Capture Switch");
2170 break;
2171 }
2172}
2173
c1933008
CL
2174static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2175 const struct hda_fixup *fix,
2176 int action)
2177{
2178 static const hda_nid_t conn1[] = { 0x0c };
2179 static const struct coef_fw gb_x570_coefs[] = {
41a86013 2180 WRITE_COEF(0x07, 0x03c0),
c1933008
CL
2181 WRITE_COEF(0x1a, 0x01c1),
2182 WRITE_COEF(0x1b, 0x0202),
2183 WRITE_COEF(0x43, 0x3005),
2184 {}
2185 };
2186
2187 switch (action) {
2188 case HDA_FIXUP_ACT_PRE_PROBE:
2189 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2190 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2191 break;
2192 case HDA_FIXUP_ACT_INIT:
2193 alc_process_coef_fw(codec, gb_x570_coefs);
2194 break;
2195 }
2196}
2197
0202f5cd
P
2198static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2199 const struct hda_fixup *fix,
2200 int action)
2201{
caf3c043 2202 static const hda_nid_t conn1[] = { 0x0c };
0202f5cd
P
2203
2204 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2205 return;
2206
2207 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2208 /* We therefore want to make sure 0x14 (front headphone) and
2209 * 0x1b (speakers) use the stereo DAC 0x02
2210 */
caf3c043
MM
2211 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2212 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
0202f5cd
P
2213}
2214
7f665b1c
JS
2215static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2216 const struct hda_fixup *fix, int action);
2217
80690a27 2218static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
7f665b1c
JS
2219 const struct hda_fixup *fix,
2220 int action)
2221{
2222 alc1220_fixup_clevo_p950(codec, fix, action);
2223 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2224}
2225
ca184355
JHP
2226static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2227 struct hda_jack_callback *jack)
2228{
2229 struct alc_spec *spec = codec->spec;
2230 unsigned int vref;
2231
2232 snd_hda_gen_hp_automute(codec, jack);
2233
2234 if (spec->gen.hp_jack_present)
2235 vref = AC_PINCTL_VREF_80;
2236 else
2237 vref = AC_PINCTL_VREF_HIZ;
2238 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2239}
2240
2241static void alc887_fixup_asus_jack(struct hda_codec *codec,
2242 const struct hda_fixup *fix, int action)
2243{
2244 struct alc_spec *spec = codec->spec;
2245 if (action != HDA_FIXUP_ACT_PROBE)
2246 return;
2247 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2248 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2249}
2250
1727a771 2251static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 2252 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
2253 .type = HDA_FIXUP_PINS,
2254 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2255 { 0x15, 0x01080104 }, /* side */
2256 { 0x16, 0x01011012 }, /* rear */
2257 { 0x17, 0x01016011 }, /* clfe */
2785591a 2258 { }
145a902b
DH
2259 }
2260 },
5c0ebfbe 2261 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
2262 .type = HDA_FIXUP_PINS,
2263 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2264 { 0x15, 0x99130112 }, /* rear int speakers */
2265 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
2266 { }
2267 }
2268 },
5c0ebfbe 2269 [ALC882_FIXUP_PB_M5210] = {
fd108215
TI
2270 .type = HDA_FIXUP_PINCTLS,
2271 .v.pins = (const struct hda_pintbl[]) {
2272 { 0x19, PIN_VREF50 },
357f915e
KY
2273 {}
2274 }
2275 },
5c0ebfbe 2276 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 2277 .type = HDA_FIXUP_FUNC,
23d30f28 2278 .v.func = alc_fixup_sku_ignore,
6981d184 2279 },
5c0ebfbe 2280 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
2281 .type = HDA_FIXUP_PINS,
2282 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
2283 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2284 { }
2285 }
2286 },
8f239214 2287 [ALC889_FIXUP_CD] = {
1727a771
TI
2288 .type = HDA_FIXUP_PINS,
2289 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
2290 { 0x1c, 0x993301f0 }, /* CD */
2291 { }
2292 }
2293 },
b2c53e20
DH
2294 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2295 .type = HDA_FIXUP_PINS,
2296 .v.pins = (const struct hda_pintbl[]) {
2297 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2298 { }
2299 },
2300 .chained = true,
2301 .chain_id = ALC889_FIXUP_CD,
2302 },
5c0ebfbe 2303 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
2304 .type = HDA_FIXUP_PINS,
2305 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
2306 { 0x17, 0x90170111 }, /* hidden surround speaker */
2307 { }
2308 }
2309 },
0e7cc2e7 2310 [ALC888_FIXUP_EEE1601] = {
1727a771 2311 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
2312 .v.verbs = (const struct hda_verb[]) {
2313 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2314 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2315 { }
2316 }
177943a3 2317 },
4841b8e6
PH
2318 [ALC886_FIXUP_EAPD] = {
2319 .type = HDA_FIXUP_VERBS,
2320 .v.verbs = (const struct hda_verb[]) {
2321 /* change to EAPD mode */
2322 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2323 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2324 { }
2325 }
2326 },
177943a3 2327 [ALC882_FIXUP_EAPD] = {
1727a771 2328 .type = HDA_FIXUP_VERBS,
177943a3
TI
2329 .v.verbs = (const struct hda_verb[]) {
2330 /* change to EAPD mode */
2331 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2332 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2333 { }
2334 }
2335 },
7a6069bf 2336 [ALC883_FIXUP_EAPD] = {
1727a771 2337 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
2338 .v.verbs = (const struct hda_verb[]) {
2339 /* change to EAPD mode */
2340 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2341 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2342 { }
2343 }
2344 },
8812c4f9 2345 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 2346 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
2347 .v.verbs = (const struct hda_verb[]) {
2348 /* eanable EAPD on Acer laptops */
2349 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2350 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2351 { }
2352 }
2353 },
1a97b7f2 2354 [ALC882_FIXUP_GPIO1] = {
5579cd6f
TI
2355 .type = HDA_FIXUP_FUNC,
2356 .v.func = alc_fixup_gpio1,
1a97b7f2
TI
2357 },
2358 [ALC882_FIXUP_GPIO2] = {
5579cd6f
TI
2359 .type = HDA_FIXUP_FUNC,
2360 .v.func = alc_fixup_gpio2,
1a97b7f2 2361 },
eb844d51 2362 [ALC882_FIXUP_GPIO3] = {
5579cd6f
TI
2363 .type = HDA_FIXUP_FUNC,
2364 .v.func = alc_fixup_gpio3,
eb844d51 2365 },
68ef0561 2366 [ALC882_FIXUP_ASUS_W2JC] = {
5579cd6f
TI
2367 .type = HDA_FIXUP_FUNC,
2368 .v.func = alc_fixup_gpio1,
68ef0561
TI
2369 .chained = true,
2370 .chain_id = ALC882_FIXUP_EAPD,
2371 },
2372 [ALC889_FIXUP_COEF] = {
1727a771 2373 .type = HDA_FIXUP_FUNC,
68ef0561
TI
2374 .v.func = alc889_fixup_coef,
2375 },
c3e837bb 2376 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
2377 .type = HDA_FIXUP_PINS,
2378 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2379 { 0x16, 0x99130111 }, /* CLFE speaker */
2380 { 0x17, 0x99130112 }, /* surround speaker */
2381 { }
038d4fef
TI
2382 },
2383 .chained = true,
2384 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
2385 },
2386 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
2387 .type = HDA_FIXUP_PINS,
2388 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2389 { 0x16, 0x99130111 }, /* CLFE speaker */
2390 { 0x1b, 0x99130112 }, /* surround speaker */
2391 { }
2392 },
2393 .chained = true,
2394 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2395 },
2396 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2397 /* additional init verbs for Acer Aspire 8930G */
1727a771 2398 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
2399 .v.verbs = (const struct hda_verb[]) {
2400 /* Enable all DACs */
2401 /* DAC DISABLE/MUTE 1? */
2402 /* setting bits 1-5 disables DAC nids 0x02-0x06
2403 * apparently. Init=0x38 */
2404 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2405 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2406 /* DAC DISABLE/MUTE 2? */
2407 /* some bit here disables the other DACs.
2408 * Init=0x4900 */
2409 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2410 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2411 /* DMIC fix
2412 * This laptop has a stereo digital microphone.
2413 * The mics are only 1cm apart which makes the stereo
2414 * useless. However, either the mic or the ALC889
2415 * makes the signal become a difference/sum signal
2416 * instead of standard stereo, which is annoying.
2417 * So instead we flip this bit which makes the
2418 * codec replicate the sum signal to both channels,
2419 * turning it into a normal mono mic.
2420 */
2421 /* DMIC_CONTROL? Init value = 0x0001 */
2422 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2423 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2424 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2425 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2426 { }
038d4fef
TI
2427 },
2428 .chained = true,
2429 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 2430 },
5671087f 2431 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 2432 .type = HDA_FIXUP_FUNC,
5671087f
TI
2433 .v.func = alc885_fixup_macpro_gpio,
2434 },
02a237b2 2435 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 2436 .type = HDA_FIXUP_FUNC,
02a237b2
TI
2437 .v.func = alc889_fixup_dac_route,
2438 },
1a97b7f2 2439 [ALC889_FIXUP_MBP_VREF] = {
1727a771 2440 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2441 .v.func = alc889_fixup_mbp_vref,
2442 .chained = true,
2443 .chain_id = ALC882_FIXUP_GPIO1,
2444 },
2445 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 2446 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2447 .v.func = alc889_fixup_imac91_vref,
2448 .chained = true,
2449 .chain_id = ALC882_FIXUP_GPIO1,
2450 },
e7729a41
AV
2451 [ALC889_FIXUP_MBA11_VREF] = {
2452 .type = HDA_FIXUP_FUNC,
2453 .v.func = alc889_fixup_mba11_vref,
2454 .chained = true,
2455 .chain_id = ALC889_FIXUP_MBP_VREF,
2456 },
0756f09c
TI
2457 [ALC889_FIXUP_MBA21_VREF] = {
2458 .type = HDA_FIXUP_FUNC,
2459 .v.func = alc889_fixup_mba21_vref,
2460 .chained = true,
2461 .chain_id = ALC889_FIXUP_MBP_VREF,
2462 },
c20f31ec
TI
2463 [ALC889_FIXUP_MP11_VREF] = {
2464 .type = HDA_FIXUP_FUNC,
2465 .v.func = alc889_fixup_mba11_vref,
2466 .chained = true,
2467 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2468 },
9f660a1c
MK
2469 [ALC889_FIXUP_MP41_VREF] = {
2470 .type = HDA_FIXUP_FUNC,
2471 .v.func = alc889_fixup_mbp_vref,
2472 .chained = true,
2473 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2474 },
6e72aa5f 2475 [ALC882_FIXUP_INV_DMIC] = {
1727a771 2476 .type = HDA_FIXUP_FUNC,
9d36a7dc 2477 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2478 },
e427c237 2479 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 2480 .type = HDA_FIXUP_FUNC,
e427c237
TI
2481 .v.func = alc882_fixup_no_primary_hp,
2482 },
1f0bbf03
TI
2483 [ALC887_FIXUP_ASUS_BASS] = {
2484 .type = HDA_FIXUP_PINS,
2485 .v.pins = (const struct hda_pintbl[]) {
2486 {0x16, 0x99130130}, /* bass speaker */
2487 {}
2488 },
eb9ca3ab
TI
2489 .chained = true,
2490 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2491 },
2492 [ALC887_FIXUP_BASS_CHMAP] = {
2493 .type = HDA_FIXUP_FUNC,
2494 .v.func = alc_fixup_bass_chmap,
1f0bbf03 2495 },
7beb3a6e
TI
2496 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2497 .type = HDA_FIXUP_FUNC,
2498 .v.func = alc1220_fixup_gb_dual_codecs,
2499 },
c1933008
CL
2500 [ALC1220_FIXUP_GB_X570] = {
2501 .type = HDA_FIXUP_FUNC,
2502 .v.func = alc1220_fixup_gb_x570,
2503 },
0202f5cd
P
2504 [ALC1220_FIXUP_CLEVO_P950] = {
2505 .type = HDA_FIXUP_FUNC,
2506 .v.func = alc1220_fixup_clevo_p950,
2507 },
80690a27 2508 [ALC1220_FIXUP_CLEVO_PB51ED] = {
7f665b1c 2509 .type = HDA_FIXUP_FUNC,
80690a27 2510 .v.func = alc1220_fixup_clevo_pb51ed,
7f665b1c 2511 },
80690a27 2512 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
7f665b1c
JS
2513 .type = HDA_FIXUP_PINS,
2514 .v.pins = (const struct hda_pintbl[]) {
2515 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2516 {}
2517 },
2518 .chained = true,
80690a27 2519 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
7f665b1c 2520 },
ca184355
JHP
2521 [ALC887_FIXUP_ASUS_AUDIO] = {
2522 .type = HDA_FIXUP_PINS,
2523 .v.pins = (const struct hda_pintbl[]) {
2524 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2525 { 0x19, 0x22219420 },
2526 {}
2527 },
2528 },
2529 [ALC887_FIXUP_ASUS_HMIC] = {
2530 .type = HDA_FIXUP_FUNC,
2531 .v.func = alc887_fixup_asus_jack,
2532 .chained = true,
2533 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2534 },
9bfa7b36
ML
2535 [ALCS1200A_FIXUP_MIC_VREF] = {
2536 .type = HDA_FIXUP_PINCTLS,
2537 .v.pins = (const struct hda_pintbl[]) {
2538 { 0x18, PIN_VREF50 }, /* rear mic */
2539 { 0x19, PIN_VREF50 }, /* front mic */
2540 {}
2541 }
2542 },
baaacbff
KY
2543 [ALC888VD_FIXUP_MIC_100VREF] = {
2544 .type = HDA_FIXUP_PINCTLS,
2545 .v.pins = (const struct hda_pintbl[]) {
2546 { 0x18, PIN_VREF100 }, /* headset mic */
2547 {}
2548 }
2549 },
ff818c24
TI
2550};
2551
1d045db9 2552static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
2553 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2554 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
b5d724b1 2555 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
8812c4f9
TI
2556 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2557 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2558 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2559 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
2560 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2561 ALC882_FIXUP_ACER_ASPIRE_4930G),
2562 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2563 ALC882_FIXUP_ACER_ASPIRE_4930G),
2564 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2565 ALC882_FIXUP_ACER_ASPIRE_8930G),
2566 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2567 ALC882_FIXUP_ACER_ASPIRE_8930G),
b265047a
TI
2568 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2569 ALC882_FIXUP_ACER_ASPIRE_4930G),
2570 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
c3e837bb
TI
2571 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2572 ALC882_FIXUP_ACER_ASPIRE_4930G),
2573 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2574 ALC882_FIXUP_ACER_ASPIRE_4930G),
f5c53d89
TI
2575 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2576 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 2577 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 2578 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 2579 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 2580 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 2581 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 2582 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
ca184355 2583 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
0e7cc2e7 2584 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
1f0bbf03 2585 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
85bcf96c 2586 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
9bfa7b36 2587 SND_PCI_QUIRK(0x1043, 0x8797, "ASUS TUF B550M-PLUS", ALCS1200A_FIXUP_MIC_VREF),
b7529c18
TI
2588 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2589 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
ac9b1cdd 2590 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2591 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
3f3c3714 2592 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2593
2594 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2595 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2596 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2597 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
c20f31ec 2598 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
5671087f
TI
2599 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2600 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2601 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2602 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2603 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
e7729a41 2604 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
0756f09c 2605 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
1a97b7f2
TI
2606 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2607 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2608 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2609 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2610 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2611 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
9f660a1c 2612 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
05193639 2613 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2614 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2615 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
649ccd08 2616 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
5671087f 2617
7a6069bf 2618 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
baaacbff 2619 SND_PCI_QUIRK(0x10ec, 0x12d8, "iBase Elo Touch", ALC888VD_FIXUP_MIC_100VREF),
4841b8e6 2620 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
b2c53e20 2621 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
7beb3a6e 2622 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
c1933008 2623 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
ea354196 2624 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
41a86013 2625 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
a0b03952 2626 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
a655e2b1 2627 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
09926202 2628 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
1d3aa4a5 2629 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
7dafba37 2630 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
cc5049ae 2631 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
d2c3b14e 2632 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
26af1772 2633 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
63691587 2634 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
d2c3b14e 2635 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5c0ebfbe 2636 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
36d4d213 2637 SND_PCI_QUIRK(0x1558, 0x3702, "Clevo X370SN[VW]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd
TI
2638 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2639 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2640 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2641 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2642 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
aef454b4 2643 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
9eb6f5c3 2644 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
b7a58228 2645 SND_PCI_QUIRK(0x1558, 0x66a2, "Clevo PE60RNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd
TI
2646 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2647 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2648 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
dbfe8350 2649 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
d4995121 2650 SND_PCI_QUIRK(0x1558, 0x67f5, "Clevo PD70PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd 2651 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
1f8d398e 2652 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
cc03069a 2653 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
0202f5cd 2654 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2655 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
13e1a4cd 2656 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
f3d737b6 2657 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2f0d520a 2658 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
b5acfe15
PH
2659 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2660 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2661 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2662 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
503d90b3
RS
2663 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2664 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2665 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
b7a58228 2666 SND_PCI_QUIRK(0x1558, 0xd502, "Clevo PD50SNE", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
7a6069bf
TI
2667 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2668 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2669 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2670 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2671 {}
2672};
2673
1727a771 2674static const struct hda_model_fixup alc882_fixup_models[] = {
772c2917
TI
2675 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2676 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2677 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2678 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2679 {.id = ALC889_FIXUP_CD, .name = "cd"},
2680 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2681 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2682 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2683 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2684 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2685 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2686 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2687 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2688 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2689 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
912093bc
TI
2690 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2691 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2692 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
772c2917
TI
2693 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2694 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2695 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2696 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2697 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2698 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2699 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2700 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
6e72aa5f 2701 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2702 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
772c2917 2703 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
ba90d6a6 2704 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
63394a16 2705 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
772c2917 2706 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
912093bc
TI
2707 {}
2708};
2709
119b75c1
HW
2710static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2711 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2712 {0x14, 0x01014010},
2713 {0x15, 0x01011012},
2714 {0x16, 0x01016011},
2715 {0x18, 0x01a19040},
2716 {0x19, 0x02a19050},
2717 {0x1a, 0x0181304f},
2718 {0x1b, 0x0221401f},
2719 {0x1e, 0x01456130}),
2720 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2721 {0x14, 0x01015010},
2722 {0x15, 0x01011012},
2723 {0x16, 0x01011011},
2724 {0x18, 0x01a11040},
2725 {0x19, 0x02a19050},
2726 {0x1a, 0x0181104f},
2727 {0x1b, 0x0221401f},
2728 {0x1e, 0x01451130}),
2729 {}
2730};
2731
f6a92248 2732/*
1d045db9 2733 * BIOS auto configuration
f6a92248 2734 */
1d045db9
TI
2735/* almost identical with ALC880 parser... */
2736static int alc882_parse_auto_config(struct hda_codec *codec)
2737{
1d045db9 2738 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2739 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2740 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2741}
b896b4eb 2742
1d045db9
TI
2743/*
2744 */
1d045db9 2745static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2746{
2747 struct alc_spec *spec;
1a97b7f2 2748 int err;
f6a92248 2749
3de95173
TI
2750 err = alc_alloc_spec(codec, 0x0b);
2751 if (err < 0)
2752 return err;
f6a92248 2753
3de95173 2754 spec = codec->spec;
1f0f4b80 2755
7639a06c 2756 switch (codec->core.vendor_id) {
1d045db9
TI
2757 case 0x10ec0882:
2758 case 0x10ec0885:
acf08081 2759 case 0x10ec0900:
6d9ffcff 2760 case 0x10ec0b00:
a535ad57 2761 case 0x10ec1220:
1d045db9
TI
2762 break;
2763 default:
2764 /* ALC883 and variants */
2765 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2766 break;
c793bec5 2767 }
977ddd6b 2768
c9af753f
TI
2769 alc_pre_init(codec);
2770
1727a771 2771 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2772 alc882_fixups);
119b75c1 2773 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
1727a771 2774 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2775
1d045db9
TI
2776 alc_auto_parse_customize_define(codec);
2777
7504b6cd
TI
2778 if (has_cdefine_beep(codec))
2779 spec->gen.beep_nid = 0x01;
2780
1a97b7f2
TI
2781 /* automatic parse from the BIOS config */
2782 err = alc882_parse_auto_config(codec);
2783 if (err < 0)
2784 goto error;
f6a92248 2785
fea80fae
TI
2786 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2787 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2788 if (err < 0)
2789 goto error;
2790 }
f6a92248 2791
1727a771 2792 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2793
f6a92248 2794 return 0;
e16fb6d1
TI
2795
2796 error:
2797 alc_free(codec);
2798 return err;
f6a92248
KY
2799}
2800
df694daa 2801
df694daa 2802/*
1d045db9 2803 * ALC262 support
df694daa 2804 */
1d045db9 2805static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2806{
1d045db9 2807 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2808 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2809 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2810}
2811
df694daa 2812/*
1d045db9 2813 * Pin config fixes
df694daa 2814 */
cfc9b06f 2815enum {
ea4e7af1 2816 ALC262_FIXUP_FSC_H270,
7513e6da 2817 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2818 ALC262_FIXUP_HP_Z200,
2819 ALC262_FIXUP_TYAN,
c470150c 2820 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2821 ALC262_FIXUP_BENQ,
2822 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2823 ALC262_FIXUP_INV_DMIC,
b5c6611f 2824 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2825};
2826
1727a771 2827static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2828 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2829 .type = HDA_FIXUP_PINS,
2830 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2831 { 0x14, 0x99130110 }, /* speaker */
2832 { 0x15, 0x0221142f }, /* front HP */
2833 { 0x1b, 0x0121141f }, /* rear HP */
2834 { }
2835 }
2836 },
7513e6da
TI
2837 [ALC262_FIXUP_FSC_S7110] = {
2838 .type = HDA_FIXUP_PINS,
2839 .v.pins = (const struct hda_pintbl[]) {
2840 { 0x15, 0x90170110 }, /* speaker */
2841 { }
2842 },
2843 .chained = true,
2844 .chain_id = ALC262_FIXUP_BENQ,
2845 },
ea4e7af1 2846 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2847 .type = HDA_FIXUP_PINS,
2848 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2849 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2850 { }
2851 }
cfc9b06f 2852 },
ea4e7af1 2853 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2854 .type = HDA_FIXUP_PINS,
2855 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2856 { 0x14, 0x1993e1f0 }, /* int AUX */
2857 { }
2858 }
2859 },
c470150c 2860 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2861 .type = HDA_FIXUP_PINCTLS,
2862 .v.pins = (const struct hda_pintbl[]) {
2863 { 0x19, PIN_VREF50 },
b42590b8
TI
2864 {}
2865 },
2866 .chained = true,
2867 .chain_id = ALC262_FIXUP_BENQ,
2868 },
2869 [ALC262_FIXUP_BENQ] = {
1727a771 2870 .type = HDA_FIXUP_VERBS,
b42590b8 2871 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2872 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2873 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2874 {}
2875 }
2876 },
b42590b8 2877 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2878 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2879 .v.verbs = (const struct hda_verb[]) {
2880 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2881 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2882 {}
2883 }
2884 },
6e72aa5f 2885 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2886 .type = HDA_FIXUP_FUNC,
9d36a7dc 2887 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2888 },
b5c6611f
ML
2889 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2890 .type = HDA_FIXUP_FUNC,
2891 .v.func = alc_fixup_no_depop_delay,
2892 },
cfc9b06f
TI
2893};
2894
1d045db9 2895static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2896 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2897 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2898 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1 2899 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
275ec0cb 2900 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
ea4e7af1 2901 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2902 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2903 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2904 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2905 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2906 {}
2907};
df694daa 2908
1727a771 2909static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f 2910 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
e43c44d6
TI
2911 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2912 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2913 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2914 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2915 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2916 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2917 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2918 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
6e72aa5f
TI
2919 {}
2920};
1d045db9 2921
1d045db9
TI
2922/*
2923 */
1d045db9 2924static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2925{
2926 struct alc_spec *spec;
df694daa
KY
2927 int err;
2928
3de95173
TI
2929 err = alc_alloc_spec(codec, 0x0b);
2930 if (err < 0)
2931 return err;
df694daa 2932
3de95173 2933 spec = codec->spec;
08c189f2 2934 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9 2935
225068ab
TI
2936 spec->shutup = alc_eapd_shutup;
2937
1d045db9
TI
2938#if 0
2939 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2940 * under-run
2941 */
98b24883 2942 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
1d045db9 2943#endif
1d045db9
TI
2944 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2945
c9af753f
TI
2946 alc_pre_init(codec);
2947
1727a771 2948 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2949 alc262_fixups);
1727a771 2950 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2951
af741c15
TI
2952 alc_auto_parse_customize_define(codec);
2953
7504b6cd
TI
2954 if (has_cdefine_beep(codec))
2955 spec->gen.beep_nid = 0x01;
2956
42399f7a
TI
2957 /* automatic parse from the BIOS config */
2958 err = alc262_parse_auto_config(codec);
2959 if (err < 0)
2960 goto error;
df694daa 2961
fea80fae
TI
2962 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2963 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2964 if (err < 0)
2965 goto error;
2966 }
2134ea4f 2967
1727a771 2968 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2969
1da177e4 2970 return 0;
e16fb6d1
TI
2971
2972 error:
2973 alc_free(codec);
2974 return err;
1da177e4
LT
2975}
2976
f32610ed 2977/*
1d045db9 2978 * ALC268
f32610ed 2979 */
1d045db9 2980/* bind Beep switches of both NID 0x0f and 0x10 */
a717777d
TI
2981static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2982 struct snd_ctl_elem_value *ucontrol)
2983{
2984 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2985 unsigned long pval;
2986 int err;
2987
2988 mutex_lock(&codec->control_mutex);
2989 pval = kcontrol->private_value;
2990 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2991 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2992 if (err >= 0) {
2993 kcontrol->private_value = (pval & ~0xff) | 0x10;
2994 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2995 }
2996 kcontrol->private_value = pval;
2997 mutex_unlock(&codec->control_mutex);
2998 return err;
2999}
f32610ed 3000
1d045db9
TI
3001static const struct snd_kcontrol_new alc268_beep_mixer[] = {
3002 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
a717777d
TI
3003 {
3004 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3005 .name = "Beep Playback Switch",
3006 .subdevice = HDA_SUBDEV_AMP_FLAG,
3007 .info = snd_hda_mixer_amp_switch_info,
3008 .get = snd_hda_mixer_amp_switch_get,
3009 .put = alc268_beep_switch_put,
3010 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
3011 },
f32610ed
JS
3012};
3013
1d045db9
TI
3014/* set PCBEEP vol = 0, mute connections */
3015static const struct hda_verb alc268_beep_init_verbs[] = {
3016 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3017 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3018 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3019 { }
f32610ed
JS
3020};
3021
6e72aa5f
TI
3022enum {
3023 ALC268_FIXUP_INV_DMIC,
cb766404 3024 ALC268_FIXUP_HP_EAPD,
24eff328 3025 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
3026};
3027
1727a771 3028static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 3029 [ALC268_FIXUP_INV_DMIC] = {
1727a771 3030 .type = HDA_FIXUP_FUNC,
9d36a7dc 3031 .v.func = alc_fixup_inv_dmic,
6e72aa5f 3032 },
cb766404 3033 [ALC268_FIXUP_HP_EAPD] = {
1727a771 3034 .type = HDA_FIXUP_VERBS,
cb766404
TI
3035 .v.verbs = (const struct hda_verb[]) {
3036 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3037 {}
3038 }
3039 },
24eff328
TI
3040 [ALC268_FIXUP_SPDIF] = {
3041 .type = HDA_FIXUP_PINS,
3042 .v.pins = (const struct hda_pintbl[]) {
3043 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3044 {}
3045 }
3046 },
6e72aa5f
TI
3047};
3048
1727a771 3049static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 3050 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404 3051 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
03bf11c9 3052 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
cb766404
TI
3053 {}
3054};
3055
3056static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 3057 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 3058 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
3059 /* below is codec SSID since multiple Toshiba laptops have the
3060 * same PCI SSID 1179:ff00
3061 */
3062 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
3063 {}
3064};
3065
f32610ed
JS
3066/*
3067 * BIOS auto configuration
3068 */
1d045db9 3069static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 3070{
3e6179b8 3071 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 3072 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
3073}
3074
1d045db9
TI
3075/*
3076 */
1d045db9 3077static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
3078{
3079 struct alc_spec *spec;
a5cb463a 3080 int i, err;
f32610ed 3081
1d045db9 3082 /* ALC268 has no aa-loopback mixer */
3de95173
TI
3083 err = alc_alloc_spec(codec, 0);
3084 if (err < 0)
3085 return err;
3086
3087 spec = codec->spec;
2722b535
TI
3088 if (has_cdefine_beep(codec))
3089 spec->gen.beep_nid = 0x01;
1f0f4b80 3090
225068ab
TI
3091 spec->shutup = alc_eapd_shutup;
3092
c9af753f
TI
3093 alc_pre_init(codec);
3094
1727a771
TI
3095 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3096 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 3097
6ebb8053
TI
3098 /* automatic parse from the BIOS config */
3099 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
3100 if (err < 0)
3101 goto error;
f32610ed 3102
7504b6cd
TI
3103 if (err > 0 && !spec->gen.no_analog &&
3104 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
a5cb463a
TI
3105 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3106 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3107 &alc268_beep_mixer[i])) {
3108 err = -ENOMEM;
3109 goto error;
3110 }
3111 }
7504b6cd 3112 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
3113 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3114 /* override the amp caps for beep generator */
3115 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3116 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3117 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3118 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3119 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
3120 }
3121
1727a771 3122 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 3123
f32610ed 3124 return 0;
e16fb6d1
TI
3125
3126 error:
3127 alc_free(codec);
3128 return err;
f32610ed
JS
3129}
3130
bc9f98a9 3131/*
1d045db9 3132 * ALC269
bc9f98a9 3133 */
08c189f2 3134
1d045db9 3135static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
1d045db9 3136 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9
KY
3137};
3138
1d045db9 3139static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
1d045db9 3140 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9 3141};
291702f0 3142
1d045db9
TI
3143/* different alc269-variants */
3144enum {
3145 ALC269_TYPE_ALC269VA,
3146 ALC269_TYPE_ALC269VB,
3147 ALC269_TYPE_ALC269VC,
adcc70b2 3148 ALC269_TYPE_ALC269VD,
065380f0
KY
3149 ALC269_TYPE_ALC280,
3150 ALC269_TYPE_ALC282,
2af02be7 3151 ALC269_TYPE_ALC283,
065380f0 3152 ALC269_TYPE_ALC284,
4731d5de 3153 ALC269_TYPE_ALC293,
7fc7d047 3154 ALC269_TYPE_ALC286,
506b62c3 3155 ALC269_TYPE_ALC298,
1d04c9de 3156 ALC269_TYPE_ALC255,
4344aec8 3157 ALC269_TYPE_ALC256,
f429e7e4 3158 ALC269_TYPE_ALC257,
0a6f0600 3159 ALC269_TYPE_ALC215,
4231430d 3160 ALC269_TYPE_ALC225,
60571929 3161 ALC269_TYPE_ALC245,
99cee034 3162 ALC269_TYPE_ALC287,
dcd4f0db 3163 ALC269_TYPE_ALC294,
1078bef0 3164 ALC269_TYPE_ALC300,
f0778871 3165 ALC269_TYPE_ALC623,
6fbae35a 3166 ALC269_TYPE_ALC700,
bc9f98a9
KY
3167};
3168
3169/*
1d045db9 3170 * BIOS auto configuration
bc9f98a9 3171 */
1d045db9
TI
3172static int alc269_parse_auto_config(struct hda_codec *codec)
3173{
1d045db9 3174 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3175 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3176 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3177 struct alc_spec *spec = codec->spec;
adcc70b2
KY
3178 const hda_nid_t *ssids;
3179
3180 switch (spec->codec_variant) {
3181 case ALC269_TYPE_ALC269VA:
3182 case ALC269_TYPE_ALC269VC:
065380f0
KY
3183 case ALC269_TYPE_ALC280:
3184 case ALC269_TYPE_ALC284:
4731d5de 3185 case ALC269_TYPE_ALC293:
adcc70b2
KY
3186 ssids = alc269va_ssids;
3187 break;
3188 case ALC269_TYPE_ALC269VB:
3189 case ALC269_TYPE_ALC269VD:
065380f0 3190 case ALC269_TYPE_ALC282:
2af02be7 3191 case ALC269_TYPE_ALC283:
7fc7d047 3192 case ALC269_TYPE_ALC286:
506b62c3 3193 case ALC269_TYPE_ALC298:
1d04c9de 3194 case ALC269_TYPE_ALC255:
4344aec8 3195 case ALC269_TYPE_ALC256:
f429e7e4 3196 case ALC269_TYPE_ALC257:
0a6f0600 3197 case ALC269_TYPE_ALC215:
4231430d 3198 case ALC269_TYPE_ALC225:
60571929 3199 case ALC269_TYPE_ALC245:
99cee034 3200 case ALC269_TYPE_ALC287:
dcd4f0db 3201 case ALC269_TYPE_ALC294:
1078bef0 3202 case ALC269_TYPE_ALC300:
f0778871 3203 case ALC269_TYPE_ALC623:
6fbae35a 3204 case ALC269_TYPE_ALC700:
adcc70b2
KY
3205 ssids = alc269_ssids;
3206 break;
3207 default:
3208 ssids = alc269_ssids;
3209 break;
3210 }
bc9f98a9 3211
3e6179b8 3212 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 3213}
bc9f98a9 3214
476c02e0
HW
3215static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3216 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3217 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3218 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3219 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3220 {}
3221};
3222
3223static void alc_headset_btn_callback(struct hda_codec *codec,
3224 struct hda_jack_callback *jack)
3225{
3226 int report = 0;
3227
3228 if (jack->unsol_res & (7 << 13))
3229 report |= SND_JACK_BTN_0;
3230
3231 if (jack->unsol_res & (1 << 16 | 3 << 8))
3232 report |= SND_JACK_BTN_1;
3233
3234 /* Volume up key */
3235 if (jack->unsol_res & (7 << 23))
3236 report |= SND_JACK_BTN_2;
3237
3238 /* Volume down key */
3239 if (jack->unsol_res & (7 << 10))
3240 report |= SND_JACK_BTN_3;
3241
04f7791b 3242 snd_hda_jack_set_button_state(codec, jack->nid, report);
476c02e0
HW
3243}
3244
3245static void alc_disable_headset_jack_key(struct hda_codec *codec)
3246{
3247 struct alc_spec *spec = codec->spec;
3248
3249 if (!spec->has_hs_key)
3250 return;
3251
3252 switch (codec->core.vendor_id) {
3253 case 0x10ec0215:
3254 case 0x10ec0225:
3255 case 0x10ec0285:
c72b9bfe 3256 case 0x10ec0287:
476c02e0
HW
3257 case 0x10ec0295:
3258 case 0x10ec0289:
3259 case 0x10ec0299:
3260 alc_write_coef_idx(codec, 0x48, 0x0);
3261 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3262 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3263 break;
1948fc06 3264 case 0x10ec0230:
476c02e0
HW
3265 case 0x10ec0236:
3266 case 0x10ec0256:
cae2bdb5 3267 case 0x10ec0257:
527f4643 3268 case 0x19e58326:
476c02e0
HW
3269 alc_write_coef_idx(codec, 0x48, 0x0);
3270 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3271 break;
3272 }
3273}
3274
3275static void alc_enable_headset_jack_key(struct hda_codec *codec)
3276{
3277 struct alc_spec *spec = codec->spec;
3278
3279 if (!spec->has_hs_key)
3280 return;
3281
3282 switch (codec->core.vendor_id) {
3283 case 0x10ec0215:
3284 case 0x10ec0225:
3285 case 0x10ec0285:
c72b9bfe 3286 case 0x10ec0287:
476c02e0
HW
3287 case 0x10ec0295:
3288 case 0x10ec0289:
3289 case 0x10ec0299:
3290 alc_write_coef_idx(codec, 0x48, 0xd011);
3291 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3292 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3293 break;
1948fc06 3294 case 0x10ec0230:
476c02e0
HW
3295 case 0x10ec0236:
3296 case 0x10ec0256:
cae2bdb5 3297 case 0x10ec0257:
527f4643 3298 case 0x19e58326:
476c02e0
HW
3299 alc_write_coef_idx(codec, 0x48, 0xd011);
3300 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3301 break;
3302 }
3303}
3304
3305static void alc_fixup_headset_jack(struct hda_codec *codec,
3306 const struct hda_fixup *fix, int action)
3307{
3308 struct alc_spec *spec = codec->spec;
04f7791b 3309 hda_nid_t hp_pin;
476c02e0
HW
3310
3311 switch (action) {
3312 case HDA_FIXUP_ACT_PRE_PROBE:
3313 spec->has_hs_key = 1;
3314 snd_hda_jack_detect_enable_callback(codec, 0x55,
3315 alc_headset_btn_callback);
476c02e0 3316 break;
04f7791b
HW
3317 case HDA_FIXUP_ACT_BUILD:
3318 hp_pin = alc_get_hp_pin(spec);
3319 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3320 alc_headset_btn_keymap,
3321 hp_pin))
3322 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3323 false, SND_JACK_HEADSET,
3324 alc_headset_btn_keymap);
3325
476c02e0
HW
3326 alc_enable_headset_jack_key(codec);
3327 break;
3328 }
3329}
3330
1387e2d1 3331static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9 3332{
98b24883 3333 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
1d045db9 3334}
291702f0 3335
1d045db9
TI
3336static void alc269_shutup(struct hda_codec *codec)
3337{
adcc70b2
KY
3338 struct alc_spec *spec = codec->spec;
3339
1387e2d1
KY
3340 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3341 alc269vb_toggle_power_output(codec, 0);
3342 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3343 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3344 msleep(150);
3345 }
c0ca5ece 3346 alc_shutup_pins(codec);
1d045db9 3347}
291702f0 3348
6b0f95c4 3349static const struct coef_fw alc282_coefs[] = {
54db6c39 3350 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
32fa7e49 3351 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3352 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3353 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3354 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3355 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3356 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3357 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3358 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3359 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3360 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3361 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3362 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3363 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3364 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3365 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3366 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3367 WRITE_COEF(0x63, 0x2902), /* PLL */
3368 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3369 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3370 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3371 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3372 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3373 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3374 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3375 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3376 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3377 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3378 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3379 {}
3380};
3381
cb149cb3
KY
3382static void alc282_restore_default_value(struct hda_codec *codec)
3383{
54db6c39 3384 alc_process_coef_fw(codec, alc282_coefs);
cb149cb3
KY
3385}
3386
7b5c7a02
KY
3387static void alc282_init(struct hda_codec *codec)
3388{
3389 struct alc_spec *spec = codec->spec;
35a39f98 3390 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3391 bool hp_pin_sense;
3392 int coef78;
3393
cb149cb3
KY
3394 alc282_restore_default_value(codec);
3395
7b5c7a02
KY
3396 if (!hp_pin)
3397 return;
3398 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3399 coef78 = alc_read_coef_idx(codec, 0x78);
3400
3401 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3402 /* Headphone capless set to high power mode */
3403 alc_write_coef_idx(codec, 0x78, 0x9004);
3404
3405 if (hp_pin_sense)
3406 msleep(2);
3407
3408 snd_hda_codec_write(codec, hp_pin, 0,
3409 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3410
3411 if (hp_pin_sense)
3412 msleep(85);
3413
3414 snd_hda_codec_write(codec, hp_pin, 0,
3415 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3416
3417 if (hp_pin_sense)
3418 msleep(100);
3419
3420 /* Headphone capless set to normal mode */
3421 alc_write_coef_idx(codec, 0x78, coef78);
3422}
3423
3424static void alc282_shutup(struct hda_codec *codec)
3425{
3426 struct alc_spec *spec = codec->spec;
35a39f98 3427 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3428 bool hp_pin_sense;
3429 int coef78;
3430
3431 if (!hp_pin) {
3432 alc269_shutup(codec);
3433 return;
3434 }
3435
3436 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3437 coef78 = alc_read_coef_idx(codec, 0x78);
3438 alc_write_coef_idx(codec, 0x78, 0x9004);
3439
3440 if (hp_pin_sense)
3441 msleep(2);
3442
3443 snd_hda_codec_write(codec, hp_pin, 0,
3444 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3445
3446 if (hp_pin_sense)
3447 msleep(85);
3448
c0ca5ece
TI
3449 if (!spec->no_shutup_pins)
3450 snd_hda_codec_write(codec, hp_pin, 0,
3451 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
7b5c7a02
KY
3452
3453 if (hp_pin_sense)
3454 msleep(100);
3455
3456 alc_auto_setup_eapd(codec, false);
c0ca5ece 3457 alc_shutup_pins(codec);
7b5c7a02
KY
3458 alc_write_coef_idx(codec, 0x78, coef78);
3459}
3460
6b0f95c4 3461static const struct coef_fw alc283_coefs[] = {
54db6c39 3462 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
56779864 3463 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3464 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3465 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3466 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3467 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3468 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3469 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3470 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3471 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3472 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3473 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3474 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3475 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3476 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3477 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3478 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3479 WRITE_COEF(0x2e, 0x2902), /* PLL */
3480 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3481 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3482 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3483 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3484 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3485 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3486 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3487 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3488 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3489 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3490 WRITE_COEF(0x49, 0x0), /* test mode */
3491 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3492 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3493 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
56779864 3494 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
54db6c39
TI
3495 {}
3496};
3497
6bd55b04
KY
3498static void alc283_restore_default_value(struct hda_codec *codec)
3499{
54db6c39 3500 alc_process_coef_fw(codec, alc283_coefs);
6bd55b04
KY
3501}
3502
2af02be7
KY
3503static void alc283_init(struct hda_codec *codec)
3504{
3505 struct alc_spec *spec = codec->spec;
35a39f98 3506 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3507 bool hp_pin_sense;
2af02be7 3508
6bd55b04
KY
3509 alc283_restore_default_value(codec);
3510
2af02be7
KY
3511 if (!hp_pin)
3512 return;
a59d7199
KY
3513
3514 msleep(30);
2af02be7
KY
3515 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3516
3517 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3518 /* Headphone capless set to high power mode */
3519 alc_write_coef_idx(codec, 0x43, 0x9004);
3520
3521 snd_hda_codec_write(codec, hp_pin, 0,
3522 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3523
3524 if (hp_pin_sense)
3525 msleep(85);
3526
3527 snd_hda_codec_write(codec, hp_pin, 0,
3528 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3529
3530 if (hp_pin_sense)
3531 msleep(85);
3532 /* Index 0x46 Combo jack auto switch control 2 */
3533 /* 3k pull low control for Headset jack. */
98b24883 3534 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2af02be7
KY
3535 /* Headphone capless set to normal mode */
3536 alc_write_coef_idx(codec, 0x43, 0x9614);
3537}
3538
3539static void alc283_shutup(struct hda_codec *codec)
3540{
3541 struct alc_spec *spec = codec->spec;
35a39f98 3542 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3543 bool hp_pin_sense;
2af02be7
KY
3544
3545 if (!hp_pin) {
3546 alc269_shutup(codec);
3547 return;
3548 }
3549
3550 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3551
3552 alc_write_coef_idx(codec, 0x43, 0x9004);
3553
b450b17c
HP
3554 /*depop hp during suspend*/
3555 alc_write_coef_idx(codec, 0x06, 0x2100);
3556
2af02be7
KY
3557 snd_hda_codec_write(codec, hp_pin, 0,
3558 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3559
3560 if (hp_pin_sense)
88011c09 3561 msleep(100);
2af02be7 3562
c0ca5ece
TI
3563 if (!spec->no_shutup_pins)
3564 snd_hda_codec_write(codec, hp_pin, 0,
3565 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2af02be7 3566
98b24883 3567 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2af02be7
KY
3568
3569 if (hp_pin_sense)
88011c09 3570 msleep(100);
0435b3ff 3571 alc_auto_setup_eapd(codec, false);
c0ca5ece 3572 alc_shutup_pins(codec);
2af02be7
KY
3573 alc_write_coef_idx(codec, 0x43, 0x9614);
3574}
3575
4a219ef8
KY
3576static void alc256_init(struct hda_codec *codec)
3577{
3578 struct alc_spec *spec = codec->spec;
35a39f98 3579 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3580 bool hp_pin_sense;
3581
1f680609
YY
3582 if (spec->ultra_low_power) {
3583 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3584 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3585 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3586 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3587 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3588 msleep(30);
3589 }
3590
4a219ef8 3591 if (!hp_pin)
6447c962 3592 hp_pin = 0x21;
4a219ef8
KY
3593
3594 msleep(30);
3595
3596 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3597
3598 if (hp_pin_sense)
3599 msleep(2);
3600
3601 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3602
3603 snd_hda_codec_write(codec, hp_pin, 0,
3604 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3605
6447c962 3606 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3607 msleep(85);
3608
3609 snd_hda_codec_write(codec, hp_pin, 0,
3610 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3611
6447c962 3612 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3613 msleep(100);
3614
3615 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3616 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
88d42b2b
KY
3617 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3618 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
c4473744
TH
3619 /*
3620 * Expose headphone mic (or possibly Line In on some machines) instead
3621 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3622 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3623 * this register.
3624 */
3625 alc_write_coef_idx(codec, 0x36, 0x5757);
4a219ef8
KY
3626}
3627
3628static void alc256_shutup(struct hda_codec *codec)
3629{
3630 struct alc_spec *spec = codec->spec;
35a39f98 3631 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3632 bool hp_pin_sense;
3633
6447c962
KY
3634 if (!hp_pin)
3635 hp_pin = 0x21;
4a219ef8 3636
69ea4c9d 3637 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
4a219ef8
KY
3638 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3639
3640 if (hp_pin_sense)
3641 msleep(2);
3642
3643 snd_hda_codec_write(codec, hp_pin, 0,
3644 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3645
6447c962 3646 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3647 msleep(85);
3648
1c9609e3
TI
3649 /* 3k pull low control for Headset jack. */
3650 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3f742490
HW
3651 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3652 * when booting with headset plugged. So skip setting it for the codec alc257
3653 */
69ea4c9d 3654 if (spec->en_3kpull_low)
3f742490 3655 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
1c9609e3 3656
c0ca5ece
TI
3657 if (!spec->no_shutup_pins)
3658 snd_hda_codec_write(codec, hp_pin, 0,
3659 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4a219ef8 3660
6447c962 3661 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3662 msleep(100);
3663
3664 alc_auto_setup_eapd(codec, false);
c0ca5ece 3665 alc_shutup_pins(codec);
6447c962
KY
3666 if (spec->ultra_low_power) {
3667 msleep(50);
3668 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3669 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3670 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3671 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3672 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3673 msleep(30);
3674 }
4a219ef8
KY
3675}
3676
3c24e483
KY
3677static void alc285_hp_init(struct hda_codec *codec)
3678{
3679 struct alc_spec *spec = codec->spec;
3680 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3681 int i, val;
3682 int coef38, coef0d, coef36;
3683
3684 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3685 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3686 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3687 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3688 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3689 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3690
3691 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3692
3693 if (hp_pin)
3694 snd_hda_codec_write(codec, hp_pin, 0,
3695 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3696
3697 msleep(130);
3698 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3699 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3700
3701 if (hp_pin)
3702 snd_hda_codec_write(codec, hp_pin, 0,
3703 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3704 msleep(10);
3705 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3706 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3707 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3708 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3709
3710 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3711 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3712 for (i = 0; i < 20 && val & 0x8000; i++) {
3713 msleep(50);
3714 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3715 } /* Wait for depop procedure finish */
3716
3717 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3718 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3719 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3720 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3721
3722 msleep(50);
3723 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3724}
3725
da911b1f
KY
3726static void alc225_init(struct hda_codec *codec)
3727{
3728 struct alc_spec *spec = codec->spec;
35a39f98 3729 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3730 bool hp1_pin_sense, hp2_pin_sense;
3731
1f680609
YY
3732 if (spec->ultra_low_power) {
3733 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3734 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3735 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3736 msleep(30);
3737 }
3738
60571929
KY
3739 if (spec->codec_variant != ALC269_TYPE_ALC287 &&
3740 spec->codec_variant != ALC269_TYPE_ALC245)
3c24e483
KY
3741 /* required only at boot or S3 and S4 resume time */
3742 if (!spec->done_hp_init ||
3743 is_s3_resume(codec) ||
3744 is_s4_resume(codec)) {
3745 alc285_hp_init(codec);
3746 spec->done_hp_init = true;
3747 }
3748
da911b1f 3749 if (!hp_pin)
d3ba58bb 3750 hp_pin = 0x21;
da911b1f
KY
3751 msleep(30);
3752
3753 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3754 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3755
3756 if (hp1_pin_sense || hp2_pin_sense)
3757 msleep(2);
3758
3759 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3760
d3ba58bb 3761 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3762 snd_hda_codec_write(codec, hp_pin, 0,
3763 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3764 if (hp2_pin_sense)
3765 snd_hda_codec_write(codec, 0x16, 0,
3766 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3767
d3ba58bb 3768 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3769 msleep(85);
3770
d3ba58bb 3771 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3772 snd_hda_codec_write(codec, hp_pin, 0,
3773 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3774 if (hp2_pin_sense)
3775 snd_hda_codec_write(codec, 0x16, 0,
3776 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3777
d3ba58bb 3778 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3779 msleep(100);
3780
3781 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3782 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3783}
3784
3785static void alc225_shutup(struct hda_codec *codec)
3786{
3787 struct alc_spec *spec = codec->spec;
35a39f98 3788 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3789 bool hp1_pin_sense, hp2_pin_sense;
3790
d3ba58bb
KY
3791 if (!hp_pin)
3792 hp_pin = 0x21;
476c02e0
HW
3793
3794 alc_disable_headset_jack_key(codec);
da911b1f
KY
3795 /* 3k pull low control for Headset jack. */
3796 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3797
3798 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3799 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3800
3801 if (hp1_pin_sense || hp2_pin_sense)
3802 msleep(2);
3803
d3ba58bb 3804 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3805 snd_hda_codec_write(codec, hp_pin, 0,
3806 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3807 if (hp2_pin_sense)
3808 snd_hda_codec_write(codec, 0x16, 0,
3809 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3810
d3ba58bb 3811 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3812 msleep(85);
3813
d3ba58bb 3814 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3815 snd_hda_codec_write(codec, hp_pin, 0,
3816 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3817 if (hp2_pin_sense)
3818 snd_hda_codec_write(codec, 0x16, 0,
3819 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3820
d3ba58bb 3821 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3822 msleep(100);
3823
3824 alc_auto_setup_eapd(codec, false);
c0ca5ece 3825 alc_shutup_pins(codec);
d3ba58bb
KY
3826 if (spec->ultra_low_power) {
3827 msleep(50);
3828 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3829 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3830 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3831 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3832 msleep(30);
3833 }
476c02e0
HW
3834
3835 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3836 alc_enable_headset_jack_key(codec);
da911b1f
KY
3837}
3838
c2d6af53
KY
3839static void alc_default_init(struct hda_codec *codec)
3840{
3841 struct alc_spec *spec = codec->spec;
35a39f98 3842 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3843 bool hp_pin_sense;
3844
3845 if (!hp_pin)
3846 return;
3847
3848 msleep(30);
3849
3850 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3851
3852 if (hp_pin_sense)
3853 msleep(2);
3854
3855 snd_hda_codec_write(codec, hp_pin, 0,
3856 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3857
3858 if (hp_pin_sense)
3859 msleep(85);
3860
3861 snd_hda_codec_write(codec, hp_pin, 0,
3862 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3863
3864 if (hp_pin_sense)
3865 msleep(100);
3866}
3867
3868static void alc_default_shutup(struct hda_codec *codec)
3869{
3870 struct alc_spec *spec = codec->spec;
35a39f98 3871 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3872 bool hp_pin_sense;
3873
3874 if (!hp_pin) {
3875 alc269_shutup(codec);
3876 return;
3877 }
3878
3879 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3880
3881 if (hp_pin_sense)
3882 msleep(2);
3883
3884 snd_hda_codec_write(codec, hp_pin, 0,
3885 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3886
3887 if (hp_pin_sense)
3888 msleep(85);
3889
c0ca5ece
TI
3890 if (!spec->no_shutup_pins)
3891 snd_hda_codec_write(codec, hp_pin, 0,
3892 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
c2d6af53
KY
3893
3894 if (hp_pin_sense)
3895 msleep(100);
3896
3897 alc_auto_setup_eapd(codec, false);
c0ca5ece 3898 alc_shutup_pins(codec);
c2d6af53
KY
3899}
3900
693abe11
KY
3901static void alc294_hp_init(struct hda_codec *codec)
3902{
3903 struct alc_spec *spec = codec->spec;
35a39f98 3904 hda_nid_t hp_pin = alc_get_hp_pin(spec);
693abe11
KY
3905 int i, val;
3906
3907 if (!hp_pin)
3908 return;
3909
3910 snd_hda_codec_write(codec, hp_pin, 0,
3911 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3912
3913 msleep(100);
3914
c0ca5ece
TI
3915 if (!spec->no_shutup_pins)
3916 snd_hda_codec_write(codec, hp_pin, 0,
3917 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
693abe11
KY
3918
3919 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3920 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3921
3922 /* Wait for depop procedure finish */
3923 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3924 for (i = 0; i < 20 && val & 0x0080; i++) {
3925 msleep(50);
3926 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3927 }
3928 /* Set HP depop to auto mode */
3929 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3930 msleep(50);
3931}
3932
3933static void alc294_init(struct hda_codec *codec)
3934{
3935 struct alc_spec *spec = codec->spec;
3936
f6ef4e0e
TI
3937 /* required only at boot or S4 resume time */
3938 if (!spec->done_hp_init ||
3939 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
693abe11
KY
3940 alc294_hp_init(codec);
3941 spec->done_hp_init = true;
3942 }
3943 alc_default_init(codec);
3944}
3945
ad60d502
KY
3946static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3947 unsigned int val)
3948{
3949 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3950 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3951 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3952}
3953
3954static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3955{
3956 unsigned int val;
3957
3958 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3959 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3960 & 0xffff;
3961 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3962 << 16;
3963 return val;
3964}
3965
3966static void alc5505_dsp_halt(struct hda_codec *codec)
3967{
3968 unsigned int val;
3969
3970 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3971 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3972 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3973 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3974 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3975 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3976 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3977 val = alc5505_coef_get(codec, 0x6220);
3978 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3979}
3980
3981static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3982{
3983 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3984 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3985 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3986 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3987 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3988 alc5505_coef_set(codec, 0x880c, 0x00000004);
3989}
3990
3991static void alc5505_dsp_init(struct hda_codec *codec)
3992{
3993 unsigned int val;
3994
3995 alc5505_dsp_halt(codec);
3996 alc5505_dsp_back_from_halt(codec);
3997 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3998 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3999 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
4000 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
4001 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
4002 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
4003 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
4004 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
4005 alc5505_coef_set(codec, 0x61b8, 0x04173302);
4006 alc5505_coef_set(codec, 0x61b8, 0x04163302);
4007 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
4008 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
4009 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
4010
4011 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
4012 if (val <= 3)
4013 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
4014 else
4015 alc5505_coef_set(codec, 0x6220, 0x6002018f);
4016
4017 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
4018 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
4019 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
4020 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
4021 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
4022 alc5505_coef_set(codec, 0x880c, 0x00000003);
4023 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
4024
4025#ifdef HALT_REALTEK_ALC5505
4026 alc5505_dsp_halt(codec);
4027#endif
ad60d502
KY
4028}
4029
cd63a5ff 4030#ifdef HALT_REALTEK_ALC5505
8a71821f
PLB
4031#define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
4032#define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
cd63a5ff
TI
4033#else
4034#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4035#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4036#endif
4037
2a43952a 4038#ifdef CONFIG_PM
ad60d502
KY
4039static int alc269_suspend(struct hda_codec *codec)
4040{
4041 struct alc_spec *spec = codec->spec;
4042
4043 if (spec->has_alc5505_dsp)
cd63a5ff 4044 alc5505_dsp_suspend(codec);
1873ebd3 4045
ad60d502
KY
4046 return alc_suspend(codec);
4047}
4048
1d045db9
TI
4049static int alc269_resume(struct hda_codec *codec)
4050{
adcc70b2
KY
4051 struct alc_spec *spec = codec->spec;
4052
1387e2d1
KY
4053 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4054 alc269vb_toggle_power_output(codec, 0);
4055 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4056 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
4057 msleep(150);
4058 }
8c427226 4059
1d045db9 4060 codec->patch_ops.init(codec);
f1d4e28b 4061
1387e2d1
KY
4062 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4063 alc269vb_toggle_power_output(codec, 1);
4064 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4065 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
4066 msleep(200);
4067 }
f1d4e28b 4068
1a462be5 4069 snd_hda_regmap_sync(codec);
1d045db9 4070 hda_call_check_power_status(codec, 0x01);
f475371a
HW
4071
4072 /* on some machine, the BIOS will clear the codec gpio data when enter
4073 * suspend, and won't restore the data after resume, so we restore it
4074 * in the driver.
4075 */
d261eec8
TI
4076 if (spec->gpio_data)
4077 alc_write_gpio_data(codec);
f475371a 4078
ad60d502 4079 if (spec->has_alc5505_dsp)
cd63a5ff 4080 alc5505_dsp_resume(codec);
c5177c86 4081
1d045db9
TI
4082 return 0;
4083}
2a43952a 4084#endif /* CONFIG_PM */
f1d4e28b 4085
108cc108 4086static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 4087 const struct hda_fixup *fix, int action)
108cc108
DH
4088{
4089 struct alc_spec *spec = codec->spec;
4090
1727a771 4091 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
4092 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4093}
4094
fdcc968a
JMG
4095static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4096 const struct hda_fixup *fix,
4097 int action)
4098{
4099 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4100 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4101
4102 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4103 snd_hda_codec_set_pincfg(codec, 0x19,
4104 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4105 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4106}
4107
1d045db9 4108static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 4109 const struct hda_fixup *fix, int action)
1d045db9 4110{
98b24883
TI
4111 if (action == HDA_FIXUP_ACT_INIT)
4112 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
1d045db9 4113}
f1d4e28b 4114
7c478f03
DH
4115static void alc269_fixup_headset_mic(struct hda_codec *codec,
4116 const struct hda_fixup *fix, int action)
4117{
4118 struct alc_spec *spec = codec->spec;
4119
4120 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4121 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4122}
4123
1d045db9 4124static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 4125 const struct hda_fixup *fix, int action)
1d045db9
TI
4126{
4127 static const struct hda_verb verbs[] = {
4128 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4129 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4130 {}
4131 };
4132 unsigned int cfg;
f1d4e28b 4133
7639a06c
TI
4134 if (strcmp(codec->core.chip_name, "ALC271X") &&
4135 strcmp(codec->core.chip_name, "ALC269VB"))
1d045db9
TI
4136 return;
4137 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4138 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4139 snd_hda_sequence_write(codec, verbs);
4140}
f1d4e28b 4141
c8426b27
TI
4142/* Fix the speaker amp after resume, etc */
4143static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4144 const struct hda_fixup *fix,
4145 int action)
4146{
4147 if (action == HDA_FIXUP_ACT_INIT)
4148 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4149}
4150
017f2a10 4151static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 4152 const struct hda_fixup *fix, int action)
017f2a10
TI
4153{
4154 struct alc_spec *spec = codec->spec;
4155
1727a771 4156 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
4157 return;
4158
4159 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4160 * fix the sample rate of analog I/O to 44.1kHz
4161 */
08c189f2
TI
4162 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4163 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
4164}
4165
adabb3ec 4166static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 4167 const struct hda_fixup *fix, int action)
adabb3ec 4168{
adabb3ec
TI
4169 /* The digital-mic unit sends PDM (differential signal) instead of
4170 * the standard PCM, thus you can't record a valid mono stream as is.
4171 * Below is a workaround specific to ALC269 to control the dmic
4172 * signal source as mono.
4173 */
98b24883
TI
4174 if (action == HDA_FIXUP_ACT_INIT)
4175 alc_update_coef_idx(codec, 0x07, 0, 0x80);
adabb3ec
TI
4176}
4177
24519911
TI
4178static void alc269_quanta_automute(struct hda_codec *codec)
4179{
08c189f2 4180 snd_hda_gen_update_outputs(codec);
24519911 4181
1687ccc8
TI
4182 alc_write_coef_idx(codec, 0x0c, 0x680);
4183 alc_write_coef_idx(codec, 0x0c, 0x480);
24519911
TI
4184}
4185
4186static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 4187 const struct hda_fixup *fix, int action)
24519911
TI
4188{
4189 struct alc_spec *spec = codec->spec;
1727a771 4190 if (action != HDA_FIXUP_ACT_PROBE)
24519911 4191 return;
08c189f2 4192 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
4193}
4194
d240d1dc 4195static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 4196 struct hda_jack_callback *jack)
d240d1dc
DH
4197{
4198 struct alc_spec *spec = codec->spec;
4199 int vref;
4200 msleep(200);
4201 snd_hda_gen_hp_automute(codec, jack);
4202
4203 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4204 msleep(100);
4205 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4206 vref);
4207 msleep(500);
4208 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4209 vref);
4210}
4211
a2ef03fe
TE
4212/*
4213 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4214 */
4215struct hda_alc298_mbxinit {
4216 unsigned char value_0x23;
4217 unsigned char value_0x25;
4218};
4219
4220static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4221 const struct hda_alc298_mbxinit *initval,
4222 bool first)
4223{
4224 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4225 alc_write_coef_idx(codec, 0x26, 0xb000);
4226
4227 if (first)
4228 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4229
4230 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4231 alc_write_coef_idx(codec, 0x26, 0xf000);
4232 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4233
4234 if (initval->value_0x23 != 0x1e)
4235 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4236
4237 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4238 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4239}
4240
4241static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4242 const struct hda_fixup *fix,
4243 int action)
4244{
4245 /* Initialization magic */
4246 static const struct hda_alc298_mbxinit dac_init[] = {
4247 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4248 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4249 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4250 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4251 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4252 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4253 {0x2f, 0x00},
4254 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4255 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4256 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4257 {}
4258 };
4259 const struct hda_alc298_mbxinit *seq;
4260
4261 if (action != HDA_FIXUP_ACT_INIT)
4262 return;
4263
4264 /* Start */
4265 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4266 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4267 alc_write_coef_idx(codec, 0x26, 0xf000);
4268 alc_write_coef_idx(codec, 0x22, 0x31);
4269 alc_write_coef_idx(codec, 0x23, 0x0b);
4270 alc_write_coef_idx(codec, 0x25, 0x00);
4271 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4272 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4273
4274 for (seq = dac_init; seq->value_0x23; seq++)
4275 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4276}
4277
d240d1dc
DH
4278static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4279 const struct hda_fixup *fix, int action)
4280{
4281 struct alc_spec *spec = codec->spec;
4282 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4283 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4284 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4285 }
4286}
4287
766538ac
TI
4288static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4289 bool polarity, bool on)
4290{
4291 unsigned int pinval;
4292
4293 if (!pin)
4294 return;
4295 if (polarity)
4296 on = !on;
4297 pinval = snd_hda_codec_get_pin_target(codec, pin);
4298 pinval &= ~AC_PINCTL_VREFEN;
4299 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4300 /* temporarily power up/down for setting VREF */
4301 snd_hda_power_up_pm(codec);
4302 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4303 snd_hda_power_down_pm(codec);
4304}
d240d1dc 4305
08fb0d0e 4306/* update mute-LED according to the speaker mute state via mic VREF pin */
8d3d1ece
TI
4307static int vref_mute_led_set(struct led_classdev *led_cdev,
4308 enum led_brightness brightness)
6d3cd5d4 4309{
8d3d1ece 4310 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
08fb0d0e 4311 struct alc_spec *spec = codec->spec;
08fb0d0e 4312
766538ac
TI
4313 alc_update_vref_led(codec, spec->mute_led_nid,
4314 spec->mute_led_polarity, brightness);
8d3d1ece 4315 return 0;
6d3cd5d4
DH
4316}
4317
d5b6b65e
DH
4318/* Make sure the led works even in runtime suspend */
4319static unsigned int led_power_filter(struct hda_codec *codec,
4320 hda_nid_t nid,
4321 unsigned int power_state)
4322{
4323 struct alc_spec *spec = codec->spec;
4324
50dd9050
HW
4325 if (power_state != AC_PWRST_D3 || nid == 0 ||
4326 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
d5b6b65e
DH
4327 return power_state;
4328
4329 /* Set pin ctl again, it might have just been set to 0 */
4330 snd_hda_set_pin_ctl(codec, nid,
4331 snd_hda_codec_get_pin_target(codec, nid));
4332
cffd3966 4333 return snd_hda_gen_path_power_filter(codec, nid, power_state);
d5b6b65e
DH
4334}
4335
08fb0d0e
TI
4336static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4337 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
4338{
4339 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
4340 const struct dmi_device *dev = NULL;
4341
4342 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4343 return;
4344
4345 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4346 int pol, pin;
4347 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4348 continue;
4349 if (pin < 0x0a || pin >= 0x10)
4350 break;
4351 spec->mute_led_polarity = pol;
4352 spec->mute_led_nid = pin - 0x0a + 0x18;
8d3d1ece 4353 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4354 codec->power_filter = led_power_filter;
4e76a883
TI
4355 codec_dbg(codec,
4356 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
08fb0d0e 4357 spec->mute_led_polarity);
6d3cd5d4
DH
4358 break;
4359 }
4360}
4361
85c467dc
TI
4362static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4363 const struct hda_fixup *fix,
4364 int action, hda_nid_t pin)
d06ac143
DH
4365{
4366 struct alc_spec *spec = codec->spec;
85c467dc 4367
d06ac143
DH
4368 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4369 spec->mute_led_polarity = 0;
85c467dc 4370 spec->mute_led_nid = pin;
8d3d1ece 4371 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4372 codec->power_filter = led_power_filter;
d06ac143
DH
4373 }
4374}
4375
85c467dc
TI
4376static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4377 const struct hda_fixup *fix, int action)
4378{
4379 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4380}
4381
08fb0d0e
TI
4382static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4383 const struct hda_fixup *fix, int action)
420b0feb 4384{
85c467dc 4385 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
420b0feb
TI
4386}
4387
7f783bd5
TB
4388static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4389 const struct hda_fixup *fix, int action)
4390{
85c467dc 4391 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
7f783bd5
TB
4392}
4393
0f32fd19
TI
4394/* update LED status via GPIO */
4395static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
dbd13179 4396 int polarity, bool enabled)
9f5c6faf 4397{
dbd13179 4398 if (polarity)
0f32fd19 4399 enabled = !enabled;
d261eec8 4400 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
9f5c6faf
TI
4401}
4402
0f32fd19 4403/* turn on/off mute LED via GPIO per vmaster hook */
8d3d1ece
TI
4404static int gpio_mute_led_set(struct led_classdev *led_cdev,
4405 enum led_brightness brightness)
9f5c6faf 4406{
8d3d1ece 4407 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9f5c6faf 4408 struct alc_spec *spec = codec->spec;
9f5c6faf 4409
dbd13179 4410 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
8d3d1ece
TI
4411 spec->mute_led_polarity, !brightness);
4412 return 0;
0f32fd19 4413}
9f5c6faf 4414
0f32fd19 4415/* turn on/off mic-mute LED via GPIO per capture hook */
87dc3648
KHF
4416static int micmute_led_set(struct led_classdev *led_cdev,
4417 enum led_brightness brightness)
4418{
4419 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4420 struct alc_spec *spec = codec->spec;
4421
4422 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
40469064 4423 spec->micmute_led_polarity, !brightness);
87dc3648
KHF
4424 return 0;
4425}
4426
01e4a275
TI
4427/* setup mute and mic-mute GPIO bits, add hooks appropriately */
4428static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4429 int action,
4430 unsigned int mute_mask,
4431 unsigned int micmute_mask)
9f5c6faf
TI
4432{
4433 struct alc_spec *spec = codec->spec;
9f5c6faf 4434
01e4a275
TI
4435 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4436
4437 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4438 return;
4439 if (mute_mask) {
4440 spec->gpio_mute_led_mask = mute_mask;
8d3d1ece 4441 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
01e4a275
TI
4442 }
4443 if (micmute_mask) {
4444 spec->gpio_mic_led_mask = micmute_mask;
7cdf8c49 4445 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
9f5c6faf
TI
4446 }
4447}
4448
e7d66cf7
JS
4449static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4450 const struct hda_fixup *fix, int action)
4451{
4452 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4453}
4454
01e4a275 4455static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
eaa8e5ef
KY
4456 const struct hda_fixup *fix, int action)
4457{
01e4a275
TI
4458 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4459}
eaa8e5ef 4460
f5a88b0a
KHF
4461static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4462 const struct hda_fixup *fix, int action)
4463{
3e0650ab 4464 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
f5a88b0a
KHF
4465}
4466
01e4a275
TI
4467static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4468 const struct hda_fixup *fix, int action)
4469{
4470 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
9f5c6faf
TI
4471}
4472
a0ccbc53
KY
4473static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4474 const struct hda_fixup *fix, int action)
4475{
4476 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4477}
4478
5fc462c3
JC
4479static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4480 const struct hda_fixup *fix, int action)
4481{
4482 struct alc_spec *spec = codec->spec;
4483
4484 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4485 spec->micmute_led_polarity = 1;
4486 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4487}
4488
8a503555
TI
4489/* turn on/off mic-mute LED per capture hook via VREF change */
4490static int vref_micmute_led_set(struct led_classdev *led_cdev,
4491 enum led_brightness brightness)
9c5dc3bf 4492{
8a503555 4493 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9c5dc3bf 4494 struct alc_spec *spec = codec->spec;
9c5dc3bf 4495
766538ac
TI
4496 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4497 spec->micmute_led_polarity, brightness);
8a503555 4498 return 0;
9c5dc3bf
KY
4499}
4500
4501static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4502 const struct hda_fixup *fix, int action)
4503{
4504 struct alc_spec *spec = codec->spec;
9c5dc3bf 4505
01e4a275 4506 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
9c5dc3bf 4507 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
4508 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4509 * enable headphone amp
4510 */
4511 spec->gpio_mask |= 0x10;
4512 spec->gpio_dir |= 0x10;
9c5dc3bf 4513 spec->cap_mute_led_nid = 0x18;
8a503555 4514 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
50dd9050 4515 codec->power_filter = led_power_filter;
9c5dc3bf
KY
4516 }
4517}
4518
7a5255f1
DH
4519static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4520 const struct hda_fixup *fix, int action)
4521{
7a5255f1 4522 struct alc_spec *spec = codec->spec;
7a5255f1 4523
01e4a275 4524 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
7a5255f1 4525 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7a5255f1 4526 spec->cap_mute_led_nid = 0x18;
8a503555 4527 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
7a5255f1
DH
4528 codec->power_filter = led_power_filter;
4529 }
4530}
4531
c3bb2b52
TI
4532/* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4533 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4534 */
4535static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4536 const struct hda_fixup *fix, int action)
4537{
4538 struct alc_spec *spec = codec->spec;
4539
4540 switch (action) {
4541 case HDA_FIXUP_ACT_PRE_PROBE:
4542 spec->gpio_mask |= 0x01;
4543 spec->gpio_dir |= 0x01;
4544 break;
4545 case HDA_FIXUP_ACT_INIT:
4546 /* need to toggle GPIO to enable the amp */
4547 alc_update_gpio_data(codec, 0x01, true);
4548 msleep(100);
4549 alc_update_gpio_data(codec, 0x01, false);
4550 break;
4551 }
4552}
4553
622464c8
TI
4554/* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4555static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4556 struct hda_codec *codec,
4557 struct snd_pcm_substream *substream,
4558 int action)
4559{
4560 switch (action) {
4561 case HDA_GEN_PCM_ACT_PREPARE:
4562 alc_update_gpio_data(codec, 0x04, true);
4563 break;
4564 case HDA_GEN_PCM_ACT_CLEANUP:
4565 alc_update_gpio_data(codec, 0x04, false);
4566 break;
4567 }
4568}
4569
4570static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4571 const struct hda_fixup *fix,
4572 int action)
4573{
4574 struct alc_spec *spec = codec->spec;
4575
4576 if (action == HDA_FIXUP_ACT_PROBE) {
4577 spec->gpio_mask |= 0x04;
4578 spec->gpio_dir |= 0x04;
4579 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4580 }
4581}
4582
766538ac
TI
4583static void alc_update_coef_led(struct hda_codec *codec,
4584 struct alc_coef_led *led,
4585 bool polarity, bool on)
4586{
4587 if (polarity)
4588 on = !on;
4589 /* temporarily power up/down for setting COEF bit */
4590 alc_update_coef_idx(codec, led->idx, led->mask,
4591 on ? led->on : led->off);
4592}
4593
431e76c3 4594/* update mute-LED according to the speaker mute state via COEF bit */
8d3d1ece
TI
4595static int coef_mute_led_set(struct led_classdev *led_cdev,
4596 enum led_brightness brightness)
431e76c3 4597{
8d3d1ece 4598 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4599 struct alc_spec *spec = codec->spec;
4600
766538ac
TI
4601 alc_update_coef_led(codec, &spec->mute_led_coef,
4602 spec->mute_led_polarity, brightness);
8d3d1ece 4603 return 0;
431e76c3
KY
4604}
4605
4606static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4607 const struct hda_fixup *fix,
4608 int action)
4609{
4610 struct alc_spec *spec = codec->spec;
4611
4612 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4613 spec->mute_led_polarity = 0;
766538ac
TI
4614 spec->mute_led_coef.idx = 0x0b;
4615 spec->mute_led_coef.mask = 1 << 3;
4616 spec->mute_led_coef.on = 1 << 3;
4617 spec->mute_led_coef.off = 0;
8d3d1ece 4618 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
431e76c3
KY
4619 }
4620}
4621
24164f43
KY
4622static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4623 const struct hda_fixup *fix,
4624 int action)
4625{
4626 struct alc_spec *spec = codec->spec;
4627
4628 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4629 spec->mute_led_polarity = 0;
766538ac
TI
4630 spec->mute_led_coef.idx = 0x34;
4631 spec->mute_led_coef.mask = 1 << 5;
4632 spec->mute_led_coef.on = 0;
4633 spec->mute_led_coef.off = 1 << 5;
8d3d1ece 4634 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
24164f43
KY
4635 }
4636}
4637
0659400f
LG
4638static void alc236_fixup_hp_mute_led_coefbit2(struct hda_codec *codec,
4639 const struct hda_fixup *fix, int action)
4640{
4641 struct alc_spec *spec = codec->spec;
4642
4643 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4644 spec->mute_led_polarity = 0;
4645 spec->mute_led_coef.idx = 0x07;
4646 spec->mute_led_coef.mask = 1;
4647 spec->mute_led_coef.on = 1;
4648 spec->mute_led_coef.off = 0;
4649 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4650 }
4651}
4652
93dc18e1
SJ
4653static void alc245_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4654 const struct hda_fixup *fix,
4655 int action)
4656{
4657 struct alc_spec *spec = codec->spec;
4658
4659 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4660 spec->mute_led_polarity = 0;
4661 spec->mute_led_coef.idx = 0x0b;
4662 spec->mute_led_coef.mask = 3 << 2;
4663 spec->mute_led_coef.on = 2 << 2;
4664 spec->mute_led_coef.off = 1 << 2;
4665 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
4666 }
4667}
4668
431e76c3 4669/* turn on/off mic-mute LED per capture hook by coef bit */
8a503555
TI
4670static int coef_micmute_led_set(struct led_classdev *led_cdev,
4671 enum led_brightness brightness)
431e76c3 4672{
8a503555 4673 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4674 struct alc_spec *spec = codec->spec;
4675
766538ac
TI
4676 alc_update_coef_led(codec, &spec->mic_led_coef,
4677 spec->micmute_led_polarity, brightness);
8a503555 4678 return 0;
431e76c3
KY
4679}
4680
4681static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4682 const struct hda_fixup *fix, int action)
4683{
4684 struct alc_spec *spec = codec->spec;
4685
4686 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4687 spec->mic_led_coef.idx = 0x19;
4688 spec->mic_led_coef.mask = 1 << 13;
4689 spec->mic_led_coef.on = 1 << 13;
4690 spec->mic_led_coef.off = 0;
8a503555 4691 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
431e76c3
KY
4692 }
4693}
4694
ca88eeb3
LG
4695static void alc285_fixup_hp_gpio_micmute_led(struct hda_codec *codec,
4696 const struct hda_fixup *fix, int action)
4697{
4698 struct alc_spec *spec = codec->spec;
4699
4700 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4701 spec->micmute_led_polarity = 1;
4702 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4703}
4704
24164f43
KY
4705static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4706 const struct hda_fixup *fix, int action)
4707{
4708 struct alc_spec *spec = codec->spec;
4709
4710 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4711 spec->mic_led_coef.idx = 0x35;
4712 spec->mic_led_coef.mask = 3 << 2;
4713 spec->mic_led_coef.on = 2 << 2;
4714 spec->mic_led_coef.off = 1 << 2;
8a503555 4715 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
24164f43
KY
4716 }
4717}
4718
431e76c3
KY
4719static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4720 const struct hda_fixup *fix, int action)
4721{
4722 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4723 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4724}
4725
ca88eeb3
LG
4726static void alc285_fixup_hp_spectre_x360_mute_led(struct hda_codec *codec,
4727 const struct hda_fixup *fix, int action)
4728{
4729 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4730 alc285_fixup_hp_gpio_micmute_led(codec, fix, action);
4731}
4732
24164f43
KY
4733static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4734 const struct hda_fixup *fix, int action)
4735{
4736 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4737 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4738}
4739
75b62ab6
JW
4740static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4741 const struct hda_fixup *fix, int action)
4742{
4743 struct alc_spec *spec = codec->spec;
4744
4745 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4746 spec->cap_mute_led_nid = 0x1a;
4747 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4748 codec->power_filter = led_power_filter;
4749 }
4750}
4751
4752static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4753 const struct hda_fixup *fix, int action)
4754{
4755 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4756 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4757}
4758
a2d57ebe
KM
4759static inline void alc298_samsung_write_coef_pack(struct hda_codec *codec,
4760 const unsigned short coefs[2])
4761{
4762 alc_write_coef_idx(codec, 0x23, coefs[0]);
4763 alc_write_coef_idx(codec, 0x25, coefs[1]);
4764 alc_write_coef_idx(codec, 0x26, 0xb011);
4765}
4766
4767struct alc298_samsung_amp_desc {
4768 unsigned char nid;
4769 unsigned short init_seq[2][2];
4770};
4771
4772static void alc298_fixup_samsung_amp(struct hda_codec *codec,
4773 const struct hda_fixup *fix, int action)
4774{
4775 int i, j;
4776 static const unsigned short init_seq[][2] = {
4777 { 0x19, 0x00 }, { 0x20, 0xc0 }, { 0x22, 0x44 }, { 0x23, 0x08 },
4778 { 0x24, 0x85 }, { 0x25, 0x41 }, { 0x35, 0x40 }, { 0x36, 0x01 },
4779 { 0x38, 0x81 }, { 0x3a, 0x03 }, { 0x3b, 0x81 }, { 0x40, 0x3e },
4780 { 0x41, 0x07 }, { 0x400, 0x1 }
4781 };
4782 static const struct alc298_samsung_amp_desc amps[] = {
4783 { 0x3a, { { 0x18, 0x1 }, { 0x26, 0x0 } } },
4784 { 0x39, { { 0x18, 0x2 }, { 0x26, 0x1 } } }
4785 };
4786
4787 if (action != HDA_FIXUP_ACT_INIT)
4788 return;
4789
4790 for (i = 0; i < ARRAY_SIZE(amps); i++) {
4791 alc_write_coef_idx(codec, 0x22, amps[i].nid);
4792
4793 for (j = 0; j < ARRAY_SIZE(amps[i].init_seq); j++)
4794 alc298_samsung_write_coef_pack(codec, amps[i].init_seq[j]);
4795
4796 for (j = 0; j < ARRAY_SIZE(init_seq); j++)
4797 alc298_samsung_write_coef_pack(codec, init_seq[j]);
4798 }
4799}
4800
6a30abaa 4801#if IS_REACHABLE(CONFIG_INPUT)
33f4acd3
DH
4802static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4803 struct hda_jack_callback *event)
4804{
4805 struct alc_spec *spec = codec->spec;
4806
4807 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4808 send both key on and key off event for every interrupt. */
c7b60a89 4809 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
33f4acd3 4810 input_sync(spec->kb_dev);
c7b60a89 4811 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
33f4acd3
DH
4812 input_sync(spec->kb_dev);
4813}
33f4acd3 4814
3694cb29
K
4815static int alc_register_micmute_input_device(struct hda_codec *codec)
4816{
4817 struct alc_spec *spec = codec->spec;
c7b60a89 4818 int i;
3694cb29
K
4819
4820 spec->kb_dev = input_allocate_device();
4821 if (!spec->kb_dev) {
4822 codec_err(codec, "Out of memory (input_allocate_device)\n");
4823 return -ENOMEM;
4824 }
c7b60a89
HW
4825
4826 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4827
3694cb29
K
4828 spec->kb_dev->name = "Microphone Mute Button";
4829 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
c7b60a89
HW
4830 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4831 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4832 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4833 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4834 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3694cb29
K
4835
4836 if (input_register_device(spec->kb_dev)) {
4837 codec_err(codec, "input_register_device failed\n");
4838 input_free_device(spec->kb_dev);
4839 spec->kb_dev = NULL;
4840 return -ENOMEM;
4841 }
4842
4843 return 0;
4844}
4845
01e4a275
TI
4846/* GPIO1 = set according to SKU external amp
4847 * GPIO2 = mic mute hotkey
4848 * GPIO3 = mute LED
4849 * GPIO4 = mic mute LED
4850 */
33f4acd3
DH
4851static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4852 const struct hda_fixup *fix, int action)
4853{
33f4acd3
DH
4854 struct alc_spec *spec = codec->spec;
4855
01e4a275 4856 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
33f4acd3 4857 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4858 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29 4859 if (alc_register_micmute_input_device(codec) != 0)
33f4acd3 4860 return;
33f4acd3 4861
01e4a275
TI
4862 spec->gpio_mask |= 0x06;
4863 spec->gpio_dir |= 0x02;
4864 spec->gpio_data |= 0x02;
7639a06c 4865 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
33f4acd3 4866 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
7639a06c 4867 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
33f4acd3 4868 gpio2_mic_hotkey_event);
33f4acd3
DH
4869 return;
4870 }
4871
4872 if (!spec->kb_dev)
4873 return;
4874
4875 switch (action) {
33f4acd3
DH
4876 case HDA_FIXUP_ACT_FREE:
4877 input_unregister_device(spec->kb_dev);
33f4acd3
DH
4878 spec->kb_dev = NULL;
4879 }
33f4acd3
DH
4880}
4881
01e4a275
TI
4882/* Line2 = mic mute hotkey
4883 * GPIO2 = mic mute LED
4884 */
3694cb29
K
4885static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4886 const struct hda_fixup *fix, int action)
4887{
3694cb29
K
4888 struct alc_spec *spec = codec->spec;
4889
01e4a275 4890 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
3694cb29 4891 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4892 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29
K
4893 if (alc_register_micmute_input_device(codec) != 0)
4894 return;
4895
3694cb29
K
4896 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4897 gpio2_mic_hotkey_event);
3694cb29
K
4898 return;
4899 }
4900
4901 if (!spec->kb_dev)
4902 return;
4903
4904 switch (action) {
3694cb29
K
4905 case HDA_FIXUP_ACT_FREE:
4906 input_unregister_device(spec->kb_dev);
4907 spec->kb_dev = NULL;
4908 }
4909}
c469652b
TI
4910#else /* INPUT */
4911#define alc280_fixup_hp_gpio2_mic_hotkey NULL
4912#define alc233_fixup_lenovo_line2_mic_hotkey NULL
4913#endif /* INPUT */
3694cb29 4914
9c5dc3bf
KY
4915static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4916 const struct hda_fixup *fix, int action)
4917{
4918 struct alc_spec *spec = codec->spec;
4919
1bce62a6 4920 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
9c5dc3bf 4921 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9c5dc3bf 4922 spec->cap_mute_led_nid = 0x18;
8a503555 4923 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
9c5dc3bf
KY
4924 }
4925}
4926
6b0f95c4 4927static const struct coef_fw alc225_pre_hsmode[] = {
5a36767a
KY
4928 UPDATE_COEF(0x4a, 1<<8, 0),
4929 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4930 UPDATE_COEF(0x63, 3<<14, 3<<14),
4931 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4932 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4933 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4934 UPDATE_COEF(0x4a, 3<<10, 0),
4935 {}
4936};
4937
73bdd597
DH
4938static void alc_headset_mode_unplugged(struct hda_codec *codec)
4939{
92666d45 4940 struct alc_spec *spec = codec->spec;
6b0f95c4 4941 static const struct coef_fw coef0255[] = {
717f43d8 4942 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
54db6c39
TI
4943 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4944 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4945 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4946 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4947 {}
4948 };
6b0f95c4 4949 static const struct coef_fw coef0256[] = {
e69e7e03 4950 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
717f43d8
KY
4951 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4952 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4953 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4954 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
e69e7e03
KY
4955 {}
4956 };
6b0f95c4 4957 static const struct coef_fw coef0233[] = {
54db6c39
TI
4958 WRITE_COEF(0x1b, 0x0c0b),
4959 WRITE_COEF(0x45, 0xc429),
4960 UPDATE_COEF(0x35, 0x4000, 0),
4961 WRITE_COEF(0x06, 0x2104),
4962 WRITE_COEF(0x1a, 0x0001),
4963 WRITE_COEF(0x26, 0x0004),
4964 WRITE_COEF(0x32, 0x42a3),
4965 {}
4966 };
6b0f95c4 4967 static const struct coef_fw coef0288[] = {
f3b70332
KY
4968 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4969 UPDATE_COEF(0x50, 0x2000, 0x2000),
4970 UPDATE_COEF(0x56, 0x0006, 0x0006),
4971 UPDATE_COEF(0x66, 0x0008, 0),
4972 UPDATE_COEF(0x67, 0x2000, 0),
4973 {}
4974 };
6b0f95c4 4975 static const struct coef_fw coef0298[] = {
89542936
KY
4976 UPDATE_COEF(0x19, 0x1300, 0x0300),
4977 {}
4978 };
6b0f95c4 4979 static const struct coef_fw coef0292[] = {
54db6c39
TI
4980 WRITE_COEF(0x76, 0x000e),
4981 WRITE_COEF(0x6c, 0x2400),
4982 WRITE_COEF(0x18, 0x7308),
4983 WRITE_COEF(0x6b, 0xc429),
4984 {}
4985 };
6b0f95c4 4986 static const struct coef_fw coef0293[] = {
54db6c39
TI
4987 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4988 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4989 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4990 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4991 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4992 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4993 {}
4994 };
6b0f95c4 4995 static const struct coef_fw coef0668[] = {
54db6c39
TI
4996 WRITE_COEF(0x15, 0x0d40),
4997 WRITE_COEF(0xb7, 0x802b),
4998 {}
4999 };
6b0f95c4 5000 static const struct coef_fw coef0225[] = {
5a36767a 5001 UPDATE_COEF(0x63, 3<<14, 0),
4cc9b9d6
KY
5002 {}
5003 };
6b0f95c4 5004 static const struct coef_fw coef0274[] = {
71683c32
KY
5005 UPDATE_COEF(0x4a, 0x0100, 0),
5006 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
5007 UPDATE_COEF(0x6b, 0xf000, 0x5000),
5008 UPDATE_COEF(0x4a, 0x0010, 0),
5009 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
5010 WRITE_COEF(0x45, 0x5289),
5011 UPDATE_COEF(0x4a, 0x0c00, 0),
5012 {}
5013 };
54db6c39 5014
92666d45
KY
5015 if (spec->no_internal_mic_pin) {
5016 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5017 return;
5018 }
5019
7639a06c 5020 switch (codec->core.vendor_id) {
9a22a8f5 5021 case 0x10ec0255:
e69e7e03
KY
5022 alc_process_coef_fw(codec, coef0255);
5023 break;
1948fc06 5024 case 0x10ec0230:
736f20a7 5025 case 0x10ec0236:
7081adf3 5026 case 0x10ec0256:
527f4643 5027 case 0x19e58326:
e69e7e03 5028 alc_process_coef_fw(codec, coef0256);
9a22a8f5 5029 break;
71683c32
KY
5030 case 0x10ec0234:
5031 case 0x10ec0274:
5032 case 0x10ec0294:
5033 alc_process_coef_fw(codec, coef0274);
5034 break;
13fd08a3 5035 case 0x10ec0233:
73bdd597 5036 case 0x10ec0283:
54db6c39 5037 alc_process_coef_fw(codec, coef0233);
73bdd597 5038 break;
f3b70332
KY
5039 case 0x10ec0286:
5040 case 0x10ec0288:
89542936
KY
5041 alc_process_coef_fw(codec, coef0288);
5042 break;
1a5bc8d9 5043 case 0x10ec0298:
89542936 5044 alc_process_coef_fw(codec, coef0298);
f3b70332
KY
5045 alc_process_coef_fw(codec, coef0288);
5046 break;
73bdd597 5047 case 0x10ec0292:
54db6c39 5048 alc_process_coef_fw(codec, coef0292);
73bdd597 5049 break;
a22aa26f 5050 case 0x10ec0293:
54db6c39 5051 alc_process_coef_fw(codec, coef0293);
a22aa26f 5052 break;
73bdd597 5053 case 0x10ec0668:
54db6c39 5054 alc_process_coef_fw(codec, coef0668);
73bdd597 5055 break;
c2b691ee 5056 case 0x10ec0215:
4cc9b9d6 5057 case 0x10ec0225:
c2b691ee 5058 case 0x10ec0285:
7d727869 5059 case 0x10ec0295:
c2b691ee 5060 case 0x10ec0289:
28f1f9b2 5061 case 0x10ec0299:
4d4b0c52 5062 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
5063 alc_process_coef_fw(codec, coef0225);
5064 break;
78f4f7c2
KY
5065 case 0x10ec0867:
5066 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5067 break;
73bdd597 5068 }
4e76a883 5069 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
73bdd597
DH
5070}
5071
5072
5073static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
5074 hda_nid_t mic_pin)
5075{
6b0f95c4 5076 static const struct coef_fw coef0255[] = {
54db6c39
TI
5077 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
5078 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5079 {}
5080 };
6b0f95c4 5081 static const struct coef_fw coef0256[] = {
717f43d8
KY
5082 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
5083 WRITE_COEFEX(0x57, 0x03, 0x09a3),
5084 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
5085 {}
5086 };
6b0f95c4 5087 static const struct coef_fw coef0233[] = {
54db6c39
TI
5088 UPDATE_COEF(0x35, 0, 1<<14),
5089 WRITE_COEF(0x06, 0x2100),
5090 WRITE_COEF(0x1a, 0x0021),
5091 WRITE_COEF(0x26, 0x008c),
5092 {}
5093 };
6b0f95c4 5094 static const struct coef_fw coef0288[] = {
89542936 5095 UPDATE_COEF(0x4f, 0x00c0, 0),
f3b70332
KY
5096 UPDATE_COEF(0x50, 0x2000, 0),
5097 UPDATE_COEF(0x56, 0x0006, 0),
5098 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
5099 UPDATE_COEF(0x66, 0x0008, 0x0008),
5100 UPDATE_COEF(0x67, 0x2000, 0x2000),
5101 {}
5102 };
6b0f95c4 5103 static const struct coef_fw coef0292[] = {
54db6c39
TI
5104 WRITE_COEF(0x19, 0xa208),
5105 WRITE_COEF(0x2e, 0xacf0),
5106 {}
5107 };
6b0f95c4 5108 static const struct coef_fw coef0293[] = {
54db6c39
TI
5109 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
5110 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
5111 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5112 {}
5113 };
6b0f95c4 5114 static const struct coef_fw coef0688[] = {
54db6c39
TI
5115 WRITE_COEF(0xb7, 0x802b),
5116 WRITE_COEF(0xb5, 0x1040),
5117 UPDATE_COEF(0xc3, 0, 1<<12),
5118 {}
5119 };
6b0f95c4 5120 static const struct coef_fw coef0225[] = {
4cc9b9d6
KY
5121 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
5122 UPDATE_COEF(0x4a, 3<<4, 2<<4),
5123 UPDATE_COEF(0x63, 3<<14, 0),
5124 {}
5125 };
6b0f95c4 5126 static const struct coef_fw coef0274[] = {
71683c32
KY
5127 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5128 UPDATE_COEF(0x4a, 0x0010, 0),
5129 UPDATE_COEF(0x6b, 0xf000, 0),
5130 {}
5131 };
54db6c39 5132
7639a06c 5133 switch (codec->core.vendor_id) {
9a22a8f5
KY
5134 case 0x10ec0255:
5135 alc_write_coef_idx(codec, 0x45, 0xc489);
5136 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5137 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5138 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5139 break;
1948fc06 5140 case 0x10ec0230:
717f43d8
KY
5141 case 0x10ec0236:
5142 case 0x10ec0256:
527f4643 5143 case 0x19e58326:
717f43d8
KY
5144 alc_write_coef_idx(codec, 0x45, 0xc489);
5145 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5146 alc_process_coef_fw(codec, coef0256);
5147 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5148 break;
71683c32
KY
5149 case 0x10ec0234:
5150 case 0x10ec0274:
5151 case 0x10ec0294:
5152 alc_write_coef_idx(codec, 0x45, 0x4689);
5153 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5154 alc_process_coef_fw(codec, coef0274);
5155 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5156 break;
13fd08a3 5157 case 0x10ec0233:
73bdd597
DH
5158 case 0x10ec0283:
5159 alc_write_coef_idx(codec, 0x45, 0xc429);
5160 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5161 alc_process_coef_fw(codec, coef0233);
73bdd597
DH
5162 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5163 break;
f3b70332
KY
5164 case 0x10ec0286:
5165 case 0x10ec0288:
1a5bc8d9 5166 case 0x10ec0298:
f3b70332
KY
5167 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5168 alc_process_coef_fw(codec, coef0288);
5169 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5170 break;
73bdd597
DH
5171 case 0x10ec0292:
5172 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5173 alc_process_coef_fw(codec, coef0292);
73bdd597 5174 break;
a22aa26f
KY
5175 case 0x10ec0293:
5176 /* Set to TRS mode */
5177 alc_write_coef_idx(codec, 0x45, 0xc429);
5178 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5179 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5180 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5181 break;
78f4f7c2
KY
5182 case 0x10ec0867:
5183 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
c0dbbdad 5184 fallthrough;
9eb5d0e6 5185 case 0x10ec0221:
1f8b46cd
DH
5186 case 0x10ec0662:
5187 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5188 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5189 break;
73bdd597
DH
5190 case 0x10ec0668:
5191 alc_write_coef_idx(codec, 0x11, 0x0001);
5192 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5193 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5194 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5195 break;
c2b691ee 5196 case 0x10ec0215:
4cc9b9d6 5197 case 0x10ec0225:
c2b691ee 5198 case 0x10ec0285:
7d727869 5199 case 0x10ec0295:
c2b691ee 5200 case 0x10ec0289:
28f1f9b2 5201 case 0x10ec0299:
5a36767a 5202 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
5203 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5204 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5205 alc_process_coef_fw(codec, coef0225);
5206 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5207 break;
73bdd597 5208 }
4e76a883 5209 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
73bdd597
DH
5210}
5211
5212static void alc_headset_mode_default(struct hda_codec *codec)
5213{
6b0f95c4 5214 static const struct coef_fw coef0225[] = {
5a36767a
KY
5215 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5216 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5217 UPDATE_COEF(0x49, 3<<8, 0<<8),
5218 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5219 UPDATE_COEF(0x63, 3<<14, 0),
5220 UPDATE_COEF(0x67, 0xf000, 0x3000),
2ae95577
DH
5221 {}
5222 };
6b0f95c4 5223 static const struct coef_fw coef0255[] = {
54db6c39
TI
5224 WRITE_COEF(0x45, 0xc089),
5225 WRITE_COEF(0x45, 0xc489),
5226 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5227 WRITE_COEF(0x49, 0x0049),
5228 {}
5229 };
6b0f95c4 5230 static const struct coef_fw coef0256[] = {
717f43d8
KY
5231 WRITE_COEF(0x45, 0xc489),
5232 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5233 WRITE_COEF(0x49, 0x0049),
5234 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5235 WRITE_COEF(0x06, 0x6100),
5236 {}
5237 };
6b0f95c4 5238 static const struct coef_fw coef0233[] = {
54db6c39
TI
5239 WRITE_COEF(0x06, 0x2100),
5240 WRITE_COEF(0x32, 0x4ea3),
5241 {}
5242 };
6b0f95c4 5243 static const struct coef_fw coef0288[] = {
f3b70332
KY
5244 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5245 UPDATE_COEF(0x50, 0x2000, 0x2000),
5246 UPDATE_COEF(0x56, 0x0006, 0x0006),
5247 UPDATE_COEF(0x66, 0x0008, 0),
5248 UPDATE_COEF(0x67, 0x2000, 0),
5249 {}
5250 };
6b0f95c4 5251 static const struct coef_fw coef0292[] = {
54db6c39
TI
5252 WRITE_COEF(0x76, 0x000e),
5253 WRITE_COEF(0x6c, 0x2400),
5254 WRITE_COEF(0x6b, 0xc429),
5255 WRITE_COEF(0x18, 0x7308),
5256 {}
5257 };
6b0f95c4 5258 static const struct coef_fw coef0293[] = {
54db6c39
TI
5259 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5260 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5261 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5262 {}
5263 };
6b0f95c4 5264 static const struct coef_fw coef0688[] = {
54db6c39
TI
5265 WRITE_COEF(0x11, 0x0041),
5266 WRITE_COEF(0x15, 0x0d40),
5267 WRITE_COEF(0xb7, 0x802b),
5268 {}
5269 };
6b0f95c4 5270 static const struct coef_fw coef0274[] = {
71683c32
KY
5271 WRITE_COEF(0x45, 0x4289),
5272 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5273 UPDATE_COEF(0x6b, 0x0f00, 0),
5274 UPDATE_COEF(0x49, 0x0300, 0x0300),
5275 {}
5276 };
54db6c39 5277
7639a06c 5278 switch (codec->core.vendor_id) {
c2b691ee 5279 case 0x10ec0215:
2ae95577 5280 case 0x10ec0225:
c2b691ee 5281 case 0x10ec0285:
7d727869 5282 case 0x10ec0295:
c2b691ee 5283 case 0x10ec0289:
28f1f9b2 5284 case 0x10ec0299:
5a36767a 5285 alc_process_coef_fw(codec, alc225_pre_hsmode);
2ae95577
DH
5286 alc_process_coef_fw(codec, coef0225);
5287 break;
9a22a8f5 5288 case 0x10ec0255:
54db6c39 5289 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5290 break;
1948fc06 5291 case 0x10ec0230:
717f43d8
KY
5292 case 0x10ec0236:
5293 case 0x10ec0256:
527f4643 5294 case 0x19e58326:
717f43d8
KY
5295 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5296 alc_write_coef_idx(codec, 0x45, 0xc089);
5297 msleep(50);
5298 alc_process_coef_fw(codec, coef0256);
5299 break;
71683c32
KY
5300 case 0x10ec0234:
5301 case 0x10ec0274:
5302 case 0x10ec0294:
5303 alc_process_coef_fw(codec, coef0274);
5304 break;
13fd08a3 5305 case 0x10ec0233:
73bdd597 5306 case 0x10ec0283:
54db6c39 5307 alc_process_coef_fw(codec, coef0233);
73bdd597 5308 break;
f3b70332
KY
5309 case 0x10ec0286:
5310 case 0x10ec0288:
1a5bc8d9 5311 case 0x10ec0298:
f3b70332
KY
5312 alc_process_coef_fw(codec, coef0288);
5313 break;
73bdd597 5314 case 0x10ec0292:
54db6c39 5315 alc_process_coef_fw(codec, coef0292);
73bdd597 5316 break;
a22aa26f 5317 case 0x10ec0293:
54db6c39 5318 alc_process_coef_fw(codec, coef0293);
a22aa26f 5319 break;
73bdd597 5320 case 0x10ec0668:
54db6c39 5321 alc_process_coef_fw(codec, coef0688);
73bdd597 5322 break;
78f4f7c2
KY
5323 case 0x10ec0867:
5324 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5325 break;
73bdd597 5326 }
4e76a883 5327 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
73bdd597
DH
5328}
5329
5330/* Iphone type */
5331static void alc_headset_mode_ctia(struct hda_codec *codec)
5332{
89542936
KY
5333 int val;
5334
6b0f95c4 5335 static const struct coef_fw coef0255[] = {
54db6c39
TI
5336 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5337 WRITE_COEF(0x1b, 0x0c2b),
5338 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5339 {}
5340 };
6b0f95c4 5341 static const struct coef_fw coef0256[] = {
e69e7e03 5342 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
717f43d8 5343 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5344 {}
5345 };
6b0f95c4 5346 static const struct coef_fw coef0233[] = {
54db6c39
TI
5347 WRITE_COEF(0x45, 0xd429),
5348 WRITE_COEF(0x1b, 0x0c2b),
5349 WRITE_COEF(0x32, 0x4ea3),
5350 {}
5351 };
6b0f95c4 5352 static const struct coef_fw coef0288[] = {
f3b70332
KY
5353 UPDATE_COEF(0x50, 0x2000, 0x2000),
5354 UPDATE_COEF(0x56, 0x0006, 0x0006),
5355 UPDATE_COEF(0x66, 0x0008, 0),
5356 UPDATE_COEF(0x67, 0x2000, 0),
5357 {}
5358 };
6b0f95c4 5359 static const struct coef_fw coef0292[] = {
54db6c39
TI
5360 WRITE_COEF(0x6b, 0xd429),
5361 WRITE_COEF(0x76, 0x0008),
5362 WRITE_COEF(0x18, 0x7388),
5363 {}
5364 };
6b0f95c4 5365 static const struct coef_fw coef0293[] = {
54db6c39
TI
5366 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5367 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5368 {}
5369 };
6b0f95c4 5370 static const struct coef_fw coef0688[] = {
54db6c39
TI
5371 WRITE_COEF(0x11, 0x0001),
5372 WRITE_COEF(0x15, 0x0d60),
5373 WRITE_COEF(0xc3, 0x0000),
5374 {}
5375 };
6b0f95c4 5376 static const struct coef_fw coef0225_1[] = {
4cc9b9d6 5377 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5a36767a
KY
5378 UPDATE_COEF(0x63, 3<<14, 2<<14),
5379 {}
5380 };
6b0f95c4 5381 static const struct coef_fw coef0225_2[] = {
5a36767a
KY
5382 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5383 UPDATE_COEF(0x63, 3<<14, 1<<14),
4cc9b9d6
KY
5384 {}
5385 };
54db6c39 5386
7639a06c 5387 switch (codec->core.vendor_id) {
9a22a8f5 5388 case 0x10ec0255:
54db6c39 5389 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5390 break;
1948fc06 5391 case 0x10ec0230:
736f20a7 5392 case 0x10ec0236:
e69e7e03 5393 case 0x10ec0256:
527f4643 5394 case 0x19e58326:
e69e7e03
KY
5395 alc_process_coef_fw(codec, coef0256);
5396 break;
71683c32
KY
5397 case 0x10ec0234:
5398 case 0x10ec0274:
5399 case 0x10ec0294:
5400 alc_write_coef_idx(codec, 0x45, 0xd689);
5401 break;
13fd08a3 5402 case 0x10ec0233:
73bdd597 5403 case 0x10ec0283:
54db6c39 5404 alc_process_coef_fw(codec, coef0233);
73bdd597 5405 break;
1a5bc8d9 5406 case 0x10ec0298:
89542936
KY
5407 val = alc_read_coef_idx(codec, 0x50);
5408 if (val & (1 << 12)) {
5409 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5410 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5411 msleep(300);
5412 } else {
5413 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5414 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5415 msleep(300);
5416 }
5417 break;
f3b70332
KY
5418 case 0x10ec0286:
5419 case 0x10ec0288:
5420 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5421 msleep(300);
5422 alc_process_coef_fw(codec, coef0288);
5423 break;
73bdd597 5424 case 0x10ec0292:
54db6c39 5425 alc_process_coef_fw(codec, coef0292);
73bdd597 5426 break;
a22aa26f 5427 case 0x10ec0293:
54db6c39 5428 alc_process_coef_fw(codec, coef0293);
a22aa26f 5429 break;
73bdd597 5430 case 0x10ec0668:
54db6c39 5431 alc_process_coef_fw(codec, coef0688);
73bdd597 5432 break;
c2b691ee 5433 case 0x10ec0215:
4cc9b9d6 5434 case 0x10ec0225:
c2b691ee 5435 case 0x10ec0285:
7d727869 5436 case 0x10ec0295:
c2b691ee 5437 case 0x10ec0289:
28f1f9b2 5438 case 0x10ec0299:
5a36767a
KY
5439 val = alc_read_coef_idx(codec, 0x45);
5440 if (val & (1 << 9))
5441 alc_process_coef_fw(codec, coef0225_2);
5442 else
5443 alc_process_coef_fw(codec, coef0225_1);
4cc9b9d6 5444 break;
78f4f7c2
KY
5445 case 0x10ec0867:
5446 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5447 break;
73bdd597 5448 }
4e76a883 5449 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
73bdd597
DH
5450}
5451
5452/* Nokia type */
5453static void alc_headset_mode_omtp(struct hda_codec *codec)
5454{
6b0f95c4 5455 static const struct coef_fw coef0255[] = {
54db6c39
TI
5456 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5457 WRITE_COEF(0x1b, 0x0c2b),
5458 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5459 {}
5460 };
6b0f95c4 5461 static const struct coef_fw coef0256[] = {
e69e7e03 5462 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
717f43d8 5463 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5464 {}
5465 };
6b0f95c4 5466 static const struct coef_fw coef0233[] = {
54db6c39
TI
5467 WRITE_COEF(0x45, 0xe429),
5468 WRITE_COEF(0x1b, 0x0c2b),
5469 WRITE_COEF(0x32, 0x4ea3),
5470 {}
5471 };
6b0f95c4 5472 static const struct coef_fw coef0288[] = {
f3b70332
KY
5473 UPDATE_COEF(0x50, 0x2000, 0x2000),
5474 UPDATE_COEF(0x56, 0x0006, 0x0006),
5475 UPDATE_COEF(0x66, 0x0008, 0),
5476 UPDATE_COEF(0x67, 0x2000, 0),
5477 {}
5478 };
6b0f95c4 5479 static const struct coef_fw coef0292[] = {
54db6c39
TI
5480 WRITE_COEF(0x6b, 0xe429),
5481 WRITE_COEF(0x76, 0x0008),
5482 WRITE_COEF(0x18, 0x7388),
5483 {}
5484 };
6b0f95c4 5485 static const struct coef_fw coef0293[] = {
54db6c39
TI
5486 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5487 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5488 {}
5489 };
6b0f95c4 5490 static const struct coef_fw coef0688[] = {
54db6c39
TI
5491 WRITE_COEF(0x11, 0x0001),
5492 WRITE_COEF(0x15, 0x0d50),
5493 WRITE_COEF(0xc3, 0x0000),
5494 {}
5495 };
6b0f95c4 5496 static const struct coef_fw coef0225[] = {
4cc9b9d6 5497 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5a36767a 5498 UPDATE_COEF(0x63, 3<<14, 2<<14),
4cc9b9d6
KY
5499 {}
5500 };
54db6c39 5501
7639a06c 5502 switch (codec->core.vendor_id) {
9a22a8f5 5503 case 0x10ec0255:
54db6c39 5504 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5505 break;
1948fc06 5506 case 0x10ec0230:
736f20a7 5507 case 0x10ec0236:
e69e7e03 5508 case 0x10ec0256:
527f4643 5509 case 0x19e58326:
e69e7e03
KY
5510 alc_process_coef_fw(codec, coef0256);
5511 break;
71683c32
KY
5512 case 0x10ec0234:
5513 case 0x10ec0274:
5514 case 0x10ec0294:
5515 alc_write_coef_idx(codec, 0x45, 0xe689);
5516 break;
13fd08a3 5517 case 0x10ec0233:
73bdd597 5518 case 0x10ec0283:
54db6c39 5519 alc_process_coef_fw(codec, coef0233);
73bdd597 5520 break;
1a5bc8d9
KY
5521 case 0x10ec0298:
5522 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
89542936
KY
5523 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5524 msleep(300);
5525 break;
f3b70332
KY
5526 case 0x10ec0286:
5527 case 0x10ec0288:
5528 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5529 msleep(300);
5530 alc_process_coef_fw(codec, coef0288);
5531 break;
73bdd597 5532 case 0x10ec0292:
54db6c39 5533 alc_process_coef_fw(codec, coef0292);
73bdd597 5534 break;
a22aa26f 5535 case 0x10ec0293:
54db6c39 5536 alc_process_coef_fw(codec, coef0293);
a22aa26f 5537 break;
73bdd597 5538 case 0x10ec0668:
54db6c39 5539 alc_process_coef_fw(codec, coef0688);
73bdd597 5540 break;
c2b691ee 5541 case 0x10ec0215:
4cc9b9d6 5542 case 0x10ec0225:
c2b691ee 5543 case 0x10ec0285:
7d727869 5544 case 0x10ec0295:
c2b691ee 5545 case 0x10ec0289:
28f1f9b2 5546 case 0x10ec0299:
4cc9b9d6
KY
5547 alc_process_coef_fw(codec, coef0225);
5548 break;
73bdd597 5549 }
4e76a883 5550 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
73bdd597
DH
5551}
5552
5553static void alc_determine_headset_type(struct hda_codec *codec)
5554{
5555 int val;
5556 bool is_ctia = false;
5557 struct alc_spec *spec = codec->spec;
6b0f95c4 5558 static const struct coef_fw coef0255[] = {
54db6c39
TI
5559 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5560 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5561 conteol) */
5562 {}
5563 };
6b0f95c4 5564 static const struct coef_fw coef0288[] = {
f3b70332
KY
5565 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5566 {}
5567 };
6b0f95c4 5568 static const struct coef_fw coef0298[] = {
89542936
KY
5569 UPDATE_COEF(0x50, 0x2000, 0x2000),
5570 UPDATE_COEF(0x56, 0x0006, 0x0006),
5571 UPDATE_COEF(0x66, 0x0008, 0),
5572 UPDATE_COEF(0x67, 0x2000, 0),
5573 UPDATE_COEF(0x19, 0x1300, 0x1300),
5574 {}
5575 };
6b0f95c4 5576 static const struct coef_fw coef0293[] = {
54db6c39
TI
5577 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5578 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5579 {}
5580 };
6b0f95c4 5581 static const struct coef_fw coef0688[] = {
54db6c39
TI
5582 WRITE_COEF(0x11, 0x0001),
5583 WRITE_COEF(0xb7, 0x802b),
5584 WRITE_COEF(0x15, 0x0d60),
5585 WRITE_COEF(0xc3, 0x0c00),
5586 {}
5587 };
6b0f95c4 5588 static const struct coef_fw coef0274[] = {
71683c32
KY
5589 UPDATE_COEF(0x4a, 0x0010, 0),
5590 UPDATE_COEF(0x4a, 0x8000, 0),
5591 WRITE_COEF(0x45, 0xd289),
5592 UPDATE_COEF(0x49, 0x0300, 0x0300),
5593 {}
5594 };
73bdd597 5595
92666d45
KY
5596 if (spec->no_internal_mic_pin) {
5597 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5598 return;
5599 }
5600
7639a06c 5601 switch (codec->core.vendor_id) {
9a22a8f5 5602 case 0x10ec0255:
717f43d8
KY
5603 alc_process_coef_fw(codec, coef0255);
5604 msleep(300);
5605 val = alc_read_coef_idx(codec, 0x46);
5606 is_ctia = (val & 0x0070) == 0x0070;
5607 break;
1948fc06 5608 case 0x10ec0230:
717f43d8 5609 case 0x10ec0236:
7081adf3 5610 case 0x10ec0256:
527f4643 5611 case 0x19e58326:
717f43d8
KY
5612 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5613 alc_write_coef_idx(codec, 0x06, 0x6104);
5614 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5615
5616 snd_hda_codec_write(codec, 0x21, 0,
5617 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5618 msleep(80);
5619 snd_hda_codec_write(codec, 0x21, 0,
5620 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5621
54db6c39 5622 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5623 msleep(300);
5624 val = alc_read_coef_idx(codec, 0x46);
5625 is_ctia = (val & 0x0070) == 0x0070;
717f43d8
KY
5626
5627 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5628 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5629
5630 snd_hda_codec_write(codec, 0x21, 0,
5631 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5632 msleep(80);
5633 snd_hda_codec_write(codec, 0x21, 0,
5634 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9a22a8f5 5635 break;
71683c32
KY
5636 case 0x10ec0234:
5637 case 0x10ec0274:
5638 case 0x10ec0294:
5639 alc_process_coef_fw(codec, coef0274);
febf2256 5640 msleep(850);
71683c32
KY
5641 val = alc_read_coef_idx(codec, 0x46);
5642 is_ctia = (val & 0x00f0) == 0x00f0;
5643 break;
13fd08a3 5644 case 0x10ec0233:
73bdd597
DH
5645 case 0x10ec0283:
5646 alc_write_coef_idx(codec, 0x45, 0xd029);
5647 msleep(300);
5648 val = alc_read_coef_idx(codec, 0x46);
5649 is_ctia = (val & 0x0070) == 0x0070;
5650 break;
1a5bc8d9 5651 case 0x10ec0298:
89542936
KY
5652 snd_hda_codec_write(codec, 0x21, 0,
5653 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5654 msleep(100);
5655 snd_hda_codec_write(codec, 0x21, 0,
5656 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5657 msleep(200);
5658
5659 val = alc_read_coef_idx(codec, 0x50);
5660 if (val & (1 << 12)) {
5661 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5662 alc_process_coef_fw(codec, coef0288);
5663 msleep(350);
5664 val = alc_read_coef_idx(codec, 0x50);
5665 is_ctia = (val & 0x0070) == 0x0070;
5666 } else {
5667 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5668 alc_process_coef_fw(codec, coef0288);
5669 msleep(350);
5670 val = alc_read_coef_idx(codec, 0x50);
5671 is_ctia = (val & 0x0070) == 0x0070;
5672 }
5673 alc_process_coef_fw(codec, coef0298);
5674 snd_hda_codec_write(codec, 0x21, 0,
5675 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5676 msleep(75);
5677 snd_hda_codec_write(codec, 0x21, 0,
5678 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5679 break;
f3b70332
KY
5680 case 0x10ec0286:
5681 case 0x10ec0288:
5682 alc_process_coef_fw(codec, coef0288);
5683 msleep(350);
5684 val = alc_read_coef_idx(codec, 0x50);
5685 is_ctia = (val & 0x0070) == 0x0070;
5686 break;
73bdd597
DH
5687 case 0x10ec0292:
5688 alc_write_coef_idx(codec, 0x6b, 0xd429);
5689 msleep(300);
5690 val = alc_read_coef_idx(codec, 0x6c);
5691 is_ctia = (val & 0x001c) == 0x001c;
5692 break;
a22aa26f 5693 case 0x10ec0293:
54db6c39 5694 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5695 msleep(300);
5696 val = alc_read_coef_idx(codec, 0x46);
5697 is_ctia = (val & 0x0070) == 0x0070;
5698 break;
73bdd597 5699 case 0x10ec0668:
54db6c39 5700 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5701 msleep(300);
5702 val = alc_read_coef_idx(codec, 0xbe);
5703 is_ctia = (val & 0x1c02) == 0x1c02;
5704 break;
c2b691ee 5705 case 0x10ec0215:
4cc9b9d6 5706 case 0x10ec0225:
c2b691ee 5707 case 0x10ec0285:
7d727869 5708 case 0x10ec0295:
c2b691ee 5709 case 0x10ec0289:
28f1f9b2 5710 case 0x10ec0299:
da911b1f
KY
5711 snd_hda_codec_write(codec, 0x21, 0,
5712 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5713 msleep(80);
5714 snd_hda_codec_write(codec, 0x21, 0,
5715 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5716
5a36767a
KY
5717 alc_process_coef_fw(codec, alc225_pre_hsmode);
5718 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5719 val = alc_read_coef_idx(codec, 0x45);
5720 if (val & (1 << 9)) {
5721 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5722 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5723 msleep(800);
5724 val = alc_read_coef_idx(codec, 0x46);
5725 is_ctia = (val & 0x00f0) == 0x00f0;
5726 } else {
5727 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5728 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5729 msleep(800);
5730 val = alc_read_coef_idx(codec, 0x46);
5731 is_ctia = (val & 0x00f0) == 0x00f0;
5732 }
5733 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5734 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5735 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
da911b1f
KY
5736
5737 snd_hda_codec_write(codec, 0x21, 0,
5738 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5739 msleep(80);
5740 snd_hda_codec_write(codec, 0x21, 0,
5741 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4cc9b9d6 5742 break;
78f4f7c2
KY
5743 case 0x10ec0867:
5744 is_ctia = true;
5745 break;
73bdd597
DH
5746 }
5747
4e76a883 5748 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
73bdd597
DH
5749 is_ctia ? "yes" : "no");
5750 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5751}
5752
5753static void alc_update_headset_mode(struct hda_codec *codec)
5754{
5755 struct alc_spec *spec = codec->spec;
5756
5757 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
35a39f98 5758 hda_nid_t hp_pin = alc_get_hp_pin(spec);
73bdd597
DH
5759
5760 int new_headset_mode;
5761
5762 if (!snd_hda_jack_detect(codec, hp_pin))
5763 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5764 else if (mux_pin == spec->headset_mic_pin)
5765 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5766 else if (mux_pin == spec->headphone_mic_pin)
5767 new_headset_mode = ALC_HEADSET_MODE_MIC;
5768 else
5769 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5770
5959a6bc
DH
5771 if (new_headset_mode == spec->current_headset_mode) {
5772 snd_hda_gen_update_outputs(codec);
73bdd597 5773 return;
5959a6bc 5774 }
73bdd597
DH
5775
5776 switch (new_headset_mode) {
5777 case ALC_HEADSET_MODE_UNPLUGGED:
5778 alc_headset_mode_unplugged(codec);
aeac1a0d
KY
5779 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5780 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
5781 spec->gen.hp_jack_present = false;
5782 break;
5783 case ALC_HEADSET_MODE_HEADSET:
5784 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5785 alc_determine_headset_type(codec);
5786 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5787 alc_headset_mode_ctia(codec);
5788 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5789 alc_headset_mode_omtp(codec);
5790 spec->gen.hp_jack_present = true;
5791 break;
5792 case ALC_HEADSET_MODE_MIC:
5793 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5794 spec->gen.hp_jack_present = false;
5795 break;
5796 case ALC_HEADSET_MODE_HEADPHONE:
5797 alc_headset_mode_default(codec);
5798 spec->gen.hp_jack_present = true;
5799 break;
5800 }
5801 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5802 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5803 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1f8b46cd 5804 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
73bdd597
DH
5805 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5806 PIN_VREFHIZ);
5807 }
5808 spec->current_headset_mode = new_headset_mode;
5809
5810 snd_hda_gen_update_outputs(codec);
5811}
5812
5813static void alc_update_headset_mode_hook(struct hda_codec *codec,
7fe30711
TI
5814 struct snd_kcontrol *kcontrol,
5815 struct snd_ctl_elem_value *ucontrol)
73bdd597
DH
5816{
5817 alc_update_headset_mode(codec);
5818}
5819
1a4f69d5
TI
5820static void alc_update_headset_jack_cb(struct hda_codec *codec,
5821 struct hda_jack_callback *jack)
73bdd597 5822{
73bdd597 5823 snd_hda_gen_hp_automute(codec, jack);
e54f30be 5824 alc_update_headset_mode(codec);
73bdd597
DH
5825}
5826
5827static void alc_probe_headset_mode(struct hda_codec *codec)
5828{
5829 int i;
5830 struct alc_spec *spec = codec->spec;
5831 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5832
5833 /* Find mic pins */
5834 for (i = 0; i < cfg->num_inputs; i++) {
5835 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5836 spec->headset_mic_pin = cfg->inputs[i].pin;
5837 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5838 spec->headphone_mic_pin = cfg->inputs[i].pin;
5839 }
5840
0bed2aa3 5841 WARN_ON(spec->gen.cap_sync_hook);
73bdd597
DH
5842 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5843 spec->gen.automute_hook = alc_update_headset_mode;
5844 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5845}
5846
5847static void alc_fixup_headset_mode(struct hda_codec *codec,
5848 const struct hda_fixup *fix, int action)
5849{
5850 struct alc_spec *spec = codec->spec;
5851
5852 switch (action) {
5853 case HDA_FIXUP_ACT_PRE_PROBE:
5854 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5855 break;
5856 case HDA_FIXUP_ACT_PROBE:
5857 alc_probe_headset_mode(codec);
5858 break;
5859 case HDA_FIXUP_ACT_INIT:
aeac1a0d
KY
5860 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5861 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5862 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5863 }
73bdd597
DH
5864 alc_update_headset_mode(codec);
5865 break;
5866 }
5867}
5868
5869static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5870 const struct hda_fixup *fix, int action)
5871{
5872 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5873 struct alc_spec *spec = codec->spec;
5874 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5875 }
5876 else
5877 alc_fixup_headset_mode(codec, fix, action);
5878}
5879
31278997
KY
5880static void alc255_set_default_jack_type(struct hda_codec *codec)
5881{
5882 /* Set to iphone type */
6b0f95c4 5883 static const struct coef_fw alc255fw[] = {
54db6c39
TI
5884 WRITE_COEF(0x1b, 0x880b),
5885 WRITE_COEF(0x45, 0xd089),
5886 WRITE_COEF(0x1b, 0x080b),
5887 WRITE_COEF(0x46, 0x0004),
5888 WRITE_COEF(0x1b, 0x0c0b),
5889 {}
5890 };
6b0f95c4 5891 static const struct coef_fw alc256fw[] = {
e69e7e03
KY
5892 WRITE_COEF(0x1b, 0x884b),
5893 WRITE_COEF(0x45, 0xd089),
5894 WRITE_COEF(0x1b, 0x084b),
5895 WRITE_COEF(0x46, 0x0004),
5896 WRITE_COEF(0x1b, 0x0c4b),
5897 {}
5898 };
5899 switch (codec->core.vendor_id) {
5900 case 0x10ec0255:
5901 alc_process_coef_fw(codec, alc255fw);
5902 break;
1948fc06 5903 case 0x10ec0230:
736f20a7 5904 case 0x10ec0236:
e69e7e03 5905 case 0x10ec0256:
527f4643 5906 case 0x19e58326:
e69e7e03
KY
5907 alc_process_coef_fw(codec, alc256fw);
5908 break;
5909 }
31278997
KY
5910 msleep(30);
5911}
5912
9a22a8f5
KY
5913static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5914 const struct hda_fixup *fix, int action)
5915{
5916 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
31278997 5917 alc255_set_default_jack_type(codec);
9a22a8f5
KY
5918 }
5919 alc_fixup_headset_mode(codec, fix, action);
5920}
5921
31278997
KY
5922static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5923 const struct hda_fixup *fix, int action)
5924{
5925 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5926 struct alc_spec *spec = codec->spec;
5927 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5928 alc255_set_default_jack_type(codec);
72cea3a3 5929 }
31278997
KY
5930 else
5931 alc_fixup_headset_mode(codec, fix, action);
5932}
5933
e1e62b98
KY
5934static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5935 struct hda_jack_callback *jack)
5936{
5937 struct alc_spec *spec = codec->spec;
e1e62b98
KY
5938
5939 alc_update_headset_jack_cb(codec, jack);
5940 /* Headset Mic enable or disable, only for Dell Dino */
d44a6864 5941 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
e1e62b98
KY
5942}
5943
5944static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5945 const struct hda_fixup *fix, int action)
5946{
5947 alc_fixup_headset_mode(codec, fix, action);
5948 if (action == HDA_FIXUP_ACT_PROBE) {
5949 struct alc_spec *spec = codec->spec;
d44a6864
TI
5950 /* toggled via hp_automute_hook */
5951 spec->gpio_mask |= 0x40;
5952 spec->gpio_dir |= 0x40;
e1e62b98
KY
5953 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5954 }
5955}
5956
493a52a9
HW
5957static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5958 const struct hda_fixup *fix, int action)
5959{
5960 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5961 struct alc_spec *spec = codec->spec;
5962 spec->gen.auto_mute_via_amp = 1;
5963 }
5964}
5965
9b745ab8
TI
5966static void alc_fixup_no_shutup(struct hda_codec *codec,
5967 const struct hda_fixup *fix, int action)
5968{
efe55732 5969 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9b745ab8 5970 struct alc_spec *spec = codec->spec;
c0ca5ece 5971 spec->no_shutup_pins = 1;
9b745ab8
TI
5972 }
5973}
5974
5e6db669
GM
5975static void alc_fixup_disable_aamix(struct hda_codec *codec,
5976 const struct hda_fixup *fix, int action)
5977{
5978 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5979 struct alc_spec *spec = codec->spec;
5980 /* Disable AA-loopback as it causes white noise */
5981 spec->gen.mixer_nid = 0;
5982 }
5983}
5984
7f57d803
TI
5985/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5986static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5987 const struct hda_fixup *fix, int action)
5988{
5989 static const struct hda_pintbl pincfgs[] = {
5990 { 0x16, 0x21211010 }, /* dock headphone */
5991 { 0x19, 0x21a11010 }, /* dock mic */
5992 { }
5993 };
5994 struct alc_spec *spec = codec->spec;
5995
5996 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5997 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5998 codec->power_save_node = 0; /* avoid click noises */
5999 snd_hda_apply_pincfgs(codec, pincfgs);
6000 }
6001}
6002
61fcf8ec
KY
6003static void alc_fixup_tpt470_dock(struct hda_codec *codec,
6004 const struct hda_fixup *fix, int action)
6005{
6006 static const struct hda_pintbl pincfgs[] = {
6007 { 0x17, 0x21211010 }, /* dock headphone */
6008 { 0x19, 0x21a11010 }, /* dock mic */
6009 { }
6010 };
6011 struct alc_spec *spec = codec->spec;
6012
6013 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6014 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
71db96dd
TI
6015 snd_hda_apply_pincfgs(codec, pincfgs);
6016 } else if (action == HDA_FIXUP_ACT_INIT) {
61fcf8ec
KY
6017 /* Enable DOCK device */
6018 snd_hda_codec_write(codec, 0x17, 0,
6019 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
6020 /* Enable DOCK device */
6021 snd_hda_codec_write(codec, 0x19, 0,
6022 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
61fcf8ec
KY
6023 }
6024}
6025
399c01aa
TI
6026static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
6027 const struct hda_fixup *fix, int action)
6028{
6029 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
6030 * the speaker output becomes too low by some reason on Thinkpads with
6031 * ALC298 codec
6032 */
6033 static const hda_nid_t preferred_pairs[] = {
6034 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
6035 0
6036 };
6037 struct alc_spec *spec = codec->spec;
6038
6039 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6040 spec->gen.preferred_dacs = preferred_pairs;
6041}
6042
8eedd3a7
TI
6043static void alc295_fixup_asus_dacs(struct hda_codec *codec,
6044 const struct hda_fixup *fix, int action)
6045{
6046 static const hda_nid_t preferred_pairs[] = {
6047 0x17, 0x02, 0x21, 0x03, 0
6048 };
6049 struct alc_spec *spec = codec->spec;
6050
6051 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6052 spec->gen.preferred_dacs = preferred_pairs;
6053}
6054
9476d369 6055static void alc_shutup_dell_xps13(struct hda_codec *codec)
033b0a7c
GM
6056{
6057 struct alc_spec *spec = codec->spec;
35a39f98 6058 int hp_pin = alc_get_hp_pin(spec);
033b0a7c 6059
9476d369
GM
6060 /* Prevent pop noises when headphones are plugged in */
6061 snd_hda_codec_write(codec, hp_pin, 0,
6062 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
6063 msleep(20);
033b0a7c
GM
6064}
6065
6066static void alc_fixup_dell_xps13(struct hda_codec *codec,
6067 const struct hda_fixup *fix, int action)
6068{
3e1b0c4a
TI
6069 struct alc_spec *spec = codec->spec;
6070 struct hda_input_mux *imux = &spec->gen.input_mux;
6071 int i;
f38663ab 6072
3e1b0c4a
TI
6073 switch (action) {
6074 case HDA_FIXUP_ACT_PRE_PROBE:
6075 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
6076 * it causes a click noise at start up
6077 */
6078 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
efe55732 6079 spec->shutup = alc_shutup_dell_xps13;
3e1b0c4a
TI
6080 break;
6081 case HDA_FIXUP_ACT_PROBE:
f38663ab
GM
6082 /* Make the internal mic the default input source. */
6083 for (i = 0; i < imux->num_items; i++) {
6084 if (spec->gen.imux_pins[i] == 0x12) {
6085 spec->gen.cur_mux[0] = i;
6086 break;
6087 }
6088 }
3e1b0c4a 6089 break;
033b0a7c
GM
6090 }
6091}
6092
1f8b46cd
DH
6093static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
6094 const struct hda_fixup *fix, int action)
6095{
6096 struct alc_spec *spec = codec->spec;
6097
6098 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6099 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
6100 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
b40eda64
DH
6101
6102 /* Disable boost for mic-in permanently. (This code is only called
6103 from quirks that guarantee that the headphone is at NID 0x1b.) */
6104 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
6105 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
1f8b46cd
DH
6106 } else
6107 alc_fixup_headset_mode(codec, fix, action);
6108}
6109
73bdd597
DH
6110static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
6111 const struct hda_fixup *fix, int action)
6112{
6113 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
73bdd597 6114 alc_write_coef_idx(codec, 0xc4, 0x8000);
98b24883 6115 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
73bdd597
DH
6116 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
6117 }
6118 alc_fixup_headset_mode(codec, fix, action);
6119}
6120
bde7bc60
CCC
6121/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
6122static int find_ext_mic_pin(struct hda_codec *codec)
6123{
6124 struct alc_spec *spec = codec->spec;
6125 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6126 hda_nid_t nid;
6127 unsigned int defcfg;
6128 int i;
6129
6130 for (i = 0; i < cfg->num_inputs; i++) {
6131 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6132 continue;
6133 nid = cfg->inputs[i].pin;
6134 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6135 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6136 continue;
6137 return nid;
6138 }
6139
6140 return 0;
6141}
6142
08a978db 6143static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 6144 const struct hda_fixup *fix,
08a978db
DR
6145 int action)
6146{
6147 struct alc_spec *spec = codec->spec;
6148
0db75790 6149 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60 6150 int mic_pin = find_ext_mic_pin(codec);
35a39f98 6151 int hp_pin = alc_get_hp_pin(spec);
bde7bc60
CCC
6152
6153 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 6154 return;
bde7bc60 6155 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 6156 }
08a978db 6157}
693b613d 6158
3e0d611b
DH
6159static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6160 const struct hda_fixup *fix,
6161 int action)
6162{
6163 struct alc_spec *spec = codec->spec;
6164 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6165 int i;
6166
6167 /* The mic boosts on level 2 and 3 are too noisy
6168 on the internal mic input.
6169 Therefore limit the boost to 0 or 1. */
6170
6171 if (action != HDA_FIXUP_ACT_PROBE)
6172 return;
6173
6174 for (i = 0; i < cfg->num_inputs; i++) {
6175 hda_nid_t nid = cfg->inputs[i].pin;
6176 unsigned int defcfg;
6177 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6178 continue;
6179 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6180 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6181 continue;
6182
6183 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6184 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6185 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6186 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6187 (0 << AC_AMPCAP_MUTE_SHIFT));
6188 }
6189}
6190
cd217a63 6191static void alc283_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 6192 struct hda_jack_callback *jack)
cd217a63
KY
6193{
6194 struct alc_spec *spec = codec->spec;
6195 int vref;
6196
6197 msleep(200);
6198 snd_hda_gen_hp_automute(codec, jack);
6199
6200 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6201
6202 msleep(600);
6203 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6204 vref);
6205}
6206
cd217a63
KY
6207static void alc283_fixup_chromebook(struct hda_codec *codec,
6208 const struct hda_fixup *fix, int action)
6209{
6210 struct alc_spec *spec = codec->spec;
cd217a63
KY
6211
6212 switch (action) {
6213 case HDA_FIXUP_ACT_PRE_PROBE:
0202e99c 6214 snd_hda_override_wcaps(codec, 0x03, 0);
d2e92709
TI
6215 /* Disable AA-loopback as it causes white noise */
6216 spec->gen.mixer_nid = 0;
38070219 6217 break;
0202e99c 6218 case HDA_FIXUP_ACT_INIT:
de9481cb
KY
6219 /* MIC2-VREF control */
6220 /* Set to manual mode */
98b24883 6221 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
0202e99c 6222 /* Enable Line1 input control by verb */
98b24883 6223 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
0202e99c
KY
6224 break;
6225 }
6226}
6227
6228static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6229 const struct hda_fixup *fix, int action)
6230{
6231 struct alc_spec *spec = codec->spec;
0202e99c
KY
6232
6233 switch (action) {
6234 case HDA_FIXUP_ACT_PRE_PROBE:
cd217a63 6235 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
6236 break;
6237 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
6238 /* MIC2-VREF control */
6239 /* Set to manual mode */
98b24883 6240 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
cd217a63
KY
6241 break;
6242 }
6243}
6244
7bba2157
TI
6245/* mute tablet speaker pin (0x14) via dock plugging in addition */
6246static void asus_tx300_automute(struct hda_codec *codec)
6247{
6248 struct alc_spec *spec = codec->spec;
6249 snd_hda_gen_update_outputs(codec);
6250 if (snd_hda_jack_detect(codec, 0x1b))
6251 spec->gen.mute_bits |= (1ULL << 0x14);
6252}
6253
6254static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6255 const struct hda_fixup *fix, int action)
6256{
6257 struct alc_spec *spec = codec->spec;
7bba2157
TI
6258 static const struct hda_pintbl dock_pins[] = {
6259 { 0x1b, 0x21114000 }, /* dock speaker pin */
6260 {}
6261 };
7bba2157
TI
6262
6263 switch (action) {
6264 case HDA_FIXUP_ACT_PRE_PROBE:
1c76aa5f 6265 spec->init_amp = ALC_INIT_DEFAULT;
ae065f1c
TI
6266 /* TX300 needs to set up GPIO2 for the speaker amp */
6267 alc_setup_gpio(codec, 0x04);
7bba2157
TI
6268 snd_hda_apply_pincfgs(codec, dock_pins);
6269 spec->gen.auto_mute_via_amp = 1;
6270 spec->gen.automute_hook = asus_tx300_automute;
6271 snd_hda_jack_detect_enable_callback(codec, 0x1b,
7bba2157
TI
6272 snd_hda_gen_hp_automute);
6273 break;
5579cd6f
TI
6274 case HDA_FIXUP_ACT_PROBE:
6275 spec->init_amp = ALC_INIT_DEFAULT;
6276 break;
7bba2157
TI
6277 case HDA_FIXUP_ACT_BUILD:
6278 /* this is a bit tricky; give more sane names for the main
6279 * (tablet) speaker and the dock speaker, respectively
6280 */
56798e6b
TI
6281 rename_ctl(codec, "Speaker Playback Switch",
6282 "Dock Speaker Playback Switch");
6283 rename_ctl(codec, "Bass Speaker Playback Switch",
6284 "Speaker Playback Switch");
7bba2157
TI
6285 break;
6286 }
6287}
6288
338cae56
DH
6289static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6290 const struct hda_fixup *fix, int action)
6291{
0f4881dc
DH
6292 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6293 /* DAC node 0x03 is giving mono output. We therefore want to
6294 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6295 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
caf3c043
MM
6296 static const hda_nid_t conn1[] = { 0x0c };
6297 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6298 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
0f4881dc 6299 }
338cae56
DH
6300}
6301
dd9aa335
HW
6302static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6303 const struct hda_fixup *fix, int action)
6304{
6305 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6306 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6307 we can't adjust the speaker's volume since this node does not has
6308 Amp-out capability. we change the speaker's route to:
6309 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6310 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6311 speaker's volume now. */
6312
caf3c043
MM
6313 static const hda_nid_t conn1[] = { 0x0c };
6314 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
dd9aa335
HW
6315 }
6316}
6317
e312a869
TI
6318/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6319static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6320 const struct hda_fixup *fix, int action)
6321{
6322 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6323 static const hda_nid_t conn[] = { 0x02, 0x03 };
6324 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
e312a869
TI
6325 }
6326}
6327
d2cd795c
JK
6328/* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6329static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6330 const struct hda_fixup *fix, int action)
6331{
6332 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6333 static const hda_nid_t conn[] = { 0x02 };
6334 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
d2cd795c
JK
6335 }
6336}
6337
98973f2f
KP
6338/* Hook to update amp GPIO4 for automute */
6339static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6340 struct hda_jack_callback *jack)
6341{
6342 struct alc_spec *spec = codec->spec;
6343
6344 snd_hda_gen_hp_automute(codec, jack);
6345 /* mute_led_polarity is set to 0, so we pass inverted value here */
dbd13179
KHF
6346 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6347 !spec->gen.hp_jack_present);
98973f2f
KP
6348}
6349
6350/* Manage GPIOs for HP EliteBook Folio 9480m.
6351 *
6352 * GPIO4 is the headphone amplifier power control
6353 * GPIO3 is the audio output mute indicator LED
6354 */
6355
6356static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6357 const struct hda_fixup *fix,
6358 int action)
6359{
6360 struct alc_spec *spec = codec->spec;
98973f2f 6361
01e4a275 6362 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
98973f2f 6363 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
6364 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6365 spec->gpio_mask |= 0x10;
6366 spec->gpio_dir |= 0x10;
98973f2f 6367 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
98973f2f
KP
6368 }
6369}
6370
ae065f1c
TI
6371static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6372 const struct hda_fixup *fix,
6373 int action)
6374{
6375 struct alc_spec *spec = codec->spec;
6376
6377 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6378 spec->gpio_mask |= 0x04;
6379 spec->gpio_dir |= 0x04;
6380 /* set data bit low */
6381 }
6382}
6383
6a6660d0
TI
6384/* Quirk for Thinkpad X1 7th and 8th Gen
6385 * The following fixed routing needed
6386 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6387 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6388 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6389 */
6390static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6391 const struct hda_fixup *fix, int action)
6392{
6393 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6394 static const hda_nid_t preferred_pairs[] = {
6395 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6396 };
6397 struct alc_spec *spec = codec->spec;
6398
6399 switch (action) {
6400 case HDA_FIXUP_ACT_PRE_PROBE:
6401 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6402 spec->gen.preferred_dacs = preferred_pairs;
6403 break;
6404 case HDA_FIXUP_ACT_BUILD:
6405 /* The generic parser creates somewhat unintuitive volume ctls
6406 * with the fixed routing above, and the shared DAC2 may be
6407 * confusing for PA.
6408 * Rename those to unique names so that PA doesn't touch them
6409 * and use only Master volume.
6410 */
6411 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6412 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6413 break;
6414 }
6415}
6416
ca169cc2
KY
6417static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6418 const struct hda_fixup *fix,
6419 int action)
6420{
6421 alc_fixup_dual_codecs(codec, fix, action);
6422 switch (action) {
6423 case HDA_FIXUP_ACT_PRE_PROBE:
6424 /* override card longname to provide a unique UCM profile */
6425 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6426 break;
6427 case HDA_FIXUP_ACT_BUILD:
6428 /* rename Capture controls depending on the codec */
6429 rename_ctl(codec, "Capture Volume",
6430 codec->addr == 0 ?
6431 "Rear-Panel Capture Volume" :
6432 "Front-Panel Capture Volume");
6433 rename_ctl(codec, "Capture Switch",
6434 codec->addr == 0 ?
6435 "Rear-Panel Capture Switch" :
6436 "Front-Panel Capture Switch");
6437 break;
6438 }
6439}
6440
52e4e368
KHF
6441static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6442 const struct hda_fixup *fix, int action)
6443{
6444 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6445 return;
6446
6447 codec->power_save_node = 1;
6448}
6449
92266651
KY
6450/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6451static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6452 const struct hda_fixup *fix, int action)
6453{
6454 struct alc_spec *spec = codec->spec;
caf3c043 6455 static const hda_nid_t preferred_pairs[] = {
92266651
KY
6456 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6457 0
6458 };
6459
6460 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6461 return;
6462
6463 spec->gen.preferred_dacs = preferred_pairs;
0700d3d1
KY
6464 spec->gen.auto_mute_via_amp = 1;
6465 codec->power_save_node = 0;
92266651
KY
6466}
6467
c84bfedc
TI
6468/* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6469static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6470 const struct hda_fixup *fix, int action)
6471{
6472 static const hda_nid_t preferred_pairs[] = {
6473 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6474 };
6475 struct alc_spec *spec = codec->spec;
6476
6477 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6478 spec->gen.preferred_dacs = preferred_pairs;
6479 spec->gen.obey_preferred_dacs = 1;
6480 }
6481}
6482
c4cfcf6f
HW
6483/* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6484static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6485 const struct hda_fixup *fix, int action)
6486{
6487 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6488 return;
6489
6490 snd_hda_override_wcaps(codec, 0x03, 0);
6491}
6492
8a8de09c
KY
6493static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6494{
6495 switch (codec->core.vendor_id) {
6496 case 0x10ec0274:
6497 case 0x10ec0294:
6498 case 0x10ec0225:
6499 case 0x10ec0295:
6500 case 0x10ec0299:
6501 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6502 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6503 break;
1948fc06 6504 case 0x10ec0230:
8a8de09c
KY
6505 case 0x10ec0235:
6506 case 0x10ec0236:
6507 case 0x10ec0255:
6508 case 0x10ec0256:
cae2bdb5 6509 case 0x10ec0257:
527f4643 6510 case 0x19e58326:
8a8de09c
KY
6511 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6512 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6513 break;
6514 }
6515}
6516
8983eb60
KY
6517static void alc295_fixup_chromebook(struct hda_codec *codec,
6518 const struct hda_fixup *fix, int action)
6519{
d3ba58bb
KY
6520 struct alc_spec *spec = codec->spec;
6521
8983eb60 6522 switch (action) {
d3ba58bb
KY
6523 case HDA_FIXUP_ACT_PRE_PROBE:
6524 spec->ultra_low_power = true;
6525 break;
8983eb60 6526 case HDA_FIXUP_ACT_INIT:
8a8de09c 6527 alc_combo_jack_hp_jd_restart(codec);
8983eb60
KY
6528 break;
6529 }
6530}
6531
d1dd4211
KY
6532static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6533 const struct hda_fixup *fix, int action)
6534{
6535 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6536 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6537}
6538
c3cdf189
LJ
6539
6540static void alc294_gx502_toggle_output(struct hda_codec *codec,
6541 struct hda_jack_callback *cb)
6542{
6543 /* The Windows driver sets the codec up in a very different way where
6544 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6545 */
6546 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6547 alc_write_coef_idx(codec, 0x10, 0x8a20);
6548 else
6549 alc_write_coef_idx(codec, 0x10, 0x0a20);
6550}
6551
6552static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6553 const struct hda_fixup *fix, int action)
6554{
6555 /* Pin 0x21: headphones/headset mic */
6556 if (!is_jack_detectable(codec, 0x21))
6557 return;
6558
6559 switch (action) {
6560 case HDA_FIXUP_ACT_PRE_PROBE:
6561 snd_hda_jack_detect_enable_callback(codec, 0x21,
6562 alc294_gx502_toggle_output);
6563 break;
6564 case HDA_FIXUP_ACT_INIT:
6565 /* Make sure to start in a correct state, i.e. if
6566 * headphones have been plugged in before powering up the system
6567 */
6568 alc294_gx502_toggle_output(codec, NULL);
6569 break;
6570 }
6571}
6572
c1b55029
DC
6573static void alc294_gu502_toggle_output(struct hda_codec *codec,
6574 struct hda_jack_callback *cb)
6575{
6576 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6577 * responsible from changes between speakers and headphones
6578 */
6579 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6580 alc_write_coef_idx(codec, 0x10, 0x8420);
6581 else
6582 alc_write_coef_idx(codec, 0x10, 0x0a20);
6583}
6584
6585static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6586 const struct hda_fixup *fix, int action)
6587{
6588 if (!is_jack_detectable(codec, 0x21))
6589 return;
6590
6591 switch (action) {
6592 case HDA_FIXUP_ACT_PRE_PROBE:
6593 snd_hda_jack_detect_enable_callback(codec, 0x21,
6594 alc294_gu502_toggle_output);
6595 break;
6596 case HDA_FIXUP_ACT_INIT:
6597 alc294_gu502_toggle_output(codec, NULL);
6598 break;
6599 }
6600}
6601
56496253
KY
6602static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6603 const struct hda_fixup *fix, int action)
6604{
6605 if (action != HDA_FIXUP_ACT_INIT)
6606 return;
6607
6608 msleep(100);
6609 alc_write_coef_idx(codec, 0x65, 0x0);
6610}
6611
8a8de09c
KY
6612static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6613 const struct hda_fixup *fix, int action)
6614{
6615 switch (action) {
6616 case HDA_FIXUP_ACT_INIT:
6617 alc_combo_jack_hp_jd_restart(codec);
6618 break;
6619 }
6620}
6621
92666d45
KY
6622static void alc_fixup_no_int_mic(struct hda_codec *codec,
6623 const struct hda_fixup *fix, int action)
6624{
6625 struct alc_spec *spec = codec->spec;
6626
6627 switch (action) {
6628 case HDA_FIXUP_ACT_PRE_PROBE:
6629 /* Mic RING SLEEVE swap for combo jack */
6630 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6631 spec->no_internal_mic_pin = true;
6632 break;
6633 case HDA_FIXUP_ACT_INIT:
6634 alc_combo_jack_hp_jd_restart(codec);
6635 break;
6636 }
6637}
6638
d94befbb
DB
6639/* GPIO1 = amplifier on/off
6640 * GPIO3 = mic mute LED
6641 */
6642static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6643 const struct hda_fixup *fix, int action)
6644{
6645 static const hda_nid_t conn[] = { 0x02 };
6646
6647 struct alc_spec *spec = codec->spec;
6648 static const struct hda_pintbl pincfgs[] = {
6649 { 0x14, 0x90170110 }, /* front/high speakers */
6650 { 0x17, 0x90170130 }, /* back/bass speakers */
6651 { }
6652 };
6653
6654 //enable micmute led
6655 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6656
6657 switch (action) {
6658 case HDA_FIXUP_ACT_PRE_PROBE:
6659 spec->micmute_led_polarity = 1;
6660 /* needed for amp of back speakers */
6661 spec->gpio_mask |= 0x01;
6662 spec->gpio_dir |= 0x01;
6663 snd_hda_apply_pincfgs(codec, pincfgs);
6664 /* share DAC to have unified volume control */
6665 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6666 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6667 break;
6668 case HDA_FIXUP_ACT_INIT:
6669 /* need to toggle GPIO to enable the amp of back speakers */
6670 alc_update_gpio_data(codec, 0x01, true);
6671 msleep(100);
6672 alc_update_gpio_data(codec, 0x01, false);
6673 break;
6674 }
6675}
6676
434591b2
ED
6677static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6678 const struct hda_fixup *fix, int action)
6679{
6680 static const hda_nid_t conn[] = { 0x02 };
6681 static const struct hda_pintbl pincfgs[] = {
6682 { 0x14, 0x90170110 }, /* rear speaker */
6683 { }
6684 };
6685
6686 switch (action) {
6687 case HDA_FIXUP_ACT_PRE_PROBE:
6688 snd_hda_apply_pincfgs(codec, pincfgs);
6689 /* force front speaker to DAC1 */
6690 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6691 break;
6692 }
6693}
6694
b317b032
TI
6695/* for hda_fixup_thinkpad_acpi() */
6696#include "thinkpad_helper.c"
b67ae3f1 6697
d5a6cabf
TI
6698static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6699 const struct hda_fixup *fix, int action)
6700{
6701 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6702 hda_fixup_thinkpad_acpi(codec, fix, action);
6703}
6704
ad7cc2d4
CB
6705/* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6706static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6707 const struct hda_fixup *fix,
6708 int action)
6709{
6710 struct alc_spec *spec = codec->spec;
6711
6712 switch (action) {
6713 case HDA_FIXUP_ACT_PRE_PROBE:
6714 spec->gen.suppress_auto_mute = 1;
6715 break;
6716 }
6717}
6718
7ce66933
SB
6719static void comp_acpi_device_notify(acpi_handle handle, u32 event, void *data)
6720{
6721 struct hda_codec *cdc = data;
6722 struct alc_spec *spec = cdc->spec;
7ce66933
SB
6723
6724 codec_info(cdc, "ACPI Notification %d\n", event);
6725
fd895a74
RF
6726 hda_component_acpi_device_notify(spec->comps, ARRAY_SIZE(spec->comps),
6727 handle, event, data);
7ce66933
SB
6728}
6729
d3dca026
LT
6730static int comp_bind(struct device *dev)
6731{
6732 struct hda_codec *cdc = dev_to_hda_codec(dev);
6733 struct alc_spec *spec = cdc->spec;
7ce66933
SB
6734 int ret;
6735
fd895a74 6736 ret = hda_component_manager_bind(cdc, spec->comps);
7ce66933
SB
6737 if (ret)
6738 return ret;
1873ebd3 6739
fd895a74
RF
6740 return hda_component_manager_bind_acpi_notifications(cdc,
6741 spec->comps, ARRAY_SIZE(spec->comps),
6742 comp_acpi_device_notify, cdc);
d3dca026
LT
6743}
6744
6745static void comp_unbind(struct device *dev)
6746{
6747 struct hda_codec *cdc = dev_to_hda_codec(dev);
6748 struct alc_spec *spec = cdc->spec;
6749
fd895a74
RF
6750 hda_component_manager_unbind_acpi_notifications(cdc, spec->comps, comp_acpi_device_notify);
6751 hda_component_manager_unbind(cdc, spec->comps);
d3dca026
LT
6752}
6753
6754static const struct component_master_ops comp_master_ops = {
6755 .bind = comp_bind,
6756 .unbind = comp_unbind,
6757};
6758
6759static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6760 struct snd_pcm_substream *sub, int action)
6761{
6762 struct alc_spec *spec = cdc->spec;
35a17444 6763
fd895a74 6764 hda_component_manager_playback_hook(spec->comps, ARRAY_SIZE(spec->comps), action);
35a17444
TI
6765}
6766
cf0d9566
RF
6767static void comp_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6768 const char *hid, const char *match_str, int count)
ae7abe36 6769{
ae7abe36 6770 struct alc_spec *spec = cdc->spec;
fd895a74 6771 int ret;
ae7abe36
SB
6772
6773 switch (action) {
6774 case HDA_FIXUP_ACT_PRE_PROBE:
fd895a74
RF
6775 ret = hda_component_manager_init(cdc, spec->comps, count, bus, hid,
6776 match_str, &comp_master_ops);
ae7abe36 6777 if (ret)
fd895a74
RF
6778 return;
6779
6780 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
ae7abe36 6781 break;
ebcbfd84 6782 case HDA_FIXUP_ACT_FREE:
fd895a74 6783 hda_component_manager_free(cdc, &comp_master_ops);
ebcbfd84 6784 break;
ae7abe36
SB
6785 }
6786}
6787
6788static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6789{
cf0d9566 6790 comp_generic_fixup(cdc, action, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
ae7abe36
SB
6791}
6792
42320660
SB
6793static void cs35l41_fixup_i2c_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6794{
cf0d9566 6795 comp_generic_fixup(cdc, action, "i2c", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
42320660
SB
6796}
6797
07bcab93
LT
6798static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6799{
cf0d9566 6800 comp_generic_fixup(codec, action, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 2);
225f6e1b
TI
6801}
6802
07bcab93
LT
6803static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6804{
cf0d9566 6805 comp_generic_fixup(codec, action, "spi", "CSC3551", "-%s:00-cs35l41-hda.%d", 4);
07bcab93
LT
6806}
6807
d3dca026
LT
6808static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6809 int action)
6810{
cf0d9566 6811 comp_generic_fixup(cdc, action, "i2c", "CLSA0100", "-%s:00-cs35l41-hda.%d", 2);
d3dca026
LT
6812}
6813
1e24881d
LT
6814static void alc287_fixup_legion_16ithg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6815 int action)
6816{
cf0d9566 6817 comp_generic_fixup(cdc, action, "i2c", "CLSA0101", "-%s:00-cs35l41-hda.%d", 2);
1e24881d
LT
6818}
6819
b2d6a1fd
ST
6820static void cs35l56_fixup_spi_four(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6821{
6822 comp_generic_fixup(cdc, action, "spi", "CSC3556", "-%s:00-cs35l56-hda.%d", 4);
6823}
6824
3babae91
SD
6825static void tas2781_fixup_i2c(struct hda_codec *cdc,
6826 const struct hda_fixup *fix, int action)
6827{
cf0d9566 6828 comp_generic_fixup(cdc, action, "i2c", "TIAS2781", "-%s:00", 1);
3babae91
SD
6829}
6830
b5cb53fd
GK
6831static void yoga7_14arb7_fixup_i2c(struct hda_codec *cdc,
6832 const struct hda_fixup *fix, int action)
6833{
cf0d9566 6834 comp_generic_fixup(cdc, action, "i2c", "INT8866", "-%s:00", 1);
b5cb53fd
GK
6835}
6836
bbf8ff6b
TB
6837/* for alc295_fixup_hp_top_speakers */
6838#include "hp_x360_helper.c"
6839
26928ca1
TI
6840/* for alc285_fixup_ideapad_s740_coef() */
6841#include "ideapad_s740_helper.c"
6842
619764cc
WS
6843static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
6844 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
6845 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
6846 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
6847 {}
6848};
6849
6850static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
6851 const struct hda_fixup *fix,
6852 int action)
dd6dd6e3
WS
6853{
6854 /*
619764cc
WS
6855 * A certain other OS sets these coeffs to different values. On at least
6856 * one TongFang barebone these settings might survive even a cold
6857 * reboot. So to restore a clean slate the values are explicitly reset
6858 * to default here. Without this, the external microphone is always in a
6859 * plugged-in state, while the internal microphone is always in an
6860 * unplugged state, breaking the ability to use the internal microphone.
6861 */
6862 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
dd6dd6e3
WS
6863}
6864
174a7fb3
WS
6865static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
6866 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
6867 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
6868 WRITE_COEF(0x49, 0x0149),
6869 {}
6870};
6871
6872static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
6873 const struct hda_fixup *fix,
6874 int action)
6875{
6876 /*
6877 * The audio jack input and output is not detected on the ASRock NUC Box
6878 * 1100 series when cold booting without this fix. Warm rebooting from a
6879 * certain other OS makes the audio functional, as COEF settings are
6880 * preserved in this case. This fix sets these altered COEF values as
6881 * the default.
6882 */
6883 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
6884}
6885
edca7cc4
WS
6886static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
6887 const struct hda_fixup *fix,
6888 int action)
6889{
6890 /*
6891 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
6892 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
6893 * needs an additional quirk for sound working after suspend and resume.
6894 */
6895 if (codec->core.vendor_id == 0x10ec0256) {
6896 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
6897 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
6898 } else {
6899 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
6900 }
6901}
6902
1efcdd9c
GM
6903static void alc_fixup_dell4_mic_no_presence_quiet(struct hda_codec *codec,
6904 const struct hda_fixup *fix,
6905 int action)
6906{
6907 struct alc_spec *spec = codec->spec;
6908 struct hda_input_mux *imux = &spec->gen.input_mux;
6909 int i;
6910
6911 alc269_fixup_limit_int_mic_boost(codec, fix, action);
6912
6913 switch (action) {
6914 case HDA_FIXUP_ACT_PRE_PROBE:
6915 /**
6916 * Set the vref of pin 0x19 (Headset Mic) and pin 0x1b (Headphone Mic)
6917 * to Hi-Z to avoid pop noises at startup and when plugging and
6918 * unplugging headphones.
6919 */
6920 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6921 snd_hda_codec_set_pin_target(codec, 0x1b, PIN_VREFHIZ);
6922 break;
6923 case HDA_FIXUP_ACT_PROBE:
6924 /**
6925 * Make the internal mic (0x12) the default input source to
6926 * prevent pop noises on cold boot.
6927 */
6928 for (i = 0; i < imux->num_items; i++) {
6929 if (spec->gen.imux_pins[i] == 0x12) {
6930 spec->gen.cur_mux[0] = i;
6931 break;
6932 }
6933 }
6934 break;
6935 }
6936}
6937
3790a3d6
PJ
6938static void alc287_fixup_yoga9_14iap7_bass_spk_pin(struct hda_codec *codec,
6939 const struct hda_fixup *fix, int action)
6940{
6941 /*
6942 * The Pin Complex 0x17 for the bass speakers is wrongly reported as
6943 * unconnected.
6944 */
6945 static const struct hda_pintbl pincfgs[] = {
6946 { 0x17, 0x90170121 },
6947 { }
6948 };
6949 /*
6950 * Avoid DAC 0x06 and 0x08, as they have no volume controls.
6951 * DAC 0x02 and 0x03 would be fine.
6952 */
6953 static const hda_nid_t conn[] = { 0x02, 0x03 };
6954 /*
6955 * Prefer both speakerbar (0x14) and bass speakers (0x17) connected to DAC 0x02.
6956 * Headphones (0x21) are connected to DAC 0x03.
6957 */
6958 static const hda_nid_t preferred_pairs[] = {
6959 0x14, 0x02,
6960 0x17, 0x02,
6961 0x21, 0x03,
6962 0
6963 };
6964 struct alc_spec *spec = codec->spec;
6965
6966 switch (action) {
6967 case HDA_FIXUP_ACT_PRE_PROBE:
6968 snd_hda_apply_pincfgs(codec, pincfgs);
6969 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6970 spec->gen.preferred_dacs = preferred_pairs;
6971 break;
6972 }
6973}
6974
2912cdda
PJ
6975static void alc295_fixup_dell_inspiron_top_speakers(struct hda_codec *codec,
6976 const struct hda_fixup *fix, int action)
6977{
6978 static const struct hda_pintbl pincfgs[] = {
6979 { 0x14, 0x90170151 },
6980 { 0x17, 0x90170150 },
6981 { }
6982 };
6983 static const hda_nid_t conn[] = { 0x02, 0x03 };
6984 static const hda_nid_t preferred_pairs[] = {
6985 0x14, 0x02,
6986 0x17, 0x03,
6987 0x21, 0x02,
6988 0
6989 };
6990 struct alc_spec *spec = codec->spec;
6991
6992 alc_fixup_no_shutup(codec, fix, action);
6993
6994 switch (action) {
6995 case HDA_FIXUP_ACT_PRE_PROBE:
6996 snd_hda_apply_pincfgs(codec, pincfgs);
6997 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6998 spec->gen.preferred_dacs = preferred_pairs;
6999 break;
7000 }
7001}
7002
e43252db
KY
7003/* Forcibly assign NID 0x03 to HP while NID 0x02 to SPK */
7004static void alc287_fixup_bind_dacs(struct hda_codec *codec,
7005 const struct hda_fixup *fix, int action)
7006{
7007 struct alc_spec *spec = codec->spec;
7008 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
7009 static const hda_nid_t preferred_pairs[] = {
7010 0x17, 0x02, 0x21, 0x03, 0
7011 };
7012
7013 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7014 return;
7015
7016 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
7017 spec->gen.preferred_dacs = preferred_pairs;
7018 spec->gen.auto_mute_via_amp = 1;
fb6254df
KY
7019 if (spec->gen.autocfg.speaker_pins[0] != 0x14) {
7020 snd_hda_codec_write_cache(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7021 0x0); /* Make sure 0x14 was disable */
7022 }
e43252db 7023}
c8c0a03e
KY
7024/* Fix none verb table of Headset Mic pin */
7025static void alc_fixup_headset_mic(struct hda_codec *codec,
7026 const struct hda_fixup *fix, int action)
7027{
7028 struct alc_spec *spec = codec->spec;
7029 static const struct hda_pintbl pincfgs[] = {
7030 { 0x19, 0x03a1103c },
7031 { }
7032 };
7033
7034 switch (action) {
7035 case HDA_FIXUP_ACT_PRE_PROBE:
7036 snd_hda_apply_pincfgs(codec, pincfgs);
7037 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
7038 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7039 break;
7040 }
7041}
e43252db
KY
7042
7043
1d045db9 7044enum {
f73bbf63 7045 ALC269_FIXUP_GPIO2,
1d045db9
TI
7046 ALC269_FIXUP_SONY_VAIO,
7047 ALC275_FIXUP_SONY_VAIO_GPIO2,
7048 ALC269_FIXUP_DELL_M101Z,
7049 ALC269_FIXUP_SKU_IGNORE,
7050 ALC269_FIXUP_ASUS_G73JW,
e959f2be
PLB
7051 ALC269_FIXUP_ASUS_N7601ZM_PINS,
7052 ALC269_FIXUP_ASUS_N7601ZM,
1d045db9
TI
7053 ALC269_FIXUP_LENOVO_EAPD,
7054 ALC275_FIXUP_SONY_HWEQ,
e9bd7d5c 7055 ALC275_FIXUP_SONY_DISABLE_AAMIX,
1d045db9 7056 ALC271_FIXUP_DMIC,
017f2a10 7057 ALC269_FIXUP_PCM_44K,
adabb3ec 7058 ALC269_FIXUP_STEREO_DMIC,
7c478f03 7059 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
7060 ALC269_FIXUP_QUANTA_MUTE,
7061 ALC269_FIXUP_LIFEBOOK,
2041d564 7062 ALC269_FIXUP_LIFEBOOK_EXTMIC,
cc7016ab 7063 ALC269_FIXUP_LIFEBOOK_HP_PIN,
4df3fd17 7064 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
fdcc968a 7065 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
a4297b5d
TI
7066 ALC269_FIXUP_AMIC,
7067 ALC269_FIXUP_DMIC,
7068 ALC269VB_FIXUP_AMIC,
7069 ALC269VB_FIXUP_DMIC,
08fb0d0e 7070 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 7071 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 7072 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7f783bd5 7073 ALC269_FIXUP_HP_MUTE_LED_MIC3,
9f5c6faf 7074 ALC269_FIXUP_HP_GPIO_LED,
9c5dc3bf
KY
7075 ALC269_FIXUP_HP_GPIO_MIC1_LED,
7076 ALC269_FIXUP_HP_LINE1_MIC1_LED,
693b613d 7077 ALC269_FIXUP_INV_DMIC,
108cc108 7078 ALC269_FIXUP_LENOVO_DOCK,
b590b38c 7079 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
9b745ab8 7080 ALC269_FIXUP_NO_SHUTUP,
88cfcf86 7081 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 7082 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
7083 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7084 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 7085 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
fcc6c877 7086 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
1efcdd9c 7087 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET,
73bdd597
DH
7088 ALC269_FIXUP_HEADSET_MODE,
7089 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7819717b 7090 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
d240d1dc
DH
7091 ALC269_FIXUP_ASUS_X101_FUNC,
7092 ALC269_FIXUP_ASUS_X101_VERB,
7093 ALC269_FIXUP_ASUS_X101,
08a978db
DR
7094 ALC271_FIXUP_AMIC_MIC2,
7095 ALC271_FIXUP_HP_GATE_MIC_JACK,
b1e8972e 7096 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
42397004 7097 ALC269_FIXUP_ACER_AC700,
3e0d611b 7098 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 7099 ALC269VB_FIXUP_ASUS_ZENBOOK,
23870831 7100 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
f882c4be 7101 ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE,
8e35cd4a 7102 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 7103 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 7104 ALC283_FIXUP_CHROME_BOOK,
0202e99c 7105 ALC283_FIXUP_SENSE_COMBO_JACK,
7bba2157 7106 ALC282_FIXUP_ASUS_TX300,
1bb3e062 7107 ALC283_FIXUP_INT_MIC,
338cae56 7108 ALC290_FIXUP_MONO_SPEAKERS,
0f4881dc
DH
7109 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7110 ALC290_FIXUP_SUBWOOFER,
7111 ALC290_FIXUP_SUBWOOFER_HSJACK,
b67ae3f1 7112 ALC269_FIXUP_THINKPAD_ACPI,
56f27013 7113 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
7c9caa29 7114 ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO,
5824ce8d 7115 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
615966ad 7116 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9a22a8f5 7117 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
31278997 7118 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9a22a8f5 7119 ALC255_FIXUP_HEADSET_MODE,
31278997 7120 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
a22aa26f 7121 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
1c37c223 7122 ALC292_FIXUP_TPT440_DOCK,
9a811230 7123 ALC292_FIXUP_TPT440,
abaa2274 7124 ALC283_FIXUP_HEADSET_MIC,
b3802783 7125 ALC255_FIXUP_MIC_MUTE_LED,
1a22e775 7126 ALC282_FIXUP_ASPIRE_V5_PINS,
c8426b27 7127 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7a5255f1 7128 ALC280_FIXUP_HP_GPIO4,
eaa8e5ef 7129 ALC286_FIXUP_HP_GPIO_LED,
33f4acd3 7130 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
b4b33f9d 7131 ALC280_FIXUP_HP_DOCK_PINS,
04d5466a 7132 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
98973f2f 7133 ALC280_FIXUP_HP_9480M,
c3bb2b52 7134 ALC245_FIXUP_HP_X360_AMP,
d94befbb 7135 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
e1e62b98
KY
7136 ALC288_FIXUP_DELL_HEADSET_MODE,
7137 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
831bfdf9
HW
7138 ALC288_FIXUP_DELL_XPS_13,
7139 ALC288_FIXUP_DISABLE_AAMIX,
5fab5829 7140 ALC292_FIXUP_DELL_E7X_AAMIX,
8b99aba7
TI
7141 ALC292_FIXUP_DELL_E7X,
7142 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 7143 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
54324221 7144 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
977e6276 7145 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 7146 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 7147 ALC275_FIXUP_DELL_XPS,
23adc192 7148 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 7149 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 7150 ALC255_FIXUP_DELL_SPK_NOISE,
d1dd4211 7151 ALC225_FIXUP_DISABLE_MIC_VREF,
2ae95577 7152 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 7153 ALC295_FIXUP_DISABLE_DAC3,
d2cd795c 7154 ALC285_FIXUP_SPEAKER2_TO_DAC1,
4b963ae1
AS
7155 ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1,
7156 ALC285_FIXUP_ASUS_HEADSET_MIC,
b759a5f0 7157 ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS,
8cc87c05
LJ
7158 ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1,
7159 ALC285_FIXUP_ASUS_I2C_HEADSET_MIC,
f883982d 7160 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 7161 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 7162 ALC292_FIXUP_TPT460,
dd9aa335 7163 ALC298_FIXUP_SPK_VOLUME,
f86de9b1 7164 ALC298_FIXUP_LENOVO_SPK_VOLUME,
fd06c77e 7165 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 7166 ALC269_FIXUP_ATIV_BOOK_8,
4ba5c853 7167 ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE,
9eb5d0e6 7168 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
7169 ALC256_FIXUP_ASUS_HEADSET_MODE,
7170 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 7171 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
7172 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
7173 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 7174 ALC233_FIXUP_LENOVO_MULTI_CODECS,
ea5c7eba 7175 ALC233_FIXUP_ACER_HEADSET_MIC,
f33f79f3 7176 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 7177 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
52e4e368 7178 ALC225_FIXUP_S3_POP_NOISE,
b84e8436 7179 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
7180 ALC274_FIXUP_DELL_BIND_DACS,
7181 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
399c01aa 7182 ALC298_FIXUP_TPT470_DOCK_FIX,
61fcf8ec 7183 ALC298_FIXUP_TPT470_DOCK,
ae104a21 7184 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 7185 ALC255_FIXUP_DELL_HEADSET_MIC,
0fbf21c3 7186 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
a2ef03fe 7187 ALC298_FIXUP_HUAWEI_MBX_STEREO,
bbf8ff6b 7188 ALC295_FIXUP_HP_X360,
8a328ac1 7189 ALC221_FIXUP_HP_HEADSET_MIC,
c4cfcf6f 7190 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
e8ed64b0 7191 ALC295_FIXUP_HP_AUTO_MUTE,
33aaebd4 7192 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
d8ae458e 7193 ALC294_FIXUP_ASUS_MIC,
4e051106
JHP
7194 ALC294_FIXUP_ASUS_HEADSET_MIC,
7195 ALC294_FIXUP_ASUS_SPK,
89e3a568 7196 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
c8c6ee61 7197 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
cbc05fd6 7198 ALC255_FIXUP_ACER_HEADSET_MIC,
10f5b1b8 7199 ALC295_FIXUP_CHROME_BOOK,
8983eb60 7200 ALC225_FIXUP_HEADSET_JACK,
136824ef
KY
7201 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
7202 ALC225_FIXUP_WYSE_AUTO_MUTE,
7203 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
667a8f73 7204 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
8c8967a7 7205 ALC256_FIXUP_ASUS_HEADSET_MIC,
e1037354 7206 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
e2a829b3 7207 ALC299_FIXUP_PREDATOR_SPK,
bd9c10bc 7208 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
f0d9da19 7209 ALC289_FIXUP_DELL_SPK1,
e79c2269
KY
7210 ALC289_FIXUP_DELL_SPK2,
7211 ALC289_FIXUP_DUAL_SPK,
f0d9da19 7212 ALC289_FIXUP_RTK_AMP_DUAL_SPK,
48e01504
CC
7213 ALC294_FIXUP_SPK2_TO_DAC1,
7214 ALC294_FIXUP_ASUS_DUAL_SPK,
6a6660d0 7215 ALC285_FIXUP_THINKPAD_X1_GEN7,
76f7dec0 7216 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
724418b8
MA
7217 ALC294_FIXUP_ASUS_ALLY,
7218 ALC294_FIXUP_ASUS_ALLY_PINS,
7219 ALC294_FIXUP_ASUS_ALLY_VERBS,
7220 ALC294_FIXUP_ASUS_ALLY_SPEAKER,
8b33a134 7221 ALC294_FIXUP_ASUS_HPE,
1b94e59d 7222 ALC294_FIXUP_ASUS_COEF_1B,
c3cdf189
LJ
7223 ALC294_FIXUP_ASUS_GX502_HP,
7224 ALC294_FIXUP_ASUS_GX502_PINS,
7225 ALC294_FIXUP_ASUS_GX502_VERBS,
c1b55029
DC
7226 ALC294_FIXUP_ASUS_GU502_HP,
7227 ALC294_FIXUP_ASUS_GU502_PINS,
7228 ALC294_FIXUP_ASUS_GU502_VERBS,
c611e659 7229 ALC294_FIXUP_ASUS_G513_PINS,
bc2c2354 7230 ALC285_FIXUP_ASUS_G533Z_PINS,
f5a88b0a 7231 ALC285_FIXUP_HP_GPIO_LED,
431e76c3 7232 ALC285_FIXUP_HP_MUTE_LED,
ca88eeb3 7233 ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED,
0659400f 7234 ALC236_FIXUP_HP_MUTE_LED_COEFBIT2,
e7d66cf7 7235 ALC236_FIXUP_HP_GPIO_LED,
24164f43 7236 ALC236_FIXUP_HP_MUTE_LED,
75b62ab6 7237 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
a2d57ebe 7238 ALC298_FIXUP_SAMSUNG_AMP,
14425f1f 7239 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
ef248d9b 7240 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
9e43342b 7241 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
8eae7e9b 7242 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
6e15d126 7243 ALC269VC_FIXUP_ACER_HEADSET_MIC,
781c90c0 7244 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
293a92c1 7245 ALC289_FIXUP_ASUS_GA401,
4b43d05a 7246 ALC289_FIXUP_ASUS_GA502,
f50a121d 7247 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
56496253 7248 ALC285_FIXUP_HP_GPIO_AMP_INIT,
f1ec5be1
HC
7249 ALC269_FIXUP_CZC_B20,
7250 ALC269_FIXUP_CZC_TMI,
7251 ALC269_FIXUP_CZC_L101,
7252 ALC269_FIXUP_LEMOTE_A1802,
7253 ALC269_FIXUP_LEMOTE_A190X,
e2d2fded 7254 ALC256_FIXUP_INTEL_NUC8_RUGGED,
d1ee66c5
PC
7255 ALC233_FIXUP_INTEL_NUC8_DMIC,
7256 ALC233_FIXUP_INTEL_NUC8_BOOST,
73e7161e 7257 ALC256_FIXUP_INTEL_NUC10,
fc19d559 7258 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
13468bfa 7259 ALC274_FIXUP_HP_MIC,
8a8de09c 7260 ALC274_FIXUP_HP_HEADSET_MIC,
622464c8 7261 ALC274_FIXUP_HP_ENVY_GPIO,
ef9ce66f 7262 ALC256_FIXUP_ASUS_HPE,
446b8185 7263 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
a0ccbc53 7264 ALC287_FIXUP_HP_GPIO_LED,
9e885770 7265 ALC256_FIXUP_HP_HEADSET_MIC,
5fc462c3 7266 ALC245_FIXUP_HP_GPIO_LED,
92666d45 7267 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
34cdf405 7268 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
495dc763 7269 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
d0e18561 7270 ALC256_FIXUP_ACER_HEADSET_MIC,
26928ca1 7271 ALC285_FIXUP_IDEAPAD_S740_COEF,
bd15b155 7272 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
8eedd3a7 7273 ALC295_FIXUP_ASUS_DACS,
5d84b531 7274 ALC295_FIXUP_HP_OMEN,
f2be77fe 7275 ALC285_FIXUP_HP_SPECTRE_X360,
9ebaef05 7276 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
29c8f40b 7277 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
57c9e21a 7278 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
8903376d 7279 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
ad7cc2d4
CB
7280 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
7281 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
7282 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
56ec3e75 7283 ALC298_FIXUP_LENOVO_C940_DUET7,
dd6dd6e3 7284 ALC287_FIXUP_13S_GEN2_SPEAKERS,
619764cc 7285 ALC256_FIXUP_SET_COEF_DEFAULTS,
1278cc5a 7286 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
174a7fb3 7287 ALC233_FIXUP_NO_AUDIO_JACK,
edca7cc4 7288 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
8f4c9042
BF
7289 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7290 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
d3dca026 7291 ALC287_FIXUP_LEGION_16ACHG6,
ae7abe36 7292 ALC287_FIXUP_CS35L41_I2C_2,
b3fbe536 7293 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
42320660 7294 ALC287_FIXUP_CS35L41_I2C_4,
07bcab93 7295 ALC245_FIXUP_CS35L41_SPI_2,
ce18f905 7296 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
07bcab93
LT
7297 ALC245_FIXUP_CS35L41_SPI_4,
7298 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
91502a9a 7299 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
309d7363 7300 ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE,
1e24881d 7301 ALC287_FIXUP_LEGION_16ITHG6,
3790a3d6
PJ
7302 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
7303 ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN,
2912cdda 7304 ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS,
a4517c4f 7305 ALC236_FIXUP_DELL_DUAL_CODECS,
f7b069cf 7306 ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
3babae91 7307 ALC287_FIXUP_TAS2781_I2C,
b5cb53fd 7308 ALC287_FIXUP_YOGA7_14ARB7_I2C,
93dc18e1 7309 ALC245_FIXUP_HP_MUTE_LED_COEFBIT,
c99c26b1 7310 ALC245_FIXUP_HP_X360_MUTE_LEDS,
e43252db 7311 ALC287_FIXUP_THINKPAD_I2S_SPK,
d93eeca6 7312 ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD,
c8c0a03e 7313 ALC2XX_FIXUP_HEADSET_MIC,
f0d9da19 7314 ALC289_FIXUP_DELL_CS35L41_SPI_2,
6ae90e90 7315 ALC294_FIXUP_CS35L41_I2C_2,
b2d6a1fd 7316 ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED,
f1d4e28b
KY
7317};
7318
56ec3e75
TI
7319/* A special fixup for Lenovo C940 and Yoga Duet 7;
7320 * both have the very same PCI SSID, and we need to apply different fixups
7321 * depending on the codec ID
7322 */
7323static void alc298_fixup_lenovo_c940_duet7(struct hda_codec *codec,
7324 const struct hda_fixup *fix,
7325 int action)
7326{
7327 int id;
7328
7329 if (codec->core.vendor_id == 0x10ec0298)
7330 id = ALC298_FIXUP_LENOVO_SPK_VOLUME; /* C940 */
7331 else
7332 id = ALC287_FIXUP_YOGA7_14ITL_SPEAKERS; /* Duet 7 */
7333 __snd_hda_apply_fixup(codec, id, action, 0);
7334}
7335
1727a771 7336static const struct hda_fixup alc269_fixups[] = {
f73bbf63
KHF
7337 [ALC269_FIXUP_GPIO2] = {
7338 .type = HDA_FIXUP_FUNC,
7339 .v.func = alc_fixup_gpio2,
7340 },
1d045db9 7341 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
7342 .type = HDA_FIXUP_PINCTLS,
7343 .v.pins = (const struct hda_pintbl[]) {
7344 {0x19, PIN_VREFGRD},
1d045db9
TI
7345 {}
7346 }
f1d4e28b 7347 },
1d045db9 7348 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
7349 .type = HDA_FIXUP_FUNC,
7350 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
7351 .chained = true,
7352 .chain_id = ALC269_FIXUP_SONY_VAIO
7353 },
7354 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 7355 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7356 .v.verbs = (const struct hda_verb[]) {
7357 /* Enables internal speaker */
7358 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7359 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7360 {}
7361 }
7362 },
7363 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 7364 .type = HDA_FIXUP_FUNC,
23d30f28 7365 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
7366 },
7367 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
7368 .type = HDA_FIXUP_PINS,
7369 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
7370 { 0x17, 0x99130111 }, /* subwoofer */
7371 { }
7372 }
7373 },
e959f2be
PLB
7374 [ALC269_FIXUP_ASUS_N7601ZM_PINS] = {
7375 .type = HDA_FIXUP_PINS,
7376 .v.pins = (const struct hda_pintbl[]) {
7377 { 0x19, 0x03A11050 },
7378 { 0x1a, 0x03A11C30 },
7379 { 0x21, 0x03211420 },
7380 { }
7381 }
7382 },
7383 [ALC269_FIXUP_ASUS_N7601ZM] = {
7384 .type = HDA_FIXUP_VERBS,
7385 .v.verbs = (const struct hda_verb[]) {
7386 {0x20, AC_VERB_SET_COEF_INDEX, 0x62},
7387 {0x20, AC_VERB_SET_PROC_COEF, 0xa007},
7388 {0x20, AC_VERB_SET_COEF_INDEX, 0x10},
7389 {0x20, AC_VERB_SET_PROC_COEF, 0x8420},
7390 {0x20, AC_VERB_SET_COEF_INDEX, 0x0f},
7391 {0x20, AC_VERB_SET_PROC_COEF, 0x7774},
7392 { }
7393 },
7394 .chained = true,
7395 .chain_id = ALC269_FIXUP_ASUS_N7601ZM_PINS,
7396 },
1d045db9 7397 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 7398 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7399 .v.verbs = (const struct hda_verb[]) {
7400 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7401 {}
7402 }
7403 },
7404 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 7405 .type = HDA_FIXUP_FUNC,
1d045db9
TI
7406 .v.func = alc269_fixup_hweq,
7407 .chained = true,
7408 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7409 },
e9bd7d5c
TI
7410 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7411 .type = HDA_FIXUP_FUNC,
7412 .v.func = alc_fixup_disable_aamix,
7413 .chained = true,
7414 .chain_id = ALC269_FIXUP_SONY_VAIO
7415 },
1d045db9 7416 [ALC271_FIXUP_DMIC] = {
1727a771 7417 .type = HDA_FIXUP_FUNC,
1d045db9 7418 .v.func = alc271_fixup_dmic,
f1d4e28b 7419 },
017f2a10 7420 [ALC269_FIXUP_PCM_44K] = {
1727a771 7421 .type = HDA_FIXUP_FUNC,
017f2a10 7422 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
7423 .chained = true,
7424 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 7425 },
adabb3ec 7426 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 7427 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
7428 .v.func = alc269_fixup_stereo_dmic,
7429 },
7c478f03
DH
7430 [ALC269_FIXUP_HEADSET_MIC] = {
7431 .type = HDA_FIXUP_FUNC,
7432 .v.func = alc269_fixup_headset_mic,
7433 },
24519911 7434 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 7435 .type = HDA_FIXUP_FUNC,
24519911
TI
7436 .v.func = alc269_fixup_quanta_mute,
7437 },
7438 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
7439 .type = HDA_FIXUP_PINS,
7440 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
7441 { 0x1a, 0x2101103f }, /* dock line-out */
7442 { 0x1b, 0x23a11040 }, /* dock mic-in */
7443 { }
7444 },
7445 .chained = true,
7446 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7447 },
2041d564
DH
7448 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7449 .type = HDA_FIXUP_PINS,
7450 .v.pins = (const struct hda_pintbl[]) {
7451 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7452 { }
7453 },
7454 },
cc7016ab
TI
7455 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7456 .type = HDA_FIXUP_PINS,
7457 .v.pins = (const struct hda_pintbl[]) {
7458 { 0x21, 0x0221102f }, /* HP out */
7459 { }
7460 },
7461 },
4df3fd17
TI
7462 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7463 .type = HDA_FIXUP_FUNC,
7464 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7465 },
fdcc968a
JMG
7466 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7467 .type = HDA_FIXUP_FUNC,
7468 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7469 },
7c9caa29
VK
7470 [ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO] = {
7471 .type = HDA_FIXUP_PINS,
7472 .v.pins = (const struct hda_pintbl[]) {
7473 { 0x18, 0x03a19020 }, /* headset mic */
7474 { 0x1b, 0x90170150 }, /* speaker */
7475 { }
7476 },
7477 },
a4297b5d 7478 [ALC269_FIXUP_AMIC] = {
1727a771
TI
7479 .type = HDA_FIXUP_PINS,
7480 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7481 { 0x14, 0x99130110 }, /* speaker */
7482 { 0x15, 0x0121401f }, /* HP out */
7483 { 0x18, 0x01a19c20 }, /* mic */
7484 { 0x19, 0x99a3092f }, /* int-mic */
7485 { }
7486 },
7487 },
7488 [ALC269_FIXUP_DMIC] = {
1727a771
TI
7489 .type = HDA_FIXUP_PINS,
7490 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7491 { 0x12, 0x99a3092f }, /* int-mic */
7492 { 0x14, 0x99130110 }, /* speaker */
7493 { 0x15, 0x0121401f }, /* HP out */
7494 { 0x18, 0x01a19c20 }, /* mic */
7495 { }
7496 },
7497 },
7498 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
7499 .type = HDA_FIXUP_PINS,
7500 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7501 { 0x14, 0x99130110 }, /* speaker */
7502 { 0x18, 0x01a19c20 }, /* mic */
7503 { 0x19, 0x99a3092f }, /* int-mic */
7504 { 0x21, 0x0121401f }, /* HP out */
7505 { }
7506 },
7507 },
2267ea97 7508 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
7509 .type = HDA_FIXUP_PINS,
7510 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7511 { 0x12, 0x99a3092f }, /* int-mic */
7512 { 0x14, 0x99130110 }, /* speaker */
7513 { 0x18, 0x01a19c20 }, /* mic */
7514 { 0x21, 0x0121401f }, /* HP out */
7515 { }
7516 },
7517 },
08fb0d0e 7518 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 7519 .type = HDA_FIXUP_FUNC,
08fb0d0e 7520 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 7521 },
d06ac143
DH
7522 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7523 .type = HDA_FIXUP_FUNC,
7524 .v.func = alc269_fixup_hp_mute_led_mic1,
7525 },
08fb0d0e 7526 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 7527 .type = HDA_FIXUP_FUNC,
08fb0d0e 7528 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 7529 },
7f783bd5
TB
7530 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7531 .type = HDA_FIXUP_FUNC,
7532 .v.func = alc269_fixup_hp_mute_led_mic3,
e8ed64b0
GKK
7533 .chained = true,
7534 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7f783bd5 7535 },
9f5c6faf
TI
7536 [ALC269_FIXUP_HP_GPIO_LED] = {
7537 .type = HDA_FIXUP_FUNC,
7538 .v.func = alc269_fixup_hp_gpio_led,
7539 },
9c5dc3bf
KY
7540 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7541 .type = HDA_FIXUP_FUNC,
7542 .v.func = alc269_fixup_hp_gpio_mic1_led,
7543 },
7544 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7545 .type = HDA_FIXUP_FUNC,
7546 .v.func = alc269_fixup_hp_line1_mic1_led,
7547 },
693b613d 7548 [ALC269_FIXUP_INV_DMIC] = {
1727a771 7549 .type = HDA_FIXUP_FUNC,
9d36a7dc 7550 .v.func = alc_fixup_inv_dmic,
693b613d 7551 },
9b745ab8
TI
7552 [ALC269_FIXUP_NO_SHUTUP] = {
7553 .type = HDA_FIXUP_FUNC,
7554 .v.func = alc_fixup_no_shutup,
7555 },
108cc108 7556 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
7557 .type = HDA_FIXUP_PINS,
7558 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
7559 { 0x19, 0x23a11040 }, /* dock mic */
7560 { 0x1b, 0x2121103f }, /* dock headphone */
7561 { }
7562 },
7563 .chained = true,
7564 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7565 },
b590b38c
TI
7566 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7567 .type = HDA_FIXUP_FUNC,
7568 .v.func = alc269_fixup_limit_int_mic_boost,
7569 .chained = true,
7570 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7571 },
108cc108 7572 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 7573 .type = HDA_FIXUP_FUNC,
108cc108 7574 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
7575 .chained = true,
7576 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 7577 },
73bdd597
DH
7578 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7579 .type = HDA_FIXUP_PINS,
7580 .v.pins = (const struct hda_pintbl[]) {
7581 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7582 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7583 { }
7584 },
7585 .chained = true,
7586 .chain_id = ALC269_FIXUP_HEADSET_MODE
7587 },
7588 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7589 .type = HDA_FIXUP_PINS,
7590 .v.pins = (const struct hda_pintbl[]) {
7591 { 0x16, 0x21014020 }, /* dock line out */
7592 { 0x19, 0x21a19030 }, /* dock mic */
7593 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7594 { }
7595 },
7596 .chained = true,
7597 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7598 },
338cae56
DH
7599 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7600 .type = HDA_FIXUP_PINS,
7601 .v.pins = (const struct hda_pintbl[]) {
7602 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7603 { }
7604 },
7605 .chained = true,
7606 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7607 },
fcc6c877
KY
7608 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7609 .type = HDA_FIXUP_PINS,
7610 .v.pins = (const struct hda_pintbl[]) {
7611 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7612 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7613 { }
7614 },
7615 .chained = true,
7616 .chain_id = ALC269_FIXUP_HEADSET_MODE
7617 },
73bdd597
DH
7618 [ALC269_FIXUP_HEADSET_MODE] = {
7619 .type = HDA_FIXUP_FUNC,
7620 .v.func = alc_fixup_headset_mode,
6676f308 7621 .chained = true,
b3802783 7622 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
73bdd597
DH
7623 },
7624 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7625 .type = HDA_FIXUP_FUNC,
7626 .v.func = alc_fixup_headset_mode_no_hp_mic,
7627 },
7819717b
TI
7628 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7629 .type = HDA_FIXUP_PINS,
7630 .v.pins = (const struct hda_pintbl[]) {
7631 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7632 { }
7633 },
7634 .chained = true,
7635 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7636 },
88cfcf86
DH
7637 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7638 .type = HDA_FIXUP_PINS,
7639 .v.pins = (const struct hda_pintbl[]) {
7640 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7641 { }
7642 },
fbc78ad6
DH
7643 .chained = true,
7644 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 7645 },
0fbf21c3 7646 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
8ac51bbc
AB
7647 .type = HDA_FIXUP_PINS,
7648 .v.pins = (const struct hda_pintbl[]) {
7649 {0x12, 0x90a60130},
7650 {0x13, 0x40000000},
7651 {0x14, 0x90170110},
7652 {0x18, 0x411111f0},
7653 {0x19, 0x04a11040},
7654 {0x1a, 0x411111f0},
7655 {0x1b, 0x90170112},
7656 {0x1d, 0x40759a05},
7657 {0x1e, 0x411111f0},
7658 {0x21, 0x04211020},
7659 { }
7660 },
e2744fd7
AB
7661 .chained = true,
7662 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8ac51bbc 7663 },
a2ef03fe
TE
7664 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7665 .type = HDA_FIXUP_FUNC,
7666 .v.func = alc298_fixup_huawei_mbx_stereo,
7667 .chained = true,
7668 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7669 },
d240d1dc
DH
7670 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7671 .type = HDA_FIXUP_FUNC,
7672 .v.func = alc269_fixup_x101_headset_mic,
7673 },
7674 [ALC269_FIXUP_ASUS_X101_VERB] = {
7675 .type = HDA_FIXUP_VERBS,
7676 .v.verbs = (const struct hda_verb[]) {
7677 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7678 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7679 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7680 { }
7681 },
7682 .chained = true,
7683 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7684 },
7685 [ALC269_FIXUP_ASUS_X101] = {
7686 .type = HDA_FIXUP_PINS,
7687 .v.pins = (const struct hda_pintbl[]) {
7688 { 0x18, 0x04a1182c }, /* Headset mic */
7689 { }
7690 },
7691 .chained = true,
7692 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7693 },
08a978db 7694 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
7695 .type = HDA_FIXUP_PINS,
7696 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
7697 { 0x14, 0x99130110 }, /* speaker */
7698 { 0x19, 0x01a19c20 }, /* mic */
7699 { 0x1b, 0x99a7012f }, /* int-mic */
7700 { 0x21, 0x0121401f }, /* HP out */
7701 { }
7702 },
7703 },
7704 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 7705 .type = HDA_FIXUP_FUNC,
08a978db
DR
7706 .v.func = alc271_hp_gate_mic_jack,
7707 .chained = true,
7708 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7709 },
b1e8972e
OR
7710 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7711 .type = HDA_FIXUP_FUNC,
7712 .v.func = alc269_fixup_limit_int_mic_boost,
7713 .chained = true,
7714 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7715 },
42397004
DR
7716 [ALC269_FIXUP_ACER_AC700] = {
7717 .type = HDA_FIXUP_PINS,
7718 .v.pins = (const struct hda_pintbl[]) {
7719 { 0x12, 0x99a3092f }, /* int-mic */
7720 { 0x14, 0x99130110 }, /* speaker */
7721 { 0x18, 0x03a11c20 }, /* mic */
7722 { 0x1e, 0x0346101e }, /* SPDIF1 */
7723 { 0x21, 0x0321101f }, /* HP out */
7724 { }
7725 },
7726 .chained = true,
7727 .chain_id = ALC271_FIXUP_DMIC,
7728 },
3e0d611b
DH
7729 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7730 .type = HDA_FIXUP_FUNC,
7731 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
7732 .chained = true,
7733 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 7734 },
2cede303
OR
7735 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7736 .type = HDA_FIXUP_FUNC,
7737 .v.func = alc269_fixup_limit_int_mic_boost,
7738 .chained = true,
7739 .chain_id = ALC269VB_FIXUP_DMIC,
7740 },
23870831
TI
7741 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7742 .type = HDA_FIXUP_VERBS,
7743 .v.verbs = (const struct hda_verb[]) {
7744 /* class-D output amp +5dB */
7745 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7746 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7747 {}
7748 },
7749 .chained = true,
7750 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7751 },
f882c4be
MT
7752 [ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7753 .type = HDA_FIXUP_PINS,
7754 .v.pins = (const struct hda_pintbl[]) {
7755 { 0x18, 0x01a110f0 }, /* use as headset mic */
7756 { }
7757 },
7758 .chained = true,
7759 .chain_id = ALC269_FIXUP_HEADSET_MIC
7760 },
8e35cd4a
DH
7761 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7762 .type = HDA_FIXUP_FUNC,
7763 .v.func = alc269_fixup_limit_int_mic_boost,
7764 .chained = true,
7765 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7766 },
02b504d9
AA
7767 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7768 .type = HDA_FIXUP_PINS,
7769 .v.pins = (const struct hda_pintbl[]) {
7770 { 0x12, 0x99a3092f }, /* int-mic */
7771 { 0x18, 0x03a11d20 }, /* mic */
7772 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7773 { }
7774 },
7775 },
cd217a63
KY
7776 [ALC283_FIXUP_CHROME_BOOK] = {
7777 .type = HDA_FIXUP_FUNC,
7778 .v.func = alc283_fixup_chromebook,
7779 },
0202e99c
KY
7780 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7781 .type = HDA_FIXUP_FUNC,
7782 .v.func = alc283_fixup_sense_combo_jack,
7783 .chained = true,
7784 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7785 },
7bba2157
TI
7786 [ALC282_FIXUP_ASUS_TX300] = {
7787 .type = HDA_FIXUP_FUNC,
7788 .v.func = alc282_fixup_asus_tx300,
7789 },
1bb3e062
KY
7790 [ALC283_FIXUP_INT_MIC] = {
7791 .type = HDA_FIXUP_VERBS,
7792 .v.verbs = (const struct hda_verb[]) {
7793 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7794 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7795 { }
7796 },
7797 .chained = true,
7798 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7799 },
0f4881dc
DH
7800 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7801 .type = HDA_FIXUP_PINS,
7802 .v.pins = (const struct hda_pintbl[]) {
7803 { 0x17, 0x90170112 }, /* subwoofer */
7804 { }
7805 },
7806 .chained = true,
7807 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7808 },
7809 [ALC290_FIXUP_SUBWOOFER] = {
7810 .type = HDA_FIXUP_PINS,
7811 .v.pins = (const struct hda_pintbl[]) {
7812 { 0x17, 0x90170112 }, /* subwoofer */
7813 { }
7814 },
7815 .chained = true,
7816 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7817 },
338cae56
DH
7818 [ALC290_FIXUP_MONO_SPEAKERS] = {
7819 .type = HDA_FIXUP_FUNC,
7820 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
7821 },
7822 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7823 .type = HDA_FIXUP_FUNC,
7824 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
7825 .chained = true,
7826 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7827 },
b67ae3f1
DH
7828 [ALC269_FIXUP_THINKPAD_ACPI] = {
7829 .type = HDA_FIXUP_FUNC,
d5a6cabf 7830 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
7831 .chained = true,
7832 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 7833 },
56f27013
DH
7834 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7835 .type = HDA_FIXUP_FUNC,
7836 .v.func = alc_fixup_inv_dmic,
7837 .chained = true,
7838 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7839 },
5824ce8d 7840 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
17d30460
HW
7841 .type = HDA_FIXUP_PINS,
7842 .v.pins = (const struct hda_pintbl[]) {
7843 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7844 { }
5824ce8d
CC
7845 },
7846 .chained = true,
17d30460 7847 .chain_id = ALC255_FIXUP_HEADSET_MODE
5824ce8d 7848 },
615966ad
CC
7849 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7850 .type = HDA_FIXUP_PINS,
7851 .v.pins = (const struct hda_pintbl[]) {
7852 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7853 { }
7854 },
7855 .chained = true,
7856 .chain_id = ALC255_FIXUP_HEADSET_MODE
7857 },
9a22a8f5
KY
7858 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7859 .type = HDA_FIXUP_PINS,
7860 .v.pins = (const struct hda_pintbl[]) {
7861 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7862 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7863 { }
7864 },
7865 .chained = true,
7866 .chain_id = ALC255_FIXUP_HEADSET_MODE
7867 },
31278997
KY
7868 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7869 .type = HDA_FIXUP_PINS,
7870 .v.pins = (const struct hda_pintbl[]) {
7871 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7872 { }
7873 },
7874 .chained = true,
7875 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
7876 },
9a22a8f5
KY
7877 [ALC255_FIXUP_HEADSET_MODE] = {
7878 .type = HDA_FIXUP_FUNC,
7879 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a 7880 .chained = true,
b3802783 7881 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
9a22a8f5 7882 },
31278997
KY
7883 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7884 .type = HDA_FIXUP_FUNC,
7885 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
7886 },
a22aa26f
KY
7887 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7888 .type = HDA_FIXUP_PINS,
7889 .v.pins = (const struct hda_pintbl[]) {
7890 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7891 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7892 { }
7893 },
7894 .chained = true,
7895 .chain_id = ALC269_FIXUP_HEADSET_MODE
7896 },
1c37c223 7897 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 7898 .type = HDA_FIXUP_FUNC,
7f57d803 7899 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
7900 .chained = true,
7901 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7902 },
9a811230
TI
7903 [ALC292_FIXUP_TPT440] = {
7904 .type = HDA_FIXUP_FUNC,
157f0b7f 7905 .v.func = alc_fixup_disable_aamix,
9a811230
TI
7906 .chained = true,
7907 .chain_id = ALC292_FIXUP_TPT440_DOCK,
7908 },
abaa2274 7909 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
7910 .type = HDA_FIXUP_PINS,
7911 .v.pins = (const struct hda_pintbl[]) {
7912 { 0x19, 0x04a110f0 },
7913 { },
7914 },
7915 },
b3802783 7916 [ALC255_FIXUP_MIC_MUTE_LED] = {
00ef9940 7917 .type = HDA_FIXUP_FUNC,
8a503555 7918 .v.func = alc_fixup_micmute_led,
00ef9940 7919 },
1a22e775
TI
7920 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
7921 .type = HDA_FIXUP_PINS,
7922 .v.pins = (const struct hda_pintbl[]) {
7923 { 0x12, 0x90a60130 },
7924 { 0x14, 0x90170110 },
7925 { 0x17, 0x40000008 },
7926 { 0x18, 0x411111f0 },
0420694d 7927 { 0x19, 0x01a1913c },
1a22e775
TI
7928 { 0x1a, 0x411111f0 },
7929 { 0x1b, 0x411111f0 },
7930 { 0x1d, 0x40f89b2d },
7931 { 0x1e, 0x411111f0 },
7932 { 0x21, 0x0321101f },
7933 { },
7934 },
7935 },
c8426b27
TI
7936 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
7937 .type = HDA_FIXUP_FUNC,
7938 .v.func = alc269vb_fixup_aspire_e1_coef,
7939 },
7a5255f1
DH
7940 [ALC280_FIXUP_HP_GPIO4] = {
7941 .type = HDA_FIXUP_FUNC,
7942 .v.func = alc280_fixup_hp_gpio4,
7943 },
eaa8e5ef
KY
7944 [ALC286_FIXUP_HP_GPIO_LED] = {
7945 .type = HDA_FIXUP_FUNC,
7946 .v.func = alc286_fixup_hp_gpio_led,
7947 },
33f4acd3
DH
7948 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
7949 .type = HDA_FIXUP_FUNC,
7950 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
7951 },
b4b33f9d
TC
7952 [ALC280_FIXUP_HP_DOCK_PINS] = {
7953 .type = HDA_FIXUP_PINS,
7954 .v.pins = (const struct hda_pintbl[]) {
7955 { 0x1b, 0x21011020 }, /* line-out */
7956 { 0x1a, 0x01a1903c }, /* headset mic */
7957 { 0x18, 0x2181103f }, /* line-in */
7958 { },
7959 },
7960 .chained = true,
7961 .chain_id = ALC280_FIXUP_HP_GPIO4
7962 },
04d5466a
JK
7963 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
7964 .type = HDA_FIXUP_PINS,
7965 .v.pins = (const struct hda_pintbl[]) {
7966 { 0x1b, 0x21011020 }, /* line-out */
7967 { 0x18, 0x2181103f }, /* line-in */
7968 { },
7969 },
7970 .chained = true,
7971 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
7972 },
98973f2f
KP
7973 [ALC280_FIXUP_HP_9480M] = {
7974 .type = HDA_FIXUP_FUNC,
7975 .v.func = alc280_fixup_hp_9480m,
7976 },
c3bb2b52
TI
7977 [ALC245_FIXUP_HP_X360_AMP] = {
7978 .type = HDA_FIXUP_FUNC,
7979 .v.func = alc245_fixup_hp_x360_amp,
5fc462c3
JC
7980 .chained = true,
7981 .chain_id = ALC245_FIXUP_HP_GPIO_LED
c3bb2b52 7982 },
e1e62b98
KY
7983 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
7984 .type = HDA_FIXUP_FUNC,
7985 .v.func = alc_fixup_headset_mode_dell_alc288,
7986 .chained = true,
b3802783 7987 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
e1e62b98
KY
7988 },
7989 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7990 .type = HDA_FIXUP_PINS,
7991 .v.pins = (const struct hda_pintbl[]) {
7992 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7993 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7994 { }
7995 },
7996 .chained = true,
7997 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
7998 },
831bfdf9
HW
7999 [ALC288_FIXUP_DISABLE_AAMIX] = {
8000 .type = HDA_FIXUP_FUNC,
8001 .v.func = alc_fixup_disable_aamix,
8002 .chained = true,
d44a6864 8003 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
8004 },
8005 [ALC288_FIXUP_DELL_XPS_13] = {
8006 .type = HDA_FIXUP_FUNC,
8007 .v.func = alc_fixup_dell_xps13,
8008 .chained = true,
8009 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
8010 },
8b99aba7
TI
8011 [ALC292_FIXUP_DISABLE_AAMIX] = {
8012 .type = HDA_FIXUP_FUNC,
8013 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
8014 .chained = true,
8015 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 8016 },
c04017ea
DH
8017 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
8018 .type = HDA_FIXUP_FUNC,
8019 .v.func = alc_fixup_disable_aamix,
8020 .chained = true,
8021 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
8022 },
5fab5829 8023 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8b99aba7
TI
8024 .type = HDA_FIXUP_FUNC,
8025 .v.func = alc_fixup_dell_xps13,
8026 .chained = true,
8027 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
8028 },
5fab5829
TI
8029 [ALC292_FIXUP_DELL_E7X] = {
8030 .type = HDA_FIXUP_FUNC,
8a503555 8031 .v.func = alc_fixup_micmute_led,
5fab5829
TI
8032 /* micmute fixup must be applied at last */
8033 .chained_before = true,
8034 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
8035 },
54324221
JM
8036 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
8037 .type = HDA_FIXUP_PINS,
8038 .v.pins = (const struct hda_pintbl[]) {
8039 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
8040 { }
8041 },
8042 .chained_before = true,
8043 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8044 },
977e6276
KY
8045 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8046 .type = HDA_FIXUP_PINS,
8047 .v.pins = (const struct hda_pintbl[]) {
8048 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8049 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8050 { }
8051 },
8052 .chained = true,
8053 .chain_id = ALC269_FIXUP_HEADSET_MODE
8054 },
2f726aec
HW
8055 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
8056 .type = HDA_FIXUP_PINS,
8057 .v.pins = (const struct hda_pintbl[]) {
8058 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8059 { }
8060 },
8061 .chained = true,
8062 .chain_id = ALC269_FIXUP_HEADSET_MODE
8063 },
6ed1131f
KY
8064 [ALC275_FIXUP_DELL_XPS] = {
8065 .type = HDA_FIXUP_VERBS,
8066 .v.verbs = (const struct hda_verb[]) {
8067 /* Enables internal speaker */
8068 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
8069 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
8070 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
8071 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
8072 {}
8073 }
8074 },
23adc192
HW
8075 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
8076 .type = HDA_FIXUP_FUNC,
8077 .v.func = alc_fixup_disable_aamix,
8078 .chained = true,
8079 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8080 },
3694cb29
K
8081 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
8082 .type = HDA_FIXUP_FUNC,
8083 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
8084 },
d1ee66c5
PC
8085 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
8086 .type = HDA_FIXUP_FUNC,
8087 .v.func = alc_fixup_inv_dmic,
8088 .chained = true,
8089 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
8090 },
8091 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
8092 .type = HDA_FIXUP_FUNC,
8093 .v.func = alc269_fixup_limit_int_mic_boost
8094 },
3b43b71f
KHF
8095 [ALC255_FIXUP_DELL_SPK_NOISE] = {
8096 .type = HDA_FIXUP_FUNC,
8097 .v.func = alc_fixup_disable_aamix,
8098 .chained = true,
8099 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8100 },
d1dd4211
KY
8101 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
8102 .type = HDA_FIXUP_FUNC,
8103 .v.func = alc_fixup_disable_mic_vref,
8104 .chained = true,
8105 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8106 },
2ae95577
DH
8107 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
8108 .type = HDA_FIXUP_VERBS,
8109 .v.verbs = (const struct hda_verb[]) {
8110 /* Disable pass-through path for FRONT 14h */
8111 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8112 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8113 {}
8114 },
8115 .chained = true,
d1dd4211 8116 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
2ae95577 8117 },
f883982d
TI
8118 [ALC280_FIXUP_HP_HEADSET_MIC] = {
8119 .type = HDA_FIXUP_FUNC,
8120 .v.func = alc_fixup_disable_aamix,
8121 .chained = true,
8122 .chain_id = ALC269_FIXUP_HEADSET_MIC,
8123 },
e549d190
HW
8124 [ALC221_FIXUP_HP_FRONT_MIC] = {
8125 .type = HDA_FIXUP_PINS,
8126 .v.pins = (const struct hda_pintbl[]) {
8127 { 0x19, 0x02a19020 }, /* Front Mic */
8128 { }
8129 },
8130 },
c636b95e
SE
8131 [ALC292_FIXUP_TPT460] = {
8132 .type = HDA_FIXUP_FUNC,
8133 .v.func = alc_fixup_tpt440_dock,
8134 .chained = true,
8135 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
8136 },
dd9aa335
HW
8137 [ALC298_FIXUP_SPK_VOLUME] = {
8138 .type = HDA_FIXUP_FUNC,
8139 .v.func = alc298_fixup_speaker_volume,
59ec4b57 8140 .chained = true,
2f726aec 8141 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 8142 },
f86de9b1
KY
8143 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
8144 .type = HDA_FIXUP_FUNC,
8145 .v.func = alc298_fixup_speaker_volume,
8146 },
e312a869
TI
8147 [ALC295_FIXUP_DISABLE_DAC3] = {
8148 .type = HDA_FIXUP_FUNC,
8149 .v.func = alc295_fixup_disable_dac3,
8150 },
d2cd795c
JK
8151 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
8152 .type = HDA_FIXUP_FUNC,
8153 .v.func = alc285_fixup_speaker2_to_dac1,
c37c0ab0
HW
8154 .chained = true,
8155 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
d2cd795c 8156 },
4b963ae1
AS
8157 [ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1] = {
8158 .type = HDA_FIXUP_FUNC,
8159 .v.func = alc285_fixup_speaker2_to_dac1,
8160 .chained = true,
8161 .chain_id = ALC245_FIXUP_CS35L41_SPI_2
8162 },
8163 [ALC285_FIXUP_ASUS_HEADSET_MIC] = {
8164 .type = HDA_FIXUP_PINS,
8165 .v.pins = (const struct hda_pintbl[]) {
8166 { 0x19, 0x03a11050 },
8167 { 0x1b, 0x03a11c30 },
8168 { }
8169 },
8170 .chained = true,
8171 .chain_id = ALC285_FIXUP_ASUS_SPEAKER2_TO_DAC1
8172 },
b759a5f0
LJ
8173 [ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS] = {
8174 .type = HDA_FIXUP_PINS,
8175 .v.pins = (const struct hda_pintbl[]) {
8176 { 0x14, 0x90170120 },
8177 { }
8178 },
8179 .chained = true,
8180 .chain_id = ALC285_FIXUP_ASUS_HEADSET_MIC
8181 },
8cc87c05
LJ
8182 [ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1] = {
8183 .type = HDA_FIXUP_FUNC,
8184 .v.func = alc285_fixup_speaker2_to_dac1,
8185 .chained = true,
8186 .chain_id = ALC287_FIXUP_CS35L41_I2C_2
8187 },
8188 [ALC285_FIXUP_ASUS_I2C_HEADSET_MIC] = {
8189 .type = HDA_FIXUP_PINS,
8190 .v.pins = (const struct hda_pintbl[]) {
8191 { 0x19, 0x03a11050 },
8192 { 0x1b, 0x03a11c30 },
8193 { }
8194 },
8195 .chained = true,
8196 .chain_id = ALC285_FIXUP_ASUS_I2C_SPEAKER2_TO_DAC1
8197 },
fd06c77e
KHF
8198 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
8199 .type = HDA_FIXUP_PINS,
8200 .v.pins = (const struct hda_pintbl[]) {
8201 { 0x1b, 0x90170151 },
8202 { }
8203 },
8204 .chained = true,
8205 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8206 },
823ff161
GM
8207 [ALC269_FIXUP_ATIV_BOOK_8] = {
8208 .type = HDA_FIXUP_FUNC,
8209 .v.func = alc_fixup_auto_mute_via_amp,
8210 .chained = true,
8211 .chain_id = ALC269_FIXUP_NO_SHUTUP
8212 },
4ba5c853
MT
8213 [ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE] = {
8214 .type = HDA_FIXUP_PINS,
8215 .v.pins = (const struct hda_pintbl[]) {
8216 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8217 { 0x1a, 0x01813030 }, /* use as headphone mic, without its own jack detect */
8218 { }
8219 },
8220 .chained = true,
8221 .chain_id = ALC269_FIXUP_HEADSET_MODE
8222 },
9eb5d0e6
KY
8223 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
8224 .type = HDA_FIXUP_PINS,
8225 .v.pins = (const struct hda_pintbl[]) {
8226 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8227 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
8228 { }
8229 },
8230 .chained = true,
8231 .chain_id = ALC269_FIXUP_HEADSET_MODE
8232 },
c1732ede
CC
8233 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
8234 .type = HDA_FIXUP_FUNC,
8235 .v.func = alc_fixup_headset_mode,
8236 },
8237 [ALC256_FIXUP_ASUS_MIC] = {
8238 .type = HDA_FIXUP_PINS,
8239 .v.pins = (const struct hda_pintbl[]) {
8240 { 0x13, 0x90a60160 }, /* use as internal mic */
8241 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8242 { }
8243 },
8244 .chained = true,
8245 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8246 },
eeed4cd1 8247 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
8248 .type = HDA_FIXUP_FUNC,
8249 /* Set up GPIO2 for the speaker amp */
8250 .v.func = alc_fixup_gpio4,
eeed4cd1 8251 },
216d7aeb
CC
8252 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8253 .type = HDA_FIXUP_PINS,
8254 .v.pins = (const struct hda_pintbl[]) {
8255 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8256 { }
8257 },
8258 .chained = true,
8259 .chain_id = ALC269_FIXUP_HEADSET_MIC
8260 },
8261 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
8262 .type = HDA_FIXUP_VERBS,
8263 .v.verbs = (const struct hda_verb[]) {
8264 /* Enables internal speaker */
8265 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
8266 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
8267 {}
8268 },
8269 .chained = true,
8270 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8271 },
ca169cc2
KY
8272 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
8273 .type = HDA_FIXUP_FUNC,
8274 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
f73bbf63
KHF
8275 .chained = true,
8276 .chain_id = ALC269_FIXUP_GPIO2
ca169cc2 8277 },
ea5c7eba
JHP
8278 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
8279 .type = HDA_FIXUP_VERBS,
8280 .v.verbs = (const struct hda_verb[]) {
8281 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8282 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8283 { }
8284 },
8285 .chained = true,
8286 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
8287 },
f33f79f3
HW
8288 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
8289 .type = HDA_FIXUP_PINS,
8290 .v.pins = (const struct hda_pintbl[]) {
8291 /* Change the mic location from front to right, otherwise there are
8292 two front mics with the same name, pulseaudio can't handle them.
8293 This is just a temporary workaround, after applying this fixup,
8294 there will be one "Front Mic" and one "Mic" in this machine.
8295 */
8296 { 0x1a, 0x04a19040 },
8297 { }
8298 },
8299 },
5f364135
KY
8300 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
8301 .type = HDA_FIXUP_PINS,
8302 .v.pins = (const struct hda_pintbl[]) {
8303 { 0x16, 0x0101102f }, /* Rear Headset HP */
8304 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
8305 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
8306 { 0x1b, 0x02011020 },
8307 { }
8308 },
8309 .chained = true,
52e4e368
KHF
8310 .chain_id = ALC225_FIXUP_S3_POP_NOISE
8311 },
8312 [ALC225_FIXUP_S3_POP_NOISE] = {
8313 .type = HDA_FIXUP_FUNC,
8314 .v.func = alc225_fixup_s3_pop_noise,
8315 .chained = true,
5f364135
KY
8316 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8317 },
b84e8436
PH
8318 [ALC700_FIXUP_INTEL_REFERENCE] = {
8319 .type = HDA_FIXUP_VERBS,
8320 .v.verbs = (const struct hda_verb[]) {
8321 /* Enables internal speaker */
8322 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
8323 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
8324 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
8325 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
8326 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
8327 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
8328 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
8329 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
8330 {}
8331 }
8332 },
92266651
KY
8333 [ALC274_FIXUP_DELL_BIND_DACS] = {
8334 .type = HDA_FIXUP_FUNC,
8335 .v.func = alc274_fixup_bind_dacs,
8336 .chained = true,
8337 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
8338 },
8339 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
8340 .type = HDA_FIXUP_PINS,
8341 .v.pins = (const struct hda_pintbl[]) {
8342 { 0x1b, 0x0401102f },
8343 { }
8344 },
8345 .chained = true,
8346 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
8347 },
399c01aa 8348 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
61fcf8ec
KY
8349 .type = HDA_FIXUP_FUNC,
8350 .v.func = alc_fixup_tpt470_dock,
8351 .chained = true,
8352 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
8353 },
399c01aa
TI
8354 [ALC298_FIXUP_TPT470_DOCK] = {
8355 .type = HDA_FIXUP_FUNC,
8356 .v.func = alc_fixup_tpt470_dacs,
8357 .chained = true,
8358 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
8359 },
ae104a21
KY
8360 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
8361 .type = HDA_FIXUP_PINS,
8362 .v.pins = (const struct hda_pintbl[]) {
8363 { 0x14, 0x0201101f },
8364 { }
8365 },
8366 .chained = true,
8367 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8368 },
f0ba9d69
KY
8369 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
8370 .type = HDA_FIXUP_PINS,
8371 .v.pins = (const struct hda_pintbl[]) {
8372 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8373 { }
8374 },
3ce0d5aa
HW
8375 .chained = true,
8376 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 8377 },
bbf8ff6b
TB
8378 [ALC295_FIXUP_HP_X360] = {
8379 .type = HDA_FIXUP_FUNC,
8380 .v.func = alc295_fixup_hp_top_speakers,
8381 .chained = true,
8382 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
8383 },
8384 [ALC221_FIXUP_HP_HEADSET_MIC] = {
8385 .type = HDA_FIXUP_PINS,
8386 .v.pins = (const struct hda_pintbl[]) {
8387 { 0x19, 0x0181313f},
8388 { }
8389 },
8390 .chained = true,
8391 .chain_id = ALC269_FIXUP_HEADSET_MIC
8392 },
c4cfcf6f
HW
8393 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
8394 .type = HDA_FIXUP_FUNC,
8395 .v.func = alc285_fixup_invalidate_dacs,
6ba189c5
HW
8396 .chained = true,
8397 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
c4cfcf6f 8398 },
e8ed64b0
GKK
8399 [ALC295_FIXUP_HP_AUTO_MUTE] = {
8400 .type = HDA_FIXUP_FUNC,
8401 .v.func = alc_fixup_auto_mute_via_amp,
8402 },
33aaebd4
CC
8403 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
8404 .type = HDA_FIXUP_PINS,
8405 .v.pins = (const struct hda_pintbl[]) {
8406 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8407 { }
8408 },
8409 .chained = true,
8410 .chain_id = ALC269_FIXUP_HEADSET_MIC
8411 },
d8ae458e
CC
8412 [ALC294_FIXUP_ASUS_MIC] = {
8413 .type = HDA_FIXUP_PINS,
8414 .v.pins = (const struct hda_pintbl[]) {
8415 { 0x13, 0x90a60160 }, /* use as internal mic */
8416 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8417 { }
8418 },
8419 .chained = true,
ef9ddb9d 8420 .chain_id = ALC269_FIXUP_HEADSET_MIC
d8ae458e 8421 },
4e051106
JHP
8422 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8423 .type = HDA_FIXUP_PINS,
8424 .v.pins = (const struct hda_pintbl[]) {
82b01149 8425 { 0x19, 0x01a1103c }, /* use as headset mic */
4e051106
JHP
8426 { }
8427 },
8428 .chained = true,
ef9ddb9d 8429 .chain_id = ALC269_FIXUP_HEADSET_MIC
4e051106
JHP
8430 },
8431 [ALC294_FIXUP_ASUS_SPK] = {
8432 .type = HDA_FIXUP_VERBS,
8433 .v.verbs = (const struct hda_verb[]) {
8434 /* Set EAPD high */
8435 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8436 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
473fbe13
KY
8437 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8438 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
4e051106
JHP
8439 { }
8440 },
8441 .chained = true,
8442 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8443 },
c8a9afa6 8444 [ALC295_FIXUP_CHROME_BOOK] = {
e854747d 8445 .type = HDA_FIXUP_FUNC,
c8a9afa6 8446 .v.func = alc295_fixup_chromebook,
8983eb60
KY
8447 .chained = true,
8448 .chain_id = ALC225_FIXUP_HEADSET_JACK
8449 },
8450 [ALC225_FIXUP_HEADSET_JACK] = {
8451 .type = HDA_FIXUP_FUNC,
8452 .v.func = alc_fixup_headset_jack,
e854747d 8453 },
89e3a568
JS
8454 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8455 .type = HDA_FIXUP_PINS,
8456 .v.pins = (const struct hda_pintbl[]) {
8457 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8458 { }
8459 },
8460 .chained = true,
8461 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8462 },
c8c6ee61
HW
8463 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8464 .type = HDA_FIXUP_VERBS,
8465 .v.verbs = (const struct hda_verb[]) {
8466 /* Disable PCBEEP-IN passthrough */
8467 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8468 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8469 { }
8470 },
8471 .chained = true,
8472 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8473 },
cbc05fd6
JHP
8474 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8475 .type = HDA_FIXUP_PINS,
8476 .v.pins = (const struct hda_pintbl[]) {
8477 { 0x19, 0x03a11130 },
8478 { 0x1a, 0x90a60140 }, /* use as internal mic */
8479 { }
8480 },
8481 .chained = true,
8482 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8483 },
136824ef
KY
8484 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8485 .type = HDA_FIXUP_PINS,
8486 .v.pins = (const struct hda_pintbl[]) {
8487 { 0x16, 0x01011020 }, /* Rear Line out */
8488 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8489 { }
8490 },
8491 .chained = true,
8492 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8493 },
8494 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8495 .type = HDA_FIXUP_FUNC,
8496 .v.func = alc_fixup_auto_mute_via_amp,
8497 .chained = true,
8498 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8499 },
8500 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8501 .type = HDA_FIXUP_FUNC,
8502 .v.func = alc_fixup_disable_mic_vref,
8503 .chained = true,
8504 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8505 },
667a8f73
JHP
8506 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8507 .type = HDA_FIXUP_VERBS,
8508 .v.verbs = (const struct hda_verb[]) {
8509 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8510 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8511 { }
8512 },
8513 .chained = true,
8514 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8515 },
8c8967a7
DD
8516 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8517 .type = HDA_FIXUP_PINS,
8518 .v.pins = (const struct hda_pintbl[]) {
8519 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8520 { }
8521 },
8522 .chained = true,
8523 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8524 },
e1037354
JHP
8525 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8526 .type = HDA_FIXUP_PINS,
8527 .v.pins = (const struct hda_pintbl[]) {
8528 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8529 { }
8530 },
8531 .chained = true,
8532 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8533 },
e2a829b3
BR
8534 [ALC299_FIXUP_PREDATOR_SPK] = {
8535 .type = HDA_FIXUP_PINS,
8536 .v.pins = (const struct hda_pintbl[]) {
8537 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8538 { }
8539 }
8540 },
bd9c10bc 8541 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
60083f9e
JHP
8542 .type = HDA_FIXUP_PINS,
8543 .v.pins = (const struct hda_pintbl[]) {
bd9c10bc
JMG
8544 { 0x19, 0x04a11040 },
8545 { 0x21, 0x04211020 },
60083f9e
JHP
8546 { }
8547 },
8548 .chained = true,
bd9c10bc 8549 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
60083f9e 8550 },
f0d9da19
KY
8551 [ALC289_FIXUP_DELL_SPK1] = {
8552 .type = HDA_FIXUP_PINS,
8553 .v.pins = (const struct hda_pintbl[]) {
8554 { 0x14, 0x90170140 },
8555 { }
8556 },
8557 .chained = true,
8558 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
8559 },
e79c2269 8560 [ALC289_FIXUP_DELL_SPK2] = {
bd9c10bc
JMG
8561 .type = HDA_FIXUP_PINS,
8562 .v.pins = (const struct hda_pintbl[]) {
e79c2269 8563 { 0x17, 0x90170130 }, /* bass spk */
bd9c10bc
JMG
8564 { }
8565 },
8566 .chained = true,
e79c2269 8567 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
bd9c10bc 8568 },
e79c2269
KY
8569 [ALC289_FIXUP_DUAL_SPK] = {
8570 .type = HDA_FIXUP_FUNC,
8571 .v.func = alc285_fixup_speaker2_to_dac1,
8572 .chained = true,
8573 .chain_id = ALC289_FIXUP_DELL_SPK2
8574 },
f0d9da19
KY
8575 [ALC289_FIXUP_RTK_AMP_DUAL_SPK] = {
8576 .type = HDA_FIXUP_FUNC,
8577 .v.func = alc285_fixup_speaker2_to_dac1,
8578 .chained = true,
8579 .chain_id = ALC289_FIXUP_DELL_SPK1
8580 },
48e01504
CC
8581 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8582 .type = HDA_FIXUP_FUNC,
8583 .v.func = alc285_fixup_speaker2_to_dac1,
8584 .chained = true,
8585 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8586 },
8587 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
436e2550
JHP
8588 .type = HDA_FIXUP_FUNC,
8589 /* The GPIO must be pulled to initialize the AMP */
8590 .v.func = alc_fixup_gpio4,
8591 .chained = true,
48e01504 8592 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
436e2550 8593 },
724418b8
MA
8594 [ALC294_FIXUP_ASUS_ALLY] = {
8595 .type = HDA_FIXUP_FUNC,
8596 .v.func = cs35l41_fixup_i2c_two,
8597 .chained = true,
8598 .chain_id = ALC294_FIXUP_ASUS_ALLY_PINS
8599 },
8600 [ALC294_FIXUP_ASUS_ALLY_PINS] = {
8601 .type = HDA_FIXUP_PINS,
8602 .v.pins = (const struct hda_pintbl[]) {
8603 { 0x19, 0x03a11050 },
8604 { 0x1a, 0x03a11c30 },
8605 { 0x21, 0x03211420 },
8606 { }
8607 },
8608 .chained = true,
8609 .chain_id = ALC294_FIXUP_ASUS_ALLY_VERBS
8610 },
8611 [ALC294_FIXUP_ASUS_ALLY_VERBS] = {
8612 .type = HDA_FIXUP_VERBS,
8613 .v.verbs = (const struct hda_verb[]) {
8614 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8615 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8616 { 0x20, AC_VERB_SET_COEF_INDEX, 0x46 },
8617 { 0x20, AC_VERB_SET_PROC_COEF, 0x0004 },
8618 { 0x20, AC_VERB_SET_COEF_INDEX, 0x47 },
8619 { 0x20, AC_VERB_SET_PROC_COEF, 0xa47a },
8620 { 0x20, AC_VERB_SET_COEF_INDEX, 0x49 },
8621 { 0x20, AC_VERB_SET_PROC_COEF, 0x0049},
8622 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4a },
8623 { 0x20, AC_VERB_SET_PROC_COEF, 0x201b },
8624 { 0x20, AC_VERB_SET_COEF_INDEX, 0x6b },
8625 { 0x20, AC_VERB_SET_PROC_COEF, 0x4278},
8626 { }
8627 },
8628 .chained = true,
8629 .chain_id = ALC294_FIXUP_ASUS_ALLY_SPEAKER
8630 },
8631 [ALC294_FIXUP_ASUS_ALLY_SPEAKER] = {
8632 .type = HDA_FIXUP_FUNC,
8633 .v.func = alc285_fixup_speaker2_to_dac1,
8634 },
6a6660d0
TI
8635 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8636 .type = HDA_FIXUP_FUNC,
8637 .v.func = alc285_fixup_thinkpad_x1_gen7,
8638 .chained = true,
8639 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8640 },
76f7dec0
KY
8641 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8642 .type = HDA_FIXUP_FUNC,
8643 .v.func = alc_fixup_headset_jack,
8644 .chained = true,
6a6660d0 8645 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
76f7dec0 8646 },
8b33a134
JHP
8647 [ALC294_FIXUP_ASUS_HPE] = {
8648 .type = HDA_FIXUP_VERBS,
8649 .v.verbs = (const struct hda_verb[]) {
8650 /* Set EAPD high */
8651 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8652 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8653 { }
8654 },
8655 .chained = true,
8656 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8657 },
c3cdf189
LJ
8658 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8659 .type = HDA_FIXUP_PINS,
8660 .v.pins = (const struct hda_pintbl[]) {
8661 { 0x19, 0x03a11050 }, /* front HP mic */
8662 { 0x1a, 0x01a11830 }, /* rear external mic */
8663 { 0x21, 0x03211020 }, /* front HP out */
8664 { }
8665 },
8666 .chained = true,
8667 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8668 },
8669 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8670 .type = HDA_FIXUP_VERBS,
8671 .v.verbs = (const struct hda_verb[]) {
8672 /* set 0x15 to HP-OUT ctrl */
8673 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8674 /* unmute the 0x15 amp */
8675 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8676 { }
8677 },
8678 .chained = true,
8679 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8680 },
8681 [ALC294_FIXUP_ASUS_GX502_HP] = {
8682 .type = HDA_FIXUP_FUNC,
8683 .v.func = alc294_fixup_gx502_hp,
8684 },
c1b55029
DC
8685 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8686 .type = HDA_FIXUP_PINS,
8687 .v.pins = (const struct hda_pintbl[]) {
8688 { 0x19, 0x01a11050 }, /* rear HP mic */
8689 { 0x1a, 0x01a11830 }, /* rear external mic */
8690 { 0x21, 0x012110f0 }, /* rear HP out */
8691 { }
8692 },
8693 .chained = true,
8694 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8695 },
8696 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8697 .type = HDA_FIXUP_VERBS,
8698 .v.verbs = (const struct hda_verb[]) {
8699 /* set 0x15 to HP-OUT ctrl */
8700 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8701 /* unmute the 0x15 amp */
8702 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8703 /* set 0x1b to HP-OUT */
8704 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8705 { }
8706 },
8707 .chained = true,
8708 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8709 },
8710 [ALC294_FIXUP_ASUS_GU502_HP] = {
8711 .type = HDA_FIXUP_FUNC,
8712 .v.func = alc294_fixup_gu502_hp,
c611e659
LJ
8713 },
8714 [ALC294_FIXUP_ASUS_G513_PINS] = {
8715 .type = HDA_FIXUP_PINS,
8716 .v.pins = (const struct hda_pintbl[]) {
8717 { 0x19, 0x03a11050 }, /* front HP mic */
8718 { 0x1a, 0x03a11c30 }, /* rear external mic */
8719 { 0x21, 0x03211420 }, /* front HP out */
8720 { }
8721 },
c1b55029 8722 },
bc2c2354
LJ
8723 [ALC285_FIXUP_ASUS_G533Z_PINS] = {
8724 .type = HDA_FIXUP_PINS,
8725 .v.pins = (const struct hda_pintbl[]) {
66ba7c88
LJ
8726 { 0x14, 0x90170152 }, /* Speaker Surround Playback Switch */
8727 { 0x19, 0x03a19020 }, /* Mic Boost Volume */
8728 { 0x1a, 0x03a11c30 }, /* Mic Boost Volume */
8729 { 0x1e, 0x90170151 }, /* Rear jack, IN OUT EAPD Detect */
8730 { 0x21, 0x03211420 },
bc2c2354
LJ
8731 { }
8732 },
bc2c2354 8733 },
1b94e59d
TI
8734 [ALC294_FIXUP_ASUS_COEF_1B] = {
8735 .type = HDA_FIXUP_VERBS,
8736 .v.verbs = (const struct hda_verb[]) {
8737 /* Set bit 10 to correct noisy output after reboot from
8738 * Windows 10 (due to pop noise reduction?)
8739 */
8740 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8741 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8742 { }
8743 },
f8fbcdfb
TI
8744 .chained = true,
8745 .chain_id = ALC289_FIXUP_ASUS_GA401,
1b94e59d 8746 },
f5a88b0a
KHF
8747 [ALC285_FIXUP_HP_GPIO_LED] = {
8748 .type = HDA_FIXUP_FUNC,
8749 .v.func = alc285_fixup_hp_gpio_led,
8750 },
431e76c3
KY
8751 [ALC285_FIXUP_HP_MUTE_LED] = {
8752 .type = HDA_FIXUP_FUNC,
8753 .v.func = alc285_fixup_hp_mute_led,
8754 },
ca88eeb3
LG
8755 [ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED] = {
8756 .type = HDA_FIXUP_FUNC,
8757 .v.func = alc285_fixup_hp_spectre_x360_mute_led,
8758 },
0659400f
LG
8759 [ALC236_FIXUP_HP_MUTE_LED_COEFBIT2] = {
8760 .type = HDA_FIXUP_FUNC,
8761 .v.func = alc236_fixup_hp_mute_led_coefbit2,
8762 },
e7d66cf7
JS
8763 [ALC236_FIXUP_HP_GPIO_LED] = {
8764 .type = HDA_FIXUP_FUNC,
8765 .v.func = alc236_fixup_hp_gpio_led,
8766 },
24164f43
KY
8767 [ALC236_FIXUP_HP_MUTE_LED] = {
8768 .type = HDA_FIXUP_FUNC,
8769 .v.func = alc236_fixup_hp_mute_led,
8770 },
75b62ab6
JW
8771 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8772 .type = HDA_FIXUP_FUNC,
8773 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8774 },
a2d57ebe
KM
8775 [ALC298_FIXUP_SAMSUNG_AMP] = {
8776 .type = HDA_FIXUP_FUNC,
8777 .v.func = alc298_fixup_samsung_amp,
8778 .chained = true,
8779 .chain_id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET
8780 },
14425f1f
MP
8781 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8782 .type = HDA_FIXUP_VERBS,
8783 .v.verbs = (const struct hda_verb[]) {
8784 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8785 { }
8786 },
8787 },
ef248d9b
MK
8788 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8789 .type = HDA_FIXUP_VERBS,
8790 .v.verbs = (const struct hda_verb[]) {
8791 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8792 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8793 { }
8794 },
8795 },
9e43342b
CC
8796 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8797 .type = HDA_FIXUP_PINS,
8798 .v.pins = (const struct hda_pintbl[]) {
8799 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8800 { }
8801 },
8802 .chained = true,
8803 .chain_id = ALC269_FIXUP_HEADSET_MODE
8804 },
8eae7e9b
JHP
8805 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8806 .type = HDA_FIXUP_PINS,
8807 .v.pins = (const struct hda_pintbl[]) {
8808 { 0x14, 0x90100120 }, /* use as internal speaker */
8809 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8810 { 0x1a, 0x01011020 }, /* use as line out */
8811 { },
8812 },
8813 .chained = true,
8814 .chain_id = ALC269_FIXUP_HEADSET_MIC
8815 },
6e15d126
JHP
8816 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8817 .type = HDA_FIXUP_PINS,
8818 .v.pins = (const struct hda_pintbl[]) {
8819 { 0x18, 0x02a11030 }, /* use as headset mic */
8820 { }
8821 },
8822 .chained = true,
8823 .chain_id = ALC269_FIXUP_HEADSET_MIC
8824 },
781c90c0
JHP
8825 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8826 .type = HDA_FIXUP_PINS,
8827 .v.pins = (const struct hda_pintbl[]) {
8828 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8829 { }
8830 },
8831 .chained = true,
8832 .chain_id = ALC269_FIXUP_HEADSET_MIC
8833 },
293a92c1 8834 [ALC289_FIXUP_ASUS_GA401] = {
c84bfedc
TI
8835 .type = HDA_FIXUP_FUNC,
8836 .v.func = alc289_fixup_asus_ga401,
8837 .chained = true,
8838 .chain_id = ALC289_FIXUP_ASUS_GA502,
ff53664d 8839 },
4b43d05a
AS
8840 [ALC289_FIXUP_ASUS_GA502] = {
8841 .type = HDA_FIXUP_PINS,
8842 .v.pins = (const struct hda_pintbl[]) {
8843 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8844 { }
8845 },
8846 },
f50a121d
JHP
8847 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
8848 .type = HDA_FIXUP_PINS,
8849 .v.pins = (const struct hda_pintbl[]) {
8850 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
8851 { }
8852 },
8853 .chained = true,
8854 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8855 },
56496253
KY
8856 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
8857 .type = HDA_FIXUP_FUNC,
8858 .v.func = alc285_fixup_hp_gpio_amp_init,
8859 .chained = true,
8860 .chain_id = ALC285_FIXUP_HP_GPIO_LED
8861 },
f1ec5be1
HC
8862 [ALC269_FIXUP_CZC_B20] = {
8863 .type = HDA_FIXUP_PINS,
8864 .v.pins = (const struct hda_pintbl[]) {
8865 { 0x12, 0x411111f0 },
8866 { 0x14, 0x90170110 }, /* speaker */
8867 { 0x15, 0x032f1020 }, /* HP out */
8868 { 0x17, 0x411111f0 },
8869 { 0x18, 0x03ab1040 }, /* mic */
8870 { 0x19, 0xb7a7013f },
8871 { 0x1a, 0x0181305f },
8872 { 0x1b, 0x411111f0 },
8873 { 0x1d, 0x411111f0 },
8874 { 0x1e, 0x411111f0 },
8875 { }
8876 },
8877 .chain_id = ALC269_FIXUP_DMIC,
8878 },
8879 [ALC269_FIXUP_CZC_TMI] = {
8880 .type = HDA_FIXUP_PINS,
8881 .v.pins = (const struct hda_pintbl[]) {
8882 { 0x12, 0x4000c000 },
8883 { 0x14, 0x90170110 }, /* speaker */
8884 { 0x15, 0x0421401f }, /* HP out */
8885 { 0x17, 0x411111f0 },
8886 { 0x18, 0x04a19020 }, /* mic */
8887 { 0x19, 0x411111f0 },
8888 { 0x1a, 0x411111f0 },
8889 { 0x1b, 0x411111f0 },
8890 { 0x1d, 0x40448505 },
8891 { 0x1e, 0x411111f0 },
8892 { 0x20, 0x8000ffff },
8893 { }
8894 },
8895 .chain_id = ALC269_FIXUP_DMIC,
8896 },
8897 [ALC269_FIXUP_CZC_L101] = {
8898 .type = HDA_FIXUP_PINS,
8899 .v.pins = (const struct hda_pintbl[]) {
8900 { 0x12, 0x40000000 },
8901 { 0x14, 0x01014010 }, /* speaker */
8902 { 0x15, 0x411111f0 }, /* HP out */
8903 { 0x16, 0x411111f0 },
8904 { 0x18, 0x01a19020 }, /* mic */
8905 { 0x19, 0x02a19021 },
8906 { 0x1a, 0x0181302f },
8907 { 0x1b, 0x0221401f },
8908 { 0x1c, 0x411111f0 },
8909 { 0x1d, 0x4044c601 },
8910 { 0x1e, 0x411111f0 },
8911 { }
8912 },
8913 .chain_id = ALC269_FIXUP_DMIC,
8914 },
8915 [ALC269_FIXUP_LEMOTE_A1802] = {
8916 .type = HDA_FIXUP_PINS,
8917 .v.pins = (const struct hda_pintbl[]) {
8918 { 0x12, 0x40000000 },
8919 { 0x14, 0x90170110 }, /* speaker */
8920 { 0x17, 0x411111f0 },
8921 { 0x18, 0x03a19040 }, /* mic1 */
8922 { 0x19, 0x90a70130 }, /* mic2 */
8923 { 0x1a, 0x411111f0 },
8924 { 0x1b, 0x411111f0 },
8925 { 0x1d, 0x40489d2d },
8926 { 0x1e, 0x411111f0 },
8927 { 0x20, 0x0003ffff },
8928 { 0x21, 0x03214020 },
8929 { }
8930 },
8931 .chain_id = ALC269_FIXUP_DMIC,
8932 },
8933 [ALC269_FIXUP_LEMOTE_A190X] = {
8934 .type = HDA_FIXUP_PINS,
8935 .v.pins = (const struct hda_pintbl[]) {
8936 { 0x14, 0x99130110 }, /* speaker */
8937 { 0x15, 0x0121401f }, /* HP out */
8938 { 0x18, 0x01a19c20 }, /* rear mic */
8939 { 0x19, 0x99a3092f }, /* front mic */
8940 { 0x1b, 0x0201401f }, /* front lineout */
8941 { }
8942 },
8943 .chain_id = ALC269_FIXUP_DMIC,
8944 },
e2d2fded
KHF
8945 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
8946 .type = HDA_FIXUP_PINS,
8947 .v.pins = (const struct hda_pintbl[]) {
8948 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8949 { }
8950 },
8951 .chained = true,
8952 .chain_id = ALC269_FIXUP_HEADSET_MODE
8953 },
73e7161e
WS
8954 [ALC256_FIXUP_INTEL_NUC10] = {
8955 .type = HDA_FIXUP_PINS,
8956 .v.pins = (const struct hda_pintbl[]) {
8957 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8958 { }
8959 },
8960 .chained = true,
8961 .chain_id = ALC269_FIXUP_HEADSET_MODE
8962 },
fc19d559
HW
8963 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
8964 .type = HDA_FIXUP_VERBS,
8965 .v.verbs = (const struct hda_verb[]) {
8966 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8967 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8968 { }
8969 },
8970 .chained = true,
c84bfedc 8971 .chain_id = ALC289_FIXUP_ASUS_GA502
fc19d559 8972 },
13468bfa
HW
8973 [ALC274_FIXUP_HP_MIC] = {
8974 .type = HDA_FIXUP_VERBS,
8975 .v.verbs = (const struct hda_verb[]) {
8976 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8977 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8978 { }
8979 },
8980 },
8a8de09c
KY
8981 [ALC274_FIXUP_HP_HEADSET_MIC] = {
8982 .type = HDA_FIXUP_FUNC,
8983 .v.func = alc274_fixup_hp_headset_mic,
8984 .chained = true,
8985 .chain_id = ALC274_FIXUP_HP_MIC
8986 },
622464c8
TI
8987 [ALC274_FIXUP_HP_ENVY_GPIO] = {
8988 .type = HDA_FIXUP_FUNC,
8989 .v.func = alc274_fixup_hp_envy_gpio,
8990 },
ef9ce66f
KY
8991 [ALC256_FIXUP_ASUS_HPE] = {
8992 .type = HDA_FIXUP_VERBS,
8993 .v.verbs = (const struct hda_verb[]) {
8994 /* Set EAPD high */
8995 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8996 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
8997 { }
8998 },
8999 .chained = true,
9000 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
9001 },
446b8185
KY
9002 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
9003 .type = HDA_FIXUP_FUNC,
9004 .v.func = alc_fixup_headset_jack,
9005 .chained = true,
9006 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
9007 },
a0ccbc53
KY
9008 [ALC287_FIXUP_HP_GPIO_LED] = {
9009 .type = HDA_FIXUP_FUNC,
9010 .v.func = alc287_fixup_hp_gpio_led,
9011 },
9e885770
KY
9012 [ALC256_FIXUP_HP_HEADSET_MIC] = {
9013 .type = HDA_FIXUP_FUNC,
9014 .v.func = alc274_fixup_hp_headset_mic,
9015 },
92666d45
KY
9016 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
9017 .type = HDA_FIXUP_FUNC,
9018 .v.func = alc_fixup_no_int_mic,
9019 .chained = true,
9020 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
9021 },
34cdf405
CC
9022 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
9023 .type = HDA_FIXUP_PINS,
9024 .v.pins = (const struct hda_pintbl[]) {
9025 { 0x1b, 0x411111f0 },
9026 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
9027 { },
9028 },
9029 .chained = true,
9030 .chain_id = ALC269_FIXUP_HEADSET_MODE
9031 },
495dc763
CC
9032 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
9033 .type = HDA_FIXUP_FUNC,
9034 .v.func = alc269_fixup_limit_int_mic_boost,
9035 .chained = true,
9036 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9037 },
d0e18561
CC
9038 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
9039 .type = HDA_FIXUP_PINS,
9040 .v.pins = (const struct hda_pintbl[]) {
9041 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
9042 { 0x1a, 0x90a1092f }, /* use as internal mic */
9043 { }
9044 },
9045 .chained = true,
9046 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9047 },
26928ca1
TI
9048 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
9049 .type = HDA_FIXUP_FUNC,
9050 .v.func = alc285_fixup_ideapad_s740_coef,
9051 .chained = true,
9052 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9053 },
bd15b155
KHF
9054 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9055 .type = HDA_FIXUP_FUNC,
9056 .v.func = alc269_fixup_limit_int_mic_boost,
9057 .chained = true,
9058 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9059 },
8eedd3a7
TI
9060 [ALC295_FIXUP_ASUS_DACS] = {
9061 .type = HDA_FIXUP_FUNC,
9062 .v.func = alc295_fixup_asus_dacs,
9063 },
5d84b531
TI
9064 [ALC295_FIXUP_HP_OMEN] = {
9065 .type = HDA_FIXUP_PINS,
9066 .v.pins = (const struct hda_pintbl[]) {
9067 { 0x12, 0xb7a60130 },
9068 { 0x13, 0x40000000 },
9069 { 0x14, 0x411111f0 },
9070 { 0x16, 0x411111f0 },
9071 { 0x17, 0x90170110 },
9072 { 0x18, 0x411111f0 },
9073 { 0x19, 0x02a11030 },
9074 { 0x1a, 0x411111f0 },
9075 { 0x1b, 0x04a19030 },
9076 { 0x1d, 0x40600001 },
9077 { 0x1e, 0x411111f0 },
9078 { 0x21, 0x03211020 },
9079 {}
9080 },
9081 .chained = true,
9082 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
9083 },
f2be77fe 9084 [ALC285_FIXUP_HP_SPECTRE_X360] = {
434591b2
ED
9085 .type = HDA_FIXUP_FUNC,
9086 .v.func = alc285_fixup_hp_spectre_x360,
f2be77fe 9087 },
d94befbb
DB
9088 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
9089 .type = HDA_FIXUP_FUNC,
9090 .v.func = alc285_fixup_hp_spectre_x360_eb1
9091 },
9ebaef05
HW
9092 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
9093 .type = HDA_FIXUP_FUNC,
9094 .v.func = alc285_fixup_ideapad_s740_coef,
9095 .chained = true,
9096 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9097 },
29c8f40b
PU
9098 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
9099 .type = HDA_FIXUP_FUNC,
9100 .v.func = alc_fixup_no_shutup,
9101 .chained = true,
9102 .chain_id = ALC283_FIXUP_HEADSET_MIC,
9103 },
57c9e21a
HW
9104 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
9105 .type = HDA_FIXUP_PINS,
9106 .v.pins = (const struct hda_pintbl[]) {
9107 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
9108 { }
9109 },
9110 .chained = true,
9111 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
9112 },
8903376d
KHF
9113 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
9114 .type = HDA_FIXUP_FUNC,
9115 .v.func = alc269_fixup_limit_int_mic_boost,
9116 .chained = true,
9117 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
9118 },
8f4c9042
BF
9119 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
9120 .type = HDA_FIXUP_FUNC,
9121 .v.func = alc285_fixup_ideapad_s740_coef,
9122 .chained = true,
9123 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
9124 },
9125 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
9126 .type = HDA_FIXUP_FUNC,
9127 .v.func = alc287_fixup_legion_15imhg05_speakers,
9128 .chained = true,
9129 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9130 },
ad7cc2d4
CB
9131 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
9132 .type = HDA_FIXUP_VERBS,
9133 //.v.verbs = legion_15imhg05_coefs,
9134 .v.verbs = (const struct hda_verb[]) {
9135 // set left speaker Legion 7i.
9136 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9137 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9138
9139 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9140 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9141 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9142 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9143 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9144
9145 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9146 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9147 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9148 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9149 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9150
9151 // set right speaker Legion 7i.
9152 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9153 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9154
9155 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9156 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9157 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9158 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9159 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9160
9161 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9162 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9163 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9164 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9165 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9166 {}
9167 },
9168 .chained = true,
9169 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
9170 },
9171 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
9172 .type = HDA_FIXUP_FUNC,
9173 .v.func = alc287_fixup_legion_15imhg05_speakers,
9174 .chained = true,
9175 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9176 },
9177 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
9178 .type = HDA_FIXUP_VERBS,
9179 .v.verbs = (const struct hda_verb[]) {
9180 // set left speaker Yoga 7i.
9181 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9182 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9183
9184 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9185 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9186 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9187 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9188 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9189
9190 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9191 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9192 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9193 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9194 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9195
9196 // set right speaker Yoga 7i.
9197 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9198 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9199
9200 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9201 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9202 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9203 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9204 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9205
9206 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9207 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9208 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9209 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9210 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9211 {}
9212 },
9213 .chained = true,
9214 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9215 },
56ec3e75
TI
9216 [ALC298_FIXUP_LENOVO_C940_DUET7] = {
9217 .type = HDA_FIXUP_FUNC,
9218 .v.func = alc298_fixup_lenovo_c940_duet7,
9219 },
ad7cc2d4
CB
9220 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
9221 .type = HDA_FIXUP_VERBS,
9222 .v.verbs = (const struct hda_verb[]) {
9223 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9224 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
023a062f 9225 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
ad7cc2d4
CB
9226 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9227 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9228 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9229 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9230 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9231 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9232 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9233 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9234 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9235 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9236 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9237 {}
9238 },
9239 .chained = true,
9240 .chain_id = ALC269_FIXUP_HEADSET_MODE,
9241 },
619764cc 9242 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
dd6dd6e3 9243 .type = HDA_FIXUP_FUNC,
619764cc 9244 .v.func = alc256_fixup_set_coef_defaults,
dd6dd6e3 9245 },
5fc462c3
JC
9246 [ALC245_FIXUP_HP_GPIO_LED] = {
9247 .type = HDA_FIXUP_FUNC,
9248 .v.func = alc245_fixup_hp_gpio_led,
9249 },
1278cc5a
JS
9250 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
9251 .type = HDA_FIXUP_PINS,
9252 .v.pins = (const struct hda_pintbl[]) {
9253 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
9254 { }
9255 },
9256 .chained = true,
9257 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
9258 },
174a7fb3
WS
9259 [ALC233_FIXUP_NO_AUDIO_JACK] = {
9260 .type = HDA_FIXUP_FUNC,
9261 .v.func = alc233_fixup_no_audio_jack,
9262 },
edca7cc4
WS
9263 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
9264 .type = HDA_FIXUP_FUNC,
9265 .v.func = alc256_fixup_mic_no_presence_and_resume,
9266 .chained = true,
9267 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9268 },
d3dca026
LT
9269 [ALC287_FIXUP_LEGION_16ACHG6] = {
9270 .type = HDA_FIXUP_FUNC,
9271 .v.func = alc287_fixup_legion_16achg6_speakers,
9272 },
ae7abe36
SB
9273 [ALC287_FIXUP_CS35L41_I2C_2] = {
9274 .type = HDA_FIXUP_FUNC,
9275 .v.func = cs35l41_fixup_i2c_two,
9276 },
b3fbe536
AC
9277 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
9278 .type = HDA_FIXUP_FUNC,
9279 .v.func = cs35l41_fixup_i2c_two,
9280 .chained = true,
9281 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
ae7abe36 9282 },
42320660
SB
9283 [ALC287_FIXUP_CS35L41_I2C_4] = {
9284 .type = HDA_FIXUP_FUNC,
9285 .v.func = cs35l41_fixup_i2c_four,
9286 },
07bcab93
LT
9287 [ALC245_FIXUP_CS35L41_SPI_2] = {
9288 .type = HDA_FIXUP_FUNC,
9289 .v.func = cs35l41_fixup_spi_two,
9290 },
ce18f905
KHF
9291 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
9292 .type = HDA_FIXUP_FUNC,
9293 .v.func = cs35l41_fixup_spi_two,
9294 .chained = true,
9295 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9296 },
07bcab93
LT
9297 [ALC245_FIXUP_CS35L41_SPI_4] = {
9298 .type = HDA_FIXUP_FUNC,
9299 .v.func = cs35l41_fixup_spi_four,
9300 },
9301 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
9302 .type = HDA_FIXUP_FUNC,
864cb14c 9303 .v.func = cs35l41_fixup_spi_four,
07bcab93 9304 .chained = true,
864cb14c 9305 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
07bcab93 9306 },
91502a9a
AS
9307 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
9308 .type = HDA_FIXUP_VERBS,
9309 .v.verbs = (const struct hda_verb[]) {
9310 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
9311 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
9312 { }
9313 },
9314 .chained = true,
9315 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
9316 },
1efcdd9c
GM
9317 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET] = {
9318 .type = HDA_FIXUP_FUNC,
9319 .v.func = alc_fixup_dell4_mic_no_presence_quiet,
9320 .chained = true,
9321 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9322 },
309d7363
DH
9323 [ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE] = {
9324 .type = HDA_FIXUP_PINS,
9325 .v.pins = (const struct hda_pintbl[]) {
9326 { 0x19, 0x02a1112c }, /* use as headset mic, without its own jack detect */
9327 { }
9328 },
9329 .chained = true,
9330 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
9331 },
1e24881d
LT
9332 [ALC287_FIXUP_LEGION_16ITHG6] = {
9333 .type = HDA_FIXUP_FUNC,
9334 .v.func = alc287_fixup_legion_16ithg6_speakers,
9335 },
3790a3d6
PJ
9336 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK] = {
9337 .type = HDA_FIXUP_VERBS,
9338 .v.verbs = (const struct hda_verb[]) {
9339 // enable left speaker
9340 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9341 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
9342
9343 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9344 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9345 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9346 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
9347 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9348
9349 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9350 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9351 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9352 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
9353 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9354
9355 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9356 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9357 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9358 { 0x20, AC_VERB_SET_PROC_COEF, 0x40 },
9359 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9360
9361 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9362 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9363 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9364 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9365 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9366
9367 // enable right speaker
9368 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
9369 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9370
9371 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9372 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
9373 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9374 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
9375 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9376
9377 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9378 { 0x20, AC_VERB_SET_PROC_COEF, 0xf },
9379 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9380 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
9381 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9382
9383 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9384 { 0x20, AC_VERB_SET_PROC_COEF, 0x10 },
9385 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9386 { 0x20, AC_VERB_SET_PROC_COEF, 0x44 },
9387 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9388
9389 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
9390 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
9391 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9392 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
9393 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
9394
9395 { },
9396 },
9397 },
9398 [ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN] = {
9399 .type = HDA_FIXUP_FUNC,
9400 .v.func = alc287_fixup_yoga9_14iap7_bass_spk_pin,
9401 .chained = true,
9402 .chain_id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK,
9403 },
2912cdda
PJ
9404 [ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS] = {
9405 .type = HDA_FIXUP_FUNC,
9406 .v.func = alc295_fixup_dell_inspiron_top_speakers,
9407 .chained = true,
9408 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9409 },
a4517c4f
CC
9410 [ALC236_FIXUP_DELL_DUAL_CODECS] = {
9411 .type = HDA_FIXUP_PINS,
9412 .v.func = alc1220_fixup_gb_dual_codecs,
9413 .chained = true,
9414 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9415 },
f7b069cf
VR
9416 [ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI] = {
9417 .type = HDA_FIXUP_FUNC,
9418 .v.func = cs35l41_fixup_i2c_two,
9419 .chained = true,
9420 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9421 },
3babae91
SD
9422 [ALC287_FIXUP_TAS2781_I2C] = {
9423 .type = HDA_FIXUP_FUNC,
9424 .v.func = tas2781_fixup_i2c,
9425 .chained = true,
9426 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
9427 },
b5cb53fd
GK
9428 [ALC287_FIXUP_YOGA7_14ARB7_I2C] = {
9429 .type = HDA_FIXUP_FUNC,
9430 .v.func = yoga7_14arb7_fixup_i2c,
9431 .chained = true,
9432 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9433 },
93dc18e1
SJ
9434 [ALC245_FIXUP_HP_MUTE_LED_COEFBIT] = {
9435 .type = HDA_FIXUP_FUNC,
9436 .v.func = alc245_fixup_hp_mute_led_coefbit,
9437 },
c99c26b1
FV
9438 [ALC245_FIXUP_HP_X360_MUTE_LEDS] = {
9439 .type = HDA_FIXUP_FUNC,
9440 .v.func = alc245_fixup_hp_mute_led_coefbit,
9441 .chained = true,
9442 .chain_id = ALC245_FIXUP_HP_GPIO_LED
9443 },
e43252db
KY
9444 [ALC287_FIXUP_THINKPAD_I2S_SPK] = {
9445 .type = HDA_FIXUP_FUNC,
9446 .v.func = alc287_fixup_bind_dacs,
9447 },
d93eeca6
KY
9448 [ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD] = {
9449 .type = HDA_FIXUP_FUNC,
9450 .v.func = alc287_fixup_bind_dacs,
9451 .chained = true,
9452 .chain_id = ALC287_FIXUP_CS35L41_I2C_2_THINKPAD_ACPI,
9453 },
c8c0a03e
KY
9454 [ALC2XX_FIXUP_HEADSET_MIC] = {
9455 .type = HDA_FIXUP_FUNC,
9456 .v.func = alc_fixup_headset_mic,
9457 },
f0d9da19
KY
9458 [ALC289_FIXUP_DELL_CS35L41_SPI_2] = {
9459 .type = HDA_FIXUP_FUNC,
9460 .v.func = cs35l41_fixup_spi_two,
9461 .chained = true,
9462 .chain_id = ALC289_FIXUP_DUAL_SPK
9463 },
6ae90e90
VT
9464 [ALC294_FIXUP_CS35L41_I2C_2] = {
9465 .type = HDA_FIXUP_FUNC,
9466 .v.func = cs35l41_fixup_i2c_two,
9467 },
b2d6a1fd
ST
9468 [ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED] = {
9469 .type = HDA_FIXUP_FUNC,
9470 .v.func = cs35l56_fixup_spi_four,
9471 .chained = true,
9472 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
9473 },
f1d4e28b
KY
9474};
9475
1d045db9 9476static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 9477 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
9478 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
9479 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 9480 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b 9481 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
9482 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
9483 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 9484 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 9485 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 9486 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
433f894e 9487 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
c8426b27 9488 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
13be30f1 9489 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
705b65f1 9490 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
6e15d126 9491 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
b9c2fa52 9492 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
495dc763 9493 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
c7531e31
CC
9494 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
9495 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
13be30f1
CC
9496 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
9497 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
e2a829b3 9498 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
8eae7e9b 9499 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
781c90c0 9500 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
d0e18561 9501 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
667a8f73
JHP
9502 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9503 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
9504 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
d0e18561 9505 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
5f3fe25e 9506 SND_PCI_QUIRK(0x1025, 0x129d, "Acer SWIFT SF313-51", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
35171fbf 9507 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
2733cceb 9508 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
ea5c7eba 9509 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
cbc05fd6 9510 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
2a5bb694 9511 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
0d4867a1 9512 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
f50a121d 9513 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
57c9e21a 9514 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
6a28a25d 9515 SND_PCI_QUIRK(0x1025, 0x1534, "Acer Predator PH315-54", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
aaedfb47 9516 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
841bdf85 9517 SND_PCI_QUIRK(0x1028, 0x053c, "Dell Latitude E5430", ALC292_FIXUP_DELL_E7X),
6ed1131f 9518 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 9519 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 9520 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
9521 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
9522 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 9523 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
9524 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9525 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
9526 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
9527 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
9528 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 9529 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 9530 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 9531 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
9532 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9533 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 9534 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 9535 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 9536 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 9537 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
9538 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9539 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
9540 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9541 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9542 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9543 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
9544 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
fd06c77e 9545 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 9546 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
c0ca5ece 9547 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
709ae62e 9548 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 9549 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
493de342 9550 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
aa143ad3 9551 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
5f364135 9552 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
40e2c4e5
KY
9553 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
9554 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
9555 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
9556 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 9557 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
136824ef 9558 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
da484d00 9559 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
c2a7c55a 9560 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
e79c2269 9561 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
aa143ad3 9562 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
78def224
KY
9563 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
9564 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
92666d45
KY
9565 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
9566 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
1efcdd9c 9567 SND_PCI_QUIRK(0x1028, 0x0a38, "Dell Latitude 7520", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE_QUIET),
c1e89523 9568 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
da946920 9569 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
eb676622 9570 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
2b987fe8
CC
9571 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
9572 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
15dad62f 9573 SND_PCI_QUIRK(0x1028, 0x0b19, "Dell XPS 15 9520", ALC289_FIXUP_DUAL_SPK),
bdc9b739 9574 SND_PCI_QUIRK(0x1028, 0x0b1a, "Dell Precision 5570", ALC289_FIXUP_DUAL_SPK),
42320660
SB
9575 SND_PCI_QUIRK(0x1028, 0x0b27, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
9576 SND_PCI_QUIRK(0x1028, 0x0b28, "Dell", ALC245_FIXUP_CS35L41_SPI_2),
2912cdda
PJ
9577 SND_PCI_QUIRK(0x1028, 0x0b37, "Dell Inspiron 16 Plus 7620 2-in-1", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
9578 SND_PCI_QUIRK(0x1028, 0x0b71, "Dell Inspiron 16 Plus 7620", ALC295_FIXUP_DELL_INSPIRON_TOP_SPEAKERS),
cd14dedf 9579 SND_PCI_QUIRK(0x1028, 0x0beb, "Dell XPS 15 9530 (2023)", ALC289_FIXUP_DELL_CS35L41_SPI_2),
a5751933 9580 SND_PCI_QUIRK(0x1028, 0x0c03, "Dell Precision 5340", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
a4517c4f
CC
9581 SND_PCI_QUIRK(0x1028, 0x0c19, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9582 SND_PCI_QUIRK(0x1028, 0x0c1a, "Dell Precision 3340", ALC236_FIXUP_DELL_DUAL_CODECS),
9583 SND_PCI_QUIRK(0x1028, 0x0c1b, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9584 SND_PCI_QUIRK(0x1028, 0x0c1c, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
9585 SND_PCI_QUIRK(0x1028, 0x0c1d, "Dell Precision 3440", ALC236_FIXUP_DELL_DUAL_CODECS),
9586 SND_PCI_QUIRK(0x1028, 0x0c1e, "Dell Precision 3540", ALC236_FIXUP_DELL_DUAL_CODECS),
42320660 9587 SND_PCI_QUIRK(0x1028, 0x0c4d, "Dell", ALC287_FIXUP_CS35L41_I2C_4),
f0d9da19
KY
9588 SND_PCI_QUIRK(0x1028, 0x0cbd, "Dell Oasis 13 CS MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9589 SND_PCI_QUIRK(0x1028, 0x0cbe, "Dell Oasis 13 2-IN-1 MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9590 SND_PCI_QUIRK(0x1028, 0x0cbf, "Dell Oasis 13 Low Weight MTU-L", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9591 SND_PCI_QUIRK(0x1028, 0x0cc0, "Dell Oasis 13", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
9592 SND_PCI_QUIRK(0x1028, 0x0cc1, "Dell Oasis 14 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9593 SND_PCI_QUIRK(0x1028, 0x0cc2, "Dell Oasis 14 2-in-1 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9594 SND_PCI_QUIRK(0x1028, 0x0cc3, "Dell Oasis 14 Low Weight MTL-U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9595 SND_PCI_QUIRK(0x1028, 0x0cc4, "Dell Oasis 16 MTL-H/U", ALC289_FIXUP_DELL_CS35L41_SPI_2),
9596 SND_PCI_QUIRK(0x1028, 0x0cc5, "Dell Oasis 14", ALC289_FIXUP_RTK_AMP_DUAL_SPK),
a22aa26f
KY
9597 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
9598 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 9599 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 9600 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 9601 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
7976eb49 9602 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 9603 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 9604 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9605 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9606 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
9607 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9608 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
9609 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9610 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9611 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9612 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 9613 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf
KY
9614 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9615 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9616 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9617 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9618 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 9619 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 9620 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
45461e3b 9621 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 9622 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
9623 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9624 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9625 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9626 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9627 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9628 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9629 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9630 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9c5dc3bf 9631 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 9632 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 9633 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 9634 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 9635 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 9636 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9637 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9638 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9639 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9640 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9641 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9642 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9643 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9644 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 9645 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
9646 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9647 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
9648 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9649 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9650 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9651 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8a02b164
KY
9652 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9653 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9654 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9655 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4ba5c853 9656 SND_PCI_QUIRK(0x103c, 0x2b5e, "HP 288 Pro G2 MT", ALC221_FIXUP_HP_288PRO_MIC_NO_PRESENCE),
167897f4
JK
9657 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9658 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
1c9d9dfd
KY
9659 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
9660 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
92553ee0 9661 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC295_FIXUP_HP_X360),
e549d190 9662 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 9663 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
aeedad25 9664 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
167897f4
JK
9665 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
9666 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 9667 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
901be145 9668 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
190d0381 9669 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
9b726bf6 9670 SND_PCI_QUIRK(0x103c, 0x84ae, "HP 15-db0403ng", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
5d84b531 9671 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
d33cd42d 9672 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
f2be77fe 9673 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
b6ce6e6c 9674 SND_PCI_QUIRK(0x103c, 0x8537, "HP ProBook 440 G6", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
d296a74b 9675 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
0ac05b25 9676 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
b2c22910 9677 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
622464c8 9678 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
24df5428
IH
9679 SND_PCI_QUIRK(0x103c, 0x86e7, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9680 SND_PCI_QUIRK(0x103c, 0x86e8, "HP Spectre x360 15-eb0xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
ca88eeb3 9681 SND_PCI_QUIRK(0x103c, 0x86f9, "HP Spectre x360 13-aw0xxx", ALC285_FIXUP_HP_SPECTRE_X360_MUTE_LED),
15d295b5 9682 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
61d3e874 9683 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
a598098c 9684 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
c058493d 9685 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
b2c22910 9686 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
75b62ab6 9687 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
05ec7161 9688 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
56496253 9689 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
08befca4 9690 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
6b3d14b7 9691 SND_PCI_QUIRK(0x103c, 0x876e, "HP ENVY x360 Convertible 13-ay0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
431e76c3 9692 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
24164f43 9693 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
91bc1568
JS
9694 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
9695 ALC285_FIXUP_HP_GPIO_AMP_INIT),
9696 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
9697 ALC285_FIXUP_HP_GPIO_AMP_INIT),
30267718 9698 SND_PCI_QUIRK(0x103c, 0x8786, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
b2e6b3d9 9699 SND_PCI_QUIRK(0x103c, 0x8787, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
375f8426 9700 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
48422958 9701 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
e7d66cf7 9702 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
2b70b264 9703 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
fb3acdb2 9704 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
417eadfd 9705 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
a0ccbc53
KY
9706 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9707 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
93ab3eaf 9708 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
c3bb2b52 9709 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
bc7863d1 9710 SND_PCI_QUIRK(0x103c, 0x87fe, "HP Laptop 15s-fq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
d07149ab 9711 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
dfc2e8ae 9712 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
d94befbb
DB
9713 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9714 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
d510acb6 9715 SND_PCI_QUIRK(0x103c, 0x881d, "HP 250 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
53b861be 9716 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
c3d2c882 9717 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
dfb06401 9718 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
ca688339 9719 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
8903376d
KHF
9720 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9721 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
50dbfae9 9722 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
e650c1a9 9723 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
bbe183e0 9724 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
0659400f 9725 SND_PCI_QUIRK(0x103c, 0x887a, "HP Laptop 15s-eq2xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
c99c26b1 9726 SND_PCI_QUIRK(0x103c, 0x888a, "HP ENVY x360 Convertible 15-eu0xxx", ALC245_FIXUP_HP_X360_MUTE_LEDS),
600dd2a7 9727 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
91502a9a 9728 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
0e68c4b1 9729 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
bd15b155 9730 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
42334fbc 9731 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
49632230 9732 SND_PCI_QUIRK(0x103c, 0x8902, "HP OMEN 16", ALC285_FIXUP_HP_MUTE_LED),
8384c0ba 9733 SND_PCI_QUIRK(0x103c, 0x890e, "HP 255 G8 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
e7477cb9 9734 SND_PCI_QUIRK(0x103c, 0x8919, "HP Pavilion Aero Laptop 13-be0xxx", ALC287_FIXUP_HP_GPIO_LED),
f86bfeb6 9735 SND_PCI_QUIRK(0x103c, 0x896d, "HP ZBook Firefly 16 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
5f5d8890
AC
9736 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9737 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9738 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9739 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9740 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9741 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
07bcab93
LT
9742 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9743 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9744 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9745 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9746 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9747 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9748 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
e6194c8d
AC
9749 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9750 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
024a7ad9 9751 SND_PCI_QUIRK(0x103c, 0x89aa, "HP EliteBook 630 G9", ALC236_FIXUP_HP_GPIO_LED),
e6194c8d
AC
9752 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9753 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
f86bfeb6 9754 SND_PCI_QUIRK(0x103c, 0x89c0, "HP ZBook Power 15.6 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
07bcab93 9755 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
ce18f905 9756 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
f7ac570d 9757 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9a6804aa 9758 SND_PCI_QUIRK(0x103c, 0x89d3, "HP EliteBook 645 G9 (MB 89D2)", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
13a5b211 9759 SND_PCI_QUIRK(0x103c, 0x8a0f, "HP Pavilion 14-ec1xxx", ALC287_FIXUP_HP_GPIO_LED),
56e85993 9760 SND_PCI_QUIRK(0x103c, 0x8a20, "HP Laptop 15s-fq5xxx", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
93dc18e1 9761 SND_PCI_QUIRK(0x103c, 0x8a25, "HP Victus 16-d1xxx (MB 8A25)", ALC245_FIXUP_HP_MUTE_LED_COEFBIT),
5f3d696e 9762 SND_PCI_QUIRK(0x103c, 0x8a78, "HP Dev One", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
61d30785
JS
9763 SND_PCI_QUIRK(0x103c, 0x8aa0, "HP ProBook 440 G9 (MB 8A9E)", ALC236_FIXUP_HP_GPIO_LED),
9764 SND_PCI_QUIRK(0x103c, 0x8aa3, "HP ProBook 450 G9 (MB 8AA1)", ALC236_FIXUP_HP_GPIO_LED),
9765 SND_PCI_QUIRK(0x103c, 0x8aa8, "HP EliteBook 640 G9 (MB 8AA6)", ALC236_FIXUP_HP_GPIO_LED),
9766 SND_PCI_QUIRK(0x103c, 0x8aab, "HP EliteBook 650 G9 (MB 8AA9)", ALC236_FIXUP_HP_GPIO_LED),
3e10f6ca 9767 SND_PCI_QUIRK(0x103c, 0x8abb, "HP ZBook Firefly 14 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
c578d5da
KHF
9768 SND_PCI_QUIRK(0x103c, 0x8ad1, "HP EliteBook 840 14 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9769 SND_PCI_QUIRK(0x103c, 0x8ad2, "HP EliteBook 860 16 inch G9 Notebook PC", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
b944aa9d 9770 SND_PCI_QUIRK(0x103c, 0x8b2f, "HP 255 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_COEFBIT2),
9251584a
AC
9771 SND_PCI_QUIRK(0x103c, 0x8b42, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9772 SND_PCI_QUIRK(0x103c, 0x8b43, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9773 SND_PCI_QUIRK(0x103c, 0x8b44, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9774 SND_PCI_QUIRK(0x103c, 0x8b45, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9775 SND_PCI_QUIRK(0x103c, 0x8b46, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9776 SND_PCI_QUIRK(0x103c, 0x8b47, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
1d8025ec
AC
9777 SND_PCI_QUIRK(0x103c, 0x8b5d, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9778 SND_PCI_QUIRK(0x103c, 0x8b5e, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
3e10f6ca 9779 SND_PCI_QUIRK(0x103c, 0x8b63, "HP Elite Dragonfly 13.5 inch G4", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
2ae147d6 9780 SND_PCI_QUIRK(0x103c, 0x8b65, "HP ProBook 455 15.6 inch G10 Notebook PC", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9fdc1605 9781 SND_PCI_QUIRK(0x103c, 0x8b66, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
e94f1f96
AC
9782 SND_PCI_QUIRK(0x103c, 0x8b70, "HP EliteBook 835 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9783 SND_PCI_QUIRK(0x103c, 0x8b72, "HP EliteBook 845 G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9784 SND_PCI_QUIRK(0x103c, 0x8b74, "HP EliteBook 845W G10", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
3e10f6ca 9785 SND_PCI_QUIRK(0x103c, 0x8b77, "HP ElieBook 865 G10", ALC287_FIXUP_CS35L41_I2C_2),
6c4715aa
AC
9786 SND_PCI_QUIRK(0x103c, 0x8b7a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9787 SND_PCI_QUIRK(0x103c, 0x8b7d, "HP", ALC236_FIXUP_HP_GPIO_LED),
5007b848 9788 SND_PCI_QUIRK(0x103c, 0x8b87, "HP", ALC236_FIXUP_HP_GPIO_LED),
6c4715aa
AC
9789 SND_PCI_QUIRK(0x103c, 0x8b8a, "HP", ALC236_FIXUP_HP_GPIO_LED),
9790 SND_PCI_QUIRK(0x103c, 0x8b8b, "HP", ALC236_FIXUP_HP_GPIO_LED),
9791 SND_PCI_QUIRK(0x103c, 0x8b8d, "HP", ALC236_FIXUP_HP_GPIO_LED),
b752a385 9792 SND_PCI_QUIRK(0x103c, 0x8b8f, "HP", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
858c5415 9793 SND_PCI_QUIRK(0x103c, 0x8b92, "HP", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
56fc217f 9794 SND_PCI_QUIRK(0x103c, 0x8b96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9dc68a4f 9795 SND_PCI_QUIRK(0x103c, 0x8b97, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
9c694fbf 9796 SND_PCI_QUIRK(0x103c, 0x8bf0, "HP", ALC236_FIXUP_HP_GPIO_LED),
fb8cce69
SB
9797 SND_PCI_QUIRK(0x103c, 0x8c46, "HP EliteBook 830 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9798 SND_PCI_QUIRK(0x103c, 0x8c47, "HP EliteBook 840 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9799 SND_PCI_QUIRK(0x103c, 0x8c48, "HP EliteBook 860 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9800 SND_PCI_QUIRK(0x103c, 0x8c49, "HP Elite x360 830 2-in-1 G11", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
b2d6a1fd
ST
9801 SND_PCI_QUIRK(0x103c, 0x8c52, "HP EliteBook 1040 G11", ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED),
9802 SND_PCI_QUIRK(0x103c, 0x8c53, "HP Elite x360 1040 2-in-1 G11", ALC245_FIXUP_CS35L56_SPI_4_HP_GPIO_LED),
fb8cce69
SB
9803 SND_PCI_QUIRK(0x103c, 0x8c70, "HP EliteBook 835 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9804 SND_PCI_QUIRK(0x103c, 0x8c71, "HP EliteBook 845 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
9805 SND_PCI_QUIRK(0x103c, 0x8c72, "HP EliteBook 865 G11", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
18a434f3 9806 SND_PCI_QUIRK(0x103c, 0x8c96, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
b018cee7 9807 SND_PCI_QUIRK(0x103c, 0x8c97, "HP ZBook", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
1513664f
AC
9808 SND_PCI_QUIRK(0x103c, 0x8ca1, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
9809 SND_PCI_QUIRK(0x103c, 0x8ca2, "HP ZBook Power", ALC236_FIXUP_HP_GPIO_LED),
5d639b60
SB
9810 SND_PCI_QUIRK(0x103c, 0x8ca4, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9811 SND_PCI_QUIRK(0x103c, 0x8ca7, "HP ZBook Fury", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9812 SND_PCI_QUIRK(0x103c, 0x8cf5, "HP ZBook Studio 16", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
c1732ede 9813 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 9814 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 9815 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9cf6533e 9816 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
c1732ede 9817 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 9818 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
713f040c 9819 SND_PCI_QUIRK(0x1043, 0x10d3, "ASUS K6500ZC", ALC294_FIXUP_ASUS_SPK),
3e0d611b 9820 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1 9821 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3cd0ed63 9822 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
5cfca596 9823 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1
TI
9824 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9825 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
e959f2be 9826 SND_PCI_QUIRK(0x1043, 0x12a3, "Asus N7691ZM", ALC269_FIXUP_ASUS_N7601ZM),
461122b9 9827 SND_PCI_QUIRK(0x1043, 0x12af, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
c1732ede 9828 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
3cd0ed63 9829 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
f882c4be 9830 SND_PCI_QUIRK(0x1043, 0x1313, "Asus K42JZ", ALC269VB_FIXUP_ASUS_MIC_NO_PRESENCE),
c1732ede 9831 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 9832 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
a40ce9f4
SB
9833 SND_PCI_QUIRK(0x1043, 0x1433, "ASUS GX650PY/PZ/PV/PU/PYV/PZV/PIV/PVV", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9834 SND_PCI_QUIRK(0x1043, 0x1463, "Asus GA402X/GA402N", ALC285_FIXUP_ASUS_I2C_HEADSET_MIC),
9835 SND_PCI_QUIRK(0x1043, 0x1473, "ASUS GU604VI/VC/VE/VG/VJ/VQ/VU/VV/VY/VZ", ALC285_FIXUP_ASUS_HEADSET_MIC),
9836 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS GU603VQ/VU/VV/VJ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9837 SND_PCI_QUIRK(0x1043, 0x1493, "ASUS GV601VV/VU/VJ/VQ/VI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9838 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G614JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
9839 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS G513PI/PU/PV", ALC287_FIXUP_CS35L41_I2C_2),
9840 SND_PCI_QUIRK(0x1043, 0x1503, "ASUS G733PY/PZ/PZV/PYV", ALC287_FIXUP_CS35L41_I2C_2),
23870831 9841 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
a40ce9f4
SB
9842 SND_PCI_QUIRK(0x1043, 0x1533, "ASUS GV302XA/XJ/XQ/XU/XV/XI", ALC287_FIXUP_CS35L41_I2C_2),
9843 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 9844 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
a40ce9f4 9845 SND_PCI_QUIRK(0x1043, 0x1663, "ASUS GU603ZI/ZJ/ZQ/ZU/ZV", ALC285_FIXUP_ASUS_HEADSET_MIC),
7e2d0662 9846 SND_PCI_QUIRK(0x1043, 0x1683, "ASUS UM3402YAR", ALC287_FIXUP_CS35L41_I2C_2),
b16c8f22 9847 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
ae53e219 9848 SND_PCI_QUIRK(0x1043, 0x16d3, "ASUS UX5304VA", ALC245_FIXUP_CS35L41_SPI_2),
3e0d611b 9849 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
ae53e219 9850 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS UX7602VI/BZ", ALC245_FIXUP_CS35L41_SPI_2),
8eedd3a7 9851 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
48e01504 9852 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
a40ce9f4 9853 SND_PCI_QUIRK(0x1043, 0x17f3, "ROG Ally NR2301L/X", ALC294_FIXUP_ASUS_ALLY),
ae53e219 9854 SND_PCI_QUIRK(0x1043, 0x1863, "ASUS UX6404VI/VV", ALC245_FIXUP_CS35L41_SPI_2),
3cd0ed63 9855 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
8c8967a7 9856 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
c5c325bb 9857 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS UM3504DA", ALC294_FIXUP_CS35L41_I2C_2),
4963d66b 9858 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
158ae2f5 9859 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
4fad4fb9 9860 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
5de3b943 9861 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
8b33a134 9862 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
7900e817 9863 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
017f2a10 9864 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 9865 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
61cbc08f 9866 SND_PCI_QUIRK(0x1043, 0x1a63, "ASUS UX3405MA", ALC245_FIXUP_CS35L41_SPI_2),
6ae90e90 9867 SND_PCI_QUIRK(0x1043, 0x1a83, "ASUS UM5302LA", ALC294_FIXUP_CS35L41_I2C_2),
461122b9 9868 SND_PCI_QUIRK(0x1043, 0x1a8f, "ASUS UX582ZS", ALC245_FIXUP_CS35L41_SPI_2),
1b94e59d 9869 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
693b613d 9870 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
811dd426 9871 SND_PCI_QUIRK(0x1043, 0x1b93, "ASUS G614JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
615966ad 9872 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
61cbc08f 9873 SND_PCI_QUIRK(0x1043, 0x1c03, "ASUS UM3406HA", ALC287_FIXUP_CS35L41_I2C_2),
4eab0ea1 9874 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61cbc08f
SB
9875 SND_PCI_QUIRK(0x1043, 0x1c33, "ASUS UX5304MA", ALC245_FIXUP_CS35L41_SPI_2),
9876 SND_PCI_QUIRK(0x1043, 0x1c43, "ASUS UX8406MA", ALC245_FIXUP_CS35L41_SPI_2),
a4671b7f 9877 SND_PCI_QUIRK(0x1043, 0x1c62, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
bc2c2354 9878 SND_PCI_QUIRK(0x1043, 0x1c92, "ASUS ROG Strix G15", ALC285_FIXUP_ASUS_G533Z_PINS),
a40ce9f4
SB
9879 SND_PCI_QUIRK(0x1043, 0x1c9f, "ASUS G614JU/JV/JI", ALC285_FIXUP_ASUS_HEADSET_MIC),
9880 SND_PCI_QUIRK(0x1043, 0x1caf, "ASUS G634JY/JZ/JI/JG", ALC285_FIXUP_ASUS_SPI_REAR_SPEAKERS),
c1732ede 9881 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
a40ce9f4
SB
9882 SND_PCI_QUIRK(0x1043, 0x1ccf, "ASUS G814JU/JV/JI", ALC245_FIXUP_CS35L41_SPI_2),
9883 SND_PCI_QUIRK(0x1043, 0x1cdf, "ASUS G814JY/JZ/JG", ALC245_FIXUP_CS35L41_SPI_2),
9884 SND_PCI_QUIRK(0x1043, 0x1cef, "ASUS G834JY/JZ/JI/JG", ALC285_FIXUP_ASUS_HEADSET_MIC),
9885 SND_PCI_QUIRK(0x1043, 0x1d1f, "ASUS G713PI/PU/PV/PVN", ALC287_FIXUP_CS35L41_I2C_2),
b16c8f22 9886 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
ef9ce66f 9887 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
51d97607 9888 SND_PCI_QUIRK(0x1043, 0x1da2, "ASUS UP6502ZA/ZD", ALC245_FIXUP_CS35L41_SPI_2),
07058dce
KA
9889 SND_PCI_QUIRK(0x1043, 0x1e02, "ASUS UX3402ZA", ALC245_FIXUP_CS35L41_SPI_2),
9890 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS UX3402VA", ALC245_FIXUP_CS35L41_SPI_2),
26fd31ef 9891 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
4b43d05a 9892 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
51d97607 9893 SND_PCI_QUIRK(0x1043, 0x1e12, "ASUS UM6702RA/RC", ALC287_FIXUP_CS35L41_I2C_2),
c1b55029 9894 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
c611e659 9895 SND_PCI_QUIRK(0x1043, 0x1e5e, "ASUS ROG Strix G513", ALC294_FIXUP_ASUS_G513_PINS),
76fae618 9896 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
51d97607 9897 SND_PCI_QUIRK(0x1043, 0x1ee2, "ASUS UM3402", ALC287_FIXUP_CS35L41_I2C_2),
ba1f8180 9898 SND_PCI_QUIRK(0x1043, 0x1c52, "ASUS Zephyrus G15 2022", ALC289_FIXUP_ASUS_GA401),
293a92c1 9899 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
8d06679b 9900 SND_PCI_QUIRK(0x1043, 0x1f12, "ASUS UM5302", ALC287_FIXUP_CS35L41_I2C_2),
ae53e219 9901 SND_PCI_QUIRK(0x1043, 0x1f1f, "ASUS H7604JI/JV/J3D", ALC245_FIXUP_CS35L41_SPI_2),
51d97607 9902 SND_PCI_QUIRK(0x1043, 0x1f62, "ASUS UX7602ZM", ALC245_FIXUP_CS35L41_SPI_2),
2ea8e129 9903 SND_PCI_QUIRK(0x1043, 0x1f92, "ASUS ROG Flow X16", ALC289_FIXUP_ASUS_GA401),
eeed4cd1 9904 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
811dd426
SB
9905 SND_PCI_QUIRK(0x1043, 0x3a20, "ASUS G614JZR", ALC245_FIXUP_CS35L41_SPI_2),
9906 SND_PCI_QUIRK(0x1043, 0x3a30, "ASUS G814JVR/JIR", ALC245_FIXUP_CS35L41_SPI_2),
9907 SND_PCI_QUIRK(0x1043, 0x3a40, "ASUS G814JZR", ALC245_FIXUP_CS35L41_SPI_2),
9908 SND_PCI_QUIRK(0x1043, 0x3a50, "ASUS G834JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
9909 SND_PCI_QUIRK(0x1043, 0x3a60, "ASUS G634JYR/JZR", ALC245_FIXUP_CS35L41_SPI_2),
adabb3ec
TI
9910 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
9911 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
9912 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9913 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 9914 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
1d045db9
TI
9915 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
9916 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9917 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 9918 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
cab561f8
TI
9919 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9920 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
24519911 9921 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 9922 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 9923 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 9924 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
c656f747 9925 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
2041d564 9926 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 9927 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
c656f747 9928 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
6fa38ef1 9929 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
4f2e56a5 9930 SND_PCI_QUIRK(0x10ec, 0x124c, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
ce2e79b2
PH
9931 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9932 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
ccbd88be 9933 SND_PCI_QUIRK(0x10ec, 0x12cc, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
0fca97a2 9934 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 9935 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
a2d57ebe
KM
9936 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
9937 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_AMP),
9938 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_AMP),
9939 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_AMP),
b18a4563 9940 SND_PCI_QUIRK(0x144d, 0xc1a3, "Samsung Galaxy Book Pro (NP935XDB-KC1SE)", ALC298_FIXUP_SAMSUNG_AMP),
1abfd71e 9941 SND_PCI_QUIRK(0x144d, 0xc1a6, "Samsung Galaxy Book Pro 360 (NP930QBD)", ALC298_FIXUP_SAMSUNG_AMP),
823ff161 9942 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
a2d57ebe
KM
9943 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_AMP),
9944 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_AMP),
ef248d9b 9945 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
bd401fd7 9946 SND_PCI_QUIRK(0x144d, 0xca03, "Samsung Galaxy Book2 Pro 360 (NP930QED)", ALC298_FIXUP_SAMSUNG_AMP),
a86e79e3 9947 SND_PCI_QUIRK(0x144d, 0xc868, "Samsung Galaxy Book2 Pro (NP930XED)", ALC298_FIXUP_SAMSUNG_AMP),
abaa2274
AA
9948 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
9949 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 9950 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
6ca653e3 9951 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
b5acfe15 9952 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b 9953 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9954 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9955 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9956 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9957 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9958 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9959 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9960 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
be561ffa 9961 SND_PCI_QUIRK(0x1558, 0x4041, "Clevo NV4[15]PZ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9962 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9963 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9964 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
9965 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9966 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9967 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9968 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9969 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9970 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9971 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
9972 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9973 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 9974 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 9975 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 9976 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
9977 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9978 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9979 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9980 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9981 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
da209f7a 9982 SND_PCI_QUIRK(0x1558, 0x51b1, "Clevo NS50AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
c250ef89 9983 SND_PCI_QUIRK(0x1558, 0x51b3, "Clevo NS70AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b7a58228 9984 SND_PCI_QUIRK(0x1558, 0x5630, "Clevo NP50RNJS", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9985 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9986 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
9987 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9988 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9989 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9990 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
627ce0d6 9991 SND_PCI_QUIRK(0x1558, 0x7716, "Clevo NS50PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
90d74fdb 9992 SND_PCI_QUIRK(0x1558, 0x7717, "Clevo NS70PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
11bea269 9993 SND_PCI_QUIRK(0x1558, 0x7718, "Clevo L140PU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
0a6b36c5 9994 SND_PCI_QUIRK(0x1558, 0x7724, "Clevo L140AU", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9995 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9996 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9997 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9998 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9999 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
10000 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10001 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10002 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10003 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
10004 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
b5acfe15 10005 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9cb72750 10006 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
86222af0 10007 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
0c20fce1 10008 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 10009 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
edca7cc4 10010 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
b5acfe15
PH
10011 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10012 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10013 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10014 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 10015 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
10016 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10017 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
10018 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10019 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
22065e42 10020 SND_PCI_QUIRK(0x1558, 0xa650, "Clevo NP[567]0SN[CD]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b7a58228 10021 SND_PCI_QUIRK(0x1558, 0xa671, "Clevo NP70SN[CDE]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
10022 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10023 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10024 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10025 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10026 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
10027 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
ca169cc2 10028 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
29c8f40b 10029 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
1d045db9
TI
10030 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
10031 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
10032 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
10033 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
10034 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
f552ff54 10035 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
b590b38c 10036 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
c8415a48 10037 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 10038 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 10039 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 10040 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 10041 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 10042 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 10043 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 10044 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 10045 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 10046 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 10047 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 10048 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 10049 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 10050 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
10051 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10052 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 10053 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 10054 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10055 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
10056 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10057 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 10058 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10059 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10060 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10061 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 10062 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9774dc21 10063 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
ca707b3f 10064 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
446b8185
KY
10065 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
10066 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
d93eeca6
KY
10067 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10068 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10069 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10070 SND_PCI_QUIRK(0x17aa, 0x2316, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10071 SND_PCI_QUIRK(0x17aa, 0x2317, "Thinkpad P1 Gen 6", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10072 SND_PCI_QUIRK(0x17aa, 0x2318, "Thinkpad Z13 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10073 SND_PCI_QUIRK(0x17aa, 0x2319, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
10074 SND_PCI_QUIRK(0x17aa, 0x231a, "Thinkpad Z16 Gen2", ALC287_FIXUP_MG_RTKC_CSAMP_CS35L41_I2C_THINKPAD),
3694cb29 10075 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 10076 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 10077 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
bef33e19 10078 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 10079 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 10080 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 10081 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
2a36c16e 10082 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
8a6c55d0
AM
10083 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
10084 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
e4efa826 10085 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
fb3c007f 10086 SND_PCI_QUIRK(0x17aa, 0x334b, "Lenovo ThinkCentre M70 Gen5", ALC283_FIXUP_HEADSET_MIC),
3790a3d6 10087 SND_PCI_QUIRK(0x17aa, 0x3801, "Lenovo Yoga9 14IAP7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
85743a84 10088 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo Yoga DuetITL 2021", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
2aac550d 10089 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
56ec3e75 10090 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940 / Yoga Duet 7", ALC298_FIXUP_LENOVO_C940_DUET7),
2aac550d 10091 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
3b79954f 10092 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
8f4c9042 10093 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
2aac550d 10094 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
b81e9e5c 10095 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
c07f2c7b 10096 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
9ebaef05 10097 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
d3dca026 10098 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
2aac550d 10099 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
ad7cc2d4
CB
10100 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
10101 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
1e24881d 10102 SND_PCI_QUIRK(0x17aa, 0x3855, "Legion 7 16ITHG6", ALC287_FIXUP_LEGION_16ITHG6),
70cfdd03 10103 SND_PCI_QUIRK(0x17aa, 0x3869, "Lenovo Yoga7 14IAL7", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
b5cb53fd 10104 SND_PCI_QUIRK(0x17aa, 0x3870, "Lenovo Yoga 7 14ARB7", ALC287_FIXUP_YOGA7_14ARB7_I2C),
3babae91
SD
10105 SND_PCI_QUIRK(0x17aa, 0x387d, "Yoga S780-16 pro Quad AAC", ALC287_FIXUP_TAS2781_I2C),
10106 SND_PCI_QUIRK(0x17aa, 0x387e, "Yoga S780-16 pro Quad YC", ALC287_FIXUP_TAS2781_I2C),
f286620b 10107 SND_PCI_QUIRK(0x17aa, 0x3881, "YB9 dual power mode2 YC", ALC287_FIXUP_TAS2781_I2C),
634e5e1e 10108 SND_PCI_QUIRK(0x17aa, 0x3882, "Lenovo Yoga Pro 7 14APH8", ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN),
3babae91
SD
10109 SND_PCI_QUIRK(0x17aa, 0x3884, "Y780 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10110 SND_PCI_QUIRK(0x17aa, 0x3886, "Y780 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
10111 SND_PCI_QUIRK(0x17aa, 0x38a7, "Y780P AMD YG dual", ALC287_FIXUP_TAS2781_I2C),
10112 SND_PCI_QUIRK(0x17aa, 0x38a8, "Y780P AMD VECO dual", ALC287_FIXUP_TAS2781_I2C),
99af5b11
DC
10113 SND_PCI_QUIRK(0x17aa, 0x38b4, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10114 SND_PCI_QUIRK(0x17aa, 0x38b5, "Legion Slim 7 16IRH8", ALC287_FIXUP_CS35L41_I2C_2),
10115 SND_PCI_QUIRK(0x17aa, 0x38b6, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
10116 SND_PCI_QUIRK(0x17aa, 0x38b7, "Legion Slim 7 16APH8", ALC287_FIXUP_CS35L41_I2C_2),
3babae91
SD
10117 SND_PCI_QUIRK(0x17aa, 0x38ba, "Yoga S780-14.5 Air AMD quad YC", ALC287_FIXUP_TAS2781_I2C),
10118 SND_PCI_QUIRK(0x17aa, 0x38bb, "Yoga S780-14.5 Air AMD quad AAC", ALC287_FIXUP_TAS2781_I2C),
10119 SND_PCI_QUIRK(0x17aa, 0x38be, "Yoga S980-14.5 proX YC Dual", ALC287_FIXUP_TAS2781_I2C),
10120 SND_PCI_QUIRK(0x17aa, 0x38bf, "Yoga S980-14.5 proX LX Dual", ALC287_FIXUP_TAS2781_I2C),
10121 SND_PCI_QUIRK(0x17aa, 0x38c3, "Y980 DUAL", ALC287_FIXUP_TAS2781_I2C),
10122 SND_PCI_QUIRK(0x17aa, 0x38cb, "Y790 YG DUAL", ALC287_FIXUP_TAS2781_I2C),
10123 SND_PCI_QUIRK(0x17aa, 0x38cd, "Y790 VECO DUAL", ALC287_FIXUP_TAS2781_I2C),
56f27013 10124 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 10125 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
56df90b6 10126 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
f552ff54 10127 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
a4a9e082 10128 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 10129 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 10130 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 10131 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 10132 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 10133 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 10134 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 10135 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 10136 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 10137 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 10138 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 10139 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
10140 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10141 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10142 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
264fb034 10143 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
cd5302c0 10144 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
10145 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
10146 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
1d045db9 10147 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
52aad393 10148 SND_PCI_QUIRK(0x17aa, 0x9e56, "Lenovo ZhaoYang CF4620Z", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
174a7fb3 10149 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
79e28f2a 10150 SND_PCI_QUIRK(0x1849, 0xa233, "Positivo Master C6300", ALC269_FIXUP_HEADSET_MIC),
0fbf21c3 10151 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
cbcdf8c4 10152 SND_PCI_QUIRK(0x19e5, 0x320f, "Huawei WRT-WX9 ", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
f1ec5be1
HC
10153 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
10154 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
10155 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
02b504d9 10156 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
c656f747
TI
10157 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
10158 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
88d18b88 10159 SND_PCI_QUIRK(0x1c6c, 0x1251, "Positivo N14KP6-TG", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE),
619764cc 10160 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
8b3b2392
WS
10161 SND_PCI_QUIRK(0x1d05, 0x1096, "TongFang GMxMRxx", ALC269_FIXUP_NO_SHUTUP),
10162 SND_PCI_QUIRK(0x1d05, 0x1100, "TongFang GKxNRxx", ALC269_FIXUP_NO_SHUTUP),
10163 SND_PCI_QUIRK(0x1d05, 0x1111, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10164 SND_PCI_QUIRK(0x1d05, 0x1119, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10165 SND_PCI_QUIRK(0x1d05, 0x1129, "TongFang GMxZGxx", ALC269_FIXUP_NO_SHUTUP),
10166 SND_PCI_QUIRK(0x1d05, 0x1147, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10167 SND_PCI_QUIRK(0x1d05, 0x115c, "TongFang GMxTGxx", ALC269_FIXUP_NO_SHUTUP),
10168 SND_PCI_QUIRK(0x1d05, 0x121b, "TongFang GMxAGxx", ALC269_FIXUP_NO_SHUTUP),
fc19d559 10169 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
b95bc12e 10170 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
695d1ec3 10171 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
9b043a8f 10172 SND_PCI_QUIRK(0x1d72, 0x1945, "Redmi G", ALC256_FIXUP_ASUS_HEADSET_MIC),
e1c86210 10173 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
7c9caa29 10174 SND_PCI_QUIRK(0x2782, 0x0232, "CHUWI CoreBook XPro", ALC269VB_FIXUP_CHUWI_COREBOOK_XPRO),
d1ee66c5 10175 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
e2d2fded 10176 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
73e7161e 10177 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
ccbd88be 10178 SND_PCI_QUIRK(0x8086, 0x3038, "Intel NUC 13", ALC295_FIXUP_CHROME_BOOK),
309d7363 10179 SND_PCI_QUIRK(0xf111, 0x0001, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
8804fa04 10180 SND_PCI_QUIRK(0xf111, 0x0005, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
33038efb 10181 SND_PCI_QUIRK(0xf111, 0x0006, "Framework Laptop", ALC295_FIXUP_FRAMEWORK_LAPTOP_MIC_NO_PRESENCE),
a4297b5d 10182
a7f3eedc 10183#if 0
a4297b5d
TI
10184 /* Below is a quirk table taken from the old code.
10185 * Basically the device should work as is without the fixup table.
10186 * If BIOS doesn't give a proper info, enable the corresponding
10187 * fixup entry.
7d7eb9ea 10188 */
a4297b5d
TI
10189 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
10190 ALC269_FIXUP_AMIC),
10191 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
10192 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
10193 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
10194 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
10195 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
10196 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
10197 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
10198 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
10199 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
10200 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
10201 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
10202 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
10203 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
10204 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
10205 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
10206 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
10207 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
10208 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
10209 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
10210 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
10211 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
10212 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
10213 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
10214 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
10215 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
10216 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
10217 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
10218 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
10219 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
10220 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
10221 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
10222 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
10223 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
10224 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
10225 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
10226 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
10227 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
10228 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
10229 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
10230#endif
10231 {}
10232};
10233
214eef76
DH
10234static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
10235 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
10236 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
10237 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
10238 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
0fbf21c3 10239 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
214eef76
DH
10240 {}
10241};
10242
1727a771 10243static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
10244 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
10245 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
10246 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
10247 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
10248 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 10249 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
10250 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
10251 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 10252 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
b590b38c 10253 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
9f5c6faf 10254 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 10255 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
10256 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
10257 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
10258 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
10259 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 10260 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 10261 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 10262 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 10263 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 10264 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
399c01aa 10265 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
a26d96c7 10266 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 10267 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 10268 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
10269 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
10270 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
10271 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
10272 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
10273 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
10274 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
10275 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
10276 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
10277 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
10278 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
10279 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
10280 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
10281 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
10282 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
10283 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
10284 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
10285 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
10286 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
10287 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
10288 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
10289 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
10290 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
10291 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
10292 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
10293 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
10294 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
10295 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
10296 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
10297 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
10298 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
10299 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
10300 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
10301 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
10302 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
10303 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
10304 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
10305 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
10306 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
10307 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
10308 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
b3802783 10309 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
a26d96c7 10310 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
c8426b27 10311 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
a26d96c7
TI
10312 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
10313 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
10314 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
10315 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
10316 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
10317 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
10318 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
10319 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
10320 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
10321 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
10322 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
10323 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
10324 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
10325 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
a26d96c7
TI
10326 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
10327 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
10328 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
82aa0d7e 10329 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
a26d96c7 10330 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
d2cd795c 10331 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
a26d96c7
TI
10332 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
10333 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
10334 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
10335 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
10336 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
10337 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
10338 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
10339 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
10340 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
10341 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
10342 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
10343 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
10344 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
10345 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
10346 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
10347 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
10348 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
8983eb60
KY
10349 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
10350 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
e2a829b3 10351 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
a2ef03fe 10352 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
bd9c10bc 10353 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
a2d57ebe 10354 {.id = ALC298_FIXUP_SAMSUNG_AMP, .name = "alc298-samsung-amp"},
ef248d9b 10355 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
fc19d559 10356 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
13468bfa 10357 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
c3bb2b52 10358 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
5d84b531 10359 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
f2be77fe 10360 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
d94befbb 10361 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
9ebaef05 10362 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
3790a3d6 10363 {.id = ALC287_FIXUP_YOGA9_14IAP7_BASS_SPK_PIN, .name = "alc287-yoga9-bass-spk-pin"},
29c8f40b 10364 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
57c9e21a 10365 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
aa723946 10366 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
1d045db9 10367 {}
6dda9f4a 10368};
cfc5a845 10369#define ALC225_STANDARD_PINS \
cfc5a845 10370 {0x21, 0x04211020}
6dda9f4a 10371
e8191a8e
HW
10372#define ALC256_STANDARD_PINS \
10373 {0x12, 0x90a60140}, \
10374 {0x14, 0x90170110}, \
e8191a8e
HW
10375 {0x21, 0x02211020}
10376
fea185e2 10377#define ALC282_STANDARD_PINS \
11580297 10378 {0x14, 0x90170110}
e1e62b98 10379
fea185e2 10380#define ALC290_STANDARD_PINS \
11580297 10381 {0x12, 0x99a30130}
fea185e2
DH
10382
10383#define ALC292_STANDARD_PINS \
10384 {0x14, 0x90170110}, \
11580297 10385 {0x15, 0x0221401f}
977e6276 10386
3f640970
HW
10387#define ALC295_STANDARD_PINS \
10388 {0x12, 0xb7a60130}, \
10389 {0x14, 0x90170110}, \
3f640970
HW
10390 {0x21, 0x04211020}
10391
703867e2
WS
10392#define ALC298_STANDARD_PINS \
10393 {0x12, 0x90a60130}, \
10394 {0x21, 0x03211020}
10395
e1918938 10396static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
10397 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
10398 {0x14, 0x01014020},
10399 {0x17, 0x90170110},
10400 {0x18, 0x02a11030},
10401 {0x19, 0x0181303F},
10402 {0x21, 0x0221102f}),
5824ce8d
CC
10403 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
10404 {0x12, 0x90a601c0},
10405 {0x14, 0x90171120},
10406 {0x21, 0x02211030}),
615966ad
CC
10407 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10408 {0x14, 0x90170110},
10409 {0x1b, 0x90a70130},
10410 {0x21, 0x03211020}),
10411 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
10412 {0x1a, 0x90a70130},
10413 {0x1b, 0x90170110},
10414 {0x21, 0x03211020}),
2ae95577 10415 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 10416 ALC225_STANDARD_PINS,
8a132099 10417 {0x12, 0xb7a60130},
cfc5a845 10418 {0x14, 0x901701a0}),
2ae95577 10419 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 10420 ALC225_STANDARD_PINS,
8a132099 10421 {0x12, 0xb7a60130},
cfc5a845 10422 {0x14, 0x901701b0}),
8a132099
HW
10423 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10424 ALC225_STANDARD_PINS,
10425 {0x12, 0xb7a60150},
10426 {0x14, 0x901701a0}),
10427 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10428 ALC225_STANDARD_PINS,
10429 {0x12, 0xb7a60150},
10430 {0x14, 0x901701b0}),
10431 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
10432 ALC225_STANDARD_PINS,
10433 {0x12, 0xb7a60130},
10434 {0x1b, 0x90170110}),
0ce48e17
KHF
10435 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10436 {0x1b, 0x01111010},
10437 {0x1e, 0x01451130},
10438 {0x21, 0x02211020}),
986376b6
HW
10439 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
10440 {0x12, 0x90a60140},
10441 {0x14, 0x90170110},
10442 {0x19, 0x02a11030},
10443 {0x21, 0x02211020}),
e41fc8c5
HW
10444 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10445 {0x14, 0x90170110},
10446 {0x19, 0x02a11030},
10447 {0x1a, 0x02a11040},
10448 {0x1b, 0x01014020},
10449 {0x21, 0x0221101f}),
d06fb562
HW
10450 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10451 {0x14, 0x90170110},
10452 {0x19, 0x02a11030},
10453 {0x1a, 0x02a11040},
10454 {0x1b, 0x01011020},
10455 {0x21, 0x0221101f}),
c6b17f10
HW
10456 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
10457 {0x14, 0x90170110},
10458 {0x19, 0x02a11020},
10459 {0x1a, 0x02a11030},
10460 {0x21, 0x0221101f}),
92666d45
KY
10461 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
10462 {0x21, 0x02211010}),
9e885770
KY
10463 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10464 {0x14, 0x90170110},
10465 {0x19, 0x02a11020},
10466 {0x21, 0x02211030}),
c77900e6 10467 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 10468 {0x14, 0x90170110},
c77900e6 10469 {0x21, 0x02211020}),
86c72d1c
HW
10470 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10471 {0x14, 0x90170130},
10472 {0x21, 0x02211040}),
76c2132e
DH
10473 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10474 {0x12, 0x90a60140},
10475 {0x14, 0x90170110},
76c2132e
DH
10476 {0x21, 0x02211020}),
10477 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10478 {0x12, 0x90a60160},
10479 {0x14, 0x90170120},
76c2132e 10480 {0x21, 0x02211030}),
392c9da2
HW
10481 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10482 {0x14, 0x90170110},
10483 {0x1b, 0x02011020},
10484 {0x21, 0x0221101f}),
6aecd871
HW
10485 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10486 {0x14, 0x90170110},
10487 {0x1b, 0x01011020},
10488 {0x21, 0x0221101f}),
cba59972 10489 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 10490 {0x14, 0x90170130},
cba59972 10491 {0x1b, 0x01014020},
cba59972 10492 {0x21, 0x0221103f}),
6aecd871
HW
10493 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10494 {0x14, 0x90170130},
10495 {0x1b, 0x01011020},
10496 {0x21, 0x0221103f}),
59ec4b57
HW
10497 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10498 {0x14, 0x90170130},
10499 {0x1b, 0x02011020},
10500 {0x21, 0x0221103f}),
e9c28e16 10501 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 10502 {0x14, 0x90170150},
e9c28e16 10503 {0x1b, 0x02011020},
e9c28e16
WS
10504 {0x21, 0x0221105f}),
10505 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 10506 {0x14, 0x90170110},
e9c28e16 10507 {0x1b, 0x01014020},
e9c28e16 10508 {0x21, 0x0221101f}),
76c2132e
DH
10509 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10510 {0x12, 0x90a60160},
10511 {0x14, 0x90170120},
10512 {0x17, 0x90170140},
76c2132e
DH
10513 {0x21, 0x0321102f}),
10514 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10515 {0x12, 0x90a60160},
10516 {0x14, 0x90170130},
76c2132e
DH
10517 {0x21, 0x02211040}),
10518 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10519 {0x12, 0x90a60160},
10520 {0x14, 0x90170140},
76c2132e
DH
10521 {0x21, 0x02211050}),
10522 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10523 {0x12, 0x90a60170},
10524 {0x14, 0x90170120},
76c2132e
DH
10525 {0x21, 0x02211030}),
10526 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10527 {0x12, 0x90a60170},
10528 {0x14, 0x90170130},
76c2132e 10529 {0x21, 0x02211040}),
0a1f90a9
HW
10530 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10531 {0x12, 0x90a60170},
10532 {0x14, 0x90171130},
10533 {0x21, 0x02211040}),
70658b99 10534 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
10535 {0x12, 0x90a60170},
10536 {0x14, 0x90170140},
70658b99 10537 {0x21, 0x02211050}),
9b5a4e39 10538 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
10539 {0x12, 0x90a60180},
10540 {0x14, 0x90170130},
9b5a4e39 10541 {0x21, 0x02211040}),
f90d83b3
AK
10542 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10543 {0x12, 0x90a60180},
10544 {0x14, 0x90170120},
10545 {0x21, 0x02211030}),
989dbe4a
HW
10546 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10547 {0x1b, 0x01011020},
10548 {0x21, 0x02211010}),
c1732ede
CC
10549 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10550 {0x14, 0x90170110},
10551 {0x1b, 0x90a70130},
10552 {0x21, 0x04211020}),
10553 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
10554 {0x14, 0x90170110},
10555 {0x1b, 0x90a70130},
10556 {0x21, 0x03211020}),
a806ef1c
CC
10557 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10558 {0x12, 0x90a60130},
10559 {0x14, 0x90170110},
10560 {0x21, 0x03211020}),
6ac371aa
JHP
10561 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10562 {0x12, 0x90a60130},
10563 {0x14, 0x90170110},
10564 {0x21, 0x04211020}),
e1037354
JHP
10565 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
10566 {0x1a, 0x90a70130},
10567 {0x1b, 0x90170110},
10568 {0x21, 0x03211020}),
9e885770
KY
10569 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
10570 {0x14, 0x90170110},
10571 {0x19, 0x02a11020},
10572 {0x21, 0x0221101f}),
8a8de09c
KY
10573 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
10574 {0x17, 0x90170110},
10575 {0x19, 0x03a11030},
10576 {0x21, 0x03211020}),
cf51eb9d
DH
10577 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
10578 {0x12, 0x90a60130},
cf51eb9d
DH
10579 {0x14, 0x90170110},
10580 {0x15, 0x0421101f},
11580297 10581 {0x1a, 0x04a11020}),
0279661b
HW
10582 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
10583 {0x12, 0x90a60140},
0279661b
HW
10584 {0x14, 0x90170110},
10585 {0x15, 0x0421101f},
0279661b 10586 {0x18, 0x02811030},
0279661b 10587 {0x1a, 0x04a1103f},
11580297 10588 {0x1b, 0x02011020}),
42304474 10589 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10590 ALC282_STANDARD_PINS,
42304474 10591 {0x12, 0x99a30130},
42304474 10592 {0x19, 0x03a11020},
42304474 10593 {0x21, 0x0321101f}),
2c609999 10594 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10595 ALC282_STANDARD_PINS,
2c609999 10596 {0x12, 0x99a30130},
2c609999 10597 {0x19, 0x03a11020},
2c609999
HW
10598 {0x21, 0x03211040}),
10599 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10600 ALC282_STANDARD_PINS,
2c609999 10601 {0x12, 0x99a30130},
2c609999 10602 {0x19, 0x03a11030},
2c609999
HW
10603 {0x21, 0x03211020}),
10604 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10605 ALC282_STANDARD_PINS,
2c609999 10606 {0x12, 0x99a30130},
2c609999 10607 {0x19, 0x04a11020},
2c609999 10608 {0x21, 0x0421101f}),
200afc09 10609 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 10610 ALC282_STANDARD_PINS,
200afc09 10611 {0x12, 0x90a60140},
200afc09 10612 {0x19, 0x04a11030},
200afc09 10613 {0x21, 0x04211020}),
34cdf405
CC
10614 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10615 ALC282_STANDARD_PINS,
10616 {0x12, 0x90a609c0},
10617 {0x18, 0x03a11830},
10618 {0x19, 0x04a19831},
10619 {0x1a, 0x0481303f},
10620 {0x1b, 0x04211020},
10621 {0x21, 0x0321101f}),
10622 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
10623 ALC282_STANDARD_PINS,
10624 {0x12, 0x90a60940},
10625 {0x18, 0x03a11830},
10626 {0x19, 0x04a19831},
10627 {0x1a, 0x0481303f},
10628 {0x1b, 0x04211020},
10629 {0x21, 0x0321101f}),
76c2132e 10630 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10631 ALC282_STANDARD_PINS,
76c2132e 10632 {0x12, 0x90a60130},
76c2132e
DH
10633 {0x21, 0x0321101f}),
10634 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
10635 {0x12, 0x90a60160},
10636 {0x14, 0x90170120},
76c2132e 10637 {0x21, 0x02211030}),
bc262179 10638 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10639 ALC282_STANDARD_PINS,
bc262179 10640 {0x12, 0x90a60130},
bc262179 10641 {0x19, 0x03a11020},
bc262179 10642 {0x21, 0x0321101f}),
c8c6ee61 10643 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
266fd994
SL
10644 {0x12, 0x90a60130},
10645 {0x14, 0x90170110},
10646 {0x19, 0x04a11040},
10647 {0x21, 0x04211020}),
10648 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
10649 {0x14, 0x90170110},
10650 {0x19, 0x04a11040},
10651 {0x1d, 0x40600001},
10652 {0x21, 0x04211020}),
10653 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
c4cfcf6f
HW
10654 {0x14, 0x90170110},
10655 {0x19, 0x04a11040},
10656 {0x21, 0x04211020}),
c72b9bfe
HW
10657 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
10658 {0x14, 0x90170110},
10659 {0x17, 0x90170111},
10660 {0x19, 0x03a11030},
10661 {0x21, 0x03211020}),
e43252db
KY
10662 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10663 {0x17, 0x90170110},
10664 {0x19, 0x03a11030},
10665 {0x21, 0x03211020}),
41b07476
KY
10666 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC287_FIXUP_THINKPAD_I2S_SPK,
10667 {0x17, 0x90170110}, /* 0x231f with RTK I2S AMP */
10668 {0x19, 0x04a11040},
10669 {0x21, 0x04211020}),
33aaebd4
CC
10670 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
10671 {0x12, 0x90a60130},
10672 {0x17, 0x90170110},
10673 {0x21, 0x02211020}),
d44a6864 10674 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 10675 {0x12, 0x90a60120},
e1e62b98 10676 {0x14, 0x90170110},
e1e62b98 10677 {0x21, 0x0321101f}),
e4442bcf 10678 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10679 ALC290_STANDARD_PINS,
e4442bcf 10680 {0x15, 0x04211040},
e4442bcf 10681 {0x18, 0x90170112},
11580297 10682 {0x1a, 0x04a11020}),
e4442bcf 10683 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10684 ALC290_STANDARD_PINS,
e4442bcf 10685 {0x15, 0x04211040},
e4442bcf 10686 {0x18, 0x90170110},
11580297 10687 {0x1a, 0x04a11020}),
e4442bcf 10688 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10689 ALC290_STANDARD_PINS,
e4442bcf 10690 {0x15, 0x0421101f},
11580297 10691 {0x1a, 0x04a11020}),
e4442bcf 10692 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10693 ALC290_STANDARD_PINS,
e4442bcf 10694 {0x15, 0x04211020},
11580297 10695 {0x1a, 0x04a11040}),
e4442bcf 10696 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10697 ALC290_STANDARD_PINS,
e4442bcf
HW
10698 {0x14, 0x90170110},
10699 {0x15, 0x04211020},
11580297 10700 {0x1a, 0x04a11040}),
e4442bcf 10701 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10702 ALC290_STANDARD_PINS,
e4442bcf
HW
10703 {0x14, 0x90170110},
10704 {0x15, 0x04211020},
11580297 10705 {0x1a, 0x04a11020}),
e4442bcf 10706 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 10707 ALC290_STANDARD_PINS,
e4442bcf
HW
10708 {0x14, 0x90170110},
10709 {0x15, 0x0421101f},
11580297 10710 {0x1a, 0x04a11020}),
e8818fa8 10711 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 10712 ALC292_STANDARD_PINS,
e8818fa8 10713 {0x12, 0x90a60140},
e8818fa8 10714 {0x16, 0x01014020},
11580297 10715 {0x19, 0x01a19030}),
e8818fa8 10716 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 10717 ALC292_STANDARD_PINS,
e8818fa8 10718 {0x12, 0x90a60140},
e8818fa8
HW
10719 {0x16, 0x01014020},
10720 {0x18, 0x02a19031},
11580297 10721 {0x19, 0x01a1903e}),
76c2132e 10722 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 10723 ALC292_STANDARD_PINS,
11580297 10724 {0x12, 0x90a60140}),
76c2132e 10725 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10726 ALC292_STANDARD_PINS,
76c2132e 10727 {0x13, 0x90a60140},
76c2132e 10728 {0x16, 0x21014020},
11580297 10729 {0x19, 0x21a19030}),
e03fdbde 10730 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 10731 ALC292_STANDARD_PINS,
11580297 10732 {0x13, 0x90a60140}),
eeacd80f
JHP
10733 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
10734 {0x17, 0x90170110},
10735 {0x21, 0x04211020}),
d8ae458e
CC
10736 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
10737 {0x14, 0x90170110},
10738 {0x1b, 0x90a70130},
10739 {0x21, 0x04211020}),
8bb37a2a
JHP
10740 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10741 {0x12, 0x90a60130},
10742 {0x17, 0x90170110},
10743 {0x21, 0x03211020}),
0bea4cc8
JHP
10744 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10745 {0x12, 0x90a60130},
10746 {0x17, 0x90170110},
10747 {0x21, 0x04211020}),
3887c26c
TI
10748 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
10749 {0x12, 0x90a60130},
10750 {0x17, 0x90170110},
10751 {0x21, 0x03211020}),
9e43342b 10752 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
ad97d667
JHP
10753 {0x12, 0x90a60120},
10754 {0x17, 0x90170110},
10755 {0x21, 0x04211030}),
10756 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9e43342b
CC
10757 {0x12, 0x90a60130},
10758 {0x17, 0x90170110},
10759 {0x21, 0x03211020}),
10760 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
10761 {0x12, 0x90a60130},
10762 {0x17, 0x90170110},
10763 {0x21, 0x03211020}),
9f502ff5
TI
10764 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10765 ALC298_STANDARD_PINS,
10766 {0x17, 0x90170110}),
977e6276 10767 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
10768 ALC298_STANDARD_PINS,
10769 {0x17, 0x90170140}),
10770 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
10771 ALC298_STANDARD_PINS,
9f502ff5 10772 {0x17, 0x90170150}),
9f1bc2c4
KHF
10773 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
10774 {0x12, 0xb7a60140},
10775 {0x13, 0xb7a60150},
10776 {0x17, 0x90170110},
10777 {0x1a, 0x03011020},
10778 {0x21, 0x03211030}),
54324221
JM
10779 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
10780 {0x12, 0xb7a60140},
10781 {0x17, 0x90170110},
10782 {0x1a, 0x03a11030},
10783 {0x21, 0x03211020}),
fcc6c877
KY
10784 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10785 ALC225_STANDARD_PINS,
10786 {0x12, 0xb7a60130},
fcc6c877 10787 {0x17, 0x90170110}),
573fcbfd
HW
10788 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
10789 {0x14, 0x01014010},
10790 {0x17, 0x90170120},
10791 {0x18, 0x02a11030},
10792 {0x19, 0x02a1103f},
10793 {0x21, 0x0221101f}),
e1918938
HW
10794 {}
10795};
6dda9f4a 10796
7c0a6939
HW
10797/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
10798 * more machines, don't need to match all valid pins, just need to match
10799 * all the pins defined in the tbl. Just because of this reason, it is possible
10800 * that a single machine matches multiple tbls, so there is one limitation:
10801 * at most one tbl is allowed to define for the same vendor and same codec
10802 */
10803static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
10804 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10805 {0x19, 0x40000000},
10806 {0x1b, 0x40000000}),
4b21a669
KY
10807 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
10808 {0x19, 0x40000000},
10809 {0x1b, 0x40000000}),
aed8c7f4
HW
10810 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10811 {0x19, 0x40000000},
10812 {0x1a, 0x40000000}),
d64ebdbf
HW
10813 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
10814 {0x19, 0x40000000},
10815 {0x1a, 0x40000000}),
5815bdfd
HW
10816 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
10817 {0x19, 0x40000000},
10818 {0x1a, 0x40000000}),
c8c0a03e
KY
10819 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC2XX_FIXUP_HEADSET_MIC,
10820 {0x19, 0x40000000}),
7c0a6939
HW
10821 {}
10822};
10823
546bb678 10824static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 10825{
526af6eb 10826 struct alc_spec *spec = codec->spec;
1d045db9 10827 int val;
ebb83eeb 10828
526af6eb 10829 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 10830 return;
526af6eb 10831
1bb7e43e 10832 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
10833 alc_write_coef_idx(codec, 0xf, 0x960b);
10834 alc_write_coef_idx(codec, 0xe, 0x8817);
10835 }
ebb83eeb 10836
1bb7e43e 10837 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
10838 alc_write_coef_idx(codec, 0xf, 0x960b);
10839 alc_write_coef_idx(codec, 0xe, 0x8814);
10840 }
ebb83eeb 10841
1bb7e43e 10842 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 10843 /* Power up output pin */
98b24883 10844 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 10845 }
ebb83eeb 10846
1bb7e43e 10847 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 10848 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 10849 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
10850 /* Capless ramp up clock control */
10851 alc_write_coef_idx(codec, 0xd, val | (1<<10));
10852 }
10853 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 10854 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
10855 /* Class D power on reset */
10856 alc_write_coef_idx(codec, 0x17, val | (1<<7));
10857 }
10858 }
ebb83eeb 10859
98b24883
TI
10860 /* HP */
10861 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 10862}
a7f2371f 10863
1d045db9
TI
10864/*
10865 */
1d045db9
TI
10866static int patch_alc269(struct hda_codec *codec)
10867{
10868 struct alc_spec *spec;
3de95173 10869 int err;
f1d4e28b 10870
3de95173 10871 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 10872 if (err < 0)
3de95173
TI
10873 return err;
10874
10875 spec = codec->spec;
08c189f2 10876 spec->gen.shared_mic_vref_pin = 0x18;
317d9313 10877 codec->power_save_node = 0;
46cdff23 10878 spec->en_3kpull_low = true;
e16fb6d1 10879
225068ab
TI
10880#ifdef CONFIG_PM
10881 codec->patch_ops.suspend = alc269_suspend;
10882 codec->patch_ops.resume = alc269_resume;
10883#endif
c2d6af53
KY
10884 spec->shutup = alc_default_shutup;
10885 spec->init_hook = alc_default_init;
225068ab 10886
7639a06c 10887 switch (codec->core.vendor_id) {
065380f0 10888 case 0x10ec0269:
1d045db9 10889 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
10890 switch (alc_get_coef0(codec) & 0x00f0) {
10891 case 0x0010:
5100cd07
TI
10892 if (codec->bus->pci &&
10893 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 10894 spec->cdefine.platform_type == 1)
20ca0c35 10895 err = alc_codec_rename(codec, "ALC271X");
1d045db9 10896 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
10897 break;
10898 case 0x0020:
5100cd07
TI
10899 if (codec->bus->pci &&
10900 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 10901 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 10902 err = alc_codec_rename(codec, "ALC3202");
1d045db9 10903 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 10904 break;
adcc70b2
KY
10905 case 0x0030:
10906 spec->codec_variant = ALC269_TYPE_ALC269VD;
10907 break;
1bb7e43e 10908 default:
1d045db9 10909 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 10910 }
e16fb6d1
TI
10911 if (err < 0)
10912 goto error;
c2d6af53 10913 spec->shutup = alc269_shutup;
546bb678 10914 spec->init_hook = alc269_fill_coef;
1d045db9 10915 alc269_fill_coef(codec);
065380f0
KY
10916 break;
10917
10918 case 0x10ec0280:
10919 case 0x10ec0290:
10920 spec->codec_variant = ALC269_TYPE_ALC280;
10921 break;
10922 case 0x10ec0282:
065380f0 10923 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
10924 spec->shutup = alc282_shutup;
10925 spec->init_hook = alc282_init;
065380f0 10926 break;
2af02be7
KY
10927 case 0x10ec0233:
10928 case 0x10ec0283:
10929 spec->codec_variant = ALC269_TYPE_ALC283;
10930 spec->shutup = alc283_shutup;
10931 spec->init_hook = alc283_init;
10932 break;
065380f0
KY
10933 case 0x10ec0284:
10934 case 0x10ec0292:
10935 spec->codec_variant = ALC269_TYPE_ALC284;
10936 break;
161ebf29 10937 case 0x10ec0293:
4731d5de 10938 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 10939 break;
7fc7d047 10940 case 0x10ec0286:
7c665932 10941 case 0x10ec0288:
7fc7d047
KY
10942 spec->codec_variant = ALC269_TYPE_ALC286;
10943 break;
506b62c3
KY
10944 case 0x10ec0298:
10945 spec->codec_variant = ALC269_TYPE_ALC298;
10946 break;
ea04a1db 10947 case 0x10ec0235:
1d04c9de
KY
10948 case 0x10ec0255:
10949 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
10950 spec->shutup = alc256_shutup;
10951 spec->init_hook = alc256_init;
1d04c9de 10952 break;
1948fc06 10953 case 0x10ec0230:
736f20a7 10954 case 0x10ec0236:
4344aec8 10955 case 0x10ec0256:
527f4643 10956 case 0x19e58326:
4344aec8 10957 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
10958 spec->shutup = alc256_shutup;
10959 spec->init_hook = alc256_init;
7d1b6e29 10960 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
46cdff23
KY
10961 if (codec->core.vendor_id == 0x10ec0236 &&
10962 codec->bus->pci->vendor != PCI_VENDOR_ID_AMD)
10963 spec->en_3kpull_low = false;
4344aec8 10964 break;
f429e7e4
KY
10965 case 0x10ec0257:
10966 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
10967 spec->shutup = alc256_shutup;
10968 spec->init_hook = alc256_init;
f429e7e4 10969 spec->gen.mixer_nid = 0;
46cdff23 10970 spec->en_3kpull_low = false;
f429e7e4 10971 break;
0a6f0600 10972 case 0x10ec0215:
7fbdcd83 10973 case 0x10ec0245:
0a6f0600
KY
10974 case 0x10ec0285:
10975 case 0x10ec0289:
60571929
KY
10976 if (alc_get_coef0(codec) & 0x0010)
10977 spec->codec_variant = ALC269_TYPE_ALC245;
10978 else
10979 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
10980 spec->shutup = alc225_shutup;
10981 spec->init_hook = alc225_init;
0a6f0600
KY
10982 spec->gen.mixer_nid = 0;
10983 break;
4231430d 10984 case 0x10ec0225:
7d727869 10985 case 0x10ec0295:
28f1f9b2 10986 case 0x10ec0299:
4231430d 10987 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
10988 spec->shutup = alc225_shutup;
10989 spec->init_hook = alc225_init;
c1350bff 10990 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 10991 break;
99cee034
KY
10992 case 0x10ec0287:
10993 spec->codec_variant = ALC269_TYPE_ALC287;
10994 spec->shutup = alc225_shutup;
10995 spec->init_hook = alc225_init;
10996 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
10997 break;
dcd4f0db
KY
10998 case 0x10ec0234:
10999 case 0x10ec0274:
11000 case 0x10ec0294:
11001 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 11002 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 11003 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
693abe11 11004 spec->init_hook = alc294_init;
dcd4f0db 11005 break;
1078bef0
KY
11006 case 0x10ec0300:
11007 spec->codec_variant = ALC269_TYPE_ALC300;
11008 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
dcd4f0db 11009 break;
f0778871
KY
11010 case 0x10ec0623:
11011 spec->codec_variant = ALC269_TYPE_ALC623;
11012 break;
6fbae35a
KY
11013 case 0x10ec0700:
11014 case 0x10ec0701:
11015 case 0x10ec0703:
83629532 11016 case 0x10ec0711:
6fbae35a
KY
11017 spec->codec_variant = ALC269_TYPE_ALC700;
11018 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 11019 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
693abe11 11020 spec->init_hook = alc294_init;
6fbae35a
KY
11021 break;
11022
1d045db9 11023 }
6dda9f4a 11024
ad60d502 11025 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 11026 spec->has_alc5505_dsp = 1;
ad60d502
KY
11027 spec->init_hook = alc5505_dsp_init;
11028 }
11029
c9af753f
TI
11030 alc_pre_init(codec);
11031
efe55732
TI
11032 snd_hda_pick_fixup(codec, alc269_fixup_models,
11033 alc269_fixup_tbl, alc269_fixups);
13d9c6b9
TI
11034 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
11035 * the quirk breaks the latter (bko#214101).
11036 * Clear the wrong entry.
11037 */
11038 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
11039 codec->core.vendor_id == 0x10ec0294) {
11040 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
11041 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
11042 }
11043
0fc1e447 11044 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
7c0a6939 11045 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
efe55732
TI
11046 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
11047 alc269_fixups);
11048 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
11049
11050 alc_auto_parse_customize_define(codec);
11051
11052 if (has_cdefine_beep(codec))
11053 spec->gen.beep_nid = 0x01;
11054
a4297b5d
TI
11055 /* automatic parse from the BIOS config */
11056 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
11057 if (err < 0)
11058 goto error;
6dda9f4a 11059
fea80fae
TI
11060 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
11061 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
11062 if (err < 0)
11063 goto error;
11064 }
f1d4e28b 11065
1727a771 11066 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11067
1d045db9 11068 return 0;
e16fb6d1
TI
11069
11070 error:
11071 alc_free(codec);
11072 return err;
1d045db9 11073}
f1d4e28b 11074
1d045db9
TI
11075/*
11076 * ALC861
11077 */
622e84cd 11078
1d045db9 11079static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 11080{
1d045db9 11081 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11082 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
11083 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
11084}
11085
1d045db9
TI
11086/* Pin config fixes */
11087enum {
e652f4c8
TI
11088 ALC861_FIXUP_FSC_AMILO_PI1505,
11089 ALC861_FIXUP_AMP_VREF_0F,
11090 ALC861_FIXUP_NO_JACK_DETECT,
11091 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 11092 ALC660_FIXUP_ASUS_W7J,
1d045db9 11093};
7085ec12 11094
31150f23
TI
11095/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
11096static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 11097 const struct hda_fixup *fix, int action)
31150f23
TI
11098{
11099 struct alc_spec *spec = codec->spec;
11100 unsigned int val;
11101
1727a771 11102 if (action != HDA_FIXUP_ACT_INIT)
31150f23 11103 return;
d3f02d60 11104 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
11105 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
11106 val |= AC_PINCTL_IN_EN;
11107 val |= AC_PINCTL_VREF_50;
cdd03ced 11108 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 11109 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
11110}
11111
e652f4c8
TI
11112/* suppress the jack-detection */
11113static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 11114 const struct hda_fixup *fix, int action)
e652f4c8 11115{
1727a771 11116 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 11117 codec->no_jack_detect = 1;
7d7eb9ea 11118}
e652f4c8 11119
1727a771 11120static const struct hda_fixup alc861_fixups[] = {
e652f4c8 11121 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
11122 .type = HDA_FIXUP_PINS,
11123 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
11124 { 0x0b, 0x0221101f }, /* HP */
11125 { 0x0f, 0x90170310 }, /* speaker */
11126 { }
11127 }
11128 },
e652f4c8 11129 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 11130 .type = HDA_FIXUP_FUNC,
31150f23 11131 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 11132 },
e652f4c8 11133 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 11134 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
11135 .v.func = alc_fixup_no_jack_detect,
11136 },
11137 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 11138 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
11139 .v.func = alc861_fixup_asus_amp_vref_0f,
11140 .chained = true,
11141 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
11142 },
11143 [ALC660_FIXUP_ASUS_W7J] = {
11144 .type = HDA_FIXUP_VERBS,
11145 .v.verbs = (const struct hda_verb[]) {
11146 /* ASUS W7J needs a magic pin setup on unused NID 0x10
11147 * for enabling outputs
11148 */
11149 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11150 { }
11151 },
e652f4c8 11152 }
1d045db9 11153};
7085ec12 11154
1d045db9 11155static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 11156 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 11157 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
11158 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
11159 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
11160 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
defce244 11161 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
e652f4c8 11162 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
11163 {}
11164};
3af9ee6b 11165
1d045db9
TI
11166/*
11167 */
1d045db9 11168static int patch_alc861(struct hda_codec *codec)
7085ec12 11169{
1d045db9 11170 struct alc_spec *spec;
1d045db9 11171 int err;
7085ec12 11172
3de95173
TI
11173 err = alc_alloc_spec(codec, 0x15);
11174 if (err < 0)
11175 return err;
1d045db9 11176
3de95173 11177 spec = codec->spec;
2722b535
TI
11178 if (has_cdefine_beep(codec))
11179 spec->gen.beep_nid = 0x23;
1d045db9 11180
225068ab
TI
11181#ifdef CONFIG_PM
11182 spec->power_hook = alc_power_eapd;
11183#endif
11184
c9af753f
TI
11185 alc_pre_init(codec);
11186
1727a771
TI
11187 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
11188 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 11189
cb4e4824
TI
11190 /* automatic parse from the BIOS config */
11191 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
11192 if (err < 0)
11193 goto error;
3af9ee6b 11194
fea80fae
TI
11195 if (!spec->gen.no_analog) {
11196 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
11197 if (err < 0)
11198 goto error;
11199 }
7085ec12 11200
1727a771 11201 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11202
1d045db9 11203 return 0;
e16fb6d1
TI
11204
11205 error:
11206 alc_free(codec);
11207 return err;
7085ec12
TI
11208}
11209
1d045db9
TI
11210/*
11211 * ALC861-VD support
11212 *
11213 * Based on ALC882
11214 *
11215 * In addition, an independent DAC
11216 */
1d045db9 11217static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 11218{
1d045db9 11219 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11220 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11221 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
11222}
11223
1d045db9 11224enum {
8fdcb6fe
TI
11225 ALC660VD_FIX_ASUS_GPIO1,
11226 ALC861VD_FIX_DALLAS,
1d045db9 11227};
ce764ab2 11228
8fdcb6fe
TI
11229/* exclude VREF80 */
11230static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 11231 const struct hda_fixup *fix, int action)
8fdcb6fe 11232{
1727a771 11233 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
11234 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
11235 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
11236 }
11237}
11238
df73d83f
TI
11239/* reset GPIO1 */
11240static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
11241 const struct hda_fixup *fix, int action)
11242{
11243 struct alc_spec *spec = codec->spec;
11244
11245 if (action == HDA_FIXUP_ACT_PRE_PROBE)
11246 spec->gpio_mask |= 0x02;
11247 alc_fixup_gpio(codec, action, 0x01);
11248}
11249
1727a771 11250static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 11251 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
11252 .type = HDA_FIXUP_FUNC,
11253 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 11254 },
8fdcb6fe 11255 [ALC861VD_FIX_DALLAS] = {
1727a771 11256 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
11257 .v.func = alc861vd_fixup_dallas,
11258 },
1d045db9 11259};
ce764ab2 11260
1d045db9 11261static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 11262 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 11263 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 11264 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
11265 {}
11266};
ce764ab2 11267
1d045db9
TI
11268/*
11269 */
1d045db9 11270static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 11271{
1d045db9 11272 struct alc_spec *spec;
cb4e4824 11273 int err;
ce764ab2 11274
3de95173
TI
11275 err = alc_alloc_spec(codec, 0x0b);
11276 if (err < 0)
11277 return err;
1d045db9 11278
3de95173 11279 spec = codec->spec;
2722b535
TI
11280 if (has_cdefine_beep(codec))
11281 spec->gen.beep_nid = 0x23;
1d045db9 11282
225068ab
TI
11283 spec->shutup = alc_eapd_shutup;
11284
c9af753f
TI
11285 alc_pre_init(codec);
11286
1727a771
TI
11287 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
11288 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 11289
cb4e4824
TI
11290 /* automatic parse from the BIOS config */
11291 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
11292 if (err < 0)
11293 goto error;
ce764ab2 11294
fea80fae
TI
11295 if (!spec->gen.no_analog) {
11296 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
11297 if (err < 0)
11298 goto error;
11299 }
1d045db9 11300
1727a771 11301 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11302
ce764ab2 11303 return 0;
e16fb6d1
TI
11304
11305 error:
11306 alc_free(codec);
11307 return err;
ce764ab2
TI
11308}
11309
1d045db9
TI
11310/*
11311 * ALC662 support
11312 *
11313 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11314 * configuration. Each pin widget can choose any input DACs and a mixer.
11315 * Each ADC is connected from a mixer of all inputs. This makes possible
11316 * 6-channel independent captures.
11317 *
11318 * In addition, an independent DAC for the multi-playback (not used in this
11319 * driver yet).
11320 */
1d045db9
TI
11321
11322/*
11323 * BIOS auto configuration
11324 */
11325
bc9f98a9
KY
11326static int alc662_parse_auto_config(struct hda_codec *codec)
11327{
4c6d72d1 11328 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
11329 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
11330 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
11331 const hda_nid_t *ssids;
ee979a14 11332
7639a06c
TI
11333 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
11334 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
11335 codec->core.vendor_id == 0x10ec0671)
3e6179b8 11336 ssids = alc663_ssids;
6227cdce 11337 else
3e6179b8
TI
11338 ssids = alc662_ssids;
11339 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
11340}
11341
6be7948f 11342static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 11343 const struct hda_fixup *fix, int action)
6fc398cb 11344{
9bb1f06f 11345 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 11346 return;
6be7948f
TB
11347 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
11348 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
11349 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
11350 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11351 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 11352 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
11353}
11354
8e383953
TI
11355static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
11356 { .channels = 2,
11357 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
11358 { .channels = 4,
11359 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
11360 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
11361 { }
11362};
11363
11364/* override the 2.1 chmap */
eb9ca3ab 11365static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
11366 const struct hda_fixup *fix, int action)
11367{
11368 if (action == HDA_FIXUP_ACT_BUILD) {
11369 struct alc_spec *spec = codec->spec;
bbbc7e85 11370 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
11371 }
11372}
11373
bf68665d
TI
11374/* avoid D3 for keeping GPIO up */
11375static unsigned int gpio_led_power_filter(struct hda_codec *codec,
11376 hda_nid_t nid,
11377 unsigned int power_state)
11378{
11379 struct alc_spec *spec = codec->spec;
d261eec8 11380 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
11381 return AC_PWRST_D0;
11382 return power_state;
11383}
11384
3e887f37
TI
11385static void alc662_fixup_led_gpio1(struct hda_codec *codec,
11386 const struct hda_fixup *fix, int action)
11387{
11388 struct alc_spec *spec = codec->spec;
3e887f37 11389
01e4a275 11390 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 11391 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 11392 spec->mute_led_polarity = 1;
bf68665d 11393 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
11394 }
11395}
11396
c6790c8e
KY
11397static void alc662_usi_automute_hook(struct hda_codec *codec,
11398 struct hda_jack_callback *jack)
11399{
11400 struct alc_spec *spec = codec->spec;
11401 int vref;
11402 msleep(200);
11403 snd_hda_gen_hp_automute(codec, jack);
11404
11405 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
11406 msleep(100);
11407 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11408 vref);
11409}
11410
11411static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
11412 const struct hda_fixup *fix, int action)
11413{
11414 struct alc_spec *spec = codec->spec;
11415 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11416 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11417 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
11418 }
11419}
11420
00066e97
SB
11421static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
11422 struct hda_jack_callback *cb)
11423{
11424 /* surround speakers at 0x1b already get muted automatically when
11425 * headphones are plugged in, but we have to mute/unmute the remaining
11426 * channels manually:
11427 * 0x15 - front left/front right
11428 * 0x18 - front center/ LFE
11429 */
11430 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
11431 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
11432 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
11433 } else {
11434 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
11435 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
11436 }
11437}
11438
11439static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
11440 const struct hda_fixup *fix, int action)
11441{
11442 /* Pin 0x1b: shared headphones jack and surround speakers */
11443 if (!is_jack_detectable(codec, 0x1b))
11444 return;
11445
11446 switch (action) {
11447 case HDA_FIXUP_ACT_PRE_PROBE:
11448 snd_hda_jack_detect_enable_callback(codec, 0x1b,
11449 alc662_aspire_ethos_mute_speakers);
336820c4
TI
11450 /* subwoofer needs an extra GPIO setting to become audible */
11451 alc_setup_gpio(codec, 0x02);
00066e97
SB
11452 break;
11453 case HDA_FIXUP_ACT_INIT:
11454 /* Make sure to start in a correct state, i.e. if
11455 * headphones have been plugged in before powering up the system
11456 */
11457 alc662_aspire_ethos_mute_speakers(codec, NULL);
11458 break;
11459 }
11460}
11461
5af29028
KY
11462static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
11463 const struct hda_fixup *fix, int action)
11464{
11465 struct alc_spec *spec = codec->spec;
11466
11467 static const struct hda_pintbl pincfgs[] = {
11468 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
11469 { 0x1b, 0x0181304f },
11470 { }
11471 };
11472
11473 switch (action) {
11474 case HDA_FIXUP_ACT_PRE_PROBE:
11475 spec->gen.mixer_nid = 0;
11476 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11477 snd_hda_apply_pincfgs(codec, pincfgs);
11478 break;
11479 case HDA_FIXUP_ACT_INIT:
11480 alc_write_coef_idx(codec, 0x19, 0xa054);
11481 break;
11482 }
11483}
11484
d7f32791
KY
11485static void alc897_hp_automute_hook(struct hda_codec *codec,
11486 struct hda_jack_callback *jack)
11487{
11488 struct alc_spec *spec = codec->spec;
11489 int vref;
11490
11491 snd_hda_gen_hp_automute(codec, jack);
11492 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
11493 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11494 vref);
11495}
11496
11497static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
11498 const struct hda_fixup *fix, int action)
11499{
11500 struct alc_spec *spec = codec->spec;
11501 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11502 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11503 }
11504}
11505
4bf5bf54
EP
11506static void alc897_fixup_lenovo_headset_mode(struct hda_codec *codec,
11507 const struct hda_fixup *fix, int action)
11508{
11509 struct alc_spec *spec = codec->spec;
11510
11511 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
11512 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
11513 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
11514 }
11515}
11516
6b0f95c4 11517static const struct coef_fw alc668_coefs[] = {
f3f9185f
KY
11518 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
11519 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
11520 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
11521 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
11522 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
11523 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
11524 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
11525 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
11526 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
11527 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
11528 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
11529 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
11530 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
11531 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
11532 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
11533 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
11534 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
11535 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
11536 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
11537 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
11538 {}
11539};
11540
11541static void alc668_restore_default_value(struct hda_codec *codec)
11542{
11543 alc_process_coef_fw(codec, alc668_coefs);
11544}
11545
6cb3b707 11546enum {
2df03514 11547 ALC662_FIXUP_ASPIRE,
3e887f37 11548 ALC662_FIXUP_LED_GPIO1,
6cb3b707 11549 ALC662_FIXUP_IDEAPAD,
6be7948f 11550 ALC272_FIXUP_MARIO,
f1ec5be1 11551 ALC662_FIXUP_CZC_ET26,
d2ebd479 11552 ALC662_FIXUP_CZC_P10T,
94024cd1 11553 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 11554 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
11555 ALC662_FIXUP_ASUS_MODE1,
11556 ALC662_FIXUP_ASUS_MODE2,
11557 ALC662_FIXUP_ASUS_MODE3,
11558 ALC662_FIXUP_ASUS_MODE4,
11559 ALC662_FIXUP_ASUS_MODE5,
11560 ALC662_FIXUP_ASUS_MODE6,
11561 ALC662_FIXUP_ASUS_MODE7,
11562 ALC662_FIXUP_ASUS_MODE8,
1565cc35 11563 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 11564 ALC662_FIXUP_ZOTAC_Z68,
125821ae 11565 ALC662_FIXUP_INV_DMIC,
1f8b46cd 11566 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 11567 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 11568 ALC662_FIXUP_HEADSET_MODE,
73bdd597 11569 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 11570 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 11571 ALC662_FIXUP_BASS_16,
a30c9aaa 11572 ALC662_FIXUP_BASS_1A,
8e54b4ac 11573 ALC662_FIXUP_BASS_CHMAP,
493a52a9 11574 ALC668_FIXUP_AUTO_MUTE,
5e6db669 11575 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 11576 ALC668_FIXUP_DELL_XPS13,
9d4dc584 11577 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 11578 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 11579 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 11580 ALC668_FIXUP_MIC_COEF,
11ba6111 11581 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
11582 ALC891_FIXUP_HEADSET_MODE,
11583 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 11584 ALC662_FIXUP_ACER_VERITON,
1a3f0991 11585 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
11586 ALC662_FIXUP_USI_FUNC,
11587 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 11588 ALC662_FIXUP_LENOVO_MULTI_CODECS,
00066e97 11589 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
00066e97 11590 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
5af29028 11591 ALC671_FIXUP_HP_HEADSET_MIC2,
d858c706 11592 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
a124458a 11593 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
a3fd1a98
HW
11594 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
11595 ALC668_FIXUP_HEADSET_MIC,
11596 ALC668_FIXUP_MIC_DET_COEF,
d7f32791
KY
11597 ALC897_FIXUP_LENOVO_HEADSET_MIC,
11598 ALC897_FIXUP_HEADSET_MIC_PIN,
fe6900bd 11599 ALC897_FIXUP_HP_HSMIC_VERB,
4bf5bf54
EP
11600 ALC897_FIXUP_LENOVO_HEADSET_MODE,
11601 ALC897_FIXUP_HEADSET_MIC_PIN2,
73f1c75d 11602 ALC897_FIXUP_UNIS_H3C_X500S,
6cb3b707
DH
11603};
11604
1727a771 11605static const struct hda_fixup alc662_fixups[] = {
2df03514 11606 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
11607 .type = HDA_FIXUP_PINS,
11608 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
11609 { 0x15, 0x99130112 }, /* subwoofer */
11610 { }
11611 }
11612 },
3e887f37
TI
11613 [ALC662_FIXUP_LED_GPIO1] = {
11614 .type = HDA_FIXUP_FUNC,
11615 .v.func = alc662_fixup_led_gpio1,
11616 },
6cb3b707 11617 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
11618 .type = HDA_FIXUP_PINS,
11619 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
11620 { 0x17, 0x99130112 }, /* subwoofer */
11621 { }
3e887f37
TI
11622 },
11623 .chained = true,
11624 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 11625 },
6be7948f 11626 [ALC272_FIXUP_MARIO] = {
1727a771 11627 .type = HDA_FIXUP_FUNC,
b5bfbc67 11628 .v.func = alc272_fixup_mario,
d2ebd479 11629 },
f1ec5be1
HC
11630 [ALC662_FIXUP_CZC_ET26] = {
11631 .type = HDA_FIXUP_PINS,
11632 .v.pins = (const struct hda_pintbl[]) {
11633 {0x12, 0x403cc000},
11634 {0x14, 0x90170110}, /* speaker */
11635 {0x15, 0x411111f0},
11636 {0x16, 0x411111f0},
11637 {0x18, 0x01a19030}, /* mic */
11638 {0x19, 0x90a7013f}, /* int-mic */
11639 {0x1a, 0x01014020},
11640 {0x1b, 0x0121401f},
11641 {0x1c, 0x411111f0},
11642 {0x1d, 0x411111f0},
11643 {0x1e, 0x40478e35},
11644 {}
11645 },
11646 .chained = true,
11647 .chain_id = ALC662_FIXUP_SKU_IGNORE
11648 },
d2ebd479 11649 [ALC662_FIXUP_CZC_P10T] = {
1727a771 11650 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
11651 .v.verbs = (const struct hda_verb[]) {
11652 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
11653 {}
11654 }
11655 },
94024cd1 11656 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 11657 .type = HDA_FIXUP_FUNC,
23d30f28 11658 .v.func = alc_fixup_sku_ignore,
c6b35874 11659 },
e59ea3ed 11660 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
11661 .type = HDA_FIXUP_PINS,
11662 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
11663 { 0x14, 0x0221201f }, /* HP out */
11664 { }
11665 },
11666 .chained = true,
11667 .chain_id = ALC662_FIXUP_SKU_IGNORE
11668 },
53c334ad 11669 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
11670 .type = HDA_FIXUP_PINS,
11671 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11672 { 0x14, 0x99130110 }, /* speaker */
11673 { 0x18, 0x01a19c20 }, /* mic */
11674 { 0x19, 0x99a3092f }, /* int-mic */
11675 { 0x21, 0x0121401f }, /* HP out */
11676 { }
11677 },
11678 .chained = true,
11679 .chain_id = ALC662_FIXUP_SKU_IGNORE
11680 },
11681 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
11682 .type = HDA_FIXUP_PINS,
11683 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
11684 { 0x14, 0x99130110 }, /* speaker */
11685 { 0x18, 0x01a19820 }, /* mic */
11686 { 0x19, 0x99a3092f }, /* int-mic */
11687 { 0x1b, 0x0121401f }, /* HP out */
11688 { }
11689 },
53c334ad
TI
11690 .chained = true,
11691 .chain_id = ALC662_FIXUP_SKU_IGNORE
11692 },
11693 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
11694 .type = HDA_FIXUP_PINS,
11695 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11696 { 0x14, 0x99130110 }, /* speaker */
11697 { 0x15, 0x0121441f }, /* HP */
11698 { 0x18, 0x01a19840 }, /* mic */
11699 { 0x19, 0x99a3094f }, /* int-mic */
11700 { 0x21, 0x01211420 }, /* HP2 */
11701 { }
11702 },
11703 .chained = true,
11704 .chain_id = ALC662_FIXUP_SKU_IGNORE
11705 },
11706 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
11707 .type = HDA_FIXUP_PINS,
11708 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11709 { 0x14, 0x99130110 }, /* speaker */
11710 { 0x16, 0x99130111 }, /* speaker */
11711 { 0x18, 0x01a19840 }, /* mic */
11712 { 0x19, 0x99a3094f }, /* int-mic */
11713 { 0x21, 0x0121441f }, /* HP */
11714 { }
11715 },
11716 .chained = true,
11717 .chain_id = ALC662_FIXUP_SKU_IGNORE
11718 },
11719 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
11720 .type = HDA_FIXUP_PINS,
11721 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11722 { 0x14, 0x99130110 }, /* speaker */
11723 { 0x15, 0x0121441f }, /* HP */
11724 { 0x16, 0x99130111 }, /* speaker */
11725 { 0x18, 0x01a19840 }, /* mic */
11726 { 0x19, 0x99a3094f }, /* int-mic */
11727 { }
11728 },
11729 .chained = true,
11730 .chain_id = ALC662_FIXUP_SKU_IGNORE
11731 },
11732 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
11733 .type = HDA_FIXUP_PINS,
11734 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11735 { 0x14, 0x99130110 }, /* speaker */
11736 { 0x15, 0x01211420 }, /* HP2 */
11737 { 0x18, 0x01a19840 }, /* mic */
11738 { 0x19, 0x99a3094f }, /* int-mic */
11739 { 0x1b, 0x0121441f }, /* HP */
11740 { }
11741 },
11742 .chained = true,
11743 .chain_id = ALC662_FIXUP_SKU_IGNORE
11744 },
11745 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
11746 .type = HDA_FIXUP_PINS,
11747 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11748 { 0x14, 0x99130110 }, /* speaker */
11749 { 0x17, 0x99130111 }, /* speaker */
11750 { 0x18, 0x01a19840 }, /* mic */
11751 { 0x19, 0x99a3094f }, /* int-mic */
11752 { 0x1b, 0x01214020 }, /* HP */
11753 { 0x21, 0x0121401f }, /* HP */
11754 { }
11755 },
11756 .chained = true,
11757 .chain_id = ALC662_FIXUP_SKU_IGNORE
11758 },
11759 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
11760 .type = HDA_FIXUP_PINS,
11761 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
11762 { 0x14, 0x99130110 }, /* speaker */
11763 { 0x12, 0x99a30970 }, /* int-mic */
11764 { 0x15, 0x01214020 }, /* HP */
11765 { 0x17, 0x99130111 }, /* speaker */
11766 { 0x18, 0x01a19840 }, /* mic */
11767 { 0x21, 0x0121401f }, /* HP */
11768 { }
11769 },
11770 .chained = true,
11771 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 11772 },
1565cc35 11773 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 11774 .type = HDA_FIXUP_FUNC,
1565cc35
TI
11775 .v.func = alc_fixup_no_jack_detect,
11776 },
edfe3bfc 11777 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
11778 .type = HDA_FIXUP_PINS,
11779 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
11780 { 0x1b, 0x02214020 }, /* Front HP */
11781 { }
11782 }
11783 },
125821ae 11784 [ALC662_FIXUP_INV_DMIC] = {
1727a771 11785 .type = HDA_FIXUP_FUNC,
9d36a7dc 11786 .v.func = alc_fixup_inv_dmic,
125821ae 11787 },
033b0a7c
GM
11788 [ALC668_FIXUP_DELL_XPS13] = {
11789 .type = HDA_FIXUP_FUNC,
11790 .v.func = alc_fixup_dell_xps13,
11791 .chained = true,
11792 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
11793 },
5e6db669
GM
11794 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
11795 .type = HDA_FIXUP_FUNC,
11796 .v.func = alc_fixup_disable_aamix,
11797 .chained = true,
11798 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11799 },
493a52a9
HW
11800 [ALC668_FIXUP_AUTO_MUTE] = {
11801 .type = HDA_FIXUP_FUNC,
11802 .v.func = alc_fixup_auto_mute_via_amp,
11803 .chained = true,
11804 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
11805 },
1f8b46cd
DH
11806 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
11807 .type = HDA_FIXUP_PINS,
11808 .v.pins = (const struct hda_pintbl[]) {
11809 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11810 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
11811 { }
11812 },
11813 .chained = true,
11814 .chain_id = ALC662_FIXUP_HEADSET_MODE
11815 },
11816 [ALC662_FIXUP_HEADSET_MODE] = {
11817 .type = HDA_FIXUP_FUNC,
11818 .v.func = alc_fixup_headset_mode_alc662,
11819 },
73bdd597
DH
11820 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
11821 .type = HDA_FIXUP_PINS,
11822 .v.pins = (const struct hda_pintbl[]) {
11823 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11824 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11825 { }
11826 },
11827 .chained = true,
11828 .chain_id = ALC668_FIXUP_HEADSET_MODE
11829 },
11830 [ALC668_FIXUP_HEADSET_MODE] = {
11831 .type = HDA_FIXUP_FUNC,
11832 .v.func = alc_fixup_headset_mode_alc668,
11833 },
8e54b4ac 11834 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 11835 .type = HDA_FIXUP_FUNC,
eb9ca3ab 11836 .v.func = alc_fixup_bass_chmap,
8e383953
TI
11837 .chained = true,
11838 .chain_id = ALC662_FIXUP_ASUS_MODE4
11839 },
61a75f13
DH
11840 [ALC662_FIXUP_BASS_16] = {
11841 .type = HDA_FIXUP_PINS,
11842 .v.pins = (const struct hda_pintbl[]) {
11843 {0x16, 0x80106111}, /* bass speaker */
11844 {}
11845 },
11846 .chained = true,
11847 .chain_id = ALC662_FIXUP_BASS_CHMAP,
11848 },
a30c9aaa
TI
11849 [ALC662_FIXUP_BASS_1A] = {
11850 .type = HDA_FIXUP_PINS,
11851 .v.pins = (const struct hda_pintbl[]) {
11852 {0x1a, 0x80106111}, /* bass speaker */
11853 {}
11854 },
8e54b4ac
DH
11855 .chained = true,
11856 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 11857 },
8e54b4ac 11858 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 11859 .type = HDA_FIXUP_FUNC,
eb9ca3ab 11860 .v.func = alc_fixup_bass_chmap,
a30c9aaa 11861 },
9d4dc584
BM
11862 [ALC662_FIXUP_ASUS_Nx50] = {
11863 .type = HDA_FIXUP_FUNC,
11864 .v.func = alc_fixup_auto_mute_via_amp,
11865 .chained = true,
11866 .chain_id = ALC662_FIXUP_BASS_1A
11867 },
fc7438b1
MP
11868 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
11869 .type = HDA_FIXUP_FUNC,
11870 .v.func = alc_fixup_headset_mode_alc668,
11871 .chain_id = ALC662_FIXUP_BASS_CHMAP
11872 },
3231e205
YP
11873 [ALC668_FIXUP_ASUS_Nx51] = {
11874 .type = HDA_FIXUP_PINS,
11875 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
11876 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11877 { 0x1a, 0x90170151 }, /* bass speaker */
11878 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
11879 {}
11880 },
11881 .chained = true,
fc7438b1 11882 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 11883 },
5b7c5e1f 11884 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
11885 .type = HDA_FIXUP_VERBS,
11886 .v.verbs = (const struct hda_verb[]) {
11887 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
11888 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
11889 {}
11890 },
11891 },
5b7c5e1f
TI
11892 [ALC668_FIXUP_ASUS_G751] = {
11893 .type = HDA_FIXUP_PINS,
11894 .v.pins = (const struct hda_pintbl[]) {
11895 { 0x16, 0x0421101f }, /* HP */
11896 {}
11897 },
11898 .chained = true,
11899 .chain_id = ALC668_FIXUP_MIC_COEF
11900 },
78f4f7c2
KY
11901 [ALC891_FIXUP_HEADSET_MODE] = {
11902 .type = HDA_FIXUP_FUNC,
11903 .v.func = alc_fixup_headset_mode,
11904 },
11905 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
11906 .type = HDA_FIXUP_PINS,
11907 .v.pins = (const struct hda_pintbl[]) {
11908 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11909 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11910 { }
11911 },
11912 .chained = true,
11913 .chain_id = ALC891_FIXUP_HEADSET_MODE
11914 },
9b51fe3e
SB
11915 [ALC662_FIXUP_ACER_VERITON] = {
11916 .type = HDA_FIXUP_PINS,
11917 .v.pins = (const struct hda_pintbl[]) {
11918 { 0x15, 0x50170120 }, /* no internal speaker */
11919 { }
11920 }
11921 },
1a3f0991
TI
11922 [ALC892_FIXUP_ASROCK_MOBO] = {
11923 .type = HDA_FIXUP_PINS,
11924 .v.pins = (const struct hda_pintbl[]) {
11925 { 0x15, 0x40f000f0 }, /* disabled */
11926 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
11927 { }
11928 }
11929 },
c6790c8e
KY
11930 [ALC662_FIXUP_USI_FUNC] = {
11931 .type = HDA_FIXUP_FUNC,
11932 .v.func = alc662_fixup_usi_headset_mic,
11933 },
11934 [ALC662_FIXUP_USI_HEADSET_MODE] = {
11935 .type = HDA_FIXUP_PINS,
11936 .v.pins = (const struct hda_pintbl[]) {
11937 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
11938 { 0x18, 0x01a1903d },
11939 { }
11940 },
11941 .chained = true,
11942 .chain_id = ALC662_FIXUP_USI_FUNC
11943 },
ca169cc2
KY
11944 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
11945 .type = HDA_FIXUP_FUNC,
11946 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
11947 },
00066e97
SB
11948 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
11949 .type = HDA_FIXUP_FUNC,
11950 .v.func = alc662_fixup_aspire_ethos_hp,
11951 },
00066e97
SB
11952 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
11953 .type = HDA_FIXUP_PINS,
11954 .v.pins = (const struct hda_pintbl[]) {
11955 { 0x15, 0x92130110 }, /* front speakers */
11956 { 0x18, 0x99130111 }, /* center/subwoofer */
11957 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
11958 { }
11959 },
11960 .chained = true,
336820c4 11961 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
00066e97 11962 },
5af29028
KY
11963 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
11964 .type = HDA_FIXUP_FUNC,
11965 .v.func = alc671_fixup_hp_headset_mic2,
11966 },
d858c706
JHP
11967 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
11968 .type = HDA_FIXUP_PINS,
11969 .v.pins = (const struct hda_pintbl[]) {
11970 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
11971 { }
11972 },
11973 .chained = true,
11974 .chain_id = ALC662_FIXUP_USI_FUNC
11975 },
a124458a
JHP
11976 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
11977 .type = HDA_FIXUP_PINS,
11978 .v.pins = (const struct hda_pintbl[]) {
11979 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
11980 { 0x1b, 0x0221144f },
11981 { }
11982 },
11983 .chained = true,
11984 .chain_id = ALC662_FIXUP_USI_FUNC
11985 },
a3fd1a98
HW
11986 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
11987 .type = HDA_FIXUP_PINS,
11988 .v.pins = (const struct hda_pintbl[]) {
11989 { 0x1b, 0x04a1112c },
11990 { }
11991 },
11992 .chained = true,
11993 .chain_id = ALC668_FIXUP_HEADSET_MIC
11994 },
11995 [ALC668_FIXUP_HEADSET_MIC] = {
11996 .type = HDA_FIXUP_FUNC,
11997 .v.func = alc269_fixup_headset_mic,
11998 .chained = true,
11999 .chain_id = ALC668_FIXUP_MIC_DET_COEF
12000 },
12001 [ALC668_FIXUP_MIC_DET_COEF] = {
12002 .type = HDA_FIXUP_VERBS,
12003 .v.verbs = (const struct hda_verb[]) {
12004 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
12005 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
12006 {}
12007 },
12008 },
d7f32791
KY
12009 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
12010 .type = HDA_FIXUP_FUNC,
12011 .v.func = alc897_fixup_lenovo_headset_mic,
12012 },
12013 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
12014 .type = HDA_FIXUP_PINS,
12015 .v.pins = (const struct hda_pintbl[]) {
12016 { 0x1a, 0x03a11050 },
12017 { }
12018 },
12019 .chained = true,
12020 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
12021 },
fe6900bd
KY
12022 [ALC897_FIXUP_HP_HSMIC_VERB] = {
12023 .type = HDA_FIXUP_PINS,
12024 .v.pins = (const struct hda_pintbl[]) {
12025 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
12026 { }
12027 },
12028 },
4bf5bf54
EP
12029 [ALC897_FIXUP_LENOVO_HEADSET_MODE] = {
12030 .type = HDA_FIXUP_FUNC,
12031 .v.func = alc897_fixup_lenovo_headset_mode,
12032 },
12033 [ALC897_FIXUP_HEADSET_MIC_PIN2] = {
12034 .type = HDA_FIXUP_PINS,
12035 .v.pins = (const struct hda_pintbl[]) {
12036 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
12037 { }
12038 },
12039 .chained = true,
12040 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MODE
12041 },
73f1c75d 12042 [ALC897_FIXUP_UNIS_H3C_X500S] = {
12043 .type = HDA_FIXUP_VERBS,
12044 .v.verbs = (const struct hda_verb[]) {
12045 { 0x14, AC_VERB_SET_EAPD_BTLENABLE, 0 },
12046 {}
12047 },
12048 },
6cb3b707
DH
12049};
12050
a9111321 12051static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 12052 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 12053 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 12054 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 12055 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 12056 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 12057 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 12058 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 12059 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
9edeb110 12060 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
a124458a 12061 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
d858c706 12062 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
73bdd597
DH
12063 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12064 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 12065 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 12066 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 12067 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 12068 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 12069 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
12070 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
12071 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 12072 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 12073 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
ea24b995 12074 SND_PCI_QUIRK(0x103c, 0x870c, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
fe6900bd 12075 SND_PCI_QUIRK(0x103c, 0x8719, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
90670ef7 12076 SND_PCI_QUIRK(0x103c, 0x872b, "HP", ALC897_FIXUP_HP_HSMIC_VERB),
148ebf54 12077 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
527c356b 12078 SND_PCI_QUIRK(0x103c, 0x8768, "HP Slim Desktop S01", ALC671_FIXUP_HP_HEADSET_MIC2),
dbe75d31 12079 SND_PCI_QUIRK(0x103c, 0x877e, "HP 288 Pro G6", ALC671_FIXUP_HP_HEADSET_MIC2),
882bd07f 12080 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
2da2dc9e 12081 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 12082 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
9d4dc584 12083 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 12084 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
9edeb110 12085 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
8e54b4ac 12086 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 12087 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
12088 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
12089 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
a3fd1a98 12090 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
c7efff92 12091 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 12092 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 12093 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 12094 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 12095 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 12096 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 12097 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 12098 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
5a873857 12099 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
7ca4c8d4 12100 SND_PCI_QUIRK(0x17aa, 0x1064, "Lenovo P3 Tower", ALC897_FIXUP_HEADSET_MIC_PIN),
d7f32791
KY
12101 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
12102 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
12103 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
12104 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
4ca110ca
BL
12105 SND_PCI_QUIRK(0x17aa, 0x3321, "Lenovo ThinkCentre M70 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
12106 SND_PCI_QUIRK(0x17aa, 0x331b, "Lenovo ThinkCentre M90 Gen4", ALC897_FIXUP_HEADSET_MIC_PIN),
6f7e4664 12107 SND_PCI_QUIRK(0x17aa, 0x3364, "Lenovo ThinkCentre M90 Gen5", ALC897_FIXUP_HEADSET_MIC_PIN),
4bf5bf54 12108 SND_PCI_QUIRK(0x17aa, 0x3742, "Lenovo TianYi510Pro-14IOB", ALC897_FIXUP_HEADSET_MIC_PIN2),
d4118588 12109 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 12110 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 12111 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 12112 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 12113 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
f1ec5be1 12114 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
d2ebd479 12115 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
a2a87148 12116 SND_PCI_QUIRK(0x1c6c, 0x1239, "Compaq N14JP6-V2", ALC897_FIXUP_HP_HSMIC_VERB),
53c334ad
TI
12117
12118#if 0
12119 /* Below is a quirk table taken from the old code.
12120 * Basically the device should work as is without the fixup table.
12121 * If BIOS doesn't give a proper info, enable the corresponding
12122 * fixup entry.
7d7eb9ea 12123 */
53c334ad
TI
12124 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
12125 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
12126 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
12127 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
12128 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12129 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12130 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12131 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
12132 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
12133 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12134 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
12135 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
12136 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
12137 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
12138 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
12139 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12140 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
12141 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
12142 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12143 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12144 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12145 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12146 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
12147 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
12148 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
12149 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12150 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
12151 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
12152 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12153 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
12154 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12155 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12156 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
12157 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
12158 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
12159 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
12160 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
12161 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
12162 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
12163 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
12164 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
12165 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
12166 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12167 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
12168 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
12169 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
12170 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
12171 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
12172 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
12173 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
12174#endif
6cb3b707
DH
12175 {}
12176};
12177
1727a771 12178static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
12179 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
12180 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 12181 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 12182 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
12183 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
12184 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
12185 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
12186 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
12187 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
12188 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
12189 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
12190 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 12191 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 12192 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 12193 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 12194 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
12195 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
12196 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
12197 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
12198 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
12199 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
12200 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
12201 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
12202 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 12203 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
12204 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
12205 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
12206 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
12207 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
12208 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 12209 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
00066e97 12210 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
73f1c75d 12211 {.id = ALC897_FIXUP_UNIS_H3C_X500S, .name = "unis-h3c-x500s"},
6be7948f
TB
12212 {}
12213};
6cb3b707 12214
532895c5 12215static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
12216 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12217 {0x17, 0x02211010},
12218 {0x18, 0x01a19030},
12219 {0x1a, 0x01813040},
12220 {0x21, 0x01014020}),
4b4e0e32
HW
12221 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
12222 {0x16, 0x01813030},
12223 {0x17, 0x02211010},
12224 {0x18, 0x01a19040},
12225 {0x21, 0x01014020}),
1f8b46cd 12226 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 12227 {0x14, 0x01014010},
1f8b46cd 12228 {0x18, 0x01a19020},
1f8b46cd 12229 {0x1a, 0x0181302f},
11580297 12230 {0x1b, 0x0221401f}),
76c2132e
DH
12231 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12232 {0x12, 0x99a30130},
12233 {0x14, 0x90170110},
12234 {0x15, 0x0321101f},
11580297 12235 {0x16, 0x03011020}),
76c2132e
DH
12236 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12237 {0x12, 0x99a30140},
12238 {0x14, 0x90170110},
12239 {0x15, 0x0321101f},
11580297 12240 {0x16, 0x03011020}),
76c2132e
DH
12241 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
12242 {0x12, 0x99a30150},
12243 {0x14, 0x90170110},
12244 {0x15, 0x0321101f},
11580297 12245 {0x16, 0x03011020}),
76c2132e 12246 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
12247 {0x14, 0x90170110},
12248 {0x15, 0x0321101f},
11580297 12249 {0x16, 0x03011020}),
76c2132e
DH
12250 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
12251 {0x12, 0x90a60130},
12252 {0x14, 0x90170110},
11580297 12253 {0x15, 0x0321101f}),
5af29028
KY
12254 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12255 {0x14, 0x01014010},
12256 {0x17, 0x90170150},
f2adbae0 12257 {0x19, 0x02a11060},
5af29028
KY
12258 {0x1b, 0x01813030},
12259 {0x21, 0x02211020}),
12260 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12261 {0x14, 0x01014010},
12262 {0x18, 0x01a19040},
12263 {0x1b, 0x01813030},
12264 {0x21, 0x02211020}),
12265 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
12266 {0x14, 0x01014020},
12267 {0x17, 0x90170110},
12268 {0x18, 0x01a19050},
12269 {0x1b, 0x01813040},
12270 {0x21, 0x02211030}),
532895c5
HW
12271 {}
12272};
12273
1d045db9
TI
12274/*
12275 */
bc9f98a9
KY
12276static int patch_alc662(struct hda_codec *codec)
12277{
12278 struct alc_spec *spec;
3de95173 12279 int err;
bc9f98a9 12280
3de95173
TI
12281 err = alc_alloc_spec(codec, 0x0b);
12282 if (err < 0)
12283 return err;
bc9f98a9 12284
3de95173 12285 spec = codec->spec;
1f0f4b80 12286
225068ab
TI
12287 spec->shutup = alc_eapd_shutup;
12288
53c334ad
TI
12289 /* handle multiple HPs as is */
12290 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
12291
2c3bf9ab
TI
12292 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12293
7639a06c 12294 switch (codec->core.vendor_id) {
f3f9185f
KY
12295 case 0x10ec0668:
12296 spec->init_hook = alc668_restore_default_value;
12297 break;
f3f9185f 12298 }
8663ff75 12299
c9af753f
TI
12300 alc_pre_init(codec);
12301
1727a771 12302 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 12303 alc662_fixup_tbl, alc662_fixups);
0fc1e447 12304 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
1727a771 12305 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
12306
12307 alc_auto_parse_customize_define(codec);
12308
7504b6cd
TI
12309 if (has_cdefine_beep(codec))
12310 spec->gen.beep_nid = 0x01;
12311
1bb7e43e 12312 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 12313 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 12314 spec->cdefine.platform_type == 1) {
6134b1a2
WY
12315 err = alc_codec_rename(codec, "ALC272X");
12316 if (err < 0)
e16fb6d1 12317 goto error;
20ca0c35 12318 }
274693f3 12319
b9c5106c
TI
12320 /* automatic parse from the BIOS config */
12321 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
12322 if (err < 0)
12323 goto error;
bc9f98a9 12324
7504b6cd 12325 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 12326 switch (codec->core.vendor_id) {
da00c244 12327 case 0x10ec0662:
fea80fae 12328 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
12329 break;
12330 case 0x10ec0272:
12331 case 0x10ec0663:
12332 case 0x10ec0665:
9ad54547 12333 case 0x10ec0668:
fea80fae 12334 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
12335 break;
12336 case 0x10ec0273:
fea80fae 12337 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
12338 break;
12339 }
fea80fae
TI
12340 if (err < 0)
12341 goto error;
cec27c89 12342 }
2134ea4f 12343
1727a771 12344 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 12345
bc9f98a9 12346 return 0;
801f49d3 12347
e16fb6d1
TI
12348 error:
12349 alc_free(codec);
12350 return err;
b478b998
KY
12351}
12352
d1eb57f4
KY
12353/*
12354 * ALC680 support
12355 */
d1eb57f4 12356
d1eb57f4
KY
12357static int alc680_parse_auto_config(struct hda_codec *codec)
12358{
3e6179b8 12359 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
12360}
12361
d1eb57f4 12362/*
d1eb57f4 12363 */
d1eb57f4
KY
12364static int patch_alc680(struct hda_codec *codec)
12365{
d1eb57f4
KY
12366 int err;
12367
1f0f4b80 12368 /* ALC680 has no aa-loopback mixer */
3de95173
TI
12369 err = alc_alloc_spec(codec, 0);
12370 if (err < 0)
12371 return err;
1f0f4b80 12372
1ebec5f2
TI
12373 /* automatic parse from the BIOS config */
12374 err = alc680_parse_auto_config(codec);
12375 if (err < 0) {
12376 alc_free(codec);
12377 return err;
d1eb57f4
KY
12378 }
12379
d1eb57f4
KY
12380 return 0;
12381}
12382
1da177e4
LT
12383/*
12384 * patch entries
12385 */
b9a94a9c 12386static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 12387 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 12388 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
2a36c16e 12389 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
4231430d 12390 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
1948fc06 12391 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
b9a94a9c
TI
12392 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
12393 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 12394 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 12395 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 12396 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
7fbdcd83 12397 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
b9a94a9c
TI
12398 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
12399 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 12400 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
12401 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
12402 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
12403 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
12404 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
12405 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
12406 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
12407 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 12408 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
12409 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
12410 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
12411 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
12412 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
12413 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
12414 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 12415 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c 12416 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
630e3612 12417 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
b9a94a9c 12418 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 12419 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
12420 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
12421 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
12422 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 12423 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 12424 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 12425 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 12426 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
1078bef0 12427 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
f0778871 12428 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
b9a94a9c
TI
12429 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
12430 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
12431 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
12432 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
12433 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
12434 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
12435 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
12436 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
12437 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
12438 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
12439 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
12440 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
12441 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
12442 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
12443 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
12444 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
12445 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
83629532 12446 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
78f4f7c2 12447 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
12448 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
12449 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
12450 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
12451 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
12452 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
12453 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
12454 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
12455 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
12456 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
12457 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
12458 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
e5782a5d 12459 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
b9a94a9c
TI
12460 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
12461 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
6d9ffcff 12462 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
65553b12 12463 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 12464 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
527f4643 12465 HDA_CODEC_ENTRY(0x19e58326, "HW8326", patch_alc269),
1da177e4
LT
12466 {} /* terminator */
12467};
b9a94a9c 12468MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
12469
12470MODULE_LICENSE("GPL");
12471MODULE_DESCRIPTION("Realtek HD-audio codec");
fd895a74 12472MODULE_IMPORT_NS(SND_HDA_SCODEC_COMPONENT);
1289e9e8 12473
d8a766a1 12474static struct hda_codec_driver realtek_driver = {
b9a94a9c 12475 .id = snd_hda_id_realtek,
1289e9e8
TI
12476};
12477
d8a766a1 12478module_hda_codec_driver(realtek_driver);