]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
ALSA: usb-audio: Don't get sample rate for MCT Trigger 5 USB-to-HDMI
[thirdparty/linux.git] / sound / pci / hda / patch_realtek.c
CommitLineData
d0fa1179 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * Universal Interface for Intel High Definition Audio Codec
4 *
1d045db9 5 * HD audio interface patch for Realtek ALC codecs
1da177e4 6 *
df694daa
KY
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 9 * Takashi Iwai <tiwai@suse.de>
409a3e98 10 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
11 */
12
1da177e4
LT
13#include <linux/init.h>
14#include <linux/delay.h>
15#include <linux/slab.h>
16#include <linux/pci.h>
08fb0d0e 17#include <linux/dmi.h>
da155d5b 18#include <linux/module.h>
33f4acd3 19#include <linux/input.h>
87dc3648 20#include <linux/leds.h>
1da177e4 21#include <sound/core.h>
9ad0e496 22#include <sound/jack.h>
be57bfff 23#include <sound/hda_codec.h>
1da177e4 24#include "hda_local.h"
23d30f28 25#include "hda_auto_parser.h"
1835a0f9 26#include "hda_jack.h"
08c189f2 27#include "hda_generic.h"
d3dca026 28#include "hda_component.h"
1da177e4 29
cd63a5ff
TI
30/* keep halting ALC5505 DSP, for power saving */
31#define HALT_REALTEK_ALC5505
32
4a79ba34
TI
33/* extra amp-initialization sequence types */
34enum {
1c76aa5f 35 ALC_INIT_UNDEFINED,
4a79ba34
TI
36 ALC_INIT_NONE,
37 ALC_INIT_DEFAULT,
4a79ba34
TI
38};
39
73bdd597
DH
40enum {
41 ALC_HEADSET_MODE_UNKNOWN,
42 ALC_HEADSET_MODE_UNPLUGGED,
43 ALC_HEADSET_MODE_HEADSET,
44 ALC_HEADSET_MODE_MIC,
45 ALC_HEADSET_MODE_HEADPHONE,
46};
47
48enum {
49 ALC_HEADSET_TYPE_UNKNOWN,
50 ALC_HEADSET_TYPE_CTIA,
51 ALC_HEADSET_TYPE_OMTP,
52};
53
c7b60a89
HW
54enum {
55 ALC_KEY_MICMUTE_INDEX,
56};
57
da00c244
KY
58struct alc_customize_define {
59 unsigned int sku_cfg;
60 unsigned char port_connectivity;
61 unsigned char check_sum;
62 unsigned char customization;
63 unsigned char external_amp;
64 unsigned int enable_pcbeep:1;
65 unsigned int platform_type:1;
66 unsigned int swap:1;
67 unsigned int override:1;
90622917 68 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
69};
70
766538ac
TI
71struct alc_coef_led {
72 unsigned int idx;
73 unsigned int mask;
74 unsigned int on;
75 unsigned int off;
76};
77
1da177e4 78struct alc_spec {
08c189f2 79 struct hda_gen_spec gen; /* must be at head */
23d30f28 80
1da177e4 81 /* codec parameterization */
da00c244 82 struct alc_customize_define cdefine;
08c189f2 83 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 84
5579cd6f
TI
85 /* GPIO bits */
86 unsigned int gpio_mask;
87 unsigned int gpio_dir;
88 unsigned int gpio_data;
215c850c 89 bool gpio_write_delay; /* add a delay before writing gpio_data */
5579cd6f 90
8d3d1ece 91 /* mute LED for HP laptops, see vref_mute_led_set() */
08fb0d0e 92 int mute_led_polarity;
dbd13179 93 int micmute_led_polarity;
08fb0d0e 94 hda_nid_t mute_led_nid;
9c5dc3bf 95 hda_nid_t cap_mute_led_nid;
08fb0d0e 96
0f32fd19
TI
97 unsigned int gpio_mute_led_mask;
98 unsigned int gpio_mic_led_mask;
766538ac
TI
99 struct alc_coef_led mute_led_coef;
100 struct alc_coef_led mic_led_coef;
b837a9f5 101 struct mutex coef_mutex;
9f5c6faf 102
73bdd597
DH
103 hda_nid_t headset_mic_pin;
104 hda_nid_t headphone_mic_pin;
105 int current_headset_mode;
106 int current_headset_type;
107
ae6b813a
TI
108 /* hooks */
109 void (*init_hook)(struct hda_codec *codec);
83012a7c 110#ifdef CONFIG_PM
c97259df 111 void (*power_hook)(struct hda_codec *codec);
f5de24b0 112#endif
1c716153 113 void (*shutup)(struct hda_codec *codec);
d922b51d 114
4a79ba34 115 int init_amp;
d433a678 116 int codec_variant; /* flag for other variants */
97a26570
KY
117 unsigned int has_alc5505_dsp:1;
118 unsigned int no_depop_delay:1;
693abe11 119 unsigned int done_hp_init:1;
c0ca5ece 120 unsigned int no_shutup_pins:1;
d3ba58bb 121 unsigned int ultra_low_power:1;
476c02e0 122 unsigned int has_hs_key:1;
92666d45 123 unsigned int no_internal_mic_pin:1;
e64f14f4 124
2c3bf9ab
TI
125 /* for PLL fix */
126 hda_nid_t pll_nid;
127 unsigned int pll_coef_idx, pll_coef_bit;
1bb7e43e 128 unsigned int coef0;
33f4acd3 129 struct input_dev *kb_dev;
c7b60a89 130 u8 alc_mute_keycode_map[1];
d3dca026
LT
131
132 /* component binding */
133 struct component_match *match;
134 struct hda_component comps[HDA_MAX_COMPONENTS];
df694daa
KY
135};
136
f2a227cd
TI
137/*
138 * COEF access helper functions
139 */
140
2a845837
TI
141static void coef_mutex_lock(struct hda_codec *codec)
142{
143 struct alc_spec *spec = codec->spec;
144
145 snd_hda_power_up_pm(codec);
146 mutex_lock(&spec->coef_mutex);
147}
148
149static void coef_mutex_unlock(struct hda_codec *codec)
150{
151 struct alc_spec *spec = codec->spec;
152
153 mutex_unlock(&spec->coef_mutex);
154 snd_hda_power_down_pm(codec);
155}
156
b837a9f5
TI
157static int __alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
158 unsigned int coef_idx)
f2a227cd
TI
159{
160 unsigned int val;
161
162 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
163 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
164 return val;
165}
166
b837a9f5
TI
167static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
168 unsigned int coef_idx)
169{
b837a9f5
TI
170 unsigned int val;
171
2a845837 172 coef_mutex_lock(codec);
b837a9f5 173 val = __alc_read_coefex_idx(codec, nid, coef_idx);
2a845837 174 coef_mutex_unlock(codec);
b837a9f5
TI
175 return val;
176}
177
f2a227cd
TI
178#define alc_read_coef_idx(codec, coef_idx) \
179 alc_read_coefex_idx(codec, 0x20, coef_idx)
180
b837a9f5
TI
181static void __alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
182 unsigned int coef_idx, unsigned int coef_val)
f2a227cd
TI
183{
184 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
185 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
186}
187
b837a9f5
TI
188static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
189 unsigned int coef_idx, unsigned int coef_val)
190{
2a845837 191 coef_mutex_lock(codec);
b837a9f5 192 __alc_write_coefex_idx(codec, nid, coef_idx, coef_val);
2a845837 193 coef_mutex_unlock(codec);
b837a9f5
TI
194}
195
f2a227cd
TI
196#define alc_write_coef_idx(codec, coef_idx, coef_val) \
197 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
198
b837a9f5
TI
199static void __alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
200 unsigned int coef_idx, unsigned int mask,
201 unsigned int bits_set)
202{
203 unsigned int val = __alc_read_coefex_idx(codec, nid, coef_idx);
204
205 if (val != -1)
206 __alc_write_coefex_idx(codec, nid, coef_idx,
207 (val & ~mask) | bits_set);
208}
209
98b24883
TI
210static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
211 unsigned int coef_idx, unsigned int mask,
212 unsigned int bits_set)
213{
2a845837 214 coef_mutex_lock(codec);
b837a9f5 215 __alc_update_coefex_idx(codec, nid, coef_idx, mask, bits_set);
2a845837 216 coef_mutex_unlock(codec);
98b24883
TI
217}
218
219#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
220 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
221
f2a227cd
TI
222/* a special bypass for COEF 0; read the cached value at the second time */
223static unsigned int alc_get_coef0(struct hda_codec *codec)
224{
225 struct alc_spec *spec = codec->spec;
226
227 if (!spec->coef0)
228 spec->coef0 = alc_read_coef_idx(codec, 0);
229 return spec->coef0;
230}
231
54db6c39
TI
232/* coef writes/updates batch */
233struct coef_fw {
234 unsigned char nid;
235 unsigned char idx;
236 unsigned short mask;
237 unsigned short val;
238};
239
240#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
241 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
242#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
243#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
244#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
245
246static void alc_process_coef_fw(struct hda_codec *codec,
247 const struct coef_fw *fw)
248{
2a845837 249 coef_mutex_lock(codec);
54db6c39
TI
250 for (; fw->nid; fw++) {
251 if (fw->mask == (unsigned short)-1)
b837a9f5 252 __alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
54db6c39 253 else
b837a9f5
TI
254 __alc_update_coefex_idx(codec, fw->nid, fw->idx,
255 fw->mask, fw->val);
54db6c39 256 }
2a845837 257 coef_mutex_unlock(codec);
54db6c39
TI
258}
259
df694daa 260/*
1d045db9 261 * GPIO setup tables, used in initialization
df694daa 262 */
5579cd6f 263
bc9f98a9 264/* Enable GPIO mask and set output */
5579cd6f
TI
265static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
266{
267 struct alc_spec *spec = codec->spec;
bc9f98a9 268
5579cd6f
TI
269 spec->gpio_mask |= mask;
270 spec->gpio_dir |= mask;
271 spec->gpio_data |= mask;
272}
bc9f98a9 273
5579cd6f
TI
274static void alc_write_gpio_data(struct hda_codec *codec)
275{
276 struct alc_spec *spec = codec->spec;
277
278 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
279 spec->gpio_data);
280}
281
aaf312de
TI
282static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
283 bool on)
284{
285 struct alc_spec *spec = codec->spec;
286 unsigned int oldval = spec->gpio_data;
287
288 if (on)
289 spec->gpio_data |= mask;
290 else
291 spec->gpio_data &= ~mask;
292 if (oldval != spec->gpio_data)
293 alc_write_gpio_data(codec);
294}
295
5579cd6f
TI
296static void alc_write_gpio(struct hda_codec *codec)
297{
298 struct alc_spec *spec = codec->spec;
299
300 if (!spec->gpio_mask)
301 return;
302
303 snd_hda_codec_write(codec, codec->core.afg, 0,
304 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
305 snd_hda_codec_write(codec, codec->core.afg, 0,
306 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
215c850c
TI
307 if (spec->gpio_write_delay)
308 msleep(1);
5579cd6f
TI
309 alc_write_gpio_data(codec);
310}
311
312static void alc_fixup_gpio(struct hda_codec *codec, int action,
313 unsigned int mask)
314{
315 if (action == HDA_FIXUP_ACT_PRE_PROBE)
316 alc_setup_gpio(codec, mask);
317}
318
319static void alc_fixup_gpio1(struct hda_codec *codec,
320 const struct hda_fixup *fix, int action)
321{
322 alc_fixup_gpio(codec, action, 0x01);
323}
324
325static void alc_fixup_gpio2(struct hda_codec *codec,
326 const struct hda_fixup *fix, int action)
327{
328 alc_fixup_gpio(codec, action, 0x02);
329}
330
331static void alc_fixup_gpio3(struct hda_codec *codec,
332 const struct hda_fixup *fix, int action)
333{
334 alc_fixup_gpio(codec, action, 0x03);
335}
bdd148a3 336
ae065f1c
TI
337static void alc_fixup_gpio4(struct hda_codec *codec,
338 const struct hda_fixup *fix, int action)
339{
340 alc_fixup_gpio(codec, action, 0x04);
341}
342
8a503555
TI
343static void alc_fixup_micmute_led(struct hda_codec *codec,
344 const struct hda_fixup *fix, int action)
345{
e65bf997 346 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8a503555
TI
347 snd_hda_gen_add_micmute_led_cdev(codec, NULL);
348}
349
2c3bf9ab
TI
350/*
351 * Fix hardware PLL issue
352 * On some codecs, the analog PLL gating control must be off while
353 * the default value is 1.
354 */
355static void alc_fix_pll(struct hda_codec *codec)
356{
357 struct alc_spec *spec = codec->spec;
2c3bf9ab 358
98b24883
TI
359 if (spec->pll_nid)
360 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
361 1 << spec->pll_coef_bit, 0);
2c3bf9ab
TI
362}
363
364static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
365 unsigned int coef_idx, unsigned int coef_bit)
366{
367 struct alc_spec *spec = codec->spec;
368 spec->pll_nid = nid;
369 spec->pll_coef_idx = coef_idx;
370 spec->pll_coef_bit = coef_bit;
371 alc_fix_pll(codec);
372}
373
cf5a2279 374/* update the master volume per volume-knob's unsol event */
1a4f69d5
TI
375static void alc_update_knob_master(struct hda_codec *codec,
376 struct hda_jack_callback *jack)
cf5a2279
TI
377{
378 unsigned int val;
379 struct snd_kcontrol *kctl;
380 struct snd_ctl_elem_value *uctl;
381
382 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
383 if (!kctl)
384 return;
385 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
386 if (!uctl)
387 return;
2ebab40e 388 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
389 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
390 val &= HDA_AMP_VOLMASK;
391 uctl->value.integer.value[0] = val;
392 uctl->value.integer.value[1] = val;
393 kctl->put(kctl, uctl);
394 kfree(uctl);
395}
396
29adc4b9 397static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 398{
29adc4b9
DH
399 /* For some reason, the res given from ALC880 is broken.
400 Here we adjust it properly. */
401 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
402}
403
394c97f8
KY
404/* Change EAPD to verb control */
405static void alc_fill_eapd_coef(struct hda_codec *codec)
406{
407 int coef;
408
409 coef = alc_get_coef0(codec);
410
7639a06c 411 switch (codec->core.vendor_id) {
394c97f8
KY
412 case 0x10ec0262:
413 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
414 break;
415 case 0x10ec0267:
416 case 0x10ec0268:
417 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
418 break;
419 case 0x10ec0269:
420 if ((coef & 0x00f0) == 0x0010)
421 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
422 if ((coef & 0x00f0) == 0x0020)
423 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
424 if ((coef & 0x00f0) == 0x0030)
425 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
426 break;
427 case 0x10ec0280:
428 case 0x10ec0284:
429 case 0x10ec0290:
430 case 0x10ec0292:
431 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
432 break;
4231430d 433 case 0x10ec0225:
44be77c5
TI
434 case 0x10ec0295:
435 case 0x10ec0299:
436 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
c0dbbdad 437 fallthrough;
44be77c5 438 case 0x10ec0215:
1948fc06 439 case 0x10ec0230:
394c97f8 440 case 0x10ec0233:
ea04a1db 441 case 0x10ec0235:
c4473744 442 case 0x10ec0236:
7fbdcd83 443 case 0x10ec0245:
394c97f8 444 case 0x10ec0255:
c4473744 445 case 0x10ec0256:
f429e7e4 446 case 0x10ec0257:
394c97f8
KY
447 case 0x10ec0282:
448 case 0x10ec0283:
449 case 0x10ec0286:
450 case 0x10ec0288:
0a6f0600 451 case 0x10ec0285:
506b62c3 452 case 0x10ec0298:
0a6f0600 453 case 0x10ec0289:
1078bef0 454 case 0x10ec0300:
394c97f8
KY
455 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
456 break;
3aabf94c
KY
457 case 0x10ec0275:
458 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
459 break;
8822702f
HW
460 case 0x10ec0287:
461 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
462 alc_write_coef_idx(codec, 0x8, 0x4ab7);
463 break;
394c97f8
KY
464 case 0x10ec0293:
465 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
466 break;
dcd4f0db
KY
467 case 0x10ec0234:
468 case 0x10ec0274:
469 case 0x10ec0294:
6fbae35a
KY
470 case 0x10ec0700:
471 case 0x10ec0701:
472 case 0x10ec0703:
83629532 473 case 0x10ec0711:
dcd4f0db
KY
474 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
475 break;
394c97f8
KY
476 case 0x10ec0662:
477 if ((coef & 0x00f0) == 0x0030)
478 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
479 break;
480 case 0x10ec0272:
481 case 0x10ec0273:
482 case 0x10ec0663:
483 case 0x10ec0665:
484 case 0x10ec0670:
485 case 0x10ec0671:
486 case 0x10ec0672:
487 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
488 break;
9194a1eb 489 case 0x10ec0222:
f0778871
KY
490 case 0x10ec0623:
491 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
492 break;
394c97f8
KY
493 case 0x10ec0668:
494 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
495 break;
496 case 0x10ec0867:
497 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
498 break;
499 case 0x10ec0888:
500 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
501 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
502 break;
503 case 0x10ec0892:
e5782a5d 504 case 0x10ec0897:
394c97f8
KY
505 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
506 break;
507 case 0x10ec0899:
508 case 0x10ec0900:
6d9ffcff 509 case 0x10ec0b00:
65553b12 510 case 0x10ec1168:
a535ad57 511 case 0x10ec1220:
394c97f8
KY
512 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
513 break;
514 }
515}
516
f9423e7a
KY
517/* additional initialization for ALC888 variants */
518static void alc888_coef_init(struct hda_codec *codec)
519{
1df8874b
KY
520 switch (alc_get_coef0(codec) & 0x00f0) {
521 /* alc888-VA */
522 case 0x00:
523 /* alc888-VB */
524 case 0x10:
525 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
526 break;
527 }
87a8c370
JK
528}
529
3fb4a508
TI
530/* turn on/off EAPD control (only if available) */
531static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
532{
533 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
534 return;
535 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
536 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
537 on ? 2 : 0);
538}
539
691f1fcc
TI
540/* turn on/off EAPD controls of the codec */
541static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
542{
543 /* We currently only handle front, HP */
caf3c043 544 static const hda_nid_t pins[] = {
af95b414 545 0x0f, 0x10, 0x14, 0x15, 0x17, 0
39fa84e9 546 };
caf3c043 547 const hda_nid_t *p;
39fa84e9
TI
548 for (p = pins; *p; p++)
549 set_eapd(codec, *p, on);
691f1fcc
TI
550}
551
dad3197d
KY
552static int find_ext_mic_pin(struct hda_codec *codec);
553
554static void alc_headset_mic_no_shutup(struct hda_codec *codec)
555{
556 const struct hda_pincfg *pin;
557 int mic_pin = find_ext_mic_pin(codec);
558 int i;
559
560 /* don't shut up pins when unloading the driver; otherwise it breaks
561 * the default pin setup at the next load of the driver
562 */
563 if (codec->bus->shutdown)
564 return;
565
566 snd_array_for_each(&codec->init_pins, i, pin) {
567 /* use read here for syncing after issuing each verb */
568 if (pin->nid != mic_pin)
569 snd_hda_codec_read(codec, pin->nid, 0,
570 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
571 }
572
573 codec->pins_shutup = 1;
574}
575
c0ca5ece
TI
576static void alc_shutup_pins(struct hda_codec *codec)
577{
578 struct alc_spec *spec = codec->spec;
579
dad3197d 580 switch (codec->core.vendor_id) {
5aec9891
KY
581 case 0x10ec0236:
582 case 0x10ec0256:
66c5d718 583 case 0x10ec0283:
dad3197d
KY
584 case 0x10ec0286:
585 case 0x10ec0288:
586 case 0x10ec0298:
587 alc_headset_mic_no_shutup(codec);
588 break;
589 default:
590 if (!spec->no_shutup_pins)
591 snd_hda_shutup_pins(codec);
592 break;
593 }
c0ca5ece
TI
594}
595
1c716153 596/* generic shutup callback;
4ce8e6a5 597 * just turning off EAPD and a little pause for avoiding pop-noise
1c716153
TI
598 */
599static void alc_eapd_shutup(struct hda_codec *codec)
600{
97a26570
KY
601 struct alc_spec *spec = codec->spec;
602
1c716153 603 alc_auto_setup_eapd(codec, false);
97a26570
KY
604 if (!spec->no_depop_delay)
605 msleep(200);
c0ca5ece 606 alc_shutup_pins(codec);
1c716153
TI
607}
608
1d045db9 609/* generic EAPD initialization */
4a79ba34 610static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 611{
39fa84e9 612 alc_auto_setup_eapd(codec, true);
5579cd6f 613 alc_write_gpio(codec);
4a79ba34 614 switch (type) {
4a79ba34 615 case ALC_INIT_DEFAULT:
7639a06c 616 switch (codec->core.vendor_id) {
c9b58006 617 case 0x10ec0260:
98b24883 618 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
c9b58006 619 break;
c9b58006
KY
620 case 0x10ec0880:
621 case 0x10ec0882:
622 case 0x10ec0883:
623 case 0x10ec0885:
1df8874b 624 alc_update_coef_idx(codec, 7, 0, 0x2030);
c9b58006 625 break;
f9423e7a 626 case 0x10ec0888:
4a79ba34 627 alc888_coef_init(codec);
f9423e7a 628 break;
bc9f98a9 629 }
4a79ba34
TI
630 break;
631 }
632}
633
35a39f98
TI
634/* get a primary headphone pin if available */
635static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
636{
637 if (spec->gen.autocfg.hp_pins[0])
638 return spec->gen.autocfg.hp_pins[0];
639 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
640 return spec->gen.autocfg.line_out_pins[0];
641 return 0;
642}
08c189f2 643
1d045db9 644/*
08c189f2 645 * Realtek SSID verification
1d045db9 646 */
42cf0d01 647
08c189f2
TI
648/* Could be any non-zero and even value. When used as fixup, tells
649 * the driver to ignore any present sku defines.
650 */
651#define ALC_FIXUP_SKU_IGNORE (2)
1a1455de 652
08c189f2
TI
653static void alc_fixup_sku_ignore(struct hda_codec *codec,
654 const struct hda_fixup *fix, int action)
1a1455de 655{
1a1455de 656 struct alc_spec *spec = codec->spec;
08c189f2
TI
657 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
658 spec->cdefine.fixup = 1;
659 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1a1455de 660 }
1a1455de
TI
661}
662
b5c6611f
ML
663static void alc_fixup_no_depop_delay(struct hda_codec *codec,
664 const struct hda_fixup *fix, int action)
665{
666 struct alc_spec *spec = codec->spec;
667
84d2dc3e 668 if (action == HDA_FIXUP_ACT_PROBE) {
b5c6611f 669 spec->no_depop_delay = 1;
84d2dc3e
ML
670 codec->depop_delay = 0;
671 }
b5c6611f
ML
672}
673
08c189f2 674static int alc_auto_parse_customize_define(struct hda_codec *codec)
4a79ba34 675{
08c189f2
TI
676 unsigned int ass, tmp, i;
677 unsigned nid = 0;
4a79ba34
TI
678 struct alc_spec *spec = codec->spec;
679
08c189f2 680 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
4a79ba34 681
08c189f2
TI
682 if (spec->cdefine.fixup) {
683 ass = spec->cdefine.sku_cfg;
684 if (ass == ALC_FIXUP_SKU_IGNORE)
685 return -1;
686 goto do_sku;
bb35febd
TI
687 }
688
5100cd07
TI
689 if (!codec->bus->pci)
690 return -1;
7639a06c 691 ass = codec->core.subsystem_id & 0xffff;
08c189f2
TI
692 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
693 goto do_sku;
4a79ba34 694
08c189f2 695 nid = 0x1d;
7639a06c 696 if (codec->core.vendor_id == 0x10ec0260)
08c189f2
TI
697 nid = 0x17;
698 ass = snd_hda_codec_get_pincfg(codec, nid);
42cf0d01 699
08c189f2 700 if (!(ass & 1)) {
4e76a883 701 codec_info(codec, "%s: SKU not ready 0x%08x\n",
7639a06c 702 codec->core.chip_name, ass);
08c189f2 703 return -1;
42cf0d01
DH
704 }
705
08c189f2
TI
706 /* check sum */
707 tmp = 0;
708 for (i = 1; i < 16; i++) {
709 if ((ass >> i) & 1)
710 tmp++;
ae8a60a5 711 }
08c189f2
TI
712 if (((ass >> 16) & 0xf) != tmp)
713 return -1;
ae8a60a5 714
da00c244
KY
715 spec->cdefine.port_connectivity = ass >> 30;
716 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
717 spec->cdefine.check_sum = (ass >> 16) & 0xf;
718 spec->cdefine.customization = ass >> 8;
719do_sku:
720 spec->cdefine.sku_cfg = ass;
721 spec->cdefine.external_amp = (ass & 0x38) >> 3;
722 spec->cdefine.platform_type = (ass & 0x4) >> 2;
723 spec->cdefine.swap = (ass & 0x2) >> 1;
724 spec->cdefine.override = ass & 0x1;
725
4e76a883 726 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
da00c244 727 nid, spec->cdefine.sku_cfg);
4e76a883 728 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
da00c244 729 spec->cdefine.port_connectivity);
4e76a883
TI
730 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
731 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
732 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
733 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
734 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
735 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
736 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
da00c244
KY
737
738 return 0;
739}
740
08c189f2
TI
741/* return the position of NID in the list, or -1 if not found */
742static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
743{
744 int i;
745 for (i = 0; i < nums; i++)
746 if (list[i] == nid)
747 return i;
748 return -1;
749}
1d045db9 750/* return true if the given NID is found in the list */
3af9ee6b
TI
751static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
752{
21268961 753 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
754}
755
4a79ba34
TI
756/* check subsystem ID and set up device-specific initialization;
757 * return 1 if initialized, 0 if invalid SSID
758 */
759/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
760 * 31 ~ 16 : Manufacture ID
761 * 15 ~ 8 : SKU ID
762 * 7 ~ 0 : Assembly ID
763 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
764 */
58c57cfa 765static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34
TI
766{
767 unsigned int ass, tmp, i;
768 unsigned nid;
769 struct alc_spec *spec = codec->spec;
770
90622917
DH
771 if (spec->cdefine.fixup) {
772 ass = spec->cdefine.sku_cfg;
773 if (ass == ALC_FIXUP_SKU_IGNORE)
774 return 0;
775 goto do_sku;
776 }
777
7639a06c 778 ass = codec->core.subsystem_id & 0xffff;
5100cd07
TI
779 if (codec->bus->pci &&
780 ass != codec->bus->pci->subsystem_device && (ass & 1))
4a79ba34
TI
781 goto do_sku;
782
783 /* invalid SSID, check the special NID pin defcfg instead */
784 /*
def319f9 785 * 31~30 : port connectivity
4a79ba34
TI
786 * 29~21 : reserve
787 * 20 : PCBEEP input
788 * 19~16 : Check sum (15:1)
789 * 15~1 : Custom
790 * 0 : override
791 */
792 nid = 0x1d;
7639a06c 793 if (codec->core.vendor_id == 0x10ec0260)
4a79ba34
TI
794 nid = 0x17;
795 ass = snd_hda_codec_get_pincfg(codec, nid);
4e76a883
TI
796 codec_dbg(codec,
797 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 798 ass, nid);
6227cdce 799 if (!(ass & 1))
4a79ba34
TI
800 return 0;
801 if ((ass >> 30) != 1) /* no physical connection */
802 return 0;
803
804 /* check sum */
805 tmp = 0;
806 for (i = 1; i < 16; i++) {
807 if ((ass >> i) & 1)
808 tmp++;
809 }
810 if (((ass >> 16) & 0xf) != tmp)
811 return 0;
812do_sku:
4e76a883 813 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
7639a06c 814 ass & 0xffff, codec->core.vendor_id);
4a79ba34
TI
815 /*
816 * 0 : override
817 * 1 : Swap Jack
818 * 2 : 0 --> Desktop, 1 --> Laptop
819 * 3~5 : External Amplifier control
820 * 7~6 : Reserved
821 */
822 tmp = (ass & 0x38) >> 3; /* external Amp control */
1c76aa5f
TI
823 if (spec->init_amp == ALC_INIT_UNDEFINED) {
824 switch (tmp) {
825 case 1:
5579cd6f 826 alc_setup_gpio(codec, 0x01);
1c76aa5f
TI
827 break;
828 case 3:
5579cd6f 829 alc_setup_gpio(codec, 0x02);
1c76aa5f
TI
830 break;
831 case 7:
5579cd6f 832 alc_setup_gpio(codec, 0x03);
1c76aa5f
TI
833 break;
834 case 5:
835 default:
836 spec->init_amp = ALC_INIT_DEFAULT;
837 break;
838 }
bc9f98a9 839 }
ea1fb29a 840
8c427226 841 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
842 * when the external headphone out jack is plugged"
843 */
8c427226 844 if (!(ass & 0x8000))
4a79ba34 845 return 1;
c9b58006
KY
846 /*
847 * 10~8 : Jack location
848 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
849 * 14~13: Resvered
850 * 15 : 1 --> enable the function "Mute internal speaker
851 * when the external headphone out jack is plugged"
852 */
35a39f98 853 if (!alc_get_hp_pin(spec)) {
01d4825d 854 hda_nid_t nid;
c9b58006 855 tmp = (ass >> 11) & 0x3; /* HP to chassis */
58c57cfa 856 nid = ports[tmp];
08c189f2
TI
857 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
858 spec->gen.autocfg.line_outs))
3af9ee6b 859 return 1;
08c189f2 860 spec->gen.autocfg.hp_pins[0] = nid;
c9b58006 861 }
4a79ba34
TI
862 return 1;
863}
ea1fb29a 864
3e6179b8
TI
865/* Check the validity of ALC subsystem-id
866 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
867static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 868{
58c57cfa 869 if (!alc_subsystem_id(codec, ports)) {
4a79ba34 870 struct alc_spec *spec = codec->spec;
67791202
TI
871 if (spec->init_amp == ALC_INIT_UNDEFINED) {
872 codec_dbg(codec,
873 "realtek: Enable default setup for auto mode as fallback\n");
874 spec->init_amp = ALC_INIT_DEFAULT;
875 }
4a79ba34 876 }
21268961 877}
1a1455de 878
1d045db9 879/*
ef8ef5fb 880 */
f9e336f6 881
9d36a7dc
DH
882static void alc_fixup_inv_dmic(struct hda_codec *codec,
883 const struct hda_fixup *fix, int action)
125821ae
TI
884{
885 struct alc_spec *spec = codec->spec;
668d1e96 886
9d36a7dc 887 spec->gen.inv_dmic_split = 1;
6e72aa5f
TI
888}
889
e9edcee0 890
08c189f2 891static int alc_build_controls(struct hda_codec *codec)
1d045db9 892{
a5cb463a 893 int err;
e9427969 894
08c189f2
TI
895 err = snd_hda_gen_build_controls(codec);
896 if (err < 0)
897 return err;
1da177e4 898
1727a771 899 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
1c4a54b4 900 return 0;
a361d84b
KY
901}
902
a361d84b 903
df694daa 904/*
08c189f2 905 * Common callbacks
df694daa 906 */
a361d84b 907
c9af753f
TI
908static void alc_pre_init(struct hda_codec *codec)
909{
910 alc_fill_eapd_coef(codec);
911}
912
aeac1a0d
KY
913#define is_s3_resume(codec) \
914 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
c9af753f
TI
915#define is_s4_resume(codec) \
916 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
917
08c189f2 918static int alc_init(struct hda_codec *codec)
1d045db9
TI
919{
920 struct alc_spec *spec = codec->spec;
a361d84b 921
c9af753f
TI
922 /* hibernation resume needs the full chip initialization */
923 if (is_s4_resume(codec))
924 alc_pre_init(codec);
925
08c189f2
TI
926 if (spec->init_hook)
927 spec->init_hook(codec);
a361d84b 928
89781d08 929 spec->gen.skip_verbs = 1; /* applied in below */
607ca3bd 930 snd_hda_gen_init(codec);
08c189f2
TI
931 alc_fix_pll(codec);
932 alc_auto_init_amp(codec, spec->init_amp);
89781d08 933 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
3abf2f36 934
1727a771 935 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
a361d84b 936
1d045db9
TI
937 return 0;
938}
a361d84b 939
08c189f2 940static inline void alc_shutup(struct hda_codec *codec)
1d045db9
TI
941{
942 struct alc_spec *spec = codec->spec;
a361d84b 943
c7273bd6
TI
944 if (!snd_hda_get_bool_hint(codec, "shutup"))
945 return; /* disabled explicitly by hints */
946
08c189f2
TI
947 if (spec && spec->shutup)
948 spec->shutup(codec);
9bfb2844 949 else
c0ca5ece 950 alc_shutup_pins(codec);
1d045db9
TI
951}
952
8a02c0cc 953#define alc_free snd_hda_gen_free
2134ea4f 954
08c189f2
TI
955#ifdef CONFIG_PM
956static void alc_power_eapd(struct hda_codec *codec)
1d045db9 957{
08c189f2 958 alc_auto_setup_eapd(codec, false);
1d045db9 959}
2134ea4f 960
08c189f2 961static int alc_suspend(struct hda_codec *codec)
1d045db9
TI
962{
963 struct alc_spec *spec = codec->spec;
08c189f2
TI
964 alc_shutup(codec);
965 if (spec && spec->power_hook)
966 spec->power_hook(codec);
a361d84b
KY
967 return 0;
968}
08c189f2 969#endif
a361d84b 970
08c189f2
TI
971#ifdef CONFIG_PM
972static int alc_resume(struct hda_codec *codec)
1d045db9 973{
97a26570
KY
974 struct alc_spec *spec = codec->spec;
975
976 if (!spec->no_depop_delay)
977 msleep(150); /* to avoid pop noise */
08c189f2 978 codec->patch_ops.init(codec);
1a462be5 979 snd_hda_regmap_sync(codec);
08c189f2
TI
980 hda_call_check_power_status(codec, 0x01);
981 return 0;
1d045db9 982}
08c189f2 983#endif
f6a92248 984
1d045db9 985/*
1d045db9 986 */
08c189f2
TI
987static const struct hda_codec_ops alc_patch_ops = {
988 .build_controls = alc_build_controls,
989 .build_pcms = snd_hda_gen_build_pcms,
990 .init = alc_init,
991 .free = alc_free,
992 .unsol_event = snd_hda_jack_unsol_event,
993#ifdef CONFIG_PM
994 .resume = alc_resume,
08c189f2 995 .suspend = alc_suspend,
fce52a3b 996 .check_power_status = snd_hda_gen_check_power_status,
08c189f2 997#endif
08c189f2 998};
f6a92248 999
f53281e6 1000
ded255be 1001#define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
e01bf509 1002
e4770629 1003/*
4b016931 1004 * Rename codecs appropriately from COEF value or subvendor id
e4770629 1005 */
08c189f2
TI
1006struct alc_codec_rename_table {
1007 unsigned int vendor_id;
1008 unsigned short coef_mask;
1009 unsigned short coef_bits;
1010 const char *name;
1011};
84898e87 1012
4b016931
KY
1013struct alc_codec_rename_pci_table {
1014 unsigned int codec_vendor_id;
1015 unsigned short pci_subvendor;
1016 unsigned short pci_subdevice;
1017 const char *name;
1018};
1019
6b0f95c4 1020static const struct alc_codec_rename_table rename_tbl[] = {
e6e5f7ad 1021 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
08c189f2
TI
1022 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
1023 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
1024 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
1025 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
1026 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
1027 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
1028 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
1029 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
e6e5f7ad 1030 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
08c189f2
TI
1031 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
1032 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
1033 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
1034 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
1035 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
1036 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
1037 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
1038 { } /* terminator */
1039};
84898e87 1040
6b0f95c4 1041static const struct alc_codec_rename_pci_table rename_pci_tbl[] = {
4b016931
KY
1042 { 0x10ec0280, 0x1028, 0, "ALC3220" },
1043 { 0x10ec0282, 0x1028, 0, "ALC3221" },
1044 { 0x10ec0283, 0x1028, 0, "ALC3223" },
193177de 1045 { 0x10ec0288, 0x1028, 0, "ALC3263" },
4b016931 1046 { 0x10ec0292, 0x1028, 0, "ALC3226" },
193177de 1047 { 0x10ec0293, 0x1028, 0, "ALC3235" },
4b016931
KY
1048 { 0x10ec0255, 0x1028, 0, "ALC3234" },
1049 { 0x10ec0668, 0x1028, 0, "ALC3661" },
e6e5f7ad
KY
1050 { 0x10ec0275, 0x1028, 0, "ALC3260" },
1051 { 0x10ec0899, 0x1028, 0, "ALC3861" },
2c674fac 1052 { 0x10ec0298, 0x1028, 0, "ALC3266" },
736f20a7 1053 { 0x10ec0236, 0x1028, 0, "ALC3204" },
82324502 1054 { 0x10ec0256, 0x1028, 0, "ALC3246" },
4231430d 1055 { 0x10ec0225, 0x1028, 0, "ALC3253" },
7d727869 1056 { 0x10ec0295, 0x1028, 0, "ALC3254" },
28f1f9b2 1057 { 0x10ec0299, 0x1028, 0, "ALC3271" },
e6e5f7ad
KY
1058 { 0x10ec0670, 0x1025, 0, "ALC669X" },
1059 { 0x10ec0676, 0x1025, 0, "ALC679X" },
1060 { 0x10ec0282, 0x1043, 0, "ALC3229" },
1061 { 0x10ec0233, 0x1043, 0, "ALC3236" },
1062 { 0x10ec0280, 0x103c, 0, "ALC3228" },
1063 { 0x10ec0282, 0x103c, 0, "ALC3227" },
1064 { 0x10ec0286, 0x103c, 0, "ALC3242" },
1065 { 0x10ec0290, 0x103c, 0, "ALC3241" },
1066 { 0x10ec0668, 0x103c, 0, "ALC3662" },
1067 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
1068 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
4b016931
KY
1069 { } /* terminator */
1070};
1071
08c189f2 1072static int alc_codec_rename_from_preset(struct hda_codec *codec)
1d045db9 1073{
08c189f2 1074 const struct alc_codec_rename_table *p;
4b016931 1075 const struct alc_codec_rename_pci_table *q;
60db6b53 1076
08c189f2 1077 for (p = rename_tbl; p->vendor_id; p++) {
7639a06c 1078 if (p->vendor_id != codec->core.vendor_id)
08c189f2
TI
1079 continue;
1080 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1081 return alc_codec_rename(codec, p->name);
1d045db9 1082 }
4b016931 1083
5100cd07
TI
1084 if (!codec->bus->pci)
1085 return 0;
4b016931 1086 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
7639a06c 1087 if (q->codec_vendor_id != codec->core.vendor_id)
4b016931
KY
1088 continue;
1089 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1090 continue;
1091 if (!q->pci_subdevice ||
1092 q->pci_subdevice == codec->bus->pci->subsystem_device)
1093 return alc_codec_rename(codec, q->name);
1094 }
1095
08c189f2 1096 return 0;
1d045db9 1097}
f53281e6 1098
e4770629 1099
1d045db9
TI
1100/*
1101 * Digital-beep handlers
1102 */
1103#ifdef CONFIG_SND_HDA_INPUT_BEEP
fea80fae
TI
1104
1105/* additional beep mixers; private_value will be overwritten */
1106static const struct snd_kcontrol_new alc_beep_mixer[] = {
1107 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1108 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1109};
1110
1111/* set up and create beep controls */
1112static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1113 int idx, int dir)
1114{
1115 struct snd_kcontrol_new *knew;
1116 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1117 int i;
1118
1119 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1120 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1121 &alc_beep_mixer[i]);
1122 if (!knew)
1123 return -ENOMEM;
1124 knew->private_value = beep_amp;
1125 }
1126 return 0;
1127}
84898e87 1128
6317e5eb 1129static const struct snd_pci_quirk beep_allow_list[] = {
7110005e 1130 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
a4b7f21d 1131 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1d045db9 1132 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
8554ee40 1133 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1d045db9
TI
1134 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1135 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1136 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
78f8baf1 1137 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1d045db9 1138 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
6317e5eb 1139 /* denylist -- no beep available */
051c78af
TI
1140 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1141 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1d045db9 1142 {}
fe3eb0a7
KY
1143};
1144
1d045db9
TI
1145static inline int has_cdefine_beep(struct hda_codec *codec)
1146{
1147 struct alc_spec *spec = codec->spec;
1148 const struct snd_pci_quirk *q;
6317e5eb 1149 q = snd_pci_quirk_lookup(codec->bus->pci, beep_allow_list);
1d045db9
TI
1150 if (q)
1151 return q->value;
1152 return spec->cdefine.enable_pcbeep;
1153}
1154#else
fea80fae 1155#define set_beep_amp(spec, nid, idx, dir) 0
1d045db9
TI
1156#define has_cdefine_beep(codec) 0
1157#endif
84898e87 1158
1d045db9
TI
1159/* parse the BIOS configuration and set up the alc_spec */
1160/* return 1 if successful, 0 if the proper config is not found,
1161 * or a negative error code
1162 */
3e6179b8
TI
1163static int alc_parse_auto_config(struct hda_codec *codec,
1164 const hda_nid_t *ignore_nids,
1165 const hda_nid_t *ssid_nids)
1d045db9
TI
1166{
1167 struct alc_spec *spec = codec->spec;
08c189f2 1168 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1d045db9 1169 int err;
26f5df26 1170
53c334ad
TI
1171 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1172 spec->parse_flags);
1d045db9
TI
1173 if (err < 0)
1174 return err;
3e6179b8
TI
1175
1176 if (ssid_nids)
1177 alc_ssid_check(codec, ssid_nids);
64154835 1178
08c189f2
TI
1179 err = snd_hda_gen_parse_auto_config(codec, cfg);
1180 if (err < 0)
1181 return err;
070cff4c 1182
1d045db9 1183 return 1;
60db6b53 1184}
f6a92248 1185
3de95173
TI
1186/* common preparation job for alc_spec */
1187static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1188{
1189 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1190 int err;
1191
1192 if (!spec)
1193 return -ENOMEM;
1194 codec->spec = spec;
08c189f2
TI
1195 snd_hda_gen_spec_init(&spec->gen);
1196 spec->gen.mixer_nid = mixer_nid;
1197 spec->gen.own_eapd_ctl = 1;
1098b7c2 1198 codec->single_adc_amp = 1;
08c189f2
TI
1199 /* FIXME: do we need this for all Realtek codec models? */
1200 codec->spdif_status_reset = 1;
a6e7d0a4 1201 codec->forced_resume = 1;
225068ab 1202 codec->patch_ops = alc_patch_ops;
b837a9f5 1203 mutex_init(&spec->coef_mutex);
3de95173
TI
1204
1205 err = alc_codec_rename_from_preset(codec);
1206 if (err < 0) {
1207 kfree(spec);
1208 return err;
1209 }
1210 return 0;
1211}
1212
3e6179b8
TI
1213static int alc880_parse_auto_config(struct hda_codec *codec)
1214{
1215 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
7d7eb9ea 1216 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3e6179b8
TI
1217 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1218}
1219
ee3b2969
TI
1220/*
1221 * ALC880 fix-ups
1222 */
1223enum {
411225a0 1224 ALC880_FIXUP_GPIO1,
ee3b2969
TI
1225 ALC880_FIXUP_GPIO2,
1226 ALC880_FIXUP_MEDION_RIM,
dc6af52d 1227 ALC880_FIXUP_LG,
db8a38e5 1228 ALC880_FIXUP_LG_LW25,
f02aab5d 1229 ALC880_FIXUP_W810,
27e917f8 1230 ALC880_FIXUP_EAPD_COEF,
b9368f5c 1231 ALC880_FIXUP_TCL_S700,
cf5a2279
TI
1232 ALC880_FIXUP_VOL_KNOB,
1233 ALC880_FIXUP_FUJITSU,
ba533818 1234 ALC880_FIXUP_F1734,
817de92f 1235 ALC880_FIXUP_UNIWILL,
967b88c4 1236 ALC880_FIXUP_UNIWILL_DIG,
96e225f6 1237 ALC880_FIXUP_Z71V,
487a588d 1238 ALC880_FIXUP_ASUS_W5A,
67b6ec31
TI
1239 ALC880_FIXUP_3ST_BASE,
1240 ALC880_FIXUP_3ST,
1241 ALC880_FIXUP_3ST_DIG,
1242 ALC880_FIXUP_5ST_BASE,
1243 ALC880_FIXUP_5ST,
1244 ALC880_FIXUP_5ST_DIG,
1245 ALC880_FIXUP_6ST_BASE,
1246 ALC880_FIXUP_6ST,
1247 ALC880_FIXUP_6ST_DIG,
5397145f 1248 ALC880_FIXUP_6ST_AUTOMUTE,
ee3b2969
TI
1249};
1250
cf5a2279
TI
1251/* enable the volume-knob widget support on NID 0x21 */
1252static void alc880_fixup_vol_knob(struct hda_codec *codec,
1727a771 1253 const struct hda_fixup *fix, int action)
cf5a2279 1254{
1727a771 1255 if (action == HDA_FIXUP_ACT_PROBE)
62f949bf
TI
1256 snd_hda_jack_detect_enable_callback(codec, 0x21,
1257 alc_update_knob_master);
cf5a2279
TI
1258}
1259
1727a771 1260static const struct hda_fixup alc880_fixups[] = {
411225a0 1261 [ALC880_FIXUP_GPIO1] = {
5579cd6f
TI
1262 .type = HDA_FIXUP_FUNC,
1263 .v.func = alc_fixup_gpio1,
411225a0 1264 },
ee3b2969 1265 [ALC880_FIXUP_GPIO2] = {
5579cd6f
TI
1266 .type = HDA_FIXUP_FUNC,
1267 .v.func = alc_fixup_gpio2,
ee3b2969
TI
1268 },
1269 [ALC880_FIXUP_MEDION_RIM] = {
1727a771 1270 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1271 .v.verbs = (const struct hda_verb[]) {
1272 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1273 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1274 { }
1275 },
1276 .chained = true,
1277 .chain_id = ALC880_FIXUP_GPIO2,
1278 },
dc6af52d 1279 [ALC880_FIXUP_LG] = {
1727a771
TI
1280 .type = HDA_FIXUP_PINS,
1281 .v.pins = (const struct hda_pintbl[]) {
dc6af52d
TI
1282 /* disable bogus unused pins */
1283 { 0x16, 0x411111f0 },
1284 { 0x18, 0x411111f0 },
1285 { 0x1a, 0x411111f0 },
1286 { }
1287 }
1288 },
db8a38e5
TI
1289 [ALC880_FIXUP_LG_LW25] = {
1290 .type = HDA_FIXUP_PINS,
1291 .v.pins = (const struct hda_pintbl[]) {
1292 { 0x1a, 0x0181344f }, /* line-in */
1293 { 0x1b, 0x0321403f }, /* headphone */
1294 { }
1295 }
1296 },
f02aab5d 1297 [ALC880_FIXUP_W810] = {
1727a771
TI
1298 .type = HDA_FIXUP_PINS,
1299 .v.pins = (const struct hda_pintbl[]) {
f02aab5d
TI
1300 /* disable bogus unused pins */
1301 { 0x17, 0x411111f0 },
1302 { }
1303 },
1304 .chained = true,
1305 .chain_id = ALC880_FIXUP_GPIO2,
1306 },
27e917f8 1307 [ALC880_FIXUP_EAPD_COEF] = {
1727a771 1308 .type = HDA_FIXUP_VERBS,
27e917f8
TI
1309 .v.verbs = (const struct hda_verb[]) {
1310 /* change to EAPD mode */
1311 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1312 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1313 {}
1314 },
1315 },
b9368f5c 1316 [ALC880_FIXUP_TCL_S700] = {
1727a771 1317 .type = HDA_FIXUP_VERBS,
b9368f5c
TI
1318 .v.verbs = (const struct hda_verb[]) {
1319 /* change to EAPD mode */
1320 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1321 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1322 {}
1323 },
1324 .chained = true,
1325 .chain_id = ALC880_FIXUP_GPIO2,
1326 },
cf5a2279 1327 [ALC880_FIXUP_VOL_KNOB] = {
1727a771 1328 .type = HDA_FIXUP_FUNC,
cf5a2279
TI
1329 .v.func = alc880_fixup_vol_knob,
1330 },
1331 [ALC880_FIXUP_FUJITSU] = {
1332 /* override all pins as BIOS on old Amilo is broken */
1727a771
TI
1333 .type = HDA_FIXUP_PINS,
1334 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1335 { 0x14, 0x0121401f }, /* HP */
cf5a2279
TI
1336 { 0x15, 0x99030120 }, /* speaker */
1337 { 0x16, 0x99030130 }, /* bass speaker */
1338 { 0x17, 0x411111f0 }, /* N/A */
1339 { 0x18, 0x411111f0 }, /* N/A */
1340 { 0x19, 0x01a19950 }, /* mic-in */
1341 { 0x1a, 0x411111f0 }, /* N/A */
1342 { 0x1b, 0x411111f0 }, /* N/A */
1343 { 0x1c, 0x411111f0 }, /* N/A */
1344 { 0x1d, 0x411111f0 }, /* N/A */
1345 { 0x1e, 0x01454140 }, /* SPDIF out */
1346 { }
1347 },
1348 .chained = true,
1349 .chain_id = ALC880_FIXUP_VOL_KNOB,
1350 },
ba533818
TI
1351 [ALC880_FIXUP_F1734] = {
1352 /* almost compatible with FUJITSU, but no bass and SPDIF */
1727a771
TI
1353 .type = HDA_FIXUP_PINS,
1354 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1355 { 0x14, 0x0121401f }, /* HP */
ba533818
TI
1356 { 0x15, 0x99030120 }, /* speaker */
1357 { 0x16, 0x411111f0 }, /* N/A */
1358 { 0x17, 0x411111f0 }, /* N/A */
1359 { 0x18, 0x411111f0 }, /* N/A */
1360 { 0x19, 0x01a19950 }, /* mic-in */
1361 { 0x1a, 0x411111f0 }, /* N/A */
1362 { 0x1b, 0x411111f0 }, /* N/A */
1363 { 0x1c, 0x411111f0 }, /* N/A */
1364 { 0x1d, 0x411111f0 }, /* N/A */
1365 { 0x1e, 0x411111f0 }, /* N/A */
1366 { }
1367 },
1368 .chained = true,
1369 .chain_id = ALC880_FIXUP_VOL_KNOB,
1370 },
817de92f
TI
1371 [ALC880_FIXUP_UNIWILL] = {
1372 /* need to fix HP and speaker pins to be parsed correctly */
1727a771
TI
1373 .type = HDA_FIXUP_PINS,
1374 .v.pins = (const struct hda_pintbl[]) {
817de92f
TI
1375 { 0x14, 0x0121411f }, /* HP */
1376 { 0x15, 0x99030120 }, /* speaker */
1377 { 0x16, 0x99030130 }, /* bass speaker */
1378 { }
1379 },
1380 },
967b88c4 1381 [ALC880_FIXUP_UNIWILL_DIG] = {
1727a771
TI
1382 .type = HDA_FIXUP_PINS,
1383 .v.pins = (const struct hda_pintbl[]) {
967b88c4
TI
1384 /* disable bogus unused pins */
1385 { 0x17, 0x411111f0 },
1386 { 0x19, 0x411111f0 },
1387 { 0x1b, 0x411111f0 },
1388 { 0x1f, 0x411111f0 },
1389 { }
1390 }
1391 },
96e225f6 1392 [ALC880_FIXUP_Z71V] = {
1727a771
TI
1393 .type = HDA_FIXUP_PINS,
1394 .v.pins = (const struct hda_pintbl[]) {
96e225f6
TI
1395 /* set up the whole pins as BIOS is utterly broken */
1396 { 0x14, 0x99030120 }, /* speaker */
1397 { 0x15, 0x0121411f }, /* HP */
1398 { 0x16, 0x411111f0 }, /* N/A */
1399 { 0x17, 0x411111f0 }, /* N/A */
1400 { 0x18, 0x01a19950 }, /* mic-in */
1401 { 0x19, 0x411111f0 }, /* N/A */
1402 { 0x1a, 0x01813031 }, /* line-in */
1403 { 0x1b, 0x411111f0 }, /* N/A */
1404 { 0x1c, 0x411111f0 }, /* N/A */
1405 { 0x1d, 0x411111f0 }, /* N/A */
1406 { 0x1e, 0x0144111e }, /* SPDIF */
1407 { }
1408 }
1409 },
487a588d
TI
1410 [ALC880_FIXUP_ASUS_W5A] = {
1411 .type = HDA_FIXUP_PINS,
1412 .v.pins = (const struct hda_pintbl[]) {
1413 /* set up the whole pins as BIOS is utterly broken */
1414 { 0x14, 0x0121411f }, /* HP */
1415 { 0x15, 0x411111f0 }, /* N/A */
1416 { 0x16, 0x411111f0 }, /* N/A */
1417 { 0x17, 0x411111f0 }, /* N/A */
1418 { 0x18, 0x90a60160 }, /* mic */
1419 { 0x19, 0x411111f0 }, /* N/A */
1420 { 0x1a, 0x411111f0 }, /* N/A */
1421 { 0x1b, 0x411111f0 }, /* N/A */
1422 { 0x1c, 0x411111f0 }, /* N/A */
1423 { 0x1d, 0x411111f0 }, /* N/A */
1424 { 0x1e, 0xb743111e }, /* SPDIF out */
1425 { }
1426 },
1427 .chained = true,
1428 .chain_id = ALC880_FIXUP_GPIO1,
1429 },
67b6ec31 1430 [ALC880_FIXUP_3ST_BASE] = {
1727a771
TI
1431 .type = HDA_FIXUP_PINS,
1432 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1433 { 0x14, 0x01014010 }, /* line-out */
1434 { 0x15, 0x411111f0 }, /* N/A */
1435 { 0x16, 0x411111f0 }, /* N/A */
1436 { 0x17, 0x411111f0 }, /* N/A */
1437 { 0x18, 0x01a19c30 }, /* mic-in */
1438 { 0x19, 0x0121411f }, /* HP */
1439 { 0x1a, 0x01813031 }, /* line-in */
1440 { 0x1b, 0x02a19c40 }, /* front-mic */
1441 { 0x1c, 0x411111f0 }, /* N/A */
1442 { 0x1d, 0x411111f0 }, /* N/A */
1443 /* 0x1e is filled in below */
1444 { 0x1f, 0x411111f0 }, /* N/A */
1445 { }
1446 }
1447 },
1448 [ALC880_FIXUP_3ST] = {
1727a771
TI
1449 .type = HDA_FIXUP_PINS,
1450 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1451 { 0x1e, 0x411111f0 }, /* N/A */
1452 { }
1453 },
1454 .chained = true,
1455 .chain_id = ALC880_FIXUP_3ST_BASE,
1456 },
1457 [ALC880_FIXUP_3ST_DIG] = {
1727a771
TI
1458 .type = HDA_FIXUP_PINS,
1459 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1460 { 0x1e, 0x0144111e }, /* SPDIF */
1461 { }
1462 },
1463 .chained = true,
1464 .chain_id = ALC880_FIXUP_3ST_BASE,
1465 },
1466 [ALC880_FIXUP_5ST_BASE] = {
1727a771
TI
1467 .type = HDA_FIXUP_PINS,
1468 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1469 { 0x14, 0x01014010 }, /* front */
1470 { 0x15, 0x411111f0 }, /* N/A */
1471 { 0x16, 0x01011411 }, /* CLFE */
1472 { 0x17, 0x01016412 }, /* surr */
1473 { 0x18, 0x01a19c30 }, /* mic-in */
1474 { 0x19, 0x0121411f }, /* HP */
1475 { 0x1a, 0x01813031 }, /* line-in */
1476 { 0x1b, 0x02a19c40 }, /* front-mic */
1477 { 0x1c, 0x411111f0 }, /* N/A */
1478 { 0x1d, 0x411111f0 }, /* N/A */
1479 /* 0x1e is filled in below */
1480 { 0x1f, 0x411111f0 }, /* N/A */
1481 { }
1482 }
1483 },
1484 [ALC880_FIXUP_5ST] = {
1727a771
TI
1485 .type = HDA_FIXUP_PINS,
1486 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1487 { 0x1e, 0x411111f0 }, /* N/A */
1488 { }
1489 },
1490 .chained = true,
1491 .chain_id = ALC880_FIXUP_5ST_BASE,
1492 },
1493 [ALC880_FIXUP_5ST_DIG] = {
1727a771
TI
1494 .type = HDA_FIXUP_PINS,
1495 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1496 { 0x1e, 0x0144111e }, /* SPDIF */
1497 { }
1498 },
1499 .chained = true,
1500 .chain_id = ALC880_FIXUP_5ST_BASE,
1501 },
1502 [ALC880_FIXUP_6ST_BASE] = {
1727a771
TI
1503 .type = HDA_FIXUP_PINS,
1504 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1505 { 0x14, 0x01014010 }, /* front */
1506 { 0x15, 0x01016412 }, /* surr */
1507 { 0x16, 0x01011411 }, /* CLFE */
1508 { 0x17, 0x01012414 }, /* side */
1509 { 0x18, 0x01a19c30 }, /* mic-in */
1510 { 0x19, 0x02a19c40 }, /* front-mic */
1511 { 0x1a, 0x01813031 }, /* line-in */
1512 { 0x1b, 0x0121411f }, /* HP */
1513 { 0x1c, 0x411111f0 }, /* N/A */
1514 { 0x1d, 0x411111f0 }, /* N/A */
1515 /* 0x1e is filled in below */
1516 { 0x1f, 0x411111f0 }, /* N/A */
1517 { }
1518 }
1519 },
1520 [ALC880_FIXUP_6ST] = {
1727a771
TI
1521 .type = HDA_FIXUP_PINS,
1522 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1523 { 0x1e, 0x411111f0 }, /* N/A */
1524 { }
1525 },
1526 .chained = true,
1527 .chain_id = ALC880_FIXUP_6ST_BASE,
1528 },
1529 [ALC880_FIXUP_6ST_DIG] = {
1727a771
TI
1530 .type = HDA_FIXUP_PINS,
1531 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1532 { 0x1e, 0x0144111e }, /* SPDIF */
1533 { }
1534 },
1535 .chained = true,
1536 .chain_id = ALC880_FIXUP_6ST_BASE,
1537 },
5397145f
TI
1538 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1539 .type = HDA_FIXUP_PINS,
1540 .v.pins = (const struct hda_pintbl[]) {
1541 { 0x1b, 0x0121401f }, /* HP with jack detect */
1542 { }
1543 },
1544 .chained_before = true,
1545 .chain_id = ALC880_FIXUP_6ST_BASE,
1546 },
ee3b2969
TI
1547};
1548
1549static const struct snd_pci_quirk alc880_fixup_tbl[] = {
f02aab5d 1550 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
487a588d 1551 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
96e225f6 1552 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
29e3fdcc 1553 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
6538de03 1554 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
29e3fdcc 1555 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
27e917f8 1556 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
967b88c4 1557 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
ba533818 1558 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
817de92f 1559 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
7833c7e8 1560 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
f02aab5d 1561 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
ee3b2969 1562 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
5397145f 1563 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
a161574e 1564 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
cf5a2279 1565 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
ba533818 1566 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
cf5a2279 1567 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
dc6af52d
TI
1568 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1569 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1570 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
db8a38e5 1571 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
b9368f5c 1572 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
67b6ec31
TI
1573
1574 /* Below is the copied entries from alc880_quirks.c.
1575 * It's not quite sure whether BIOS sets the correct pin-config table
1576 * on these machines, thus they are kept to be compatible with
1577 * the old static quirks. Once when it's confirmed to work without
1578 * these overrides, it'd be better to remove.
1579 */
1580 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1581 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1582 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1583 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1584 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1585 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1586 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1587 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1588 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1589 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1590 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1591 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1592 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1593 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1594 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1595 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1596 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1597 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1598 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1599 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1600 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1601 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1602 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1603 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1604 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1605 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1606 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1607 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1608 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1609 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1610 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1611 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1612 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1613 /* default Intel */
1614 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1615 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1616 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1617 {}
1618};
1619
1727a771 1620static const struct hda_model_fixup alc880_fixup_models[] = {
67b6ec31
TI
1621 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1622 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1623 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1624 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1625 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1626 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
5397145f 1627 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
ee3b2969
TI
1628 {}
1629};
1630
1631
1d045db9
TI
1632/*
1633 * OK, here we have finally the patch for ALC880
1634 */
1d045db9 1635static int patch_alc880(struct hda_codec *codec)
60db6b53 1636{
1d045db9 1637 struct alc_spec *spec;
1d045db9 1638 int err;
f6a92248 1639
3de95173
TI
1640 err = alc_alloc_spec(codec, 0x0b);
1641 if (err < 0)
1642 return err;
64154835 1643
3de95173 1644 spec = codec->spec;
08c189f2 1645 spec->gen.need_dac_fix = 1;
7504b6cd 1646 spec->gen.beep_nid = 0x01;
f53281e6 1647
225068ab
TI
1648 codec->patch_ops.unsol_event = alc880_unsol_event;
1649
c9af753f
TI
1650 alc_pre_init(codec);
1651
1727a771 1652 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
67b6ec31 1653 alc880_fixups);
1727a771 1654 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ee3b2969 1655
67b6ec31
TI
1656 /* automatic parse from the BIOS config */
1657 err = alc880_parse_auto_config(codec);
1658 if (err < 0)
1659 goto error;
fe3eb0a7 1660
fea80fae
TI
1661 if (!spec->gen.no_analog) {
1662 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1663 if (err < 0)
1664 goto error;
1665 }
f53281e6 1666
1727a771 1667 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1668
1d045db9 1669 return 0;
e16fb6d1
TI
1670
1671 error:
1672 alc_free(codec);
1673 return err;
226b1ec8
KY
1674}
1675
1d045db9 1676
60db6b53 1677/*
1d045db9 1678 * ALC260 support
60db6b53 1679 */
1d045db9 1680static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 1681{
1d045db9 1682 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
1683 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1684 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
1685}
1686
1d045db9
TI
1687/*
1688 * Pin config fixes
1689 */
1690enum {
ca8f0424
TI
1691 ALC260_FIXUP_HP_DC5750,
1692 ALC260_FIXUP_HP_PIN_0F,
1693 ALC260_FIXUP_COEF,
15317ab2 1694 ALC260_FIXUP_GPIO1,
20f7d928
TI
1695 ALC260_FIXUP_GPIO1_TOGGLE,
1696 ALC260_FIXUP_REPLACER,
0a1c4fa2 1697 ALC260_FIXUP_HP_B1900,
118cb4a4 1698 ALC260_FIXUP_KN1,
39aedee7 1699 ALC260_FIXUP_FSC_S7020,
5ebd3bbd 1700 ALC260_FIXUP_FSC_S7020_JWSE,
d08c5ef2 1701 ALC260_FIXUP_VAIO_PINS,
1d045db9
TI
1702};
1703
20f7d928
TI
1704static void alc260_gpio1_automute(struct hda_codec *codec)
1705{
1706 struct alc_spec *spec = codec->spec;
aaf312de
TI
1707
1708 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
20f7d928
TI
1709}
1710
1711static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1727a771 1712 const struct hda_fixup *fix, int action)
20f7d928
TI
1713{
1714 struct alc_spec *spec = codec->spec;
1727a771 1715 if (action == HDA_FIXUP_ACT_PROBE) {
20f7d928
TI
1716 /* although the machine has only one output pin, we need to
1717 * toggle GPIO1 according to the jack state
1718 */
08c189f2
TI
1719 spec->gen.automute_hook = alc260_gpio1_automute;
1720 spec->gen.detect_hp = 1;
1721 spec->gen.automute_speaker = 1;
1722 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
62f949bf 1723 snd_hda_jack_detect_enable_callback(codec, 0x0f,
08c189f2 1724 snd_hda_gen_hp_automute);
5579cd6f 1725 alc_setup_gpio(codec, 0x01);
20f7d928
TI
1726 }
1727}
1728
118cb4a4 1729static void alc260_fixup_kn1(struct hda_codec *codec,
1727a771 1730 const struct hda_fixup *fix, int action)
118cb4a4
TI
1731{
1732 struct alc_spec *spec = codec->spec;
1727a771 1733 static const struct hda_pintbl pincfgs[] = {
118cb4a4
TI
1734 { 0x0f, 0x02214000 }, /* HP/speaker */
1735 { 0x12, 0x90a60160 }, /* int mic */
1736 { 0x13, 0x02a19000 }, /* ext mic */
1737 { 0x18, 0x01446000 }, /* SPDIF out */
1738 /* disable bogus I/O pins */
1739 { 0x10, 0x411111f0 },
1740 { 0x11, 0x411111f0 },
1741 { 0x14, 0x411111f0 },
1742 { 0x15, 0x411111f0 },
1743 { 0x16, 0x411111f0 },
1744 { 0x17, 0x411111f0 },
1745 { 0x19, 0x411111f0 },
1746 { }
1747 };
1748
1749 switch (action) {
1727a771
TI
1750 case HDA_FIXUP_ACT_PRE_PROBE:
1751 snd_hda_apply_pincfgs(codec, pincfgs);
118cb4a4
TI
1752 spec->init_amp = ALC_INIT_NONE;
1753 break;
1754 }
1755}
1756
39aedee7
TI
1757static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1758 const struct hda_fixup *fix, int action)
1759{
1760 struct alc_spec *spec = codec->spec;
1c76aa5f 1761 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5ebd3bbd
TI
1762 spec->init_amp = ALC_INIT_NONE;
1763}
39aedee7 1764
5ebd3bbd
TI
1765static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1766 const struct hda_fixup *fix, int action)
1767{
1768 struct alc_spec *spec = codec->spec;
1769 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
f811c3cf 1770 spec->gen.add_jack_modes = 1;
5ebd3bbd 1771 spec->gen.hp_mic = 1;
e6e0ee50 1772 }
39aedee7
TI
1773}
1774
1727a771 1775static const struct hda_fixup alc260_fixups[] = {
ca8f0424 1776 [ALC260_FIXUP_HP_DC5750] = {
1727a771
TI
1777 .type = HDA_FIXUP_PINS,
1778 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1779 { 0x11, 0x90130110 }, /* speaker */
1780 { }
1781 }
1782 },
ca8f0424 1783 [ALC260_FIXUP_HP_PIN_0F] = {
1727a771
TI
1784 .type = HDA_FIXUP_PINS,
1785 .v.pins = (const struct hda_pintbl[]) {
ca8f0424
TI
1786 { 0x0f, 0x01214000 }, /* HP */
1787 { }
1788 }
1789 },
1790 [ALC260_FIXUP_COEF] = {
1727a771 1791 .type = HDA_FIXUP_VERBS,
ca8f0424 1792 .v.verbs = (const struct hda_verb[]) {
e30cf2d2
RM
1793 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1794 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
ca8f0424
TI
1795 { }
1796 },
ca8f0424 1797 },
15317ab2 1798 [ALC260_FIXUP_GPIO1] = {
5579cd6f
TI
1799 .type = HDA_FIXUP_FUNC,
1800 .v.func = alc_fixup_gpio1,
15317ab2 1801 },
20f7d928 1802 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727a771 1803 .type = HDA_FIXUP_FUNC,
20f7d928
TI
1804 .v.func = alc260_fixup_gpio1_toggle,
1805 .chained = true,
1806 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1807 },
1808 [ALC260_FIXUP_REPLACER] = {
1727a771 1809 .type = HDA_FIXUP_VERBS,
20f7d928 1810 .v.verbs = (const struct hda_verb[]) {
192a98e2
TI
1811 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1812 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
20f7d928
TI
1813 { }
1814 },
1815 .chained = true,
1816 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1817 },
0a1c4fa2 1818 [ALC260_FIXUP_HP_B1900] = {
1727a771 1819 .type = HDA_FIXUP_FUNC,
0a1c4fa2
TI
1820 .v.func = alc260_fixup_gpio1_toggle,
1821 .chained = true,
1822 .chain_id = ALC260_FIXUP_COEF,
118cb4a4
TI
1823 },
1824 [ALC260_FIXUP_KN1] = {
1727a771 1825 .type = HDA_FIXUP_FUNC,
118cb4a4
TI
1826 .v.func = alc260_fixup_kn1,
1827 },
39aedee7
TI
1828 [ALC260_FIXUP_FSC_S7020] = {
1829 .type = HDA_FIXUP_FUNC,
1830 .v.func = alc260_fixup_fsc_s7020,
1831 },
5ebd3bbd
TI
1832 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1833 .type = HDA_FIXUP_FUNC,
1834 .v.func = alc260_fixup_fsc_s7020_jwse,
1835 .chained = true,
1836 .chain_id = ALC260_FIXUP_FSC_S7020,
1837 },
d08c5ef2
TI
1838 [ALC260_FIXUP_VAIO_PINS] = {
1839 .type = HDA_FIXUP_PINS,
1840 .v.pins = (const struct hda_pintbl[]) {
1841 /* Pin configs are missing completely on some VAIOs */
1842 { 0x0f, 0x01211020 },
1843 { 0x10, 0x0001003f },
1844 { 0x11, 0x411111f0 },
1845 { 0x12, 0x01a15930 },
1846 { 0x13, 0x411111f0 },
1847 { 0x14, 0x411111f0 },
1848 { 0x15, 0x411111f0 },
1849 { 0x16, 0x411111f0 },
1850 { 0x17, 0x411111f0 },
1851 { 0x18, 0x411111f0 },
1852 { 0x19, 0x411111f0 },
1853 { }
1854 }
1855 },
1d045db9
TI
1856};
1857
1858static const struct snd_pci_quirk alc260_fixup_tbl[] = {
15317ab2 1859 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
ca8f0424 1860 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
15317ab2 1861 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
ca8f0424 1862 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
0a1c4fa2 1863 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
d08c5ef2 1864 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
0f5a5b85 1865 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
39aedee7 1866 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
b1f58085 1867 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
118cb4a4 1868 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
20f7d928 1869 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
ca8f0424 1870 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1d045db9
TI
1871 {}
1872};
1873
5ebd3bbd
TI
1874static const struct hda_model_fixup alc260_fixup_models[] = {
1875 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1876 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1877 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1878 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1879 {}
1880};
1881
1d045db9
TI
1882/*
1883 */
1d045db9 1884static int patch_alc260(struct hda_codec *codec)
977ddd6b 1885{
1d045db9 1886 struct alc_spec *spec;
c3c2c9e7 1887 int err;
1d045db9 1888
3de95173
TI
1889 err = alc_alloc_spec(codec, 0x07);
1890 if (err < 0)
1891 return err;
1d045db9 1892
3de95173 1893 spec = codec->spec;
ea46c3c8
TI
1894 /* as quite a few machines require HP amp for speaker outputs,
1895 * it's easier to enable it unconditionally; even if it's unneeded,
1896 * it's almost harmless.
1897 */
1898 spec->gen.prefer_hp_amp = 1;
7504b6cd 1899 spec->gen.beep_nid = 0x01;
1d045db9 1900
225068ab
TI
1901 spec->shutup = alc_eapd_shutup;
1902
c9af753f
TI
1903 alc_pre_init(codec);
1904
5ebd3bbd
TI
1905 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1906 alc260_fixups);
1727a771 1907 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
977ddd6b 1908
c3c2c9e7
TI
1909 /* automatic parse from the BIOS config */
1910 err = alc260_parse_auto_config(codec);
1911 if (err < 0)
1912 goto error;
977ddd6b 1913
fea80fae
TI
1914 if (!spec->gen.no_analog) {
1915 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1916 if (err < 0)
1917 goto error;
1918 }
977ddd6b 1919
1727a771 1920 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1921
1d045db9 1922 return 0;
e16fb6d1
TI
1923
1924 error:
1925 alc_free(codec);
1926 return err;
6981d184
TI
1927}
1928
1d045db9
TI
1929
1930/*
1931 * ALC882/883/885/888/889 support
1932 *
1933 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1934 * configuration. Each pin widget can choose any input DACs and a mixer.
1935 * Each ADC is connected from a mixer of all inputs. This makes possible
1936 * 6-channel independent captures.
1937 *
1938 * In addition, an independent DAC for the multi-playback (not used in this
1939 * driver yet).
1940 */
1d045db9
TI
1941
1942/*
1943 * Pin config fixes
1944 */
ff818c24 1945enum {
5c0ebfbe
TI
1946 ALC882_FIXUP_ABIT_AW9D_MAX,
1947 ALC882_FIXUP_LENOVO_Y530,
1948 ALC882_FIXUP_PB_M5210,
1949 ALC882_FIXUP_ACER_ASPIRE_7736,
1950 ALC882_FIXUP_ASUS_W90V,
8f239214 1951 ALC889_FIXUP_CD,
b2c53e20 1952 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
5c0ebfbe 1953 ALC889_FIXUP_VAIO_TT,
0e7cc2e7 1954 ALC888_FIXUP_EEE1601,
4841b8e6 1955 ALC886_FIXUP_EAPD,
177943a3 1956 ALC882_FIXUP_EAPD,
7a6069bf 1957 ALC883_FIXUP_EAPD,
8812c4f9 1958 ALC883_FIXUP_ACER_EAPD,
1a97b7f2
TI
1959 ALC882_FIXUP_GPIO1,
1960 ALC882_FIXUP_GPIO2,
eb844d51 1961 ALC882_FIXUP_GPIO3,
68ef0561
TI
1962 ALC889_FIXUP_COEF,
1963 ALC882_FIXUP_ASUS_W2JC,
c3e837bb
TI
1964 ALC882_FIXUP_ACER_ASPIRE_4930G,
1965 ALC882_FIXUP_ACER_ASPIRE_8930G,
1966 ALC882_FIXUP_ASPIRE_8930G_VERBS,
5671087f 1967 ALC885_FIXUP_MACPRO_GPIO,
02a237b2 1968 ALC889_FIXUP_DAC_ROUTE,
1a97b7f2
TI
1969 ALC889_FIXUP_MBP_VREF,
1970 ALC889_FIXUP_IMAC91_VREF,
e7729a41 1971 ALC889_FIXUP_MBA11_VREF,
0756f09c 1972 ALC889_FIXUP_MBA21_VREF,
c20f31ec 1973 ALC889_FIXUP_MP11_VREF,
9f660a1c 1974 ALC889_FIXUP_MP41_VREF,
6e72aa5f 1975 ALC882_FIXUP_INV_DMIC,
e427c237 1976 ALC882_FIXUP_NO_PRIMARY_HP,
1f0bbf03 1977 ALC887_FIXUP_ASUS_BASS,
eb9ca3ab 1978 ALC887_FIXUP_BASS_CHMAP,
7beb3a6e 1979 ALC1220_FIXUP_GB_DUAL_CODECS,
c1933008 1980 ALC1220_FIXUP_GB_X570,
0202f5cd 1981 ALC1220_FIXUP_CLEVO_P950,
80690a27
RS
1982 ALC1220_FIXUP_CLEVO_PB51ED,
1983 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
ca184355
JHP
1984 ALC887_FIXUP_ASUS_AUDIO,
1985 ALC887_FIXUP_ASUS_HMIC,
ff818c24
TI
1986};
1987
68ef0561 1988static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1989 const struct hda_fixup *fix, int action)
68ef0561 1990{
1727a771 1991 if (action != HDA_FIXUP_ACT_INIT)
68ef0561 1992 return;
1df8874b 1993 alc_update_coef_idx(codec, 7, 0, 0x2030);
68ef0561
TI
1994}
1995
5671087f
TI
1996/* set up GPIO at initialization */
1997static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 1998 const struct hda_fixup *fix, int action)
5671087f 1999{
215c850c
TI
2000 struct alc_spec *spec = codec->spec;
2001
2002 spec->gpio_write_delay = true;
2003 alc_fixup_gpio3(codec, fix, action);
5671087f
TI
2004}
2005
02a237b2
TI
2006/* Fix the connection of some pins for ALC889:
2007 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
2008 * work correctly (bko#42740)
2009 */
2010static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 2011 const struct hda_fixup *fix, int action)
02a237b2 2012{
1727a771 2013 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 2014 /* fake the connections during parsing the tree */
caf3c043
MM
2015 static const hda_nid_t conn1[] = { 0x0c, 0x0d };
2016 static const hda_nid_t conn2[] = { 0x0e, 0x0f };
2017 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2018 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
2019 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn2), conn2);
2020 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn2), conn2);
1727a771 2021 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb 2022 /* restore the connections */
caf3c043
MM
2023 static const hda_nid_t conn[] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
2024 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
2025 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn), conn);
2026 snd_hda_override_conn_list(codec, 0x18, ARRAY_SIZE(conn), conn);
2027 snd_hda_override_conn_list(codec, 0x1a, ARRAY_SIZE(conn), conn);
02a237b2
TI
2028 }
2029}
2030
1a97b7f2
TI
2031/* Set VREF on HP pin */
2032static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 2033 const struct hda_fixup *fix, int action)
1a97b7f2 2034{
caf3c043 2035 static const hda_nid_t nids[] = { 0x14, 0x15, 0x19 };
1a97b7f2 2036 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2037 int i;
2038
1727a771 2039 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
2040 return;
2041 for (i = 0; i < ARRAY_SIZE(nids); i++) {
2042 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
2043 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
2044 continue;
d3f02d60 2045 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2046 val |= AC_PINCTL_VREF_80;
cdd03ced 2047 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 2048 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2049 break;
2050 }
2051}
2052
0756f09c
TI
2053static void alc889_fixup_mac_pins(struct hda_codec *codec,
2054 const hda_nid_t *nids, int num_nids)
1a97b7f2
TI
2055{
2056 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
2057 int i;
2058
0756f09c 2059 for (i = 0; i < num_nids; i++) {
1a97b7f2 2060 unsigned int val;
d3f02d60 2061 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 2062 val |= AC_PINCTL_VREF_50;
cdd03ced 2063 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 2064 }
08c189f2 2065 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
2066}
2067
0756f09c
TI
2068/* Set VREF on speaker pins on imac91 */
2069static void alc889_fixup_imac91_vref(struct hda_codec *codec,
2070 const struct hda_fixup *fix, int action)
2071{
caf3c043 2072 static const hda_nid_t nids[] = { 0x18, 0x1a };
0756f09c
TI
2073
2074 if (action == HDA_FIXUP_ACT_INIT)
2075 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2076}
2077
e7729a41
AV
2078/* Set VREF on speaker pins on mba11 */
2079static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2080 const struct hda_fixup *fix, int action)
2081{
caf3c043 2082 static const hda_nid_t nids[] = { 0x18 };
e7729a41
AV
2083
2084 if (action == HDA_FIXUP_ACT_INIT)
2085 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2086}
2087
0756f09c
TI
2088/* Set VREF on speaker pins on mba21 */
2089static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2090 const struct hda_fixup *fix, int action)
2091{
caf3c043 2092 static const hda_nid_t nids[] = { 0x18, 0x19 };
0756f09c
TI
2093
2094 if (action == HDA_FIXUP_ACT_INIT)
2095 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2096}
2097
e427c237 2098/* Don't take HP output as primary
d9111496
FLVC
2099 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2100 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
e427c237
TI
2101 */
2102static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 2103 const struct hda_fixup *fix, int action)
e427c237
TI
2104{
2105 struct alc_spec *spec = codec->spec;
da96fb5b 2106 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08c189f2 2107 spec->gen.no_primary_hp = 1;
da96fb5b
TI
2108 spec->gen.no_multi_io = 1;
2109 }
e427c237
TI
2110}
2111
eb9ca3ab
TI
2112static void alc_fixup_bass_chmap(struct hda_codec *codec,
2113 const struct hda_fixup *fix, int action);
2114
7beb3a6e
TI
2115/* For dual-codec configuration, we need to disable some features to avoid
2116 * conflicts of kctls and PCM streams
2117 */
2118static void alc_fixup_dual_codecs(struct hda_codec *codec,
2119 const struct hda_fixup *fix, int action)
2120{
2121 struct alc_spec *spec = codec->spec;
2122
2123 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2124 return;
2125 /* disable vmaster */
2126 spec->gen.suppress_vmaster = 1;
2127 /* auto-mute and auto-mic switch don't work with multiple codecs */
2128 spec->gen.suppress_auto_mute = 1;
2129 spec->gen.suppress_auto_mic = 1;
2130 /* disable aamix as well */
2131 spec->gen.mixer_nid = 0;
2132 /* add location prefix to avoid conflicts */
2133 codec->force_pin_prefix = 1;
2134}
2135
2136static void rename_ctl(struct hda_codec *codec, const char *oldname,
2137 const char *newname)
2138{
2139 struct snd_kcontrol *kctl;
2140
2141 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2142 if (kctl)
2143 strcpy(kctl->id.name, newname);
2144}
2145
2146static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2147 const struct hda_fixup *fix,
2148 int action)
2149{
2150 alc_fixup_dual_codecs(codec, fix, action);
2151 switch (action) {
2152 case HDA_FIXUP_ACT_PRE_PROBE:
2153 /* override card longname to provide a unique UCM profile */
2154 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2155 break;
2156 case HDA_FIXUP_ACT_BUILD:
2157 /* rename Capture controls depending on the codec */
2158 rename_ctl(codec, "Capture Volume",
2159 codec->addr == 0 ?
2160 "Rear-Panel Capture Volume" :
2161 "Front-Panel Capture Volume");
2162 rename_ctl(codec, "Capture Switch",
2163 codec->addr == 0 ?
2164 "Rear-Panel Capture Switch" :
2165 "Front-Panel Capture Switch");
2166 break;
2167 }
2168}
2169
c1933008
CL
2170static void alc1220_fixup_gb_x570(struct hda_codec *codec,
2171 const struct hda_fixup *fix,
2172 int action)
2173{
2174 static const hda_nid_t conn1[] = { 0x0c };
2175 static const struct coef_fw gb_x570_coefs[] = {
41a86013 2176 WRITE_COEF(0x07, 0x03c0),
c1933008
CL
2177 WRITE_COEF(0x1a, 0x01c1),
2178 WRITE_COEF(0x1b, 0x0202),
2179 WRITE_COEF(0x43, 0x3005),
2180 {}
2181 };
2182
2183 switch (action) {
2184 case HDA_FIXUP_ACT_PRE_PROBE:
2185 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2186 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
2187 break;
2188 case HDA_FIXUP_ACT_INIT:
2189 alc_process_coef_fw(codec, gb_x570_coefs);
2190 break;
2191 }
2192}
2193
0202f5cd
P
2194static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2195 const struct hda_fixup *fix,
2196 int action)
2197{
caf3c043 2198 static const hda_nid_t conn1[] = { 0x0c };
0202f5cd
P
2199
2200 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2201 return;
2202
2203 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2204 /* We therefore want to make sure 0x14 (front headphone) and
2205 * 0x1b (speakers) use the stereo DAC 0x02
2206 */
caf3c043
MM
2207 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
2208 snd_hda_override_conn_list(codec, 0x1b, ARRAY_SIZE(conn1), conn1);
0202f5cd
P
2209}
2210
7f665b1c
JS
2211static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2212 const struct hda_fixup *fix, int action);
2213
80690a27 2214static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
7f665b1c
JS
2215 const struct hda_fixup *fix,
2216 int action)
2217{
2218 alc1220_fixup_clevo_p950(codec, fix, action);
2219 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2220}
2221
ca184355
JHP
2222static void alc887_asus_hp_automute_hook(struct hda_codec *codec,
2223 struct hda_jack_callback *jack)
2224{
2225 struct alc_spec *spec = codec->spec;
2226 unsigned int vref;
2227
2228 snd_hda_gen_hp_automute(codec, jack);
2229
2230 if (spec->gen.hp_jack_present)
2231 vref = AC_PINCTL_VREF_80;
2232 else
2233 vref = AC_PINCTL_VREF_HIZ;
2234 snd_hda_set_pin_ctl(codec, 0x19, PIN_HP | vref);
2235}
2236
2237static void alc887_fixup_asus_jack(struct hda_codec *codec,
2238 const struct hda_fixup *fix, int action)
2239{
2240 struct alc_spec *spec = codec->spec;
2241 if (action != HDA_FIXUP_ACT_PROBE)
2242 return;
2243 snd_hda_set_pin_ctl_cache(codec, 0x1b, PIN_HP);
2244 spec->gen.hp_automute_hook = alc887_asus_hp_automute_hook;
2245}
2246
1727a771 2247static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 2248 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
2249 .type = HDA_FIXUP_PINS,
2250 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2251 { 0x15, 0x01080104 }, /* side */
2252 { 0x16, 0x01011012 }, /* rear */
2253 { 0x17, 0x01016011 }, /* clfe */
2785591a 2254 { }
145a902b
DH
2255 }
2256 },
5c0ebfbe 2257 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
2258 .type = HDA_FIXUP_PINS,
2259 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2260 { 0x15, 0x99130112 }, /* rear int speakers */
2261 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
2262 { }
2263 }
2264 },
5c0ebfbe 2265 [ALC882_FIXUP_PB_M5210] = {
fd108215
TI
2266 .type = HDA_FIXUP_PINCTLS,
2267 .v.pins = (const struct hda_pintbl[]) {
2268 { 0x19, PIN_VREF50 },
357f915e
KY
2269 {}
2270 }
2271 },
5c0ebfbe 2272 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 2273 .type = HDA_FIXUP_FUNC,
23d30f28 2274 .v.func = alc_fixup_sku_ignore,
6981d184 2275 },
5c0ebfbe 2276 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
2277 .type = HDA_FIXUP_PINS,
2278 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
2279 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2280 { }
2281 }
2282 },
8f239214 2283 [ALC889_FIXUP_CD] = {
1727a771
TI
2284 .type = HDA_FIXUP_PINS,
2285 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
2286 { 0x1c, 0x993301f0 }, /* CD */
2287 { }
2288 }
2289 },
b2c53e20
DH
2290 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2291 .type = HDA_FIXUP_PINS,
2292 .v.pins = (const struct hda_pintbl[]) {
2293 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2294 { }
2295 },
2296 .chained = true,
2297 .chain_id = ALC889_FIXUP_CD,
2298 },
5c0ebfbe 2299 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
2300 .type = HDA_FIXUP_PINS,
2301 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
2302 { 0x17, 0x90170111 }, /* hidden surround speaker */
2303 { }
2304 }
2305 },
0e7cc2e7 2306 [ALC888_FIXUP_EEE1601] = {
1727a771 2307 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
2308 .v.verbs = (const struct hda_verb[]) {
2309 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2310 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2311 { }
2312 }
177943a3 2313 },
4841b8e6
PH
2314 [ALC886_FIXUP_EAPD] = {
2315 .type = HDA_FIXUP_VERBS,
2316 .v.verbs = (const struct hda_verb[]) {
2317 /* change to EAPD mode */
2318 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2319 { 0x20, AC_VERB_SET_PROC_COEF, 0x0068 },
2320 { }
2321 }
2322 },
177943a3 2323 [ALC882_FIXUP_EAPD] = {
1727a771 2324 .type = HDA_FIXUP_VERBS,
177943a3
TI
2325 .v.verbs = (const struct hda_verb[]) {
2326 /* change to EAPD mode */
2327 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2328 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2329 { }
2330 }
2331 },
7a6069bf 2332 [ALC883_FIXUP_EAPD] = {
1727a771 2333 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
2334 .v.verbs = (const struct hda_verb[]) {
2335 /* change to EAPD mode */
2336 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2337 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2338 { }
2339 }
2340 },
8812c4f9 2341 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 2342 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
2343 .v.verbs = (const struct hda_verb[]) {
2344 /* eanable EAPD on Acer laptops */
2345 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2346 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2347 { }
2348 }
2349 },
1a97b7f2 2350 [ALC882_FIXUP_GPIO1] = {
5579cd6f
TI
2351 .type = HDA_FIXUP_FUNC,
2352 .v.func = alc_fixup_gpio1,
1a97b7f2
TI
2353 },
2354 [ALC882_FIXUP_GPIO2] = {
5579cd6f
TI
2355 .type = HDA_FIXUP_FUNC,
2356 .v.func = alc_fixup_gpio2,
1a97b7f2 2357 },
eb844d51 2358 [ALC882_FIXUP_GPIO3] = {
5579cd6f
TI
2359 .type = HDA_FIXUP_FUNC,
2360 .v.func = alc_fixup_gpio3,
eb844d51 2361 },
68ef0561 2362 [ALC882_FIXUP_ASUS_W2JC] = {
5579cd6f
TI
2363 .type = HDA_FIXUP_FUNC,
2364 .v.func = alc_fixup_gpio1,
68ef0561
TI
2365 .chained = true,
2366 .chain_id = ALC882_FIXUP_EAPD,
2367 },
2368 [ALC889_FIXUP_COEF] = {
1727a771 2369 .type = HDA_FIXUP_FUNC,
68ef0561
TI
2370 .v.func = alc889_fixup_coef,
2371 },
c3e837bb 2372 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
2373 .type = HDA_FIXUP_PINS,
2374 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2375 { 0x16, 0x99130111 }, /* CLFE speaker */
2376 { 0x17, 0x99130112 }, /* surround speaker */
2377 { }
038d4fef
TI
2378 },
2379 .chained = true,
2380 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
2381 },
2382 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
2383 .type = HDA_FIXUP_PINS,
2384 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2385 { 0x16, 0x99130111 }, /* CLFE speaker */
2386 { 0x1b, 0x99130112 }, /* surround speaker */
2387 { }
2388 },
2389 .chained = true,
2390 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2391 },
2392 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2393 /* additional init verbs for Acer Aspire 8930G */
1727a771 2394 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
2395 .v.verbs = (const struct hda_verb[]) {
2396 /* Enable all DACs */
2397 /* DAC DISABLE/MUTE 1? */
2398 /* setting bits 1-5 disables DAC nids 0x02-0x06
2399 * apparently. Init=0x38 */
2400 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2401 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2402 /* DAC DISABLE/MUTE 2? */
2403 /* some bit here disables the other DACs.
2404 * Init=0x4900 */
2405 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2406 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2407 /* DMIC fix
2408 * This laptop has a stereo digital microphone.
2409 * The mics are only 1cm apart which makes the stereo
2410 * useless. However, either the mic or the ALC889
2411 * makes the signal become a difference/sum signal
2412 * instead of standard stereo, which is annoying.
2413 * So instead we flip this bit which makes the
2414 * codec replicate the sum signal to both channels,
2415 * turning it into a normal mono mic.
2416 */
2417 /* DMIC_CONTROL? Init value = 0x0001 */
2418 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2419 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2420 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2421 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2422 { }
038d4fef
TI
2423 },
2424 .chained = true,
2425 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 2426 },
5671087f 2427 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 2428 .type = HDA_FIXUP_FUNC,
5671087f
TI
2429 .v.func = alc885_fixup_macpro_gpio,
2430 },
02a237b2 2431 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 2432 .type = HDA_FIXUP_FUNC,
02a237b2
TI
2433 .v.func = alc889_fixup_dac_route,
2434 },
1a97b7f2 2435 [ALC889_FIXUP_MBP_VREF] = {
1727a771 2436 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2437 .v.func = alc889_fixup_mbp_vref,
2438 .chained = true,
2439 .chain_id = ALC882_FIXUP_GPIO1,
2440 },
2441 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 2442 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2443 .v.func = alc889_fixup_imac91_vref,
2444 .chained = true,
2445 .chain_id = ALC882_FIXUP_GPIO1,
2446 },
e7729a41
AV
2447 [ALC889_FIXUP_MBA11_VREF] = {
2448 .type = HDA_FIXUP_FUNC,
2449 .v.func = alc889_fixup_mba11_vref,
2450 .chained = true,
2451 .chain_id = ALC889_FIXUP_MBP_VREF,
2452 },
0756f09c
TI
2453 [ALC889_FIXUP_MBA21_VREF] = {
2454 .type = HDA_FIXUP_FUNC,
2455 .v.func = alc889_fixup_mba21_vref,
2456 .chained = true,
2457 .chain_id = ALC889_FIXUP_MBP_VREF,
2458 },
c20f31ec
TI
2459 [ALC889_FIXUP_MP11_VREF] = {
2460 .type = HDA_FIXUP_FUNC,
2461 .v.func = alc889_fixup_mba11_vref,
2462 .chained = true,
2463 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2464 },
9f660a1c
MK
2465 [ALC889_FIXUP_MP41_VREF] = {
2466 .type = HDA_FIXUP_FUNC,
2467 .v.func = alc889_fixup_mbp_vref,
2468 .chained = true,
2469 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2470 },
6e72aa5f 2471 [ALC882_FIXUP_INV_DMIC] = {
1727a771 2472 .type = HDA_FIXUP_FUNC,
9d36a7dc 2473 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2474 },
e427c237 2475 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 2476 .type = HDA_FIXUP_FUNC,
e427c237
TI
2477 .v.func = alc882_fixup_no_primary_hp,
2478 },
1f0bbf03
TI
2479 [ALC887_FIXUP_ASUS_BASS] = {
2480 .type = HDA_FIXUP_PINS,
2481 .v.pins = (const struct hda_pintbl[]) {
2482 {0x16, 0x99130130}, /* bass speaker */
2483 {}
2484 },
eb9ca3ab
TI
2485 .chained = true,
2486 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2487 },
2488 [ALC887_FIXUP_BASS_CHMAP] = {
2489 .type = HDA_FIXUP_FUNC,
2490 .v.func = alc_fixup_bass_chmap,
1f0bbf03 2491 },
7beb3a6e
TI
2492 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2493 .type = HDA_FIXUP_FUNC,
2494 .v.func = alc1220_fixup_gb_dual_codecs,
2495 },
c1933008
CL
2496 [ALC1220_FIXUP_GB_X570] = {
2497 .type = HDA_FIXUP_FUNC,
2498 .v.func = alc1220_fixup_gb_x570,
2499 },
0202f5cd
P
2500 [ALC1220_FIXUP_CLEVO_P950] = {
2501 .type = HDA_FIXUP_FUNC,
2502 .v.func = alc1220_fixup_clevo_p950,
2503 },
80690a27 2504 [ALC1220_FIXUP_CLEVO_PB51ED] = {
7f665b1c 2505 .type = HDA_FIXUP_FUNC,
80690a27 2506 .v.func = alc1220_fixup_clevo_pb51ed,
7f665b1c 2507 },
80690a27 2508 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
7f665b1c
JS
2509 .type = HDA_FIXUP_PINS,
2510 .v.pins = (const struct hda_pintbl[]) {
2511 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2512 {}
2513 },
2514 .chained = true,
80690a27 2515 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
7f665b1c 2516 },
ca184355
JHP
2517 [ALC887_FIXUP_ASUS_AUDIO] = {
2518 .type = HDA_FIXUP_PINS,
2519 .v.pins = (const struct hda_pintbl[]) {
2520 { 0x15, 0x02a14150 }, /* use as headset mic, without its own jack detect */
2521 { 0x19, 0x22219420 },
2522 {}
2523 },
2524 },
2525 [ALC887_FIXUP_ASUS_HMIC] = {
2526 .type = HDA_FIXUP_FUNC,
2527 .v.func = alc887_fixup_asus_jack,
2528 .chained = true,
2529 .chain_id = ALC887_FIXUP_ASUS_AUDIO,
2530 },
ff818c24
TI
2531};
2532
1d045db9 2533static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
2534 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2535 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
b5d724b1 2536 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
8812c4f9
TI
2537 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2538 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2539 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2540 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
2541 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2542 ALC882_FIXUP_ACER_ASPIRE_4930G),
2543 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2544 ALC882_FIXUP_ACER_ASPIRE_4930G),
2545 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2546 ALC882_FIXUP_ACER_ASPIRE_8930G),
2547 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2548 ALC882_FIXUP_ACER_ASPIRE_8930G),
b265047a
TI
2549 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2550 ALC882_FIXUP_ACER_ASPIRE_4930G),
2551 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
c3e837bb
TI
2552 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2553 ALC882_FIXUP_ACER_ASPIRE_4930G),
2554 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2555 ALC882_FIXUP_ACER_ASPIRE_4930G),
f5c53d89
TI
2556 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2557 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 2558 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 2559 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 2560 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 2561 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 2562 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 2563 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
ca184355 2564 SND_PCI_QUIRK(0x1043, 0x2390, "Asus D700SA", ALC887_FIXUP_ASUS_HMIC),
0e7cc2e7 2565 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
1f0bbf03 2566 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
85bcf96c 2567 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
b7529c18
TI
2568 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2569 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
ac9b1cdd 2570 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2571 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
3f3c3714 2572 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2573
2574 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2575 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2576 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2577 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
c20f31ec 2578 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
5671087f
TI
2579 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2580 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2581 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2582 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2583 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
e7729a41 2584 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
0756f09c 2585 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
1a97b7f2
TI
2586 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2587 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2588 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2589 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2590 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2591 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
9f660a1c 2592 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
05193639 2593 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2594 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2595 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
649ccd08 2596 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
5671087f 2597
7a6069bf 2598 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
4841b8e6 2599 SND_PCI_QUIRK(0x13fe, 0x1009, "Advantech MIT-W101", ALC886_FIXUP_EAPD),
b2c53e20 2600 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
7beb3a6e 2601 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
c1933008 2602 SND_PCI_QUIRK(0x1458, 0xa0cd, "Gigabyte X570 Aorus Master", ALC1220_FIXUP_GB_X570),
ea354196 2603 SND_PCI_QUIRK(0x1458, 0xa0ce, "Gigabyte X570 Aorus Xtreme", ALC1220_FIXUP_GB_X570),
41a86013 2604 SND_PCI_QUIRK(0x1458, 0xa0d5, "Gigabyte X570S Aorus Master", ALC1220_FIXUP_GB_X570),
a0b03952 2605 SND_PCI_QUIRK(0x1462, 0x11f7, "MSI-GE63", ALC1220_FIXUP_CLEVO_P950),
a655e2b1 2606 SND_PCI_QUIRK(0x1462, 0x1228, "MSI-GP63", ALC1220_FIXUP_CLEVO_P950),
09926202 2607 SND_PCI_QUIRK(0x1462, 0x1229, "MSI-GP73", ALC1220_FIXUP_CLEVO_P950),
1d3aa4a5 2608 SND_PCI_QUIRK(0x1462, 0x1275, "MSI-GL63", ALC1220_FIXUP_CLEVO_P950),
7dafba37 2609 SND_PCI_QUIRK(0x1462, 0x1276, "MSI-GL73", ALC1220_FIXUP_CLEVO_P950),
cc5049ae 2610 SND_PCI_QUIRK(0x1462, 0x1293, "MSI-GP65", ALC1220_FIXUP_CLEVO_P950),
d2c3b14e 2611 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
26af1772 2612 SND_PCI_QUIRK(0x1462, 0xcc34, "MSI Godlike X570", ALC1220_FIXUP_GB_DUAL_CODECS),
63691587 2613 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
d2c3b14e 2614 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5c0ebfbe 2615 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
13e1a4cd
TI
2616 SND_PCI_QUIRK(0x1558, 0x50d3, "Clevo PC50[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2617 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2618 SND_PCI_QUIRK(0x1558, 0x65d2, "Clevo PB51R[CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2619 SND_PCI_QUIRK(0x1558, 0x65e1, "Clevo PB51[ED][DF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2620 SND_PCI_QUIRK(0x1558, 0x65e5, "Clevo PC50D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
aef454b4 2621 SND_PCI_QUIRK(0x1558, 0x65f1, "Clevo PC50HS", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
9eb6f5c3 2622 SND_PCI_QUIRK(0x1558, 0x65f5, "Clevo PD50PN[NRT]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd
TI
2623 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2624 SND_PCI_QUIRK(0x1558, 0x67e1, "Clevo PB71[DE][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2625 SND_PCI_QUIRK(0x1558, 0x67e5, "Clevo PC70D[PRS](?:-D|-G)?", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
dbfe8350 2626 SND_PCI_QUIRK(0x1558, 0x67f1, "Clevo PC70H[PRS]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
13e1a4cd 2627 SND_PCI_QUIRK(0x1558, 0x70d1, "Clevo PC70[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
1f8d398e 2628 SND_PCI_QUIRK(0x1558, 0x7714, "Clevo X170SM", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
cc03069a 2629 SND_PCI_QUIRK(0x1558, 0x7715, "Clevo X170KM-G", ALC1220_FIXUP_CLEVO_PB51ED),
0202f5cd 2630 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2631 SND_PCI_QUIRK(0x1558, 0x9506, "Clevo P955HQ", ALC1220_FIXUP_CLEVO_P950),
13e1a4cd 2632 SND_PCI_QUIRK(0x1558, 0x950a, "Clevo P955H[PR]", ALC1220_FIXUP_CLEVO_P950),
f3d737b6 2633 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2f0d520a 2634 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
b5acfe15
PH
2635 SND_PCI_QUIRK(0x1558, 0x95e3, "Clevo P955[ER]T", ALC1220_FIXUP_CLEVO_P950),
2636 SND_PCI_QUIRK(0x1558, 0x95e4, "Clevo P955ER", ALC1220_FIXUP_CLEVO_P950),
2637 SND_PCI_QUIRK(0x1558, 0x95e5, "Clevo P955EE6", ALC1220_FIXUP_CLEVO_P950),
2638 SND_PCI_QUIRK(0x1558, 0x95e6, "Clevo P950R[CDF]", ALC1220_FIXUP_CLEVO_P950),
503d90b3
RS
2639 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2640 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
b5acfe15 2641 SND_PCI_QUIRK(0x1558, 0x97e2, "Clevo P970RC-M", ALC1220_FIXUP_CLEVO_P950),
7a6069bf
TI
2642 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2643 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2644 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2645 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2646 {}
2647};
2648
1727a771 2649static const struct hda_model_fixup alc882_fixup_models[] = {
772c2917
TI
2650 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2651 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2652 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2653 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2654 {.id = ALC889_FIXUP_CD, .name = "cd"},
2655 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2656 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2657 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2658 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2659 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2660 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2661 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2662 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2663 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2664 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
912093bc
TI
2665 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2666 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2667 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
772c2917
TI
2668 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2669 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2670 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2671 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2672 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2673 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2674 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2675 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
6e72aa5f 2676 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2677 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
772c2917 2678 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
ba90d6a6 2679 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
63394a16 2680 {.id = ALC1220_FIXUP_GB_X570, .name = "gb-x570"},
772c2917 2681 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
912093bc
TI
2682 {}
2683};
2684
119b75c1
HW
2685static const struct snd_hda_pin_quirk alc882_pin_fixup_tbl[] = {
2686 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1043, "ASUS", ALC1220_FIXUP_CLEVO_P950,
2687 {0x14, 0x01014010},
2688 {0x15, 0x01011012},
2689 {0x16, 0x01016011},
2690 {0x18, 0x01a19040},
2691 {0x19, 0x02a19050},
2692 {0x1a, 0x0181304f},
2693 {0x1b, 0x0221401f},
2694 {0x1e, 0x01456130}),
2695 SND_HDA_PIN_QUIRK(0x10ec1220, 0x1462, "MS-7C35", ALC1220_FIXUP_CLEVO_P950,
2696 {0x14, 0x01015010},
2697 {0x15, 0x01011012},
2698 {0x16, 0x01011011},
2699 {0x18, 0x01a11040},
2700 {0x19, 0x02a19050},
2701 {0x1a, 0x0181104f},
2702 {0x1b, 0x0221401f},
2703 {0x1e, 0x01451130}),
2704 {}
2705};
2706
f6a92248 2707/*
1d045db9 2708 * BIOS auto configuration
f6a92248 2709 */
1d045db9
TI
2710/* almost identical with ALC880 parser... */
2711static int alc882_parse_auto_config(struct hda_codec *codec)
2712{
1d045db9 2713 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2714 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2715 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2716}
b896b4eb 2717
1d045db9
TI
2718/*
2719 */
1d045db9 2720static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2721{
2722 struct alc_spec *spec;
1a97b7f2 2723 int err;
f6a92248 2724
3de95173
TI
2725 err = alc_alloc_spec(codec, 0x0b);
2726 if (err < 0)
2727 return err;
f6a92248 2728
3de95173 2729 spec = codec->spec;
1f0f4b80 2730
7639a06c 2731 switch (codec->core.vendor_id) {
1d045db9
TI
2732 case 0x10ec0882:
2733 case 0x10ec0885:
acf08081 2734 case 0x10ec0900:
6d9ffcff 2735 case 0x10ec0b00:
a535ad57 2736 case 0x10ec1220:
1d045db9
TI
2737 break;
2738 default:
2739 /* ALC883 and variants */
2740 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2741 break;
c793bec5 2742 }
977ddd6b 2743
c9af753f
TI
2744 alc_pre_init(codec);
2745
1727a771 2746 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2747 alc882_fixups);
119b75c1 2748 snd_hda_pick_pin_fixup(codec, alc882_pin_fixup_tbl, alc882_fixups, true);
1727a771 2749 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2750
1d045db9
TI
2751 alc_auto_parse_customize_define(codec);
2752
7504b6cd
TI
2753 if (has_cdefine_beep(codec))
2754 spec->gen.beep_nid = 0x01;
2755
1a97b7f2
TI
2756 /* automatic parse from the BIOS config */
2757 err = alc882_parse_auto_config(codec);
2758 if (err < 0)
2759 goto error;
f6a92248 2760
fea80fae
TI
2761 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2762 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2763 if (err < 0)
2764 goto error;
2765 }
f6a92248 2766
1727a771 2767 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2768
f6a92248 2769 return 0;
e16fb6d1
TI
2770
2771 error:
2772 alc_free(codec);
2773 return err;
f6a92248
KY
2774}
2775
df694daa 2776
df694daa 2777/*
1d045db9 2778 * ALC262 support
df694daa 2779 */
1d045db9 2780static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2781{
1d045db9 2782 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2783 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2784 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2785}
2786
df694daa 2787/*
1d045db9 2788 * Pin config fixes
df694daa 2789 */
cfc9b06f 2790enum {
ea4e7af1 2791 ALC262_FIXUP_FSC_H270,
7513e6da 2792 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2793 ALC262_FIXUP_HP_Z200,
2794 ALC262_FIXUP_TYAN,
c470150c 2795 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2796 ALC262_FIXUP_BENQ,
2797 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2798 ALC262_FIXUP_INV_DMIC,
b5c6611f 2799 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2800};
2801
1727a771 2802static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2803 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2804 .type = HDA_FIXUP_PINS,
2805 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2806 { 0x14, 0x99130110 }, /* speaker */
2807 { 0x15, 0x0221142f }, /* front HP */
2808 { 0x1b, 0x0121141f }, /* rear HP */
2809 { }
2810 }
2811 },
7513e6da
TI
2812 [ALC262_FIXUP_FSC_S7110] = {
2813 .type = HDA_FIXUP_PINS,
2814 .v.pins = (const struct hda_pintbl[]) {
2815 { 0x15, 0x90170110 }, /* speaker */
2816 { }
2817 },
2818 .chained = true,
2819 .chain_id = ALC262_FIXUP_BENQ,
2820 },
ea4e7af1 2821 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2822 .type = HDA_FIXUP_PINS,
2823 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2824 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2825 { }
2826 }
cfc9b06f 2827 },
ea4e7af1 2828 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2829 .type = HDA_FIXUP_PINS,
2830 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2831 { 0x14, 0x1993e1f0 }, /* int AUX */
2832 { }
2833 }
2834 },
c470150c 2835 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2836 .type = HDA_FIXUP_PINCTLS,
2837 .v.pins = (const struct hda_pintbl[]) {
2838 { 0x19, PIN_VREF50 },
b42590b8
TI
2839 {}
2840 },
2841 .chained = true,
2842 .chain_id = ALC262_FIXUP_BENQ,
2843 },
2844 [ALC262_FIXUP_BENQ] = {
1727a771 2845 .type = HDA_FIXUP_VERBS,
b42590b8 2846 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2847 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2848 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2849 {}
2850 }
2851 },
b42590b8 2852 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2853 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2854 .v.verbs = (const struct hda_verb[]) {
2855 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2856 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2857 {}
2858 }
2859 },
6e72aa5f 2860 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2861 .type = HDA_FIXUP_FUNC,
9d36a7dc 2862 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2863 },
b5c6611f
ML
2864 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2865 .type = HDA_FIXUP_FUNC,
2866 .v.func = alc_fixup_no_depop_delay,
2867 },
cfc9b06f
TI
2868};
2869
1d045db9 2870static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2871 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2872 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2873 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1 2874 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
275ec0cb 2875 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
ea4e7af1 2876 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2877 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2878 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2879 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2880 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2881 {}
2882};
df694daa 2883
1727a771 2884static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f 2885 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
e43c44d6
TI
2886 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2887 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2888 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2889 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2890 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2891 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2892 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2893 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
6e72aa5f
TI
2894 {}
2895};
1d045db9 2896
1d045db9
TI
2897/*
2898 */
1d045db9 2899static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2900{
2901 struct alc_spec *spec;
df694daa
KY
2902 int err;
2903
3de95173
TI
2904 err = alc_alloc_spec(codec, 0x0b);
2905 if (err < 0)
2906 return err;
df694daa 2907
3de95173 2908 spec = codec->spec;
08c189f2 2909 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9 2910
225068ab
TI
2911 spec->shutup = alc_eapd_shutup;
2912
1d045db9
TI
2913#if 0
2914 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2915 * under-run
2916 */
98b24883 2917 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
1d045db9 2918#endif
1d045db9
TI
2919 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2920
c9af753f
TI
2921 alc_pre_init(codec);
2922
1727a771 2923 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2924 alc262_fixups);
1727a771 2925 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2926
af741c15
TI
2927 alc_auto_parse_customize_define(codec);
2928
7504b6cd
TI
2929 if (has_cdefine_beep(codec))
2930 spec->gen.beep_nid = 0x01;
2931
42399f7a
TI
2932 /* automatic parse from the BIOS config */
2933 err = alc262_parse_auto_config(codec);
2934 if (err < 0)
2935 goto error;
df694daa 2936
fea80fae
TI
2937 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2938 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2939 if (err < 0)
2940 goto error;
2941 }
2134ea4f 2942
1727a771 2943 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2944
1da177e4 2945 return 0;
e16fb6d1
TI
2946
2947 error:
2948 alc_free(codec);
2949 return err;
1da177e4
LT
2950}
2951
f32610ed 2952/*
1d045db9 2953 * ALC268
f32610ed 2954 */
1d045db9 2955/* bind Beep switches of both NID 0x0f and 0x10 */
a717777d
TI
2956static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2957 struct snd_ctl_elem_value *ucontrol)
2958{
2959 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2960 unsigned long pval;
2961 int err;
2962
2963 mutex_lock(&codec->control_mutex);
2964 pval = kcontrol->private_value;
2965 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2966 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2967 if (err >= 0) {
2968 kcontrol->private_value = (pval & ~0xff) | 0x10;
2969 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2970 }
2971 kcontrol->private_value = pval;
2972 mutex_unlock(&codec->control_mutex);
2973 return err;
2974}
f32610ed 2975
1d045db9
TI
2976static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2977 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
a717777d
TI
2978 {
2979 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2980 .name = "Beep Playback Switch",
2981 .subdevice = HDA_SUBDEV_AMP_FLAG,
2982 .info = snd_hda_mixer_amp_switch_info,
2983 .get = snd_hda_mixer_amp_switch_get,
2984 .put = alc268_beep_switch_put,
2985 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2986 },
f32610ed
JS
2987};
2988
1d045db9
TI
2989/* set PCBEEP vol = 0, mute connections */
2990static const struct hda_verb alc268_beep_init_verbs[] = {
2991 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2992 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2993 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2994 { }
f32610ed
JS
2995};
2996
6e72aa5f
TI
2997enum {
2998 ALC268_FIXUP_INV_DMIC,
cb766404 2999 ALC268_FIXUP_HP_EAPD,
24eff328 3000 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
3001};
3002
1727a771 3003static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 3004 [ALC268_FIXUP_INV_DMIC] = {
1727a771 3005 .type = HDA_FIXUP_FUNC,
9d36a7dc 3006 .v.func = alc_fixup_inv_dmic,
6e72aa5f 3007 },
cb766404 3008 [ALC268_FIXUP_HP_EAPD] = {
1727a771 3009 .type = HDA_FIXUP_VERBS,
cb766404
TI
3010 .v.verbs = (const struct hda_verb[]) {
3011 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
3012 {}
3013 }
3014 },
24eff328
TI
3015 [ALC268_FIXUP_SPDIF] = {
3016 .type = HDA_FIXUP_PINS,
3017 .v.pins = (const struct hda_pintbl[]) {
3018 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
3019 {}
3020 }
3021 },
6e72aa5f
TI
3022};
3023
1727a771 3024static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 3025 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404 3026 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
03bf11c9 3027 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
cb766404
TI
3028 {}
3029};
3030
3031static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 3032 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 3033 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
3034 /* below is codec SSID since multiple Toshiba laptops have the
3035 * same PCI SSID 1179:ff00
3036 */
3037 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
3038 {}
3039};
3040
f32610ed
JS
3041/*
3042 * BIOS auto configuration
3043 */
1d045db9 3044static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 3045{
3e6179b8 3046 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 3047 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
3048}
3049
1d045db9
TI
3050/*
3051 */
1d045db9 3052static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
3053{
3054 struct alc_spec *spec;
a5cb463a 3055 int i, err;
f32610ed 3056
1d045db9 3057 /* ALC268 has no aa-loopback mixer */
3de95173
TI
3058 err = alc_alloc_spec(codec, 0);
3059 if (err < 0)
3060 return err;
3061
3062 spec = codec->spec;
2722b535
TI
3063 if (has_cdefine_beep(codec))
3064 spec->gen.beep_nid = 0x01;
1f0f4b80 3065
225068ab
TI
3066 spec->shutup = alc_eapd_shutup;
3067
c9af753f
TI
3068 alc_pre_init(codec);
3069
1727a771
TI
3070 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
3071 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 3072
6ebb8053
TI
3073 /* automatic parse from the BIOS config */
3074 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
3075 if (err < 0)
3076 goto error;
f32610ed 3077
7504b6cd
TI
3078 if (err > 0 && !spec->gen.no_analog &&
3079 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
a5cb463a
TI
3080 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
3081 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
3082 &alc268_beep_mixer[i])) {
3083 err = -ENOMEM;
3084 goto error;
3085 }
3086 }
7504b6cd 3087 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
3088 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
3089 /* override the amp caps for beep generator */
3090 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
3091 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
3092 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
3093 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3094 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
3095 }
3096
1727a771 3097 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 3098
f32610ed 3099 return 0;
e16fb6d1
TI
3100
3101 error:
3102 alc_free(codec);
3103 return err;
f32610ed
JS
3104}
3105
bc9f98a9 3106/*
1d045db9 3107 * ALC269
bc9f98a9 3108 */
08c189f2 3109
1d045db9 3110static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
1d045db9 3111 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9
KY
3112};
3113
1d045db9 3114static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
1d045db9 3115 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9 3116};
291702f0 3117
1d045db9
TI
3118/* different alc269-variants */
3119enum {
3120 ALC269_TYPE_ALC269VA,
3121 ALC269_TYPE_ALC269VB,
3122 ALC269_TYPE_ALC269VC,
adcc70b2 3123 ALC269_TYPE_ALC269VD,
065380f0
KY
3124 ALC269_TYPE_ALC280,
3125 ALC269_TYPE_ALC282,
2af02be7 3126 ALC269_TYPE_ALC283,
065380f0 3127 ALC269_TYPE_ALC284,
4731d5de 3128 ALC269_TYPE_ALC293,
7fc7d047 3129 ALC269_TYPE_ALC286,
506b62c3 3130 ALC269_TYPE_ALC298,
1d04c9de 3131 ALC269_TYPE_ALC255,
4344aec8 3132 ALC269_TYPE_ALC256,
f429e7e4 3133 ALC269_TYPE_ALC257,
0a6f0600 3134 ALC269_TYPE_ALC215,
4231430d 3135 ALC269_TYPE_ALC225,
99cee034 3136 ALC269_TYPE_ALC287,
dcd4f0db 3137 ALC269_TYPE_ALC294,
1078bef0 3138 ALC269_TYPE_ALC300,
f0778871 3139 ALC269_TYPE_ALC623,
6fbae35a 3140 ALC269_TYPE_ALC700,
bc9f98a9
KY
3141};
3142
3143/*
1d045db9 3144 * BIOS auto configuration
bc9f98a9 3145 */
1d045db9
TI
3146static int alc269_parse_auto_config(struct hda_codec *codec)
3147{
1d045db9 3148 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3149 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
3150 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3151 struct alc_spec *spec = codec->spec;
adcc70b2
KY
3152 const hda_nid_t *ssids;
3153
3154 switch (spec->codec_variant) {
3155 case ALC269_TYPE_ALC269VA:
3156 case ALC269_TYPE_ALC269VC:
065380f0
KY
3157 case ALC269_TYPE_ALC280:
3158 case ALC269_TYPE_ALC284:
4731d5de 3159 case ALC269_TYPE_ALC293:
adcc70b2
KY
3160 ssids = alc269va_ssids;
3161 break;
3162 case ALC269_TYPE_ALC269VB:
3163 case ALC269_TYPE_ALC269VD:
065380f0 3164 case ALC269_TYPE_ALC282:
2af02be7 3165 case ALC269_TYPE_ALC283:
7fc7d047 3166 case ALC269_TYPE_ALC286:
506b62c3 3167 case ALC269_TYPE_ALC298:
1d04c9de 3168 case ALC269_TYPE_ALC255:
4344aec8 3169 case ALC269_TYPE_ALC256:
f429e7e4 3170 case ALC269_TYPE_ALC257:
0a6f0600 3171 case ALC269_TYPE_ALC215:
4231430d 3172 case ALC269_TYPE_ALC225:
99cee034 3173 case ALC269_TYPE_ALC287:
dcd4f0db 3174 case ALC269_TYPE_ALC294:
1078bef0 3175 case ALC269_TYPE_ALC300:
f0778871 3176 case ALC269_TYPE_ALC623:
6fbae35a 3177 case ALC269_TYPE_ALC700:
adcc70b2
KY
3178 ssids = alc269_ssids;
3179 break;
3180 default:
3181 ssids = alc269_ssids;
3182 break;
3183 }
bc9f98a9 3184
3e6179b8 3185 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 3186}
bc9f98a9 3187
476c02e0
HW
3188static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
3189 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
3190 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
3191 { SND_JACK_BTN_2, KEY_VOLUMEUP },
3192 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
3193 {}
3194};
3195
3196static void alc_headset_btn_callback(struct hda_codec *codec,
3197 struct hda_jack_callback *jack)
3198{
3199 int report = 0;
3200
3201 if (jack->unsol_res & (7 << 13))
3202 report |= SND_JACK_BTN_0;
3203
3204 if (jack->unsol_res & (1 << 16 | 3 << 8))
3205 report |= SND_JACK_BTN_1;
3206
3207 /* Volume up key */
3208 if (jack->unsol_res & (7 << 23))
3209 report |= SND_JACK_BTN_2;
3210
3211 /* Volume down key */
3212 if (jack->unsol_res & (7 << 10))
3213 report |= SND_JACK_BTN_3;
3214
04f7791b 3215 snd_hda_jack_set_button_state(codec, jack->nid, report);
476c02e0
HW
3216}
3217
3218static void alc_disable_headset_jack_key(struct hda_codec *codec)
3219{
3220 struct alc_spec *spec = codec->spec;
3221
3222 if (!spec->has_hs_key)
3223 return;
3224
3225 switch (codec->core.vendor_id) {
3226 case 0x10ec0215:
3227 case 0x10ec0225:
3228 case 0x10ec0285:
c72b9bfe 3229 case 0x10ec0287:
476c02e0
HW
3230 case 0x10ec0295:
3231 case 0x10ec0289:
3232 case 0x10ec0299:
3233 alc_write_coef_idx(codec, 0x48, 0x0);
3234 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3235 alc_update_coef_idx(codec, 0x44, 0x0045 << 8, 0x0);
3236 break;
1948fc06 3237 case 0x10ec0230:
476c02e0
HW
3238 case 0x10ec0236:
3239 case 0x10ec0256:
3240 alc_write_coef_idx(codec, 0x48, 0x0);
3241 alc_update_coef_idx(codec, 0x49, 0x0045, 0x0);
3242 break;
3243 }
3244}
3245
3246static void alc_enable_headset_jack_key(struct hda_codec *codec)
3247{
3248 struct alc_spec *spec = codec->spec;
3249
3250 if (!spec->has_hs_key)
3251 return;
3252
3253 switch (codec->core.vendor_id) {
3254 case 0x10ec0215:
3255 case 0x10ec0225:
3256 case 0x10ec0285:
c72b9bfe 3257 case 0x10ec0287:
476c02e0
HW
3258 case 0x10ec0295:
3259 case 0x10ec0289:
3260 case 0x10ec0299:
3261 alc_write_coef_idx(codec, 0x48, 0xd011);
3262 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3263 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
3264 break;
1948fc06 3265 case 0x10ec0230:
476c02e0
HW
3266 case 0x10ec0236:
3267 case 0x10ec0256:
3268 alc_write_coef_idx(codec, 0x48, 0xd011);
3269 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
3270 break;
3271 }
3272}
3273
3274static void alc_fixup_headset_jack(struct hda_codec *codec,
3275 const struct hda_fixup *fix, int action)
3276{
3277 struct alc_spec *spec = codec->spec;
04f7791b 3278 hda_nid_t hp_pin;
476c02e0
HW
3279
3280 switch (action) {
3281 case HDA_FIXUP_ACT_PRE_PROBE:
3282 spec->has_hs_key = 1;
3283 snd_hda_jack_detect_enable_callback(codec, 0x55,
3284 alc_headset_btn_callback);
476c02e0 3285 break;
04f7791b
HW
3286 case HDA_FIXUP_ACT_BUILD:
3287 hp_pin = alc_get_hp_pin(spec);
3288 if (!hp_pin || snd_hda_jack_bind_keymap(codec, 0x55,
3289 alc_headset_btn_keymap,
3290 hp_pin))
3291 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack",
3292 false, SND_JACK_HEADSET,
3293 alc_headset_btn_keymap);
3294
476c02e0
HW
3295 alc_enable_headset_jack_key(codec);
3296 break;
3297 }
3298}
3299
1387e2d1 3300static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9 3301{
98b24883 3302 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
1d045db9 3303}
291702f0 3304
1d045db9
TI
3305static void alc269_shutup(struct hda_codec *codec)
3306{
adcc70b2
KY
3307 struct alc_spec *spec = codec->spec;
3308
1387e2d1
KY
3309 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3310 alc269vb_toggle_power_output(codec, 0);
3311 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3312 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3313 msleep(150);
3314 }
c0ca5ece 3315 alc_shutup_pins(codec);
1d045db9 3316}
291702f0 3317
6b0f95c4 3318static const struct coef_fw alc282_coefs[] = {
54db6c39 3319 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
32fa7e49 3320 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3321 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3322 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3323 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3324 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3325 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3326 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3327 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3328 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3329 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3330 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3331 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3332 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3333 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3334 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3335 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3336 WRITE_COEF(0x63, 0x2902), /* PLL */
3337 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3338 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3339 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3340 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3341 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3342 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3343 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3344 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3345 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3346 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3347 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3348 {}
3349};
3350
cb149cb3
KY
3351static void alc282_restore_default_value(struct hda_codec *codec)
3352{
54db6c39 3353 alc_process_coef_fw(codec, alc282_coefs);
cb149cb3
KY
3354}
3355
7b5c7a02
KY
3356static void alc282_init(struct hda_codec *codec)
3357{
3358 struct alc_spec *spec = codec->spec;
35a39f98 3359 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3360 bool hp_pin_sense;
3361 int coef78;
3362
cb149cb3
KY
3363 alc282_restore_default_value(codec);
3364
7b5c7a02
KY
3365 if (!hp_pin)
3366 return;
3367 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3368 coef78 = alc_read_coef_idx(codec, 0x78);
3369
3370 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3371 /* Headphone capless set to high power mode */
3372 alc_write_coef_idx(codec, 0x78, 0x9004);
3373
3374 if (hp_pin_sense)
3375 msleep(2);
3376
3377 snd_hda_codec_write(codec, hp_pin, 0,
3378 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3379
3380 if (hp_pin_sense)
3381 msleep(85);
3382
3383 snd_hda_codec_write(codec, hp_pin, 0,
3384 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3385
3386 if (hp_pin_sense)
3387 msleep(100);
3388
3389 /* Headphone capless set to normal mode */
3390 alc_write_coef_idx(codec, 0x78, coef78);
3391}
3392
3393static void alc282_shutup(struct hda_codec *codec)
3394{
3395 struct alc_spec *spec = codec->spec;
35a39f98 3396 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3397 bool hp_pin_sense;
3398 int coef78;
3399
3400 if (!hp_pin) {
3401 alc269_shutup(codec);
3402 return;
3403 }
3404
3405 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3406 coef78 = alc_read_coef_idx(codec, 0x78);
3407 alc_write_coef_idx(codec, 0x78, 0x9004);
3408
3409 if (hp_pin_sense)
3410 msleep(2);
3411
3412 snd_hda_codec_write(codec, hp_pin, 0,
3413 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3414
3415 if (hp_pin_sense)
3416 msleep(85);
3417
c0ca5ece
TI
3418 if (!spec->no_shutup_pins)
3419 snd_hda_codec_write(codec, hp_pin, 0,
3420 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
7b5c7a02
KY
3421
3422 if (hp_pin_sense)
3423 msleep(100);
3424
3425 alc_auto_setup_eapd(codec, false);
c0ca5ece 3426 alc_shutup_pins(codec);
7b5c7a02
KY
3427 alc_write_coef_idx(codec, 0x78, coef78);
3428}
3429
6b0f95c4 3430static const struct coef_fw alc283_coefs[] = {
54db6c39 3431 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
56779864 3432 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3433 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3434 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3435 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3436 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3437 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3438 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3439 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3440 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3441 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3442 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3443 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3444 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3445 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3446 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3447 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3448 WRITE_COEF(0x2e, 0x2902), /* PLL */
3449 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3450 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3451 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3452 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3453 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3454 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3455 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3456 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3457 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3458 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3459 WRITE_COEF(0x49, 0x0), /* test mode */
3460 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3461 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3462 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
56779864 3463 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
54db6c39
TI
3464 {}
3465};
3466
6bd55b04
KY
3467static void alc283_restore_default_value(struct hda_codec *codec)
3468{
54db6c39 3469 alc_process_coef_fw(codec, alc283_coefs);
6bd55b04
KY
3470}
3471
2af02be7
KY
3472static void alc283_init(struct hda_codec *codec)
3473{
3474 struct alc_spec *spec = codec->spec;
35a39f98 3475 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3476 bool hp_pin_sense;
2af02be7 3477
6bd55b04
KY
3478 alc283_restore_default_value(codec);
3479
2af02be7
KY
3480 if (!hp_pin)
3481 return;
a59d7199
KY
3482
3483 msleep(30);
2af02be7
KY
3484 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3485
3486 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3487 /* Headphone capless set to high power mode */
3488 alc_write_coef_idx(codec, 0x43, 0x9004);
3489
3490 snd_hda_codec_write(codec, hp_pin, 0,
3491 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3492
3493 if (hp_pin_sense)
3494 msleep(85);
3495
3496 snd_hda_codec_write(codec, hp_pin, 0,
3497 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3498
3499 if (hp_pin_sense)
3500 msleep(85);
3501 /* Index 0x46 Combo jack auto switch control 2 */
3502 /* 3k pull low control for Headset jack. */
98b24883 3503 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2af02be7
KY
3504 /* Headphone capless set to normal mode */
3505 alc_write_coef_idx(codec, 0x43, 0x9614);
3506}
3507
3508static void alc283_shutup(struct hda_codec *codec)
3509{
3510 struct alc_spec *spec = codec->spec;
35a39f98 3511 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3512 bool hp_pin_sense;
2af02be7
KY
3513
3514 if (!hp_pin) {
3515 alc269_shutup(codec);
3516 return;
3517 }
3518
3519 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3520
3521 alc_write_coef_idx(codec, 0x43, 0x9004);
3522
b450b17c
HP
3523 /*depop hp during suspend*/
3524 alc_write_coef_idx(codec, 0x06, 0x2100);
3525
2af02be7
KY
3526 snd_hda_codec_write(codec, hp_pin, 0,
3527 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3528
3529 if (hp_pin_sense)
88011c09 3530 msleep(100);
2af02be7 3531
c0ca5ece
TI
3532 if (!spec->no_shutup_pins)
3533 snd_hda_codec_write(codec, hp_pin, 0,
3534 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2af02be7 3535
98b24883 3536 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2af02be7
KY
3537
3538 if (hp_pin_sense)
88011c09 3539 msleep(100);
0435b3ff 3540 alc_auto_setup_eapd(codec, false);
c0ca5ece 3541 alc_shutup_pins(codec);
2af02be7
KY
3542 alc_write_coef_idx(codec, 0x43, 0x9614);
3543}
3544
4a219ef8
KY
3545static void alc256_init(struct hda_codec *codec)
3546{
3547 struct alc_spec *spec = codec->spec;
35a39f98 3548 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3549 bool hp_pin_sense;
3550
3551 if (!hp_pin)
6447c962 3552 hp_pin = 0x21;
4a219ef8
KY
3553
3554 msleep(30);
3555
3556 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3557
3558 if (hp_pin_sense)
3559 msleep(2);
3560
3561 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
6447c962
KY
3562 if (spec->ultra_low_power) {
3563 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3564 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3565 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3566 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3567 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3568 msleep(30);
3569 }
4a219ef8
KY
3570
3571 snd_hda_codec_write(codec, hp_pin, 0,
3572 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3573
6447c962 3574 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3575 msleep(85);
3576
3577 snd_hda_codec_write(codec, hp_pin, 0,
3578 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3579
6447c962 3580 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3581 msleep(100);
3582
3583 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3584 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
88d42b2b
KY
3585 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3586 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
c4473744
TH
3587 /*
3588 * Expose headphone mic (or possibly Line In on some machines) instead
3589 * of PC Beep on 1Ah, and disable 1Ah loopback for all outputs. See
3590 * Documentation/sound/hd-audio/realtek-pc-beep.rst for details of
3591 * this register.
3592 */
3593 alc_write_coef_idx(codec, 0x36, 0x5757);
4a219ef8
KY
3594}
3595
3596static void alc256_shutup(struct hda_codec *codec)
3597{
3598 struct alc_spec *spec = codec->spec;
35a39f98 3599 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3600 bool hp_pin_sense;
3601
6447c962
KY
3602 if (!hp_pin)
3603 hp_pin = 0x21;
4a219ef8
KY
3604
3605 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3606
3607 if (hp_pin_sense)
3608 msleep(2);
3609
3610 snd_hda_codec_write(codec, hp_pin, 0,
3611 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3612
6447c962 3613 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3614 msleep(85);
3615
1c9609e3
TI
3616 /* 3k pull low control for Headset jack. */
3617 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3f742490
HW
3618 /* If disable 3k pulldown control for alc257, the Mic detection will not work correctly
3619 * when booting with headset plugged. So skip setting it for the codec alc257
3620 */
f30741cd
KHF
3621 if (codec->core.vendor_id != 0x10ec0236 &&
3622 codec->core.vendor_id != 0x10ec0257)
3f742490 3623 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
1c9609e3 3624
c0ca5ece
TI
3625 if (!spec->no_shutup_pins)
3626 snd_hda_codec_write(codec, hp_pin, 0,
3627 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4a219ef8 3628
6447c962 3629 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3630 msleep(100);
3631
3632 alc_auto_setup_eapd(codec, false);
c0ca5ece 3633 alc_shutup_pins(codec);
6447c962
KY
3634 if (spec->ultra_low_power) {
3635 msleep(50);
3636 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3637 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3638 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3639 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3640 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3641 msleep(30);
3642 }
4a219ef8
KY
3643}
3644
3c24e483
KY
3645static void alc285_hp_init(struct hda_codec *codec)
3646{
3647 struct alc_spec *spec = codec->spec;
3648 hda_nid_t hp_pin = alc_get_hp_pin(spec);
3649 int i, val;
3650 int coef38, coef0d, coef36;
3651
3652 alc_update_coef_idx(codec, 0x4a, 1<<15, 1<<15); /* Reset HP JD */
3653 coef38 = alc_read_coef_idx(codec, 0x38); /* Amp control */
3654 coef0d = alc_read_coef_idx(codec, 0x0d); /* Digital Misc control */
3655 coef36 = alc_read_coef_idx(codec, 0x36); /* Passthrough Control */
3656 alc_update_coef_idx(codec, 0x38, 1<<4, 0x0);
3657 alc_update_coef_idx(codec, 0x0d, 0x110, 0x0);
3658
3659 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
3660
3661 if (hp_pin)
3662 snd_hda_codec_write(codec, hp_pin, 0,
3663 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3664
3665 msleep(130);
3666 alc_update_coef_idx(codec, 0x36, 1<<14, 1<<14);
3667 alc_update_coef_idx(codec, 0x36, 1<<13, 0x0);
3668
3669 if (hp_pin)
3670 snd_hda_codec_write(codec, hp_pin, 0,
3671 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3672 msleep(10);
3673 alc_write_coef_idx(codec, 0x67, 0x0); /* Set HP depop to manual mode */
3674 alc_write_coefex_idx(codec, 0x58, 0x00, 0x7880);
3675 alc_write_coefex_idx(codec, 0x58, 0x0f, 0xf049);
3676 alc_update_coefex_idx(codec, 0x58, 0x03, 0x00f0, 0x00c0);
3677
3678 alc_write_coefex_idx(codec, 0x58, 0x00, 0xf888); /* HP depop procedure start */
3679 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3680 for (i = 0; i < 20 && val & 0x8000; i++) {
3681 msleep(50);
3682 val = alc_read_coefex_idx(codec, 0x58, 0x00);
3683 } /* Wait for depop procedure finish */
3684
3685 alc_write_coefex_idx(codec, 0x58, 0x00, val); /* write back the result */
3686 alc_update_coef_idx(codec, 0x38, 1<<4, coef38);
3687 alc_update_coef_idx(codec, 0x0d, 0x110, coef0d);
3688 alc_update_coef_idx(codec, 0x36, 3<<13, coef36);
3689
3690 msleep(50);
3691 alc_update_coef_idx(codec, 0x4a, 1<<15, 0);
3692}
3693
da911b1f
KY
3694static void alc225_init(struct hda_codec *codec)
3695{
3696 struct alc_spec *spec = codec->spec;
35a39f98 3697 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3698 bool hp1_pin_sense, hp2_pin_sense;
3699
3c24e483
KY
3700 if (spec->codec_variant != ALC269_TYPE_ALC287)
3701 /* required only at boot or S3 and S4 resume time */
3702 if (!spec->done_hp_init ||
3703 is_s3_resume(codec) ||
3704 is_s4_resume(codec)) {
3705 alc285_hp_init(codec);
3706 spec->done_hp_init = true;
3707 }
3708
da911b1f 3709 if (!hp_pin)
d3ba58bb 3710 hp_pin = 0x21;
da911b1f
KY
3711 msleep(30);
3712
3713 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3714 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3715
3716 if (hp1_pin_sense || hp2_pin_sense)
3717 msleep(2);
3718
3719 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
d3ba58bb
KY
3720 if (spec->ultra_low_power) {
3721 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3722 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3723 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3724 msleep(30);
3725 }
da911b1f 3726
d3ba58bb 3727 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3728 snd_hda_codec_write(codec, hp_pin, 0,
3729 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3730 if (hp2_pin_sense)
3731 snd_hda_codec_write(codec, 0x16, 0,
3732 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3733
d3ba58bb 3734 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3735 msleep(85);
3736
d3ba58bb 3737 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3738 snd_hda_codec_write(codec, hp_pin, 0,
3739 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3740 if (hp2_pin_sense)
3741 snd_hda_codec_write(codec, 0x16, 0,
3742 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3743
d3ba58bb 3744 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3745 msleep(100);
3746
3747 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3748 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3749}
3750
3751static void alc225_shutup(struct hda_codec *codec)
3752{
3753 struct alc_spec *spec = codec->spec;
35a39f98 3754 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3755 bool hp1_pin_sense, hp2_pin_sense;
3756
d3ba58bb
KY
3757 if (!hp_pin)
3758 hp_pin = 0x21;
476c02e0
HW
3759
3760 alc_disable_headset_jack_key(codec);
da911b1f
KY
3761 /* 3k pull low control for Headset jack. */
3762 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3763
3764 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3765 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3766
3767 if (hp1_pin_sense || hp2_pin_sense)
3768 msleep(2);
3769
d3ba58bb 3770 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3771 snd_hda_codec_write(codec, hp_pin, 0,
3772 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3773 if (hp2_pin_sense)
3774 snd_hda_codec_write(codec, 0x16, 0,
3775 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3776
d3ba58bb 3777 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3778 msleep(85);
3779
d3ba58bb 3780 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3781 snd_hda_codec_write(codec, hp_pin, 0,
3782 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3783 if (hp2_pin_sense)
3784 snd_hda_codec_write(codec, 0x16, 0,
3785 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3786
d3ba58bb 3787 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3788 msleep(100);
3789
3790 alc_auto_setup_eapd(codec, false);
c0ca5ece 3791 alc_shutup_pins(codec);
d3ba58bb
KY
3792 if (spec->ultra_low_power) {
3793 msleep(50);
3794 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3795 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3796 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3797 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3798 msleep(30);
3799 }
476c02e0
HW
3800
3801 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3802 alc_enable_headset_jack_key(codec);
da911b1f
KY
3803}
3804
c2d6af53
KY
3805static void alc_default_init(struct hda_codec *codec)
3806{
3807 struct alc_spec *spec = codec->spec;
35a39f98 3808 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3809 bool hp_pin_sense;
3810
3811 if (!hp_pin)
3812 return;
3813
3814 msleep(30);
3815
3816 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3817
3818 if (hp_pin_sense)
3819 msleep(2);
3820
3821 snd_hda_codec_write(codec, hp_pin, 0,
3822 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3823
3824 if (hp_pin_sense)
3825 msleep(85);
3826
3827 snd_hda_codec_write(codec, hp_pin, 0,
3828 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3829
3830 if (hp_pin_sense)
3831 msleep(100);
3832}
3833
3834static void alc_default_shutup(struct hda_codec *codec)
3835{
3836 struct alc_spec *spec = codec->spec;
35a39f98 3837 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3838 bool hp_pin_sense;
3839
3840 if (!hp_pin) {
3841 alc269_shutup(codec);
3842 return;
3843 }
3844
3845 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3846
3847 if (hp_pin_sense)
3848 msleep(2);
3849
3850 snd_hda_codec_write(codec, hp_pin, 0,
3851 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3852
3853 if (hp_pin_sense)
3854 msleep(85);
3855
c0ca5ece
TI
3856 if (!spec->no_shutup_pins)
3857 snd_hda_codec_write(codec, hp_pin, 0,
3858 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
c2d6af53
KY
3859
3860 if (hp_pin_sense)
3861 msleep(100);
3862
3863 alc_auto_setup_eapd(codec, false);
c0ca5ece 3864 alc_shutup_pins(codec);
c2d6af53
KY
3865}
3866
693abe11
KY
3867static void alc294_hp_init(struct hda_codec *codec)
3868{
3869 struct alc_spec *spec = codec->spec;
35a39f98 3870 hda_nid_t hp_pin = alc_get_hp_pin(spec);
693abe11
KY
3871 int i, val;
3872
3873 if (!hp_pin)
3874 return;
3875
3876 snd_hda_codec_write(codec, hp_pin, 0,
3877 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3878
3879 msleep(100);
3880
c0ca5ece
TI
3881 if (!spec->no_shutup_pins)
3882 snd_hda_codec_write(codec, hp_pin, 0,
3883 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
693abe11
KY
3884
3885 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3886 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3887
3888 /* Wait for depop procedure finish */
3889 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3890 for (i = 0; i < 20 && val & 0x0080; i++) {
3891 msleep(50);
3892 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3893 }
3894 /* Set HP depop to auto mode */
3895 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3896 msleep(50);
3897}
3898
3899static void alc294_init(struct hda_codec *codec)
3900{
3901 struct alc_spec *spec = codec->spec;
3902
f6ef4e0e
TI
3903 /* required only at boot or S4 resume time */
3904 if (!spec->done_hp_init ||
3905 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
693abe11
KY
3906 alc294_hp_init(codec);
3907 spec->done_hp_init = true;
3908 }
3909 alc_default_init(codec);
3910}
3911
ad60d502
KY
3912static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3913 unsigned int val)
3914{
3915 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3916 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3917 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3918}
3919
3920static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3921{
3922 unsigned int val;
3923
3924 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3925 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3926 & 0xffff;
3927 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3928 << 16;
3929 return val;
3930}
3931
3932static void alc5505_dsp_halt(struct hda_codec *codec)
3933{
3934 unsigned int val;
3935
3936 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3937 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3938 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3939 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3940 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3941 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3942 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3943 val = alc5505_coef_get(codec, 0x6220);
3944 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3945}
3946
3947static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3948{
3949 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3950 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3951 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3952 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3953 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3954 alc5505_coef_set(codec, 0x880c, 0x00000004);
3955}
3956
3957static void alc5505_dsp_init(struct hda_codec *codec)
3958{
3959 unsigned int val;
3960
3961 alc5505_dsp_halt(codec);
3962 alc5505_dsp_back_from_halt(codec);
3963 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3964 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3965 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3966 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3967 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3968 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3969 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3970 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3971 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3972 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3973 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3974 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3975 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3976
3977 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3978 if (val <= 3)
3979 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3980 else
3981 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3982
3983 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3984 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3985 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3986 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3987 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3988 alc5505_coef_set(codec, 0x880c, 0x00000003);
3989 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
3990
3991#ifdef HALT_REALTEK_ALC5505
3992 alc5505_dsp_halt(codec);
3993#endif
ad60d502
KY
3994}
3995
cd63a5ff 3996#ifdef HALT_REALTEK_ALC5505
8a71821f
PLB
3997#define alc5505_dsp_suspend(codec) do { } while (0) /* NOP */
3998#define alc5505_dsp_resume(codec) do { } while (0) /* NOP */
cd63a5ff
TI
3999#else
4000#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
4001#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
4002#endif
4003
2a43952a 4004#ifdef CONFIG_PM
ad60d502
KY
4005static int alc269_suspend(struct hda_codec *codec)
4006{
4007 struct alc_spec *spec = codec->spec;
4008
4009 if (spec->has_alc5505_dsp)
cd63a5ff 4010 alc5505_dsp_suspend(codec);
ad60d502
KY
4011 return alc_suspend(codec);
4012}
4013
1d045db9
TI
4014static int alc269_resume(struct hda_codec *codec)
4015{
adcc70b2
KY
4016 struct alc_spec *spec = codec->spec;
4017
1387e2d1
KY
4018 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4019 alc269vb_toggle_power_output(codec, 0);
4020 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4021 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
4022 msleep(150);
4023 }
8c427226 4024
1d045db9 4025 codec->patch_ops.init(codec);
f1d4e28b 4026
1387e2d1
KY
4027 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
4028 alc269vb_toggle_power_output(codec, 1);
4029 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 4030 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
4031 msleep(200);
4032 }
f1d4e28b 4033
1a462be5 4034 snd_hda_regmap_sync(codec);
1d045db9 4035 hda_call_check_power_status(codec, 0x01);
f475371a
HW
4036
4037 /* on some machine, the BIOS will clear the codec gpio data when enter
4038 * suspend, and won't restore the data after resume, so we restore it
4039 * in the driver.
4040 */
d261eec8
TI
4041 if (spec->gpio_data)
4042 alc_write_gpio_data(codec);
f475371a 4043
ad60d502 4044 if (spec->has_alc5505_dsp)
cd63a5ff 4045 alc5505_dsp_resume(codec);
c5177c86 4046
1d045db9
TI
4047 return 0;
4048}
2a43952a 4049#endif /* CONFIG_PM */
f1d4e28b 4050
108cc108 4051static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 4052 const struct hda_fixup *fix, int action)
108cc108
DH
4053{
4054 struct alc_spec *spec = codec->spec;
4055
1727a771 4056 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
4057 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4058}
4059
fdcc968a
JMG
4060static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
4061 const struct hda_fixup *fix,
4062 int action)
4063{
4064 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
4065 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
4066
4067 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
4068 snd_hda_codec_set_pincfg(codec, 0x19,
4069 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
4070 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
4071}
4072
1d045db9 4073static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 4074 const struct hda_fixup *fix, int action)
1d045db9 4075{
98b24883
TI
4076 if (action == HDA_FIXUP_ACT_INIT)
4077 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
1d045db9 4078}
f1d4e28b 4079
7c478f03
DH
4080static void alc269_fixup_headset_mic(struct hda_codec *codec,
4081 const struct hda_fixup *fix, int action)
4082{
4083 struct alc_spec *spec = codec->spec;
4084
4085 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4086 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4087}
4088
1d045db9 4089static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 4090 const struct hda_fixup *fix, int action)
1d045db9
TI
4091{
4092 static const struct hda_verb verbs[] = {
4093 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4094 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4095 {}
4096 };
4097 unsigned int cfg;
f1d4e28b 4098
7639a06c
TI
4099 if (strcmp(codec->core.chip_name, "ALC271X") &&
4100 strcmp(codec->core.chip_name, "ALC269VB"))
1d045db9
TI
4101 return;
4102 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4103 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4104 snd_hda_sequence_write(codec, verbs);
4105}
f1d4e28b 4106
c8426b27
TI
4107/* Fix the speaker amp after resume, etc */
4108static void alc269vb_fixup_aspire_e1_coef(struct hda_codec *codec,
4109 const struct hda_fixup *fix,
4110 int action)
4111{
4112 if (action == HDA_FIXUP_ACT_INIT)
4113 alc_update_coef_idx(codec, 0x0d, 0x6000, 0x6000);
4114}
4115
017f2a10 4116static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 4117 const struct hda_fixup *fix, int action)
017f2a10
TI
4118{
4119 struct alc_spec *spec = codec->spec;
4120
1727a771 4121 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
4122 return;
4123
4124 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4125 * fix the sample rate of analog I/O to 44.1kHz
4126 */
08c189f2
TI
4127 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
4128 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
4129}
4130
adabb3ec 4131static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 4132 const struct hda_fixup *fix, int action)
adabb3ec 4133{
adabb3ec
TI
4134 /* The digital-mic unit sends PDM (differential signal) instead of
4135 * the standard PCM, thus you can't record a valid mono stream as is.
4136 * Below is a workaround specific to ALC269 to control the dmic
4137 * signal source as mono.
4138 */
98b24883
TI
4139 if (action == HDA_FIXUP_ACT_INIT)
4140 alc_update_coef_idx(codec, 0x07, 0, 0x80);
adabb3ec
TI
4141}
4142
24519911
TI
4143static void alc269_quanta_automute(struct hda_codec *codec)
4144{
08c189f2 4145 snd_hda_gen_update_outputs(codec);
24519911 4146
1687ccc8
TI
4147 alc_write_coef_idx(codec, 0x0c, 0x680);
4148 alc_write_coef_idx(codec, 0x0c, 0x480);
24519911
TI
4149}
4150
4151static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 4152 const struct hda_fixup *fix, int action)
24519911
TI
4153{
4154 struct alc_spec *spec = codec->spec;
1727a771 4155 if (action != HDA_FIXUP_ACT_PROBE)
24519911 4156 return;
08c189f2 4157 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
4158}
4159
d240d1dc 4160static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 4161 struct hda_jack_callback *jack)
d240d1dc
DH
4162{
4163 struct alc_spec *spec = codec->spec;
4164 int vref;
4165 msleep(200);
4166 snd_hda_gen_hp_automute(codec, jack);
4167
4168 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4169 msleep(100);
4170 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4171 vref);
4172 msleep(500);
4173 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4174 vref);
4175}
4176
a2ef03fe
TE
4177/*
4178 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
4179 */
4180struct hda_alc298_mbxinit {
4181 unsigned char value_0x23;
4182 unsigned char value_0x25;
4183};
4184
4185static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
4186 const struct hda_alc298_mbxinit *initval,
4187 bool first)
4188{
4189 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
4190 alc_write_coef_idx(codec, 0x26, 0xb000);
4191
4192 if (first)
4193 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
4194
4195 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4196 alc_write_coef_idx(codec, 0x26, 0xf000);
4197 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
4198
4199 if (initval->value_0x23 != 0x1e)
4200 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
4201
4202 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4203 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4204}
4205
4206static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
4207 const struct hda_fixup *fix,
4208 int action)
4209{
4210 /* Initialization magic */
4211 static const struct hda_alc298_mbxinit dac_init[] = {
4212 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
4213 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
4214 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
4215 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
4216 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
4217 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
4218 {0x2f, 0x00},
4219 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
4220 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
4221 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
4222 {}
4223 };
4224 const struct hda_alc298_mbxinit *seq;
4225
4226 if (action != HDA_FIXUP_ACT_INIT)
4227 return;
4228
4229 /* Start */
4230 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
4231 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
4232 alc_write_coef_idx(codec, 0x26, 0xf000);
4233 alc_write_coef_idx(codec, 0x22, 0x31);
4234 alc_write_coef_idx(codec, 0x23, 0x0b);
4235 alc_write_coef_idx(codec, 0x25, 0x00);
4236 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
4237 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
4238
4239 for (seq = dac_init; seq->value_0x23; seq++)
4240 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
4241}
4242
d240d1dc
DH
4243static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
4244 const struct hda_fixup *fix, int action)
4245{
4246 struct alc_spec *spec = codec->spec;
4247 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4248 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4249 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
4250 }
4251}
4252
766538ac
TI
4253static void alc_update_vref_led(struct hda_codec *codec, hda_nid_t pin,
4254 bool polarity, bool on)
4255{
4256 unsigned int pinval;
4257
4258 if (!pin)
4259 return;
4260 if (polarity)
4261 on = !on;
4262 pinval = snd_hda_codec_get_pin_target(codec, pin);
4263 pinval &= ~AC_PINCTL_VREFEN;
4264 pinval |= on ? AC_PINCTL_VREF_80 : AC_PINCTL_VREF_HIZ;
4265 /* temporarily power up/down for setting VREF */
4266 snd_hda_power_up_pm(codec);
4267 snd_hda_set_pin_ctl_cache(codec, pin, pinval);
4268 snd_hda_power_down_pm(codec);
4269}
d240d1dc 4270
08fb0d0e 4271/* update mute-LED according to the speaker mute state via mic VREF pin */
8d3d1ece
TI
4272static int vref_mute_led_set(struct led_classdev *led_cdev,
4273 enum led_brightness brightness)
6d3cd5d4 4274{
8d3d1ece 4275 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
08fb0d0e 4276 struct alc_spec *spec = codec->spec;
08fb0d0e 4277
766538ac
TI
4278 alc_update_vref_led(codec, spec->mute_led_nid,
4279 spec->mute_led_polarity, brightness);
8d3d1ece 4280 return 0;
6d3cd5d4
DH
4281}
4282
d5b6b65e
DH
4283/* Make sure the led works even in runtime suspend */
4284static unsigned int led_power_filter(struct hda_codec *codec,
4285 hda_nid_t nid,
4286 unsigned int power_state)
4287{
4288 struct alc_spec *spec = codec->spec;
4289
50dd9050
HW
4290 if (power_state != AC_PWRST_D3 || nid == 0 ||
4291 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
d5b6b65e
DH
4292 return power_state;
4293
4294 /* Set pin ctl again, it might have just been set to 0 */
4295 snd_hda_set_pin_ctl(codec, nid,
4296 snd_hda_codec_get_pin_target(codec, nid));
4297
cffd3966 4298 return snd_hda_gen_path_power_filter(codec, nid, power_state);
d5b6b65e
DH
4299}
4300
08fb0d0e
TI
4301static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
4302 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
4303{
4304 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
4305 const struct dmi_device *dev = NULL;
4306
4307 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4308 return;
4309
4310 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
4311 int pol, pin;
4312 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
4313 continue;
4314 if (pin < 0x0a || pin >= 0x10)
4315 break;
4316 spec->mute_led_polarity = pol;
4317 spec->mute_led_nid = pin - 0x0a + 0x18;
8d3d1ece 4318 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4319 codec->power_filter = led_power_filter;
4e76a883
TI
4320 codec_dbg(codec,
4321 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
08fb0d0e 4322 spec->mute_led_polarity);
6d3cd5d4
DH
4323 break;
4324 }
4325}
4326
85c467dc
TI
4327static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
4328 const struct hda_fixup *fix,
4329 int action, hda_nid_t pin)
d06ac143
DH
4330{
4331 struct alc_spec *spec = codec->spec;
85c467dc 4332
d06ac143
DH
4333 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4334 spec->mute_led_polarity = 0;
85c467dc 4335 spec->mute_led_nid = pin;
8d3d1ece 4336 snd_hda_gen_add_mute_led_cdev(codec, vref_mute_led_set);
d5b6b65e 4337 codec->power_filter = led_power_filter;
d06ac143
DH
4338 }
4339}
4340
85c467dc
TI
4341static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
4342 const struct hda_fixup *fix, int action)
4343{
4344 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
4345}
4346
08fb0d0e
TI
4347static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
4348 const struct hda_fixup *fix, int action)
420b0feb 4349{
85c467dc 4350 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
420b0feb
TI
4351}
4352
7f783bd5
TB
4353static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
4354 const struct hda_fixup *fix, int action)
4355{
85c467dc 4356 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
7f783bd5
TB
4357}
4358
0f32fd19
TI
4359/* update LED status via GPIO */
4360static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
dbd13179 4361 int polarity, bool enabled)
9f5c6faf 4362{
dbd13179 4363 if (polarity)
0f32fd19 4364 enabled = !enabled;
d261eec8 4365 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
9f5c6faf
TI
4366}
4367
0f32fd19 4368/* turn on/off mute LED via GPIO per vmaster hook */
8d3d1ece
TI
4369static int gpio_mute_led_set(struct led_classdev *led_cdev,
4370 enum led_brightness brightness)
9f5c6faf 4371{
8d3d1ece 4372 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9f5c6faf 4373 struct alc_spec *spec = codec->spec;
9f5c6faf 4374
dbd13179 4375 alc_update_gpio_led(codec, spec->gpio_mute_led_mask,
8d3d1ece
TI
4376 spec->mute_led_polarity, !brightness);
4377 return 0;
0f32fd19 4378}
9f5c6faf 4379
0f32fd19 4380/* turn on/off mic-mute LED via GPIO per capture hook */
87dc3648
KHF
4381static int micmute_led_set(struct led_classdev *led_cdev,
4382 enum led_brightness brightness)
4383{
4384 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
4385 struct alc_spec *spec = codec->spec;
4386
4387 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
40469064 4388 spec->micmute_led_polarity, !brightness);
87dc3648
KHF
4389 return 0;
4390}
4391
01e4a275
TI
4392/* setup mute and mic-mute GPIO bits, add hooks appropriately */
4393static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
4394 int action,
4395 unsigned int mute_mask,
4396 unsigned int micmute_mask)
9f5c6faf
TI
4397{
4398 struct alc_spec *spec = codec->spec;
9f5c6faf 4399
01e4a275
TI
4400 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
4401
4402 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4403 return;
4404 if (mute_mask) {
4405 spec->gpio_mute_led_mask = mute_mask;
8d3d1ece 4406 snd_hda_gen_add_mute_led_cdev(codec, gpio_mute_led_set);
01e4a275
TI
4407 }
4408 if (micmute_mask) {
4409 spec->gpio_mic_led_mask = micmute_mask;
7cdf8c49 4410 snd_hda_gen_add_micmute_led_cdev(codec, micmute_led_set);
9f5c6faf
TI
4411 }
4412}
4413
e7d66cf7
JS
4414static void alc236_fixup_hp_gpio_led(struct hda_codec *codec,
4415 const struct hda_fixup *fix, int action)
4416{
4417 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x01);
4418}
4419
01e4a275 4420static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
eaa8e5ef
KY
4421 const struct hda_fixup *fix, int action)
4422{
01e4a275
TI
4423 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
4424}
eaa8e5ef 4425
f5a88b0a
KHF
4426static void alc285_fixup_hp_gpio_led(struct hda_codec *codec,
4427 const struct hda_fixup *fix, int action)
4428{
3e0650ab 4429 alc_fixup_hp_gpio_led(codec, action, 0x04, 0x01);
f5a88b0a
KHF
4430}
4431
01e4a275
TI
4432static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4433 const struct hda_fixup *fix, int action)
4434{
4435 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
9f5c6faf
TI
4436}
4437
a0ccbc53
KY
4438static void alc287_fixup_hp_gpio_led(struct hda_codec *codec,
4439 const struct hda_fixup *fix, int action)
4440{
4441 alc_fixup_hp_gpio_led(codec, action, 0x10, 0);
4442}
4443
5fc462c3
JC
4444static void alc245_fixup_hp_gpio_led(struct hda_codec *codec,
4445 const struct hda_fixup *fix, int action)
4446{
4447 struct alc_spec *spec = codec->spec;
4448
4449 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4450 spec->micmute_led_polarity = 1;
4451 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
4452}
4453
8a503555
TI
4454/* turn on/off mic-mute LED per capture hook via VREF change */
4455static int vref_micmute_led_set(struct led_classdev *led_cdev,
4456 enum led_brightness brightness)
9c5dc3bf 4457{
8a503555 4458 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
9c5dc3bf 4459 struct alc_spec *spec = codec->spec;
9c5dc3bf 4460
766538ac
TI
4461 alc_update_vref_led(codec, spec->cap_mute_led_nid,
4462 spec->micmute_led_polarity, brightness);
8a503555 4463 return 0;
9c5dc3bf
KY
4464}
4465
4466static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4467 const struct hda_fixup *fix, int action)
4468{
4469 struct alc_spec *spec = codec->spec;
9c5dc3bf 4470
01e4a275 4471 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
9c5dc3bf 4472 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
4473 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4474 * enable headphone amp
4475 */
4476 spec->gpio_mask |= 0x10;
4477 spec->gpio_dir |= 0x10;
9c5dc3bf 4478 spec->cap_mute_led_nid = 0x18;
8a503555 4479 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
50dd9050 4480 codec->power_filter = led_power_filter;
9c5dc3bf
KY
4481 }
4482}
4483
7a5255f1
DH
4484static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4485 const struct hda_fixup *fix, int action)
4486{
7a5255f1 4487 struct alc_spec *spec = codec->spec;
7a5255f1 4488
01e4a275 4489 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
7a5255f1 4490 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7a5255f1 4491 spec->cap_mute_led_nid = 0x18;
8a503555 4492 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
7a5255f1
DH
4493 codec->power_filter = led_power_filter;
4494 }
4495}
4496
c3bb2b52
TI
4497/* HP Spectre x360 14 model needs a unique workaround for enabling the amp;
4498 * it needs to toggle the GPIO0 once on and off at each time (bko#210633)
4499 */
4500static void alc245_fixup_hp_x360_amp(struct hda_codec *codec,
4501 const struct hda_fixup *fix, int action)
4502{
4503 struct alc_spec *spec = codec->spec;
4504
4505 switch (action) {
4506 case HDA_FIXUP_ACT_PRE_PROBE:
4507 spec->gpio_mask |= 0x01;
4508 spec->gpio_dir |= 0x01;
4509 break;
4510 case HDA_FIXUP_ACT_INIT:
4511 /* need to toggle GPIO to enable the amp */
4512 alc_update_gpio_data(codec, 0x01, true);
4513 msleep(100);
4514 alc_update_gpio_data(codec, 0x01, false);
4515 break;
4516 }
4517}
4518
622464c8
TI
4519/* toggle GPIO2 at each time stream is started; we use PREPARE state instead */
4520static void alc274_hp_envy_pcm_hook(struct hda_pcm_stream *hinfo,
4521 struct hda_codec *codec,
4522 struct snd_pcm_substream *substream,
4523 int action)
4524{
4525 switch (action) {
4526 case HDA_GEN_PCM_ACT_PREPARE:
4527 alc_update_gpio_data(codec, 0x04, true);
4528 break;
4529 case HDA_GEN_PCM_ACT_CLEANUP:
4530 alc_update_gpio_data(codec, 0x04, false);
4531 break;
4532 }
4533}
4534
4535static void alc274_fixup_hp_envy_gpio(struct hda_codec *codec,
4536 const struct hda_fixup *fix,
4537 int action)
4538{
4539 struct alc_spec *spec = codec->spec;
4540
4541 if (action == HDA_FIXUP_ACT_PROBE) {
4542 spec->gpio_mask |= 0x04;
4543 spec->gpio_dir |= 0x04;
4544 spec->gen.pcm_playback_hook = alc274_hp_envy_pcm_hook;
4545 }
4546}
4547
766538ac
TI
4548static void alc_update_coef_led(struct hda_codec *codec,
4549 struct alc_coef_led *led,
4550 bool polarity, bool on)
4551{
4552 if (polarity)
4553 on = !on;
4554 /* temporarily power up/down for setting COEF bit */
4555 alc_update_coef_idx(codec, led->idx, led->mask,
4556 on ? led->on : led->off);
4557}
4558
431e76c3 4559/* update mute-LED according to the speaker mute state via COEF bit */
8d3d1ece
TI
4560static int coef_mute_led_set(struct led_classdev *led_cdev,
4561 enum led_brightness brightness)
431e76c3 4562{
8d3d1ece 4563 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4564 struct alc_spec *spec = codec->spec;
4565
766538ac
TI
4566 alc_update_coef_led(codec, &spec->mute_led_coef,
4567 spec->mute_led_polarity, brightness);
8d3d1ece 4568 return 0;
431e76c3
KY
4569}
4570
4571static void alc285_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4572 const struct hda_fixup *fix,
4573 int action)
4574{
4575 struct alc_spec *spec = codec->spec;
4576
4577 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4578 spec->mute_led_polarity = 0;
766538ac
TI
4579 spec->mute_led_coef.idx = 0x0b;
4580 spec->mute_led_coef.mask = 1 << 3;
4581 spec->mute_led_coef.on = 1 << 3;
4582 spec->mute_led_coef.off = 0;
8d3d1ece 4583 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
431e76c3
KY
4584 }
4585}
4586
24164f43
KY
4587static void alc236_fixup_hp_mute_led_coefbit(struct hda_codec *codec,
4588 const struct hda_fixup *fix,
4589 int action)
4590{
4591 struct alc_spec *spec = codec->spec;
4592
4593 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4594 spec->mute_led_polarity = 0;
766538ac
TI
4595 spec->mute_led_coef.idx = 0x34;
4596 spec->mute_led_coef.mask = 1 << 5;
4597 spec->mute_led_coef.on = 0;
4598 spec->mute_led_coef.off = 1 << 5;
8d3d1ece 4599 snd_hda_gen_add_mute_led_cdev(codec, coef_mute_led_set);
24164f43
KY
4600 }
4601}
4602
431e76c3 4603/* turn on/off mic-mute LED per capture hook by coef bit */
8a503555
TI
4604static int coef_micmute_led_set(struct led_classdev *led_cdev,
4605 enum led_brightness brightness)
431e76c3 4606{
8a503555 4607 struct hda_codec *codec = dev_to_hda_codec(led_cdev->dev->parent);
431e76c3
KY
4608 struct alc_spec *spec = codec->spec;
4609
766538ac
TI
4610 alc_update_coef_led(codec, &spec->mic_led_coef,
4611 spec->micmute_led_polarity, brightness);
8a503555 4612 return 0;
431e76c3
KY
4613}
4614
4615static void alc285_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4616 const struct hda_fixup *fix, int action)
4617{
4618 struct alc_spec *spec = codec->spec;
4619
4620 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4621 spec->mic_led_coef.idx = 0x19;
4622 spec->mic_led_coef.mask = 1 << 13;
4623 spec->mic_led_coef.on = 1 << 13;
4624 spec->mic_led_coef.off = 0;
8a503555 4625 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
431e76c3
KY
4626 }
4627}
4628
24164f43
KY
4629static void alc236_fixup_hp_coef_micmute_led(struct hda_codec *codec,
4630 const struct hda_fixup *fix, int action)
4631{
4632 struct alc_spec *spec = codec->spec;
4633
4634 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
766538ac
TI
4635 spec->mic_led_coef.idx = 0x35;
4636 spec->mic_led_coef.mask = 3 << 2;
4637 spec->mic_led_coef.on = 2 << 2;
4638 spec->mic_led_coef.off = 1 << 2;
8a503555 4639 snd_hda_gen_add_micmute_led_cdev(codec, coef_micmute_led_set);
24164f43
KY
4640 }
4641}
4642
431e76c3
KY
4643static void alc285_fixup_hp_mute_led(struct hda_codec *codec,
4644 const struct hda_fixup *fix, int action)
4645{
4646 alc285_fixup_hp_mute_led_coefbit(codec, fix, action);
4647 alc285_fixup_hp_coef_micmute_led(codec, fix, action);
4648}
4649
24164f43
KY
4650static void alc236_fixup_hp_mute_led(struct hda_codec *codec,
4651 const struct hda_fixup *fix, int action)
4652{
4653 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4654 alc236_fixup_hp_coef_micmute_led(codec, fix, action);
4655}
4656
75b62ab6
JW
4657static void alc236_fixup_hp_micmute_led_vref(struct hda_codec *codec,
4658 const struct hda_fixup *fix, int action)
4659{
4660 struct alc_spec *spec = codec->spec;
4661
4662 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4663 spec->cap_mute_led_nid = 0x1a;
4664 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
4665 codec->power_filter = led_power_filter;
4666 }
4667}
4668
4669static void alc236_fixup_hp_mute_led_micmute_vref(struct hda_codec *codec,
4670 const struct hda_fixup *fix, int action)
4671{
4672 alc236_fixup_hp_mute_led_coefbit(codec, fix, action);
4673 alc236_fixup_hp_micmute_led_vref(codec, fix, action);
4674}
4675
6a30abaa 4676#if IS_REACHABLE(CONFIG_INPUT)
33f4acd3
DH
4677static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4678 struct hda_jack_callback *event)
4679{
4680 struct alc_spec *spec = codec->spec;
4681
4682 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4683 send both key on and key off event for every interrupt. */
c7b60a89 4684 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
33f4acd3 4685 input_sync(spec->kb_dev);
c7b60a89 4686 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
33f4acd3
DH
4687 input_sync(spec->kb_dev);
4688}
33f4acd3 4689
3694cb29
K
4690static int alc_register_micmute_input_device(struct hda_codec *codec)
4691{
4692 struct alc_spec *spec = codec->spec;
c7b60a89 4693 int i;
3694cb29
K
4694
4695 spec->kb_dev = input_allocate_device();
4696 if (!spec->kb_dev) {
4697 codec_err(codec, "Out of memory (input_allocate_device)\n");
4698 return -ENOMEM;
4699 }
c7b60a89
HW
4700
4701 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4702
3694cb29
K
4703 spec->kb_dev->name = "Microphone Mute Button";
4704 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
c7b60a89
HW
4705 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4706 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4707 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4708 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4709 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3694cb29
K
4710
4711 if (input_register_device(spec->kb_dev)) {
4712 codec_err(codec, "input_register_device failed\n");
4713 input_free_device(spec->kb_dev);
4714 spec->kb_dev = NULL;
4715 return -ENOMEM;
4716 }
4717
4718 return 0;
4719}
4720
01e4a275
TI
4721/* GPIO1 = set according to SKU external amp
4722 * GPIO2 = mic mute hotkey
4723 * GPIO3 = mute LED
4724 * GPIO4 = mic mute LED
4725 */
33f4acd3
DH
4726static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4727 const struct hda_fixup *fix, int action)
4728{
33f4acd3
DH
4729 struct alc_spec *spec = codec->spec;
4730
01e4a275 4731 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
33f4acd3 4732 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4733 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29 4734 if (alc_register_micmute_input_device(codec) != 0)
33f4acd3 4735 return;
33f4acd3 4736
01e4a275
TI
4737 spec->gpio_mask |= 0x06;
4738 spec->gpio_dir |= 0x02;
4739 spec->gpio_data |= 0x02;
7639a06c 4740 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
33f4acd3 4741 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
7639a06c 4742 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
33f4acd3 4743 gpio2_mic_hotkey_event);
33f4acd3
DH
4744 return;
4745 }
4746
4747 if (!spec->kb_dev)
4748 return;
4749
4750 switch (action) {
33f4acd3
DH
4751 case HDA_FIXUP_ACT_FREE:
4752 input_unregister_device(spec->kb_dev);
33f4acd3
DH
4753 spec->kb_dev = NULL;
4754 }
33f4acd3
DH
4755}
4756
01e4a275
TI
4757/* Line2 = mic mute hotkey
4758 * GPIO2 = mic mute LED
4759 */
3694cb29
K
4760static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4761 const struct hda_fixup *fix, int action)
4762{
3694cb29
K
4763 struct alc_spec *spec = codec->spec;
4764
01e4a275 4765 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
3694cb29 4766 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4767 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29
K
4768 if (alc_register_micmute_input_device(codec) != 0)
4769 return;
4770
3694cb29
K
4771 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4772 gpio2_mic_hotkey_event);
3694cb29
K
4773 return;
4774 }
4775
4776 if (!spec->kb_dev)
4777 return;
4778
4779 switch (action) {
3694cb29
K
4780 case HDA_FIXUP_ACT_FREE:
4781 input_unregister_device(spec->kb_dev);
4782 spec->kb_dev = NULL;
4783 }
4784}
c469652b
TI
4785#else /* INPUT */
4786#define alc280_fixup_hp_gpio2_mic_hotkey NULL
4787#define alc233_fixup_lenovo_line2_mic_hotkey NULL
4788#endif /* INPUT */
3694cb29 4789
9c5dc3bf
KY
4790static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4791 const struct hda_fixup *fix, int action)
4792{
4793 struct alc_spec *spec = codec->spec;
4794
1bce62a6 4795 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
9c5dc3bf 4796 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9c5dc3bf 4797 spec->cap_mute_led_nid = 0x18;
8a503555 4798 snd_hda_gen_add_micmute_led_cdev(codec, vref_micmute_led_set);
9c5dc3bf
KY
4799 }
4800}
4801
6b0f95c4 4802static const struct coef_fw alc225_pre_hsmode[] = {
5a36767a
KY
4803 UPDATE_COEF(0x4a, 1<<8, 0),
4804 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4805 UPDATE_COEF(0x63, 3<<14, 3<<14),
4806 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4807 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4808 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4809 UPDATE_COEF(0x4a, 3<<10, 0),
4810 {}
4811};
4812
73bdd597
DH
4813static void alc_headset_mode_unplugged(struct hda_codec *codec)
4814{
92666d45 4815 struct alc_spec *spec = codec->spec;
6b0f95c4 4816 static const struct coef_fw coef0255[] = {
717f43d8 4817 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
54db6c39
TI
4818 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4819 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4820 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4821 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4822 {}
4823 };
6b0f95c4 4824 static const struct coef_fw coef0256[] = {
e69e7e03 4825 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
717f43d8
KY
4826 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4827 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4828 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4829 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
e69e7e03
KY
4830 {}
4831 };
6b0f95c4 4832 static const struct coef_fw coef0233[] = {
54db6c39
TI
4833 WRITE_COEF(0x1b, 0x0c0b),
4834 WRITE_COEF(0x45, 0xc429),
4835 UPDATE_COEF(0x35, 0x4000, 0),
4836 WRITE_COEF(0x06, 0x2104),
4837 WRITE_COEF(0x1a, 0x0001),
4838 WRITE_COEF(0x26, 0x0004),
4839 WRITE_COEF(0x32, 0x42a3),
4840 {}
4841 };
6b0f95c4 4842 static const struct coef_fw coef0288[] = {
f3b70332
KY
4843 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4844 UPDATE_COEF(0x50, 0x2000, 0x2000),
4845 UPDATE_COEF(0x56, 0x0006, 0x0006),
4846 UPDATE_COEF(0x66, 0x0008, 0),
4847 UPDATE_COEF(0x67, 0x2000, 0),
4848 {}
4849 };
6b0f95c4 4850 static const struct coef_fw coef0298[] = {
89542936
KY
4851 UPDATE_COEF(0x19, 0x1300, 0x0300),
4852 {}
4853 };
6b0f95c4 4854 static const struct coef_fw coef0292[] = {
54db6c39
TI
4855 WRITE_COEF(0x76, 0x000e),
4856 WRITE_COEF(0x6c, 0x2400),
4857 WRITE_COEF(0x18, 0x7308),
4858 WRITE_COEF(0x6b, 0xc429),
4859 {}
4860 };
6b0f95c4 4861 static const struct coef_fw coef0293[] = {
54db6c39
TI
4862 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4863 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4864 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4865 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4866 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4867 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4868 {}
4869 };
6b0f95c4 4870 static const struct coef_fw coef0668[] = {
54db6c39
TI
4871 WRITE_COEF(0x15, 0x0d40),
4872 WRITE_COEF(0xb7, 0x802b),
4873 {}
4874 };
6b0f95c4 4875 static const struct coef_fw coef0225[] = {
5a36767a 4876 UPDATE_COEF(0x63, 3<<14, 0),
4cc9b9d6
KY
4877 {}
4878 };
6b0f95c4 4879 static const struct coef_fw coef0274[] = {
71683c32
KY
4880 UPDATE_COEF(0x4a, 0x0100, 0),
4881 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4882 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4883 UPDATE_COEF(0x4a, 0x0010, 0),
4884 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4885 WRITE_COEF(0x45, 0x5289),
4886 UPDATE_COEF(0x4a, 0x0c00, 0),
4887 {}
4888 };
54db6c39 4889
92666d45
KY
4890 if (spec->no_internal_mic_pin) {
4891 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
4892 return;
4893 }
4894
7639a06c 4895 switch (codec->core.vendor_id) {
9a22a8f5 4896 case 0x10ec0255:
e69e7e03
KY
4897 alc_process_coef_fw(codec, coef0255);
4898 break;
1948fc06 4899 case 0x10ec0230:
736f20a7 4900 case 0x10ec0236:
7081adf3 4901 case 0x10ec0256:
e69e7e03 4902 alc_process_coef_fw(codec, coef0256);
9a22a8f5 4903 break;
71683c32
KY
4904 case 0x10ec0234:
4905 case 0x10ec0274:
4906 case 0x10ec0294:
4907 alc_process_coef_fw(codec, coef0274);
4908 break;
13fd08a3 4909 case 0x10ec0233:
73bdd597 4910 case 0x10ec0283:
54db6c39 4911 alc_process_coef_fw(codec, coef0233);
73bdd597 4912 break;
f3b70332
KY
4913 case 0x10ec0286:
4914 case 0x10ec0288:
89542936
KY
4915 alc_process_coef_fw(codec, coef0288);
4916 break;
1a5bc8d9 4917 case 0x10ec0298:
89542936 4918 alc_process_coef_fw(codec, coef0298);
f3b70332
KY
4919 alc_process_coef_fw(codec, coef0288);
4920 break;
73bdd597 4921 case 0x10ec0292:
54db6c39 4922 alc_process_coef_fw(codec, coef0292);
73bdd597 4923 break;
a22aa26f 4924 case 0x10ec0293:
54db6c39 4925 alc_process_coef_fw(codec, coef0293);
a22aa26f 4926 break;
73bdd597 4927 case 0x10ec0668:
54db6c39 4928 alc_process_coef_fw(codec, coef0668);
73bdd597 4929 break;
c2b691ee 4930 case 0x10ec0215:
4cc9b9d6 4931 case 0x10ec0225:
c2b691ee 4932 case 0x10ec0285:
7d727869 4933 case 0x10ec0295:
c2b691ee 4934 case 0x10ec0289:
28f1f9b2 4935 case 0x10ec0299:
4d4b0c52 4936 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
4937 alc_process_coef_fw(codec, coef0225);
4938 break;
78f4f7c2
KY
4939 case 0x10ec0867:
4940 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4941 break;
73bdd597 4942 }
4e76a883 4943 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
73bdd597
DH
4944}
4945
4946
4947static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4948 hda_nid_t mic_pin)
4949{
6b0f95c4 4950 static const struct coef_fw coef0255[] = {
54db6c39
TI
4951 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4952 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4953 {}
4954 };
6b0f95c4 4955 static const struct coef_fw coef0256[] = {
717f43d8
KY
4956 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
4957 WRITE_COEFEX(0x57, 0x03, 0x09a3),
4958 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4959 {}
4960 };
6b0f95c4 4961 static const struct coef_fw coef0233[] = {
54db6c39
TI
4962 UPDATE_COEF(0x35, 0, 1<<14),
4963 WRITE_COEF(0x06, 0x2100),
4964 WRITE_COEF(0x1a, 0x0021),
4965 WRITE_COEF(0x26, 0x008c),
4966 {}
4967 };
6b0f95c4 4968 static const struct coef_fw coef0288[] = {
89542936 4969 UPDATE_COEF(0x4f, 0x00c0, 0),
f3b70332
KY
4970 UPDATE_COEF(0x50, 0x2000, 0),
4971 UPDATE_COEF(0x56, 0x0006, 0),
4972 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4973 UPDATE_COEF(0x66, 0x0008, 0x0008),
4974 UPDATE_COEF(0x67, 0x2000, 0x2000),
4975 {}
4976 };
6b0f95c4 4977 static const struct coef_fw coef0292[] = {
54db6c39
TI
4978 WRITE_COEF(0x19, 0xa208),
4979 WRITE_COEF(0x2e, 0xacf0),
4980 {}
4981 };
6b0f95c4 4982 static const struct coef_fw coef0293[] = {
54db6c39
TI
4983 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4984 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4985 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4986 {}
4987 };
6b0f95c4 4988 static const struct coef_fw coef0688[] = {
54db6c39
TI
4989 WRITE_COEF(0xb7, 0x802b),
4990 WRITE_COEF(0xb5, 0x1040),
4991 UPDATE_COEF(0xc3, 0, 1<<12),
4992 {}
4993 };
6b0f95c4 4994 static const struct coef_fw coef0225[] = {
4cc9b9d6
KY
4995 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4996 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4997 UPDATE_COEF(0x63, 3<<14, 0),
4998 {}
4999 };
6b0f95c4 5000 static const struct coef_fw coef0274[] = {
71683c32
KY
5001 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
5002 UPDATE_COEF(0x4a, 0x0010, 0),
5003 UPDATE_COEF(0x6b, 0xf000, 0),
5004 {}
5005 };
54db6c39 5006
7639a06c 5007 switch (codec->core.vendor_id) {
9a22a8f5
KY
5008 case 0x10ec0255:
5009 alc_write_coef_idx(codec, 0x45, 0xc489);
5010 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5011 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5012 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5013 break;
1948fc06 5014 case 0x10ec0230:
717f43d8
KY
5015 case 0x10ec0236:
5016 case 0x10ec0256:
5017 alc_write_coef_idx(codec, 0x45, 0xc489);
5018 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5019 alc_process_coef_fw(codec, coef0256);
5020 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5021 break;
71683c32
KY
5022 case 0x10ec0234:
5023 case 0x10ec0274:
5024 case 0x10ec0294:
5025 alc_write_coef_idx(codec, 0x45, 0x4689);
5026 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5027 alc_process_coef_fw(codec, coef0274);
5028 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5029 break;
13fd08a3 5030 case 0x10ec0233:
73bdd597
DH
5031 case 0x10ec0283:
5032 alc_write_coef_idx(codec, 0x45, 0xc429);
5033 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5034 alc_process_coef_fw(codec, coef0233);
73bdd597
DH
5035 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5036 break;
f3b70332
KY
5037 case 0x10ec0286:
5038 case 0x10ec0288:
1a5bc8d9 5039 case 0x10ec0298:
f3b70332
KY
5040 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5041 alc_process_coef_fw(codec, coef0288);
5042 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5043 break;
73bdd597
DH
5044 case 0x10ec0292:
5045 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5046 alc_process_coef_fw(codec, coef0292);
73bdd597 5047 break;
a22aa26f
KY
5048 case 0x10ec0293:
5049 /* Set to TRS mode */
5050 alc_write_coef_idx(codec, 0x45, 0xc429);
5051 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5052 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5053 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5054 break;
78f4f7c2
KY
5055 case 0x10ec0867:
5056 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
c0dbbdad 5057 fallthrough;
9eb5d0e6 5058 case 0x10ec0221:
1f8b46cd
DH
5059 case 0x10ec0662:
5060 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5061 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5062 break;
73bdd597
DH
5063 case 0x10ec0668:
5064 alc_write_coef_idx(codec, 0x11, 0x0001);
5065 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 5066 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5067 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5068 break;
c2b691ee 5069 case 0x10ec0215:
4cc9b9d6 5070 case 0x10ec0225:
c2b691ee 5071 case 0x10ec0285:
7d727869 5072 case 0x10ec0295:
c2b691ee 5073 case 0x10ec0289:
28f1f9b2 5074 case 0x10ec0299:
5a36767a 5075 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
5076 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
5077 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
5078 alc_process_coef_fw(codec, coef0225);
5079 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
5080 break;
73bdd597 5081 }
4e76a883 5082 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
73bdd597
DH
5083}
5084
5085static void alc_headset_mode_default(struct hda_codec *codec)
5086{
6b0f95c4 5087 static const struct coef_fw coef0225[] = {
5a36767a
KY
5088 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
5089 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
5090 UPDATE_COEF(0x49, 3<<8, 0<<8),
5091 UPDATE_COEF(0x4a, 3<<4, 3<<4),
5092 UPDATE_COEF(0x63, 3<<14, 0),
5093 UPDATE_COEF(0x67, 0xf000, 0x3000),
2ae95577
DH
5094 {}
5095 };
6b0f95c4 5096 static const struct coef_fw coef0255[] = {
54db6c39
TI
5097 WRITE_COEF(0x45, 0xc089),
5098 WRITE_COEF(0x45, 0xc489),
5099 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5100 WRITE_COEF(0x49, 0x0049),
5101 {}
5102 };
6b0f95c4 5103 static const struct coef_fw coef0256[] = {
717f43d8
KY
5104 WRITE_COEF(0x45, 0xc489),
5105 WRITE_COEFEX(0x57, 0x03, 0x0da3),
5106 WRITE_COEF(0x49, 0x0049),
5107 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
5108 WRITE_COEF(0x06, 0x6100),
5109 {}
5110 };
6b0f95c4 5111 static const struct coef_fw coef0233[] = {
54db6c39
TI
5112 WRITE_COEF(0x06, 0x2100),
5113 WRITE_COEF(0x32, 0x4ea3),
5114 {}
5115 };
6b0f95c4 5116 static const struct coef_fw coef0288[] = {
f3b70332
KY
5117 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
5118 UPDATE_COEF(0x50, 0x2000, 0x2000),
5119 UPDATE_COEF(0x56, 0x0006, 0x0006),
5120 UPDATE_COEF(0x66, 0x0008, 0),
5121 UPDATE_COEF(0x67, 0x2000, 0),
5122 {}
5123 };
6b0f95c4 5124 static const struct coef_fw coef0292[] = {
54db6c39
TI
5125 WRITE_COEF(0x76, 0x000e),
5126 WRITE_COEF(0x6c, 0x2400),
5127 WRITE_COEF(0x6b, 0xc429),
5128 WRITE_COEF(0x18, 0x7308),
5129 {}
5130 };
6b0f95c4 5131 static const struct coef_fw coef0293[] = {
54db6c39
TI
5132 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
5133 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
5134 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
5135 {}
5136 };
6b0f95c4 5137 static const struct coef_fw coef0688[] = {
54db6c39
TI
5138 WRITE_COEF(0x11, 0x0041),
5139 WRITE_COEF(0x15, 0x0d40),
5140 WRITE_COEF(0xb7, 0x802b),
5141 {}
5142 };
6b0f95c4 5143 static const struct coef_fw coef0274[] = {
71683c32
KY
5144 WRITE_COEF(0x45, 0x4289),
5145 UPDATE_COEF(0x4a, 0x0010, 0x0010),
5146 UPDATE_COEF(0x6b, 0x0f00, 0),
5147 UPDATE_COEF(0x49, 0x0300, 0x0300),
5148 {}
5149 };
54db6c39 5150
7639a06c 5151 switch (codec->core.vendor_id) {
c2b691ee 5152 case 0x10ec0215:
2ae95577 5153 case 0x10ec0225:
c2b691ee 5154 case 0x10ec0285:
7d727869 5155 case 0x10ec0295:
c2b691ee 5156 case 0x10ec0289:
28f1f9b2 5157 case 0x10ec0299:
5a36767a 5158 alc_process_coef_fw(codec, alc225_pre_hsmode);
2ae95577
DH
5159 alc_process_coef_fw(codec, coef0225);
5160 break;
9a22a8f5 5161 case 0x10ec0255:
54db6c39 5162 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5163 break;
1948fc06 5164 case 0x10ec0230:
717f43d8
KY
5165 case 0x10ec0236:
5166 case 0x10ec0256:
5167 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5168 alc_write_coef_idx(codec, 0x45, 0xc089);
5169 msleep(50);
5170 alc_process_coef_fw(codec, coef0256);
5171 break;
71683c32
KY
5172 case 0x10ec0234:
5173 case 0x10ec0274:
5174 case 0x10ec0294:
5175 alc_process_coef_fw(codec, coef0274);
5176 break;
13fd08a3 5177 case 0x10ec0233:
73bdd597 5178 case 0x10ec0283:
54db6c39 5179 alc_process_coef_fw(codec, coef0233);
73bdd597 5180 break;
f3b70332
KY
5181 case 0x10ec0286:
5182 case 0x10ec0288:
1a5bc8d9 5183 case 0x10ec0298:
f3b70332
KY
5184 alc_process_coef_fw(codec, coef0288);
5185 break;
73bdd597 5186 case 0x10ec0292:
54db6c39 5187 alc_process_coef_fw(codec, coef0292);
73bdd597 5188 break;
a22aa26f 5189 case 0x10ec0293:
54db6c39 5190 alc_process_coef_fw(codec, coef0293);
a22aa26f 5191 break;
73bdd597 5192 case 0x10ec0668:
54db6c39 5193 alc_process_coef_fw(codec, coef0688);
73bdd597 5194 break;
78f4f7c2
KY
5195 case 0x10ec0867:
5196 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5197 break;
73bdd597 5198 }
4e76a883 5199 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
73bdd597
DH
5200}
5201
5202/* Iphone type */
5203static void alc_headset_mode_ctia(struct hda_codec *codec)
5204{
89542936
KY
5205 int val;
5206
6b0f95c4 5207 static const struct coef_fw coef0255[] = {
54db6c39
TI
5208 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
5209 WRITE_COEF(0x1b, 0x0c2b),
5210 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5211 {}
5212 };
6b0f95c4 5213 static const struct coef_fw coef0256[] = {
e69e7e03 5214 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
717f43d8 5215 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5216 {}
5217 };
6b0f95c4 5218 static const struct coef_fw coef0233[] = {
54db6c39
TI
5219 WRITE_COEF(0x45, 0xd429),
5220 WRITE_COEF(0x1b, 0x0c2b),
5221 WRITE_COEF(0x32, 0x4ea3),
5222 {}
5223 };
6b0f95c4 5224 static const struct coef_fw coef0288[] = {
f3b70332
KY
5225 UPDATE_COEF(0x50, 0x2000, 0x2000),
5226 UPDATE_COEF(0x56, 0x0006, 0x0006),
5227 UPDATE_COEF(0x66, 0x0008, 0),
5228 UPDATE_COEF(0x67, 0x2000, 0),
5229 {}
5230 };
6b0f95c4 5231 static const struct coef_fw coef0292[] = {
54db6c39
TI
5232 WRITE_COEF(0x6b, 0xd429),
5233 WRITE_COEF(0x76, 0x0008),
5234 WRITE_COEF(0x18, 0x7388),
5235 {}
5236 };
6b0f95c4 5237 static const struct coef_fw coef0293[] = {
54db6c39
TI
5238 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
5239 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5240 {}
5241 };
6b0f95c4 5242 static const struct coef_fw coef0688[] = {
54db6c39
TI
5243 WRITE_COEF(0x11, 0x0001),
5244 WRITE_COEF(0x15, 0x0d60),
5245 WRITE_COEF(0xc3, 0x0000),
5246 {}
5247 };
6b0f95c4 5248 static const struct coef_fw coef0225_1[] = {
4cc9b9d6 5249 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5a36767a
KY
5250 UPDATE_COEF(0x63, 3<<14, 2<<14),
5251 {}
5252 };
6b0f95c4 5253 static const struct coef_fw coef0225_2[] = {
5a36767a
KY
5254 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5255 UPDATE_COEF(0x63, 3<<14, 1<<14),
4cc9b9d6
KY
5256 {}
5257 };
54db6c39 5258
7639a06c 5259 switch (codec->core.vendor_id) {
9a22a8f5 5260 case 0x10ec0255:
54db6c39 5261 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5262 break;
1948fc06 5263 case 0x10ec0230:
736f20a7 5264 case 0x10ec0236:
e69e7e03
KY
5265 case 0x10ec0256:
5266 alc_process_coef_fw(codec, coef0256);
5267 break;
71683c32
KY
5268 case 0x10ec0234:
5269 case 0x10ec0274:
5270 case 0x10ec0294:
5271 alc_write_coef_idx(codec, 0x45, 0xd689);
5272 break;
13fd08a3 5273 case 0x10ec0233:
73bdd597 5274 case 0x10ec0283:
54db6c39 5275 alc_process_coef_fw(codec, coef0233);
73bdd597 5276 break;
1a5bc8d9 5277 case 0x10ec0298:
89542936
KY
5278 val = alc_read_coef_idx(codec, 0x50);
5279 if (val & (1 << 12)) {
5280 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5281 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5282 msleep(300);
5283 } else {
5284 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5285 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5286 msleep(300);
5287 }
5288 break;
f3b70332
KY
5289 case 0x10ec0286:
5290 case 0x10ec0288:
5291 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
5292 msleep(300);
5293 alc_process_coef_fw(codec, coef0288);
5294 break;
73bdd597 5295 case 0x10ec0292:
54db6c39 5296 alc_process_coef_fw(codec, coef0292);
73bdd597 5297 break;
a22aa26f 5298 case 0x10ec0293:
54db6c39 5299 alc_process_coef_fw(codec, coef0293);
a22aa26f 5300 break;
73bdd597 5301 case 0x10ec0668:
54db6c39 5302 alc_process_coef_fw(codec, coef0688);
73bdd597 5303 break;
c2b691ee 5304 case 0x10ec0215:
4cc9b9d6 5305 case 0x10ec0225:
c2b691ee 5306 case 0x10ec0285:
7d727869 5307 case 0x10ec0295:
c2b691ee 5308 case 0x10ec0289:
28f1f9b2 5309 case 0x10ec0299:
5a36767a
KY
5310 val = alc_read_coef_idx(codec, 0x45);
5311 if (val & (1 << 9))
5312 alc_process_coef_fw(codec, coef0225_2);
5313 else
5314 alc_process_coef_fw(codec, coef0225_1);
4cc9b9d6 5315 break;
78f4f7c2
KY
5316 case 0x10ec0867:
5317 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5318 break;
73bdd597 5319 }
4e76a883 5320 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
73bdd597
DH
5321}
5322
5323/* Nokia type */
5324static void alc_headset_mode_omtp(struct hda_codec *codec)
5325{
6b0f95c4 5326 static const struct coef_fw coef0255[] = {
54db6c39
TI
5327 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
5328 WRITE_COEF(0x1b, 0x0c2b),
5329 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
5330 {}
5331 };
6b0f95c4 5332 static const struct coef_fw coef0256[] = {
e69e7e03 5333 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
717f43d8 5334 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
5335 {}
5336 };
6b0f95c4 5337 static const struct coef_fw coef0233[] = {
54db6c39
TI
5338 WRITE_COEF(0x45, 0xe429),
5339 WRITE_COEF(0x1b, 0x0c2b),
5340 WRITE_COEF(0x32, 0x4ea3),
5341 {}
5342 };
6b0f95c4 5343 static const struct coef_fw coef0288[] = {
f3b70332
KY
5344 UPDATE_COEF(0x50, 0x2000, 0x2000),
5345 UPDATE_COEF(0x56, 0x0006, 0x0006),
5346 UPDATE_COEF(0x66, 0x0008, 0),
5347 UPDATE_COEF(0x67, 0x2000, 0),
5348 {}
5349 };
6b0f95c4 5350 static const struct coef_fw coef0292[] = {
54db6c39
TI
5351 WRITE_COEF(0x6b, 0xe429),
5352 WRITE_COEF(0x76, 0x0008),
5353 WRITE_COEF(0x18, 0x7388),
5354 {}
5355 };
6b0f95c4 5356 static const struct coef_fw coef0293[] = {
54db6c39
TI
5357 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
5358 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
5359 {}
5360 };
6b0f95c4 5361 static const struct coef_fw coef0688[] = {
54db6c39
TI
5362 WRITE_COEF(0x11, 0x0001),
5363 WRITE_COEF(0x15, 0x0d50),
5364 WRITE_COEF(0xc3, 0x0000),
5365 {}
5366 };
6b0f95c4 5367 static const struct coef_fw coef0225[] = {
4cc9b9d6 5368 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5a36767a 5369 UPDATE_COEF(0x63, 3<<14, 2<<14),
4cc9b9d6
KY
5370 {}
5371 };
54db6c39 5372
7639a06c 5373 switch (codec->core.vendor_id) {
9a22a8f5 5374 case 0x10ec0255:
54db6c39 5375 alc_process_coef_fw(codec, coef0255);
9a22a8f5 5376 break;
1948fc06 5377 case 0x10ec0230:
736f20a7 5378 case 0x10ec0236:
e69e7e03
KY
5379 case 0x10ec0256:
5380 alc_process_coef_fw(codec, coef0256);
5381 break;
71683c32
KY
5382 case 0x10ec0234:
5383 case 0x10ec0274:
5384 case 0x10ec0294:
5385 alc_write_coef_idx(codec, 0x45, 0xe689);
5386 break;
13fd08a3 5387 case 0x10ec0233:
73bdd597 5388 case 0x10ec0283:
54db6c39 5389 alc_process_coef_fw(codec, coef0233);
73bdd597 5390 break;
1a5bc8d9
KY
5391 case 0x10ec0298:
5392 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
89542936
KY
5393 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5394 msleep(300);
5395 break;
f3b70332
KY
5396 case 0x10ec0286:
5397 case 0x10ec0288:
5398 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
5399 msleep(300);
5400 alc_process_coef_fw(codec, coef0288);
5401 break;
73bdd597 5402 case 0x10ec0292:
54db6c39 5403 alc_process_coef_fw(codec, coef0292);
73bdd597 5404 break;
a22aa26f 5405 case 0x10ec0293:
54db6c39 5406 alc_process_coef_fw(codec, coef0293);
a22aa26f 5407 break;
73bdd597 5408 case 0x10ec0668:
54db6c39 5409 alc_process_coef_fw(codec, coef0688);
73bdd597 5410 break;
c2b691ee 5411 case 0x10ec0215:
4cc9b9d6 5412 case 0x10ec0225:
c2b691ee 5413 case 0x10ec0285:
7d727869 5414 case 0x10ec0295:
c2b691ee 5415 case 0x10ec0289:
28f1f9b2 5416 case 0x10ec0299:
4cc9b9d6
KY
5417 alc_process_coef_fw(codec, coef0225);
5418 break;
73bdd597 5419 }
4e76a883 5420 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
73bdd597
DH
5421}
5422
5423static void alc_determine_headset_type(struct hda_codec *codec)
5424{
5425 int val;
5426 bool is_ctia = false;
5427 struct alc_spec *spec = codec->spec;
6b0f95c4 5428 static const struct coef_fw coef0255[] = {
54db6c39
TI
5429 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
5430 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
5431 conteol) */
5432 {}
5433 };
6b0f95c4 5434 static const struct coef_fw coef0288[] = {
f3b70332
KY
5435 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
5436 {}
5437 };
6b0f95c4 5438 static const struct coef_fw coef0298[] = {
89542936
KY
5439 UPDATE_COEF(0x50, 0x2000, 0x2000),
5440 UPDATE_COEF(0x56, 0x0006, 0x0006),
5441 UPDATE_COEF(0x66, 0x0008, 0),
5442 UPDATE_COEF(0x67, 0x2000, 0),
5443 UPDATE_COEF(0x19, 0x1300, 0x1300),
5444 {}
5445 };
6b0f95c4 5446 static const struct coef_fw coef0293[] = {
54db6c39
TI
5447 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
5448 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
5449 {}
5450 };
6b0f95c4 5451 static const struct coef_fw coef0688[] = {
54db6c39
TI
5452 WRITE_COEF(0x11, 0x0001),
5453 WRITE_COEF(0xb7, 0x802b),
5454 WRITE_COEF(0x15, 0x0d60),
5455 WRITE_COEF(0xc3, 0x0c00),
5456 {}
5457 };
6b0f95c4 5458 static const struct coef_fw coef0274[] = {
71683c32
KY
5459 UPDATE_COEF(0x4a, 0x0010, 0),
5460 UPDATE_COEF(0x4a, 0x8000, 0),
5461 WRITE_COEF(0x45, 0xd289),
5462 UPDATE_COEF(0x49, 0x0300, 0x0300),
5463 {}
5464 };
73bdd597 5465
92666d45
KY
5466 if (spec->no_internal_mic_pin) {
5467 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
5468 return;
5469 }
5470
7639a06c 5471 switch (codec->core.vendor_id) {
9a22a8f5 5472 case 0x10ec0255:
717f43d8
KY
5473 alc_process_coef_fw(codec, coef0255);
5474 msleep(300);
5475 val = alc_read_coef_idx(codec, 0x46);
5476 is_ctia = (val & 0x0070) == 0x0070;
5477 break;
1948fc06 5478 case 0x10ec0230:
717f43d8 5479 case 0x10ec0236:
7081adf3 5480 case 0x10ec0256:
717f43d8
KY
5481 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
5482 alc_write_coef_idx(codec, 0x06, 0x6104);
5483 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
5484
5485 snd_hda_codec_write(codec, 0x21, 0,
5486 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5487 msleep(80);
5488 snd_hda_codec_write(codec, 0x21, 0,
5489 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5490
54db6c39 5491 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
5492 msleep(300);
5493 val = alc_read_coef_idx(codec, 0x46);
5494 is_ctia = (val & 0x0070) == 0x0070;
717f43d8
KY
5495
5496 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
5497 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
5498
5499 snd_hda_codec_write(codec, 0x21, 0,
5500 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5501 msleep(80);
5502 snd_hda_codec_write(codec, 0x21, 0,
5503 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9a22a8f5 5504 break;
71683c32
KY
5505 case 0x10ec0234:
5506 case 0x10ec0274:
5507 case 0x10ec0294:
5508 alc_process_coef_fw(codec, coef0274);
febf2256 5509 msleep(850);
71683c32
KY
5510 val = alc_read_coef_idx(codec, 0x46);
5511 is_ctia = (val & 0x00f0) == 0x00f0;
5512 break;
13fd08a3 5513 case 0x10ec0233:
73bdd597
DH
5514 case 0x10ec0283:
5515 alc_write_coef_idx(codec, 0x45, 0xd029);
5516 msleep(300);
5517 val = alc_read_coef_idx(codec, 0x46);
5518 is_ctia = (val & 0x0070) == 0x0070;
5519 break;
1a5bc8d9 5520 case 0x10ec0298:
89542936
KY
5521 snd_hda_codec_write(codec, 0x21, 0,
5522 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5523 msleep(100);
5524 snd_hda_codec_write(codec, 0x21, 0,
5525 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5526 msleep(200);
5527
5528 val = alc_read_coef_idx(codec, 0x50);
5529 if (val & (1 << 12)) {
5530 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
5531 alc_process_coef_fw(codec, coef0288);
5532 msleep(350);
5533 val = alc_read_coef_idx(codec, 0x50);
5534 is_ctia = (val & 0x0070) == 0x0070;
5535 } else {
5536 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
5537 alc_process_coef_fw(codec, coef0288);
5538 msleep(350);
5539 val = alc_read_coef_idx(codec, 0x50);
5540 is_ctia = (val & 0x0070) == 0x0070;
5541 }
5542 alc_process_coef_fw(codec, coef0298);
5543 snd_hda_codec_write(codec, 0x21, 0,
5544 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
5545 msleep(75);
5546 snd_hda_codec_write(codec, 0x21, 0,
5547 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
5548 break;
f3b70332
KY
5549 case 0x10ec0286:
5550 case 0x10ec0288:
5551 alc_process_coef_fw(codec, coef0288);
5552 msleep(350);
5553 val = alc_read_coef_idx(codec, 0x50);
5554 is_ctia = (val & 0x0070) == 0x0070;
5555 break;
73bdd597
DH
5556 case 0x10ec0292:
5557 alc_write_coef_idx(codec, 0x6b, 0xd429);
5558 msleep(300);
5559 val = alc_read_coef_idx(codec, 0x6c);
5560 is_ctia = (val & 0x001c) == 0x001c;
5561 break;
a22aa26f 5562 case 0x10ec0293:
54db6c39 5563 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
5564 msleep(300);
5565 val = alc_read_coef_idx(codec, 0x46);
5566 is_ctia = (val & 0x0070) == 0x0070;
5567 break;
73bdd597 5568 case 0x10ec0668:
54db6c39 5569 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
5570 msleep(300);
5571 val = alc_read_coef_idx(codec, 0xbe);
5572 is_ctia = (val & 0x1c02) == 0x1c02;
5573 break;
c2b691ee 5574 case 0x10ec0215:
4cc9b9d6 5575 case 0x10ec0225:
c2b691ee 5576 case 0x10ec0285:
7d727869 5577 case 0x10ec0295:
c2b691ee 5578 case 0x10ec0289:
28f1f9b2 5579 case 0x10ec0299:
da911b1f
KY
5580 snd_hda_codec_write(codec, 0x21, 0,
5581 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5582 msleep(80);
5583 snd_hda_codec_write(codec, 0x21, 0,
5584 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
5585
5a36767a
KY
5586 alc_process_coef_fw(codec, alc225_pre_hsmode);
5587 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
5588 val = alc_read_coef_idx(codec, 0x45);
5589 if (val & (1 << 9)) {
5590 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5591 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
5592 msleep(800);
5593 val = alc_read_coef_idx(codec, 0x46);
5594 is_ctia = (val & 0x00f0) == 0x00f0;
5595 } else {
5596 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
5597 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
5598 msleep(800);
5599 val = alc_read_coef_idx(codec, 0x46);
5600 is_ctia = (val & 0x00f0) == 0x00f0;
5601 }
5602 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
5603 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
5604 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
da911b1f
KY
5605
5606 snd_hda_codec_write(codec, 0x21, 0,
5607 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
5608 msleep(80);
5609 snd_hda_codec_write(codec, 0x21, 0,
5610 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4cc9b9d6 5611 break;
78f4f7c2
KY
5612 case 0x10ec0867:
5613 is_ctia = true;
5614 break;
73bdd597
DH
5615 }
5616
4e76a883 5617 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
73bdd597
DH
5618 is_ctia ? "yes" : "no");
5619 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
5620}
5621
5622static void alc_update_headset_mode(struct hda_codec *codec)
5623{
5624 struct alc_spec *spec = codec->spec;
5625
5626 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
35a39f98 5627 hda_nid_t hp_pin = alc_get_hp_pin(spec);
73bdd597
DH
5628
5629 int new_headset_mode;
5630
5631 if (!snd_hda_jack_detect(codec, hp_pin))
5632 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
5633 else if (mux_pin == spec->headset_mic_pin)
5634 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
5635 else if (mux_pin == spec->headphone_mic_pin)
5636 new_headset_mode = ALC_HEADSET_MODE_MIC;
5637 else
5638 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5639
5959a6bc
DH
5640 if (new_headset_mode == spec->current_headset_mode) {
5641 snd_hda_gen_update_outputs(codec);
73bdd597 5642 return;
5959a6bc 5643 }
73bdd597
DH
5644
5645 switch (new_headset_mode) {
5646 case ALC_HEADSET_MODE_UNPLUGGED:
5647 alc_headset_mode_unplugged(codec);
aeac1a0d
KY
5648 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5649 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
5650 spec->gen.hp_jack_present = false;
5651 break;
5652 case ALC_HEADSET_MODE_HEADSET:
5653 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5654 alc_determine_headset_type(codec);
5655 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5656 alc_headset_mode_ctia(codec);
5657 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5658 alc_headset_mode_omtp(codec);
5659 spec->gen.hp_jack_present = true;
5660 break;
5661 case ALC_HEADSET_MODE_MIC:
5662 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5663 spec->gen.hp_jack_present = false;
5664 break;
5665 case ALC_HEADSET_MODE_HEADPHONE:
5666 alc_headset_mode_default(codec);
5667 spec->gen.hp_jack_present = true;
5668 break;
5669 }
5670 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5671 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5672 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1f8b46cd 5673 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
73bdd597
DH
5674 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5675 PIN_VREFHIZ);
5676 }
5677 spec->current_headset_mode = new_headset_mode;
5678
5679 snd_hda_gen_update_outputs(codec);
5680}
5681
5682static void alc_update_headset_mode_hook(struct hda_codec *codec,
7fe30711
TI
5683 struct snd_kcontrol *kcontrol,
5684 struct snd_ctl_elem_value *ucontrol)
73bdd597
DH
5685{
5686 alc_update_headset_mode(codec);
5687}
5688
1a4f69d5
TI
5689static void alc_update_headset_jack_cb(struct hda_codec *codec,
5690 struct hda_jack_callback *jack)
73bdd597 5691{
73bdd597 5692 snd_hda_gen_hp_automute(codec, jack);
e54f30be 5693 alc_update_headset_mode(codec);
73bdd597
DH
5694}
5695
5696static void alc_probe_headset_mode(struct hda_codec *codec)
5697{
5698 int i;
5699 struct alc_spec *spec = codec->spec;
5700 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5701
5702 /* Find mic pins */
5703 for (i = 0; i < cfg->num_inputs; i++) {
5704 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5705 spec->headset_mic_pin = cfg->inputs[i].pin;
5706 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5707 spec->headphone_mic_pin = cfg->inputs[i].pin;
5708 }
5709
0bed2aa3 5710 WARN_ON(spec->gen.cap_sync_hook);
73bdd597
DH
5711 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5712 spec->gen.automute_hook = alc_update_headset_mode;
5713 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5714}
5715
5716static void alc_fixup_headset_mode(struct hda_codec *codec,
5717 const struct hda_fixup *fix, int action)
5718{
5719 struct alc_spec *spec = codec->spec;
5720
5721 switch (action) {
5722 case HDA_FIXUP_ACT_PRE_PROBE:
5723 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5724 break;
5725 case HDA_FIXUP_ACT_PROBE:
5726 alc_probe_headset_mode(codec);
5727 break;
5728 case HDA_FIXUP_ACT_INIT:
aeac1a0d
KY
5729 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5730 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5731 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5732 }
73bdd597
DH
5733 alc_update_headset_mode(codec);
5734 break;
5735 }
5736}
5737
5738static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5739 const struct hda_fixup *fix, int action)
5740{
5741 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5742 struct alc_spec *spec = codec->spec;
5743 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5744 }
5745 else
5746 alc_fixup_headset_mode(codec, fix, action);
5747}
5748
31278997
KY
5749static void alc255_set_default_jack_type(struct hda_codec *codec)
5750{
5751 /* Set to iphone type */
6b0f95c4 5752 static const struct coef_fw alc255fw[] = {
54db6c39
TI
5753 WRITE_COEF(0x1b, 0x880b),
5754 WRITE_COEF(0x45, 0xd089),
5755 WRITE_COEF(0x1b, 0x080b),
5756 WRITE_COEF(0x46, 0x0004),
5757 WRITE_COEF(0x1b, 0x0c0b),
5758 {}
5759 };
6b0f95c4 5760 static const struct coef_fw alc256fw[] = {
e69e7e03
KY
5761 WRITE_COEF(0x1b, 0x884b),
5762 WRITE_COEF(0x45, 0xd089),
5763 WRITE_COEF(0x1b, 0x084b),
5764 WRITE_COEF(0x46, 0x0004),
5765 WRITE_COEF(0x1b, 0x0c4b),
5766 {}
5767 };
5768 switch (codec->core.vendor_id) {
5769 case 0x10ec0255:
5770 alc_process_coef_fw(codec, alc255fw);
5771 break;
1948fc06 5772 case 0x10ec0230:
736f20a7 5773 case 0x10ec0236:
e69e7e03
KY
5774 case 0x10ec0256:
5775 alc_process_coef_fw(codec, alc256fw);
5776 break;
5777 }
31278997
KY
5778 msleep(30);
5779}
5780
9a22a8f5
KY
5781static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5782 const struct hda_fixup *fix, int action)
5783{
5784 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
31278997 5785 alc255_set_default_jack_type(codec);
9a22a8f5
KY
5786 }
5787 alc_fixup_headset_mode(codec, fix, action);
5788}
5789
31278997
KY
5790static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5791 const struct hda_fixup *fix, int action)
5792{
5793 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5794 struct alc_spec *spec = codec->spec;
5795 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5796 alc255_set_default_jack_type(codec);
5797 }
5798 else
5799 alc_fixup_headset_mode(codec, fix, action);
5800}
5801
e1e62b98
KY
5802static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5803 struct hda_jack_callback *jack)
5804{
5805 struct alc_spec *spec = codec->spec;
e1e62b98
KY
5806
5807 alc_update_headset_jack_cb(codec, jack);
5808 /* Headset Mic enable or disable, only for Dell Dino */
d44a6864 5809 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
e1e62b98
KY
5810}
5811
5812static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5813 const struct hda_fixup *fix, int action)
5814{
5815 alc_fixup_headset_mode(codec, fix, action);
5816 if (action == HDA_FIXUP_ACT_PROBE) {
5817 struct alc_spec *spec = codec->spec;
d44a6864
TI
5818 /* toggled via hp_automute_hook */
5819 spec->gpio_mask |= 0x40;
5820 spec->gpio_dir |= 0x40;
e1e62b98
KY
5821 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5822 }
5823}
5824
493a52a9
HW
5825static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5826 const struct hda_fixup *fix, int action)
5827{
5828 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5829 struct alc_spec *spec = codec->spec;
5830 spec->gen.auto_mute_via_amp = 1;
5831 }
5832}
5833
9b745ab8
TI
5834static void alc_fixup_no_shutup(struct hda_codec *codec,
5835 const struct hda_fixup *fix, int action)
5836{
efe55732 5837 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9b745ab8 5838 struct alc_spec *spec = codec->spec;
c0ca5ece 5839 spec->no_shutup_pins = 1;
9b745ab8
TI
5840 }
5841}
5842
5e6db669
GM
5843static void alc_fixup_disable_aamix(struct hda_codec *codec,
5844 const struct hda_fixup *fix, int action)
5845{
5846 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5847 struct alc_spec *spec = codec->spec;
5848 /* Disable AA-loopback as it causes white noise */
5849 spec->gen.mixer_nid = 0;
5850 }
5851}
5852
7f57d803
TI
5853/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5854static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5855 const struct hda_fixup *fix, int action)
5856{
5857 static const struct hda_pintbl pincfgs[] = {
5858 { 0x16, 0x21211010 }, /* dock headphone */
5859 { 0x19, 0x21a11010 }, /* dock mic */
5860 { }
5861 };
5862 struct alc_spec *spec = codec->spec;
5863
5864 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5865 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5866 codec->power_save_node = 0; /* avoid click noises */
5867 snd_hda_apply_pincfgs(codec, pincfgs);
5868 }
5869}
5870
61fcf8ec
KY
5871static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5872 const struct hda_fixup *fix, int action)
5873{
5874 static const struct hda_pintbl pincfgs[] = {
5875 { 0x17, 0x21211010 }, /* dock headphone */
5876 { 0x19, 0x21a11010 }, /* dock mic */
5877 { }
5878 };
5879 struct alc_spec *spec = codec->spec;
5880
5881 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5882 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
71db96dd
TI
5883 snd_hda_apply_pincfgs(codec, pincfgs);
5884 } else if (action == HDA_FIXUP_ACT_INIT) {
61fcf8ec
KY
5885 /* Enable DOCK device */
5886 snd_hda_codec_write(codec, 0x17, 0,
5887 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5888 /* Enable DOCK device */
5889 snd_hda_codec_write(codec, 0x19, 0,
5890 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
61fcf8ec
KY
5891 }
5892}
5893
399c01aa
TI
5894static void alc_fixup_tpt470_dacs(struct hda_codec *codec,
5895 const struct hda_fixup *fix, int action)
5896{
5897 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
5898 * the speaker output becomes too low by some reason on Thinkpads with
5899 * ALC298 codec
5900 */
5901 static const hda_nid_t preferred_pairs[] = {
5902 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
5903 0
5904 };
5905 struct alc_spec *spec = codec->spec;
5906
5907 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5908 spec->gen.preferred_dacs = preferred_pairs;
5909}
5910
8eedd3a7
TI
5911static void alc295_fixup_asus_dacs(struct hda_codec *codec,
5912 const struct hda_fixup *fix, int action)
5913{
5914 static const hda_nid_t preferred_pairs[] = {
5915 0x17, 0x02, 0x21, 0x03, 0
5916 };
5917 struct alc_spec *spec = codec->spec;
5918
5919 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5920 spec->gen.preferred_dacs = preferred_pairs;
5921}
5922
9476d369 5923static void alc_shutup_dell_xps13(struct hda_codec *codec)
033b0a7c
GM
5924{
5925 struct alc_spec *spec = codec->spec;
35a39f98 5926 int hp_pin = alc_get_hp_pin(spec);
033b0a7c 5927
9476d369
GM
5928 /* Prevent pop noises when headphones are plugged in */
5929 snd_hda_codec_write(codec, hp_pin, 0,
5930 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5931 msleep(20);
033b0a7c
GM
5932}
5933
5934static void alc_fixup_dell_xps13(struct hda_codec *codec,
5935 const struct hda_fixup *fix, int action)
5936{
3e1b0c4a
TI
5937 struct alc_spec *spec = codec->spec;
5938 struct hda_input_mux *imux = &spec->gen.input_mux;
5939 int i;
f38663ab 5940
3e1b0c4a
TI
5941 switch (action) {
5942 case HDA_FIXUP_ACT_PRE_PROBE:
5943 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5944 * it causes a click noise at start up
5945 */
5946 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
efe55732 5947 spec->shutup = alc_shutup_dell_xps13;
3e1b0c4a
TI
5948 break;
5949 case HDA_FIXUP_ACT_PROBE:
f38663ab
GM
5950 /* Make the internal mic the default input source. */
5951 for (i = 0; i < imux->num_items; i++) {
5952 if (spec->gen.imux_pins[i] == 0x12) {
5953 spec->gen.cur_mux[0] = i;
5954 break;
5955 }
5956 }
3e1b0c4a 5957 break;
033b0a7c
GM
5958 }
5959}
5960
1f8b46cd
DH
5961static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5962 const struct hda_fixup *fix, int action)
5963{
5964 struct alc_spec *spec = codec->spec;
5965
5966 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5967 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5968 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
b40eda64
DH
5969
5970 /* Disable boost for mic-in permanently. (This code is only called
5971 from quirks that guarantee that the headphone is at NID 0x1b.) */
5972 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
5973 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
1f8b46cd
DH
5974 } else
5975 alc_fixup_headset_mode(codec, fix, action);
5976}
5977
73bdd597
DH
5978static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
5979 const struct hda_fixup *fix, int action)
5980{
5981 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
73bdd597 5982 alc_write_coef_idx(codec, 0xc4, 0x8000);
98b24883 5983 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
73bdd597
DH
5984 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
5985 }
5986 alc_fixup_headset_mode(codec, fix, action);
5987}
5988
bde7bc60
CCC
5989/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
5990static int find_ext_mic_pin(struct hda_codec *codec)
5991{
5992 struct alc_spec *spec = codec->spec;
5993 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5994 hda_nid_t nid;
5995 unsigned int defcfg;
5996 int i;
5997
5998 for (i = 0; i < cfg->num_inputs; i++) {
5999 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6000 continue;
6001 nid = cfg->inputs[i].pin;
6002 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6003 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
6004 continue;
6005 return nid;
6006 }
6007
6008 return 0;
6009}
6010
08a978db 6011static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 6012 const struct hda_fixup *fix,
08a978db
DR
6013 int action)
6014{
6015 struct alc_spec *spec = codec->spec;
6016
0db75790 6017 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60 6018 int mic_pin = find_ext_mic_pin(codec);
35a39f98 6019 int hp_pin = alc_get_hp_pin(spec);
bde7bc60
CCC
6020
6021 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 6022 return;
bde7bc60 6023 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 6024 }
08a978db 6025}
693b613d 6026
3e0d611b
DH
6027static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
6028 const struct hda_fixup *fix,
6029 int action)
6030{
6031 struct alc_spec *spec = codec->spec;
6032 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
6033 int i;
6034
6035 /* The mic boosts on level 2 and 3 are too noisy
6036 on the internal mic input.
6037 Therefore limit the boost to 0 or 1. */
6038
6039 if (action != HDA_FIXUP_ACT_PROBE)
6040 return;
6041
6042 for (i = 0; i < cfg->num_inputs; i++) {
6043 hda_nid_t nid = cfg->inputs[i].pin;
6044 unsigned int defcfg;
6045 if (cfg->inputs[i].type != AUTO_PIN_MIC)
6046 continue;
6047 defcfg = snd_hda_codec_get_pincfg(codec, nid);
6048 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
6049 continue;
6050
6051 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
6052 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
6053 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
6054 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
6055 (0 << AC_AMPCAP_MUTE_SHIFT));
6056 }
6057}
6058
cd217a63 6059static void alc283_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 6060 struct hda_jack_callback *jack)
cd217a63
KY
6061{
6062 struct alc_spec *spec = codec->spec;
6063 int vref;
6064
6065 msleep(200);
6066 snd_hda_gen_hp_automute(codec, jack);
6067
6068 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
6069
6070 msleep(600);
6071 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6072 vref);
6073}
6074
cd217a63
KY
6075static void alc283_fixup_chromebook(struct hda_codec *codec,
6076 const struct hda_fixup *fix, int action)
6077{
6078 struct alc_spec *spec = codec->spec;
cd217a63
KY
6079
6080 switch (action) {
6081 case HDA_FIXUP_ACT_PRE_PROBE:
0202e99c 6082 snd_hda_override_wcaps(codec, 0x03, 0);
d2e92709
TI
6083 /* Disable AA-loopback as it causes white noise */
6084 spec->gen.mixer_nid = 0;
38070219 6085 break;
0202e99c 6086 case HDA_FIXUP_ACT_INIT:
de9481cb
KY
6087 /* MIC2-VREF control */
6088 /* Set to manual mode */
98b24883 6089 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
0202e99c 6090 /* Enable Line1 input control by verb */
98b24883 6091 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
0202e99c
KY
6092 break;
6093 }
6094}
6095
6096static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
6097 const struct hda_fixup *fix, int action)
6098{
6099 struct alc_spec *spec = codec->spec;
0202e99c
KY
6100
6101 switch (action) {
6102 case HDA_FIXUP_ACT_PRE_PROBE:
cd217a63 6103 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
6104 break;
6105 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
6106 /* MIC2-VREF control */
6107 /* Set to manual mode */
98b24883 6108 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
cd217a63
KY
6109 break;
6110 }
6111}
6112
7bba2157
TI
6113/* mute tablet speaker pin (0x14) via dock plugging in addition */
6114static void asus_tx300_automute(struct hda_codec *codec)
6115{
6116 struct alc_spec *spec = codec->spec;
6117 snd_hda_gen_update_outputs(codec);
6118 if (snd_hda_jack_detect(codec, 0x1b))
6119 spec->gen.mute_bits |= (1ULL << 0x14);
6120}
6121
6122static void alc282_fixup_asus_tx300(struct hda_codec *codec,
6123 const struct hda_fixup *fix, int action)
6124{
6125 struct alc_spec *spec = codec->spec;
7bba2157
TI
6126 static const struct hda_pintbl dock_pins[] = {
6127 { 0x1b, 0x21114000 }, /* dock speaker pin */
6128 {}
6129 };
7bba2157
TI
6130
6131 switch (action) {
6132 case HDA_FIXUP_ACT_PRE_PROBE:
1c76aa5f 6133 spec->init_amp = ALC_INIT_DEFAULT;
ae065f1c
TI
6134 /* TX300 needs to set up GPIO2 for the speaker amp */
6135 alc_setup_gpio(codec, 0x04);
7bba2157
TI
6136 snd_hda_apply_pincfgs(codec, dock_pins);
6137 spec->gen.auto_mute_via_amp = 1;
6138 spec->gen.automute_hook = asus_tx300_automute;
6139 snd_hda_jack_detect_enable_callback(codec, 0x1b,
7bba2157
TI
6140 snd_hda_gen_hp_automute);
6141 break;
5579cd6f
TI
6142 case HDA_FIXUP_ACT_PROBE:
6143 spec->init_amp = ALC_INIT_DEFAULT;
6144 break;
7bba2157
TI
6145 case HDA_FIXUP_ACT_BUILD:
6146 /* this is a bit tricky; give more sane names for the main
6147 * (tablet) speaker and the dock speaker, respectively
6148 */
56798e6b
TI
6149 rename_ctl(codec, "Speaker Playback Switch",
6150 "Dock Speaker Playback Switch");
6151 rename_ctl(codec, "Bass Speaker Playback Switch",
6152 "Speaker Playback Switch");
7bba2157
TI
6153 break;
6154 }
6155}
6156
338cae56
DH
6157static void alc290_fixup_mono_speakers(struct hda_codec *codec,
6158 const struct hda_fixup *fix, int action)
6159{
0f4881dc
DH
6160 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6161 /* DAC node 0x03 is giving mono output. We therefore want to
6162 make sure 0x14 (front speaker) and 0x15 (headphones) use the
6163 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
caf3c043
MM
6164 static const hda_nid_t conn1[] = { 0x0c };
6165 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn1), conn1);
6166 snd_hda_override_conn_list(codec, 0x15, ARRAY_SIZE(conn1), conn1);
0f4881dc 6167 }
338cae56
DH
6168}
6169
dd9aa335
HW
6170static void alc298_fixup_speaker_volume(struct hda_codec *codec,
6171 const struct hda_fixup *fix, int action)
6172{
6173 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6174 /* The speaker is routed to the Node 0x06 by a mistake, as a result
6175 we can't adjust the speaker's volume since this node does not has
6176 Amp-out capability. we change the speaker's route to:
6177 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
6178 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
6179 speaker's volume now. */
6180
caf3c043
MM
6181 static const hda_nid_t conn1[] = { 0x0c };
6182 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn1), conn1);
dd9aa335
HW
6183 }
6184}
6185
e312a869
TI
6186/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
6187static void alc295_fixup_disable_dac3(struct hda_codec *codec,
6188 const struct hda_fixup *fix, int action)
6189{
6190 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6191 static const hda_nid_t conn[] = { 0x02, 0x03 };
6192 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
e312a869
TI
6193 }
6194}
6195
d2cd795c
JK
6196/* force NID 0x17 (Bass Speaker) to DAC1 to share it with the main speaker */
6197static void alc285_fixup_speaker2_to_dac1(struct hda_codec *codec,
6198 const struct hda_fixup *fix, int action)
6199{
6200 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
caf3c043
MM
6201 static const hda_nid_t conn[] = { 0x02 };
6202 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
d2cd795c
JK
6203 }
6204}
6205
98973f2f
KP
6206/* Hook to update amp GPIO4 for automute */
6207static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
6208 struct hda_jack_callback *jack)
6209{
6210 struct alc_spec *spec = codec->spec;
6211
6212 snd_hda_gen_hp_automute(codec, jack);
6213 /* mute_led_polarity is set to 0, so we pass inverted value here */
dbd13179
KHF
6214 alc_update_gpio_led(codec, 0x10, spec->mute_led_polarity,
6215 !spec->gen.hp_jack_present);
98973f2f
KP
6216}
6217
6218/* Manage GPIOs for HP EliteBook Folio 9480m.
6219 *
6220 * GPIO4 is the headphone amplifier power control
6221 * GPIO3 is the audio output mute indicator LED
6222 */
6223
6224static void alc280_fixup_hp_9480m(struct hda_codec *codec,
6225 const struct hda_fixup *fix,
6226 int action)
6227{
6228 struct alc_spec *spec = codec->spec;
98973f2f 6229
01e4a275 6230 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
98973f2f 6231 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
6232 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
6233 spec->gpio_mask |= 0x10;
6234 spec->gpio_dir |= 0x10;
98973f2f 6235 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
98973f2f
KP
6236 }
6237}
6238
ae065f1c
TI
6239static void alc275_fixup_gpio4_off(struct hda_codec *codec,
6240 const struct hda_fixup *fix,
6241 int action)
6242{
6243 struct alc_spec *spec = codec->spec;
6244
6245 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6246 spec->gpio_mask |= 0x04;
6247 spec->gpio_dir |= 0x04;
6248 /* set data bit low */
6249 }
6250}
6251
6a6660d0
TI
6252/* Quirk for Thinkpad X1 7th and 8th Gen
6253 * The following fixed routing needed
6254 * DAC1 (NID 0x02) -> Speaker (NID 0x14); some eq applied secretly
6255 * DAC2 (NID 0x03) -> Bass (NID 0x17) & Headphone (NID 0x21); sharing a DAC
6256 * DAC3 (NID 0x06) -> Unused, due to the lack of volume amp
6257 */
6258static void alc285_fixup_thinkpad_x1_gen7(struct hda_codec *codec,
6259 const struct hda_fixup *fix, int action)
6260{
6261 static const hda_nid_t conn[] = { 0x02, 0x03 }; /* exclude 0x06 */
6262 static const hda_nid_t preferred_pairs[] = {
6263 0x14, 0x02, 0x17, 0x03, 0x21, 0x03, 0
6264 };
6265 struct alc_spec *spec = codec->spec;
6266
6267 switch (action) {
6268 case HDA_FIXUP_ACT_PRE_PROBE:
6269 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6270 spec->gen.preferred_dacs = preferred_pairs;
6271 break;
6272 case HDA_FIXUP_ACT_BUILD:
6273 /* The generic parser creates somewhat unintuitive volume ctls
6274 * with the fixed routing above, and the shared DAC2 may be
6275 * confusing for PA.
6276 * Rename those to unique names so that PA doesn't touch them
6277 * and use only Master volume.
6278 */
6279 rename_ctl(codec, "Front Playback Volume", "DAC1 Playback Volume");
6280 rename_ctl(codec, "Bass Speaker Playback Volume", "DAC2 Playback Volume");
6281 break;
6282 }
6283}
6284
ca169cc2
KY
6285static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
6286 const struct hda_fixup *fix,
6287 int action)
6288{
6289 alc_fixup_dual_codecs(codec, fix, action);
6290 switch (action) {
6291 case HDA_FIXUP_ACT_PRE_PROBE:
6292 /* override card longname to provide a unique UCM profile */
6293 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
6294 break;
6295 case HDA_FIXUP_ACT_BUILD:
6296 /* rename Capture controls depending on the codec */
6297 rename_ctl(codec, "Capture Volume",
6298 codec->addr == 0 ?
6299 "Rear-Panel Capture Volume" :
6300 "Front-Panel Capture Volume");
6301 rename_ctl(codec, "Capture Switch",
6302 codec->addr == 0 ?
6303 "Rear-Panel Capture Switch" :
6304 "Front-Panel Capture Switch");
6305 break;
6306 }
6307}
6308
52e4e368
KHF
6309static void alc225_fixup_s3_pop_noise(struct hda_codec *codec,
6310 const struct hda_fixup *fix, int action)
6311{
6312 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6313 return;
6314
6315 codec->power_save_node = 1;
6316}
6317
92266651
KY
6318/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
6319static void alc274_fixup_bind_dacs(struct hda_codec *codec,
6320 const struct hda_fixup *fix, int action)
6321{
6322 struct alc_spec *spec = codec->spec;
caf3c043 6323 static const hda_nid_t preferred_pairs[] = {
92266651
KY
6324 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
6325 0
6326 };
6327
6328 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6329 return;
6330
6331 spec->gen.preferred_dacs = preferred_pairs;
0700d3d1
KY
6332 spec->gen.auto_mute_via_amp = 1;
6333 codec->power_save_node = 0;
92266651
KY
6334}
6335
c84bfedc
TI
6336/* avoid DAC 0x06 for bass speaker 0x17; it has no volume control */
6337static void alc289_fixup_asus_ga401(struct hda_codec *codec,
6338 const struct hda_fixup *fix, int action)
6339{
6340 static const hda_nid_t preferred_pairs[] = {
6341 0x14, 0x02, 0x17, 0x02, 0x21, 0x03, 0
6342 };
6343 struct alc_spec *spec = codec->spec;
6344
6345 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
6346 spec->gen.preferred_dacs = preferred_pairs;
6347 spec->gen.obey_preferred_dacs = 1;
6348 }
6349}
6350
c4cfcf6f
HW
6351/* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
6352static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
6353 const struct hda_fixup *fix, int action)
6354{
6355 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6356 return;
6357
6358 snd_hda_override_wcaps(codec, 0x03, 0);
6359}
6360
8a8de09c
KY
6361static void alc_combo_jack_hp_jd_restart(struct hda_codec *codec)
6362{
6363 switch (codec->core.vendor_id) {
6364 case 0x10ec0274:
6365 case 0x10ec0294:
6366 case 0x10ec0225:
6367 case 0x10ec0295:
6368 case 0x10ec0299:
6369 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
6370 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
6371 break;
1948fc06 6372 case 0x10ec0230:
8a8de09c
KY
6373 case 0x10ec0235:
6374 case 0x10ec0236:
6375 case 0x10ec0255:
6376 case 0x10ec0256:
6377 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
6378 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
6379 break;
6380 }
6381}
6382
8983eb60
KY
6383static void alc295_fixup_chromebook(struct hda_codec *codec,
6384 const struct hda_fixup *fix, int action)
6385{
d3ba58bb
KY
6386 struct alc_spec *spec = codec->spec;
6387
8983eb60 6388 switch (action) {
d3ba58bb
KY
6389 case HDA_FIXUP_ACT_PRE_PROBE:
6390 spec->ultra_low_power = true;
6391 break;
8983eb60 6392 case HDA_FIXUP_ACT_INIT:
8a8de09c 6393 alc_combo_jack_hp_jd_restart(codec);
8983eb60
KY
6394 break;
6395 }
6396}
6397
d1dd4211
KY
6398static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
6399 const struct hda_fixup *fix, int action)
6400{
6401 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6402 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
6403}
6404
c3cdf189
LJ
6405
6406static void alc294_gx502_toggle_output(struct hda_codec *codec,
6407 struct hda_jack_callback *cb)
6408{
6409 /* The Windows driver sets the codec up in a very different way where
6410 * it appears to leave 0x10 = 0x8a20 set. For Linux we need to toggle it
6411 */
6412 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6413 alc_write_coef_idx(codec, 0x10, 0x8a20);
6414 else
6415 alc_write_coef_idx(codec, 0x10, 0x0a20);
6416}
6417
6418static void alc294_fixup_gx502_hp(struct hda_codec *codec,
6419 const struct hda_fixup *fix, int action)
6420{
6421 /* Pin 0x21: headphones/headset mic */
6422 if (!is_jack_detectable(codec, 0x21))
6423 return;
6424
6425 switch (action) {
6426 case HDA_FIXUP_ACT_PRE_PROBE:
6427 snd_hda_jack_detect_enable_callback(codec, 0x21,
6428 alc294_gx502_toggle_output);
6429 break;
6430 case HDA_FIXUP_ACT_INIT:
6431 /* Make sure to start in a correct state, i.e. if
6432 * headphones have been plugged in before powering up the system
6433 */
6434 alc294_gx502_toggle_output(codec, NULL);
6435 break;
6436 }
6437}
6438
c1b55029
DC
6439static void alc294_gu502_toggle_output(struct hda_codec *codec,
6440 struct hda_jack_callback *cb)
6441{
6442 /* Windows sets 0x10 to 0x8420 for Node 0x20 which is
6443 * responsible from changes between speakers and headphones
6444 */
6445 if (snd_hda_jack_detect_state(codec, 0x21) == HDA_JACK_PRESENT)
6446 alc_write_coef_idx(codec, 0x10, 0x8420);
6447 else
6448 alc_write_coef_idx(codec, 0x10, 0x0a20);
6449}
6450
6451static void alc294_fixup_gu502_hp(struct hda_codec *codec,
6452 const struct hda_fixup *fix, int action)
6453{
6454 if (!is_jack_detectable(codec, 0x21))
6455 return;
6456
6457 switch (action) {
6458 case HDA_FIXUP_ACT_PRE_PROBE:
6459 snd_hda_jack_detect_enable_callback(codec, 0x21,
6460 alc294_gu502_toggle_output);
6461 break;
6462 case HDA_FIXUP_ACT_INIT:
6463 alc294_gu502_toggle_output(codec, NULL);
6464 break;
6465 }
6466}
6467
56496253
KY
6468static void alc285_fixup_hp_gpio_amp_init(struct hda_codec *codec,
6469 const struct hda_fixup *fix, int action)
6470{
6471 if (action != HDA_FIXUP_ACT_INIT)
6472 return;
6473
6474 msleep(100);
6475 alc_write_coef_idx(codec, 0x65, 0x0);
6476}
6477
8a8de09c
KY
6478static void alc274_fixup_hp_headset_mic(struct hda_codec *codec,
6479 const struct hda_fixup *fix, int action)
6480{
6481 switch (action) {
6482 case HDA_FIXUP_ACT_INIT:
6483 alc_combo_jack_hp_jd_restart(codec);
6484 break;
6485 }
6486}
6487
92666d45
KY
6488static void alc_fixup_no_int_mic(struct hda_codec *codec,
6489 const struct hda_fixup *fix, int action)
6490{
6491 struct alc_spec *spec = codec->spec;
6492
6493 switch (action) {
6494 case HDA_FIXUP_ACT_PRE_PROBE:
6495 /* Mic RING SLEEVE swap for combo jack */
6496 alc_update_coef_idx(codec, 0x45, 0xf<<12 | 1<<10, 5<<12);
6497 spec->no_internal_mic_pin = true;
6498 break;
6499 case HDA_FIXUP_ACT_INIT:
6500 alc_combo_jack_hp_jd_restart(codec);
6501 break;
6502 }
6503}
6504
d94befbb
DB
6505/* GPIO1 = amplifier on/off
6506 * GPIO3 = mic mute LED
6507 */
6508static void alc285_fixup_hp_spectre_x360_eb1(struct hda_codec *codec,
6509 const struct hda_fixup *fix, int action)
6510{
6511 static const hda_nid_t conn[] = { 0x02 };
6512
6513 struct alc_spec *spec = codec->spec;
6514 static const struct hda_pintbl pincfgs[] = {
6515 { 0x14, 0x90170110 }, /* front/high speakers */
6516 { 0x17, 0x90170130 }, /* back/bass speakers */
6517 { }
6518 };
6519
6520 //enable micmute led
6521 alc_fixup_hp_gpio_led(codec, action, 0x00, 0x04);
6522
6523 switch (action) {
6524 case HDA_FIXUP_ACT_PRE_PROBE:
6525 spec->micmute_led_polarity = 1;
6526 /* needed for amp of back speakers */
6527 spec->gpio_mask |= 0x01;
6528 spec->gpio_dir |= 0x01;
6529 snd_hda_apply_pincfgs(codec, pincfgs);
6530 /* share DAC to have unified volume control */
6531 snd_hda_override_conn_list(codec, 0x14, ARRAY_SIZE(conn), conn);
6532 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6533 break;
6534 case HDA_FIXUP_ACT_INIT:
6535 /* need to toggle GPIO to enable the amp of back speakers */
6536 alc_update_gpio_data(codec, 0x01, true);
6537 msleep(100);
6538 alc_update_gpio_data(codec, 0x01, false);
6539 break;
6540 }
6541}
6542
434591b2
ED
6543static void alc285_fixup_hp_spectre_x360(struct hda_codec *codec,
6544 const struct hda_fixup *fix, int action)
6545{
6546 static const hda_nid_t conn[] = { 0x02 };
6547 static const struct hda_pintbl pincfgs[] = {
6548 { 0x14, 0x90170110 }, /* rear speaker */
6549 { }
6550 };
6551
6552 switch (action) {
6553 case HDA_FIXUP_ACT_PRE_PROBE:
6554 snd_hda_apply_pincfgs(codec, pincfgs);
6555 /* force front speaker to DAC1 */
6556 snd_hda_override_conn_list(codec, 0x17, ARRAY_SIZE(conn), conn);
6557 break;
6558 }
6559}
6560
b317b032
TI
6561/* for hda_fixup_thinkpad_acpi() */
6562#include "thinkpad_helper.c"
b67ae3f1 6563
d5a6cabf
TI
6564static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
6565 const struct hda_fixup *fix, int action)
6566{
6567 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
6568 hda_fixup_thinkpad_acpi(codec, fix, action);
6569}
6570
ad7cc2d4
CB
6571/* Fixup for Lenovo Legion 15IMHg05 speaker output on headset removal. */
6572static void alc287_fixup_legion_15imhg05_speakers(struct hda_codec *codec,
6573 const struct hda_fixup *fix,
6574 int action)
6575{
6576 struct alc_spec *spec = codec->spec;
6577
6578 switch (action) {
6579 case HDA_FIXUP_ACT_PRE_PROBE:
6580 spec->gen.suppress_auto_mute = 1;
6581 break;
6582 }
6583}
6584
d3dca026
LT
6585static int find_comp_by_dev_name(struct alc_spec *spec, const char *name)
6586{
6587 int i;
6588
6589 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6590 if (strcmp(spec->comps[i].name, name) == 0)
6591 return i;
6592 }
6593
6594 return -ENODEV;
6595}
6596
6597static int comp_bind(struct device *dev)
6598{
6599 struct hda_codec *cdc = dev_to_hda_codec(dev);
6600 struct alc_spec *spec = cdc->spec;
6601
6602 return component_bind_all(dev, spec->comps);
6603}
6604
6605static void comp_unbind(struct device *dev)
6606{
6607 struct hda_codec *cdc = dev_to_hda_codec(dev);
6608 struct alc_spec *spec = cdc->spec;
6609
6610 component_unbind_all(dev, spec->comps);
6611}
6612
6613static const struct component_master_ops comp_master_ops = {
6614 .bind = comp_bind,
6615 .unbind = comp_unbind,
6616};
6617
6618static void comp_generic_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6619 struct snd_pcm_substream *sub, int action)
6620{
6621 struct alc_spec *spec = cdc->spec;
6622 int i;
6623
6624 for (i = 0; i < HDA_MAX_COMPONENTS; i++) {
6625 if (spec->comps[i].dev)
6626 spec->comps[i].playback_hook(spec->comps[i].dev, action);
6627 }
6628}
6629
ae7abe36
SB
6630static void cs35l41_generic_fixup(struct hda_codec *cdc, int action, const char *bus,
6631 const char *hid, int count)
6632{
6633 struct device *dev = hda_codec_dev(cdc);
6634 struct alc_spec *spec = cdc->spec;
6635 char *name;
6636 int ret, i;
6637
6638 switch (action) {
6639 case HDA_FIXUP_ACT_PRE_PROBE:
6640 for (i = 0; i < count; i++) {
6641 name = devm_kasprintf(dev, GFP_KERNEL,
6642 "%s-%s:00-cs35l41-hda.%d", bus, hid, i);
6643 if (!name)
6644 return;
ae016b9d 6645 component_match_add(dev, &spec->match, component_compare_dev_name, name);
ae7abe36
SB
6646 }
6647 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6648 if (ret)
6649 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6650 else
6651 spec->gen.pcm_playback_hook = comp_generic_playback_hook;
6652 break;
6653 }
6654}
6655
6656static void cs35l41_fixup_i2c_two(struct hda_codec *cdc, const struct hda_fixup *fix, int action)
6657{
6658 cs35l41_generic_fixup(cdc, action, "i2c", "CSC3551", 2);
6659}
6660
07bcab93
LT
6661static void cs35l41_fixup_spi_two(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6662{
6663 cs35l41_generic_fixup(codec, action, "spi0", "CSC3551", 2);
6664}
6665
6666static void cs35l41_fixup_spi_four(struct hda_codec *codec, const struct hda_fixup *fix, int action)
6667{
6668 cs35l41_generic_fixup(codec, action, "spi0", "CSC3551", 4);
6669}
6670
d3dca026
LT
6671static void alc287_legion_16achg6_playback_hook(struct hda_pcm_stream *hinfo, struct hda_codec *cdc,
6672 struct snd_pcm_substream *sub, int action)
6673{
6674 struct alc_spec *spec = cdc->spec;
6675 unsigned int rx_slot;
6676 int i;
6677
6678 switch (action) {
6679 case HDA_GEN_PCM_ACT_PREPARE:
6680 rx_slot = 0;
6681 i = find_comp_by_dev_name(spec, "i2c-CLSA0100:00-cs35l41-hda.0");
6682 if (i >= 0)
6683 spec->comps[i].set_channel_map(spec->comps[i].dev, 0, NULL, 1, &rx_slot);
6684
6685 rx_slot = 1;
6686 i = find_comp_by_dev_name(spec, "i2c-CLSA0100:00-cs35l41-hda.1");
6687 if (i >= 0)
6688 spec->comps[i].set_channel_map(spec->comps[i].dev, 0, NULL, 1, &rx_slot);
6689 break;
6690 }
6691
6692 comp_generic_playback_hook(hinfo, cdc, sub, action);
6693}
6694
6695static void alc287_fixup_legion_16achg6_speakers(struct hda_codec *cdc, const struct hda_fixup *fix,
6696 int action)
6697{
6698 struct device *dev = hda_codec_dev(cdc);
6699 struct alc_spec *spec = cdc->spec;
6700 int ret;
6701
6702 switch (action) {
6703 case HDA_FIXUP_ACT_PRE_PROBE:
ae016b9d 6704 component_match_add(dev, &spec->match, component_compare_dev_name,
d3dca026 6705 "i2c-CLSA0100:00-cs35l41-hda.0");
ae016b9d 6706 component_match_add(dev, &spec->match, component_compare_dev_name,
d3dca026
LT
6707 "i2c-CLSA0100:00-cs35l41-hda.1");
6708 ret = component_master_add_with_match(dev, &comp_master_ops, spec->match);
6709 if (ret)
6710 codec_err(cdc, "Fail to register component aggregator %d\n", ret);
6711 else
6712 spec->gen.pcm_playback_hook = alc287_legion_16achg6_playback_hook;
6713 break;
6714 }
6715}
6716
bbf8ff6b
TB
6717/* for alc295_fixup_hp_top_speakers */
6718#include "hp_x360_helper.c"
6719
26928ca1
TI
6720/* for alc285_fixup_ideapad_s740_coef() */
6721#include "ideapad_s740_helper.c"
6722
619764cc
WS
6723static const struct coef_fw alc256_fixup_set_coef_defaults_coefs[] = {
6724 WRITE_COEF(0x10, 0x0020), WRITE_COEF(0x24, 0x0000),
6725 WRITE_COEF(0x26, 0x0000), WRITE_COEF(0x29, 0x3000),
6726 WRITE_COEF(0x37, 0xfe05), WRITE_COEF(0x45, 0x5089),
6727 {}
6728};
6729
6730static void alc256_fixup_set_coef_defaults(struct hda_codec *codec,
6731 const struct hda_fixup *fix,
6732 int action)
dd6dd6e3
WS
6733{
6734 /*
619764cc
WS
6735 * A certain other OS sets these coeffs to different values. On at least
6736 * one TongFang barebone these settings might survive even a cold
6737 * reboot. So to restore a clean slate the values are explicitly reset
6738 * to default here. Without this, the external microphone is always in a
6739 * plugged-in state, while the internal microphone is always in an
6740 * unplugged state, breaking the ability to use the internal microphone.
6741 */
6742 alc_process_coef_fw(codec, alc256_fixup_set_coef_defaults_coefs);
dd6dd6e3
WS
6743}
6744
174a7fb3
WS
6745static const struct coef_fw alc233_fixup_no_audio_jack_coefs[] = {
6746 WRITE_COEF(0x1a, 0x9003), WRITE_COEF(0x1b, 0x0e2b), WRITE_COEF(0x37, 0xfe06),
6747 WRITE_COEF(0x38, 0x4981), WRITE_COEF(0x45, 0xd489), WRITE_COEF(0x46, 0x0074),
6748 WRITE_COEF(0x49, 0x0149),
6749 {}
6750};
6751
6752static void alc233_fixup_no_audio_jack(struct hda_codec *codec,
6753 const struct hda_fixup *fix,
6754 int action)
6755{
6756 /*
6757 * The audio jack input and output is not detected on the ASRock NUC Box
6758 * 1100 series when cold booting without this fix. Warm rebooting from a
6759 * certain other OS makes the audio functional, as COEF settings are
6760 * preserved in this case. This fix sets these altered COEF values as
6761 * the default.
6762 */
6763 alc_process_coef_fw(codec, alc233_fixup_no_audio_jack_coefs);
6764}
6765
edca7cc4
WS
6766static void alc256_fixup_mic_no_presence_and_resume(struct hda_codec *codec,
6767 const struct hda_fixup *fix,
6768 int action)
6769{
6770 /*
6771 * The Clevo NJ51CU comes either with the ALC293 or the ALC256 codec,
6772 * but uses the 0x8686 subproduct id in both cases. The ALC256 codec
6773 * needs an additional quirk for sound working after suspend and resume.
6774 */
6775 if (codec->core.vendor_id == 0x10ec0256) {
6776 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
6777 snd_hda_codec_set_pincfg(codec, 0x19, 0x04a11120);
6778 } else {
6779 snd_hda_codec_set_pincfg(codec, 0x1a, 0x04a1113c);
6780 }
6781}
6782
1d045db9 6783enum {
f73bbf63 6784 ALC269_FIXUP_GPIO2,
1d045db9
TI
6785 ALC269_FIXUP_SONY_VAIO,
6786 ALC275_FIXUP_SONY_VAIO_GPIO2,
6787 ALC269_FIXUP_DELL_M101Z,
6788 ALC269_FIXUP_SKU_IGNORE,
6789 ALC269_FIXUP_ASUS_G73JW,
6790 ALC269_FIXUP_LENOVO_EAPD,
6791 ALC275_FIXUP_SONY_HWEQ,
e9bd7d5c 6792 ALC275_FIXUP_SONY_DISABLE_AAMIX,
1d045db9 6793 ALC271_FIXUP_DMIC,
017f2a10 6794 ALC269_FIXUP_PCM_44K,
adabb3ec 6795 ALC269_FIXUP_STEREO_DMIC,
7c478f03 6796 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
6797 ALC269_FIXUP_QUANTA_MUTE,
6798 ALC269_FIXUP_LIFEBOOK,
2041d564 6799 ALC269_FIXUP_LIFEBOOK_EXTMIC,
cc7016ab 6800 ALC269_FIXUP_LIFEBOOK_HP_PIN,
4df3fd17 6801 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
fdcc968a 6802 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
a4297b5d
TI
6803 ALC269_FIXUP_AMIC,
6804 ALC269_FIXUP_DMIC,
6805 ALC269VB_FIXUP_AMIC,
6806 ALC269VB_FIXUP_DMIC,
08fb0d0e 6807 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 6808 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 6809 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7f783bd5 6810 ALC269_FIXUP_HP_MUTE_LED_MIC3,
9f5c6faf 6811 ALC269_FIXUP_HP_GPIO_LED,
9c5dc3bf
KY
6812 ALC269_FIXUP_HP_GPIO_MIC1_LED,
6813 ALC269_FIXUP_HP_LINE1_MIC1_LED,
693b613d 6814 ALC269_FIXUP_INV_DMIC,
108cc108 6815 ALC269_FIXUP_LENOVO_DOCK,
b590b38c 6816 ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST,
9b745ab8 6817 ALC269_FIXUP_NO_SHUTUP,
88cfcf86 6818 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 6819 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
6820 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6821 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 6822 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
fcc6c877 6823 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
73bdd597
DH
6824 ALC269_FIXUP_HEADSET_MODE,
6825 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7819717b 6826 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
d240d1dc
DH
6827 ALC269_FIXUP_ASUS_X101_FUNC,
6828 ALC269_FIXUP_ASUS_X101_VERB,
6829 ALC269_FIXUP_ASUS_X101,
08a978db
DR
6830 ALC271_FIXUP_AMIC_MIC2,
6831 ALC271_FIXUP_HP_GATE_MIC_JACK,
b1e8972e 6832 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
42397004 6833 ALC269_FIXUP_ACER_AC700,
3e0d611b 6834 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 6835 ALC269VB_FIXUP_ASUS_ZENBOOK,
23870831 6836 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
8e35cd4a 6837 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 6838 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 6839 ALC283_FIXUP_CHROME_BOOK,
0202e99c 6840 ALC283_FIXUP_SENSE_COMBO_JACK,
7bba2157 6841 ALC282_FIXUP_ASUS_TX300,
1bb3e062 6842 ALC283_FIXUP_INT_MIC,
338cae56 6843 ALC290_FIXUP_MONO_SPEAKERS,
0f4881dc
DH
6844 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6845 ALC290_FIXUP_SUBWOOFER,
6846 ALC290_FIXUP_SUBWOOFER_HSJACK,
b67ae3f1 6847 ALC269_FIXUP_THINKPAD_ACPI,
56f27013 6848 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5824ce8d 6849 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
615966ad 6850 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9a22a8f5 6851 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
31278997 6852 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9a22a8f5 6853 ALC255_FIXUP_HEADSET_MODE,
31278997 6854 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
a22aa26f 6855 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
1c37c223 6856 ALC292_FIXUP_TPT440_DOCK,
9a811230 6857 ALC292_FIXUP_TPT440,
abaa2274 6858 ALC283_FIXUP_HEADSET_MIC,
b3802783 6859 ALC255_FIXUP_MIC_MUTE_LED,
1a22e775 6860 ALC282_FIXUP_ASPIRE_V5_PINS,
c8426b27 6861 ALC269VB_FIXUP_ASPIRE_E1_COEF,
7a5255f1 6862 ALC280_FIXUP_HP_GPIO4,
eaa8e5ef 6863 ALC286_FIXUP_HP_GPIO_LED,
33f4acd3 6864 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
b4b33f9d 6865 ALC280_FIXUP_HP_DOCK_PINS,
04d5466a 6866 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
98973f2f 6867 ALC280_FIXUP_HP_9480M,
c3bb2b52 6868 ALC245_FIXUP_HP_X360_AMP,
d94befbb 6869 ALC285_FIXUP_HP_SPECTRE_X360_EB1,
e1e62b98
KY
6870 ALC288_FIXUP_DELL_HEADSET_MODE,
6871 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
831bfdf9
HW
6872 ALC288_FIXUP_DELL_XPS_13,
6873 ALC288_FIXUP_DISABLE_AAMIX,
5fab5829 6874 ALC292_FIXUP_DELL_E7X_AAMIX,
8b99aba7
TI
6875 ALC292_FIXUP_DELL_E7X,
6876 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 6877 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
54324221 6878 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
977e6276 6879 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 6880 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 6881 ALC275_FIXUP_DELL_XPS,
23adc192 6882 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 6883 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 6884 ALC255_FIXUP_DELL_SPK_NOISE,
d1dd4211 6885 ALC225_FIXUP_DISABLE_MIC_VREF,
2ae95577 6886 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 6887 ALC295_FIXUP_DISABLE_DAC3,
d2cd795c 6888 ALC285_FIXUP_SPEAKER2_TO_DAC1,
f883982d 6889 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 6890 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 6891 ALC292_FIXUP_TPT460,
dd9aa335 6892 ALC298_FIXUP_SPK_VOLUME,
f86de9b1 6893 ALC298_FIXUP_LENOVO_SPK_VOLUME,
fd06c77e 6894 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 6895 ALC269_FIXUP_ATIV_BOOK_8,
9eb5d0e6 6896 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
6897 ALC256_FIXUP_ASUS_HEADSET_MODE,
6898 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 6899 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
6900 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
6901 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 6902 ALC233_FIXUP_LENOVO_MULTI_CODECS,
ea5c7eba 6903 ALC233_FIXUP_ACER_HEADSET_MIC,
f33f79f3 6904 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 6905 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
52e4e368 6906 ALC225_FIXUP_S3_POP_NOISE,
b84e8436 6907 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
6908 ALC274_FIXUP_DELL_BIND_DACS,
6909 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
399c01aa 6910 ALC298_FIXUP_TPT470_DOCK_FIX,
61fcf8ec 6911 ALC298_FIXUP_TPT470_DOCK,
ae104a21 6912 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 6913 ALC255_FIXUP_DELL_HEADSET_MIC,
0fbf21c3 6914 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
a2ef03fe 6915 ALC298_FIXUP_HUAWEI_MBX_STEREO,
bbf8ff6b 6916 ALC295_FIXUP_HP_X360,
8a328ac1 6917 ALC221_FIXUP_HP_HEADSET_MIC,
c4cfcf6f 6918 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
e8ed64b0 6919 ALC295_FIXUP_HP_AUTO_MUTE,
33aaebd4 6920 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
d8ae458e 6921 ALC294_FIXUP_ASUS_MIC,
4e051106
JHP
6922 ALC294_FIXUP_ASUS_HEADSET_MIC,
6923 ALC294_FIXUP_ASUS_SPK,
89e3a568 6924 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
c8c6ee61 6925 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
cbc05fd6 6926 ALC255_FIXUP_ACER_HEADSET_MIC,
10f5b1b8 6927 ALC295_FIXUP_CHROME_BOOK,
8983eb60 6928 ALC225_FIXUP_HEADSET_JACK,
136824ef
KY
6929 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
6930 ALC225_FIXUP_WYSE_AUTO_MUTE,
6931 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
667a8f73 6932 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
8c8967a7 6933 ALC256_FIXUP_ASUS_HEADSET_MIC,
e1037354 6934 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
e2a829b3 6935 ALC299_FIXUP_PREDATOR_SPK,
bd9c10bc 6936 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
e79c2269
KY
6937 ALC289_FIXUP_DELL_SPK2,
6938 ALC289_FIXUP_DUAL_SPK,
48e01504
CC
6939 ALC294_FIXUP_SPK2_TO_DAC1,
6940 ALC294_FIXUP_ASUS_DUAL_SPK,
6a6660d0 6941 ALC285_FIXUP_THINKPAD_X1_GEN7,
76f7dec0 6942 ALC285_FIXUP_THINKPAD_HEADSET_JACK,
8b33a134 6943 ALC294_FIXUP_ASUS_HPE,
1b94e59d 6944 ALC294_FIXUP_ASUS_COEF_1B,
c3cdf189
LJ
6945 ALC294_FIXUP_ASUS_GX502_HP,
6946 ALC294_FIXUP_ASUS_GX502_PINS,
6947 ALC294_FIXUP_ASUS_GX502_VERBS,
c1b55029
DC
6948 ALC294_FIXUP_ASUS_GU502_HP,
6949 ALC294_FIXUP_ASUS_GU502_PINS,
6950 ALC294_FIXUP_ASUS_GU502_VERBS,
f5a88b0a 6951 ALC285_FIXUP_HP_GPIO_LED,
431e76c3 6952 ALC285_FIXUP_HP_MUTE_LED,
e7d66cf7 6953 ALC236_FIXUP_HP_GPIO_LED,
24164f43 6954 ALC236_FIXUP_HP_MUTE_LED,
75b62ab6 6955 ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
14425f1f 6956 ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
ef248d9b 6957 ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET,
9e43342b 6958 ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
8eae7e9b 6959 ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS,
6e15d126 6960 ALC269VC_FIXUP_ACER_HEADSET_MIC,
781c90c0 6961 ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE,
293a92c1 6962 ALC289_FIXUP_ASUS_GA401,
4b43d05a 6963 ALC289_FIXUP_ASUS_GA502,
f50a121d 6964 ALC256_FIXUP_ACER_MIC_NO_PRESENCE,
56496253 6965 ALC285_FIXUP_HP_GPIO_AMP_INIT,
f1ec5be1
HC
6966 ALC269_FIXUP_CZC_B20,
6967 ALC269_FIXUP_CZC_TMI,
6968 ALC269_FIXUP_CZC_L101,
6969 ALC269_FIXUP_LEMOTE_A1802,
6970 ALC269_FIXUP_LEMOTE_A190X,
e2d2fded 6971 ALC256_FIXUP_INTEL_NUC8_RUGGED,
d1ee66c5
PC
6972 ALC233_FIXUP_INTEL_NUC8_DMIC,
6973 ALC233_FIXUP_INTEL_NUC8_BOOST,
73e7161e 6974 ALC256_FIXUP_INTEL_NUC10,
fc19d559 6975 ALC255_FIXUP_XIAOMI_HEADSET_MIC,
13468bfa 6976 ALC274_FIXUP_HP_MIC,
8a8de09c 6977 ALC274_FIXUP_HP_HEADSET_MIC,
622464c8 6978 ALC274_FIXUP_HP_ENVY_GPIO,
ef9ce66f 6979 ALC256_FIXUP_ASUS_HPE,
446b8185 6980 ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
a0ccbc53 6981 ALC287_FIXUP_HP_GPIO_LED,
9e885770 6982 ALC256_FIXUP_HP_HEADSET_MIC,
5fc462c3 6983 ALC245_FIXUP_HP_GPIO_LED,
92666d45 6984 ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
34cdf405 6985 ALC282_FIXUP_ACER_DISABLE_LINEOUT,
495dc763 6986 ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST,
d0e18561 6987 ALC256_FIXUP_ACER_HEADSET_MIC,
26928ca1 6988 ALC285_FIXUP_IDEAPAD_S740_COEF,
bd15b155 6989 ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST,
8eedd3a7 6990 ALC295_FIXUP_ASUS_DACS,
5d84b531 6991 ALC295_FIXUP_HP_OMEN,
f2be77fe 6992 ALC285_FIXUP_HP_SPECTRE_X360,
9ebaef05 6993 ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP,
29c8f40b 6994 ALC623_FIXUP_LENOVO_THINKSTATION_P340,
57c9e21a 6995 ALC255_FIXUP_ACER_HEADPHONE_AND_MIC,
8903376d 6996 ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST,
ad7cc2d4
CB
6997 ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS,
6998 ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
6999 ALC287_FIXUP_YOGA7_14ITL_SPEAKERS,
dd6dd6e3 7000 ALC287_FIXUP_13S_GEN2_SPEAKERS,
619764cc 7001 ALC256_FIXUP_SET_COEF_DEFAULTS,
1278cc5a 7002 ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
174a7fb3 7003 ALC233_FIXUP_NO_AUDIO_JACK,
edca7cc4 7004 ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME,
8f4c9042
BF
7005 ALC285_FIXUP_LEGION_Y9000X_SPEAKERS,
7006 ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
d3dca026 7007 ALC287_FIXUP_LEGION_16ACHG6,
ae7abe36 7008 ALC287_FIXUP_CS35L41_I2C_2,
b3fbe536 7009 ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED,
07bcab93 7010 ALC245_FIXUP_CS35L41_SPI_2,
ce18f905 7011 ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED,
07bcab93
LT
7012 ALC245_FIXUP_CS35L41_SPI_4,
7013 ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED,
91502a9a 7014 ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED,
f1d4e28b
KY
7015};
7016
1727a771 7017static const struct hda_fixup alc269_fixups[] = {
f73bbf63
KHF
7018 [ALC269_FIXUP_GPIO2] = {
7019 .type = HDA_FIXUP_FUNC,
7020 .v.func = alc_fixup_gpio2,
7021 },
1d045db9 7022 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
7023 .type = HDA_FIXUP_PINCTLS,
7024 .v.pins = (const struct hda_pintbl[]) {
7025 {0x19, PIN_VREFGRD},
1d045db9
TI
7026 {}
7027 }
f1d4e28b 7028 },
1d045db9 7029 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
7030 .type = HDA_FIXUP_FUNC,
7031 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
7032 .chained = true,
7033 .chain_id = ALC269_FIXUP_SONY_VAIO
7034 },
7035 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 7036 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7037 .v.verbs = (const struct hda_verb[]) {
7038 /* Enables internal speaker */
7039 {0x20, AC_VERB_SET_COEF_INDEX, 13},
7040 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
7041 {}
7042 }
7043 },
7044 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 7045 .type = HDA_FIXUP_FUNC,
23d30f28 7046 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
7047 },
7048 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
7049 .type = HDA_FIXUP_PINS,
7050 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
7051 { 0x17, 0x99130111 }, /* subwoofer */
7052 { }
7053 }
7054 },
7055 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 7056 .type = HDA_FIXUP_VERBS,
1d045db9
TI
7057 .v.verbs = (const struct hda_verb[]) {
7058 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7059 {}
7060 }
7061 },
7062 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 7063 .type = HDA_FIXUP_FUNC,
1d045db9
TI
7064 .v.func = alc269_fixup_hweq,
7065 .chained = true,
7066 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
7067 },
e9bd7d5c
TI
7068 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
7069 .type = HDA_FIXUP_FUNC,
7070 .v.func = alc_fixup_disable_aamix,
7071 .chained = true,
7072 .chain_id = ALC269_FIXUP_SONY_VAIO
7073 },
1d045db9 7074 [ALC271_FIXUP_DMIC] = {
1727a771 7075 .type = HDA_FIXUP_FUNC,
1d045db9 7076 .v.func = alc271_fixup_dmic,
f1d4e28b 7077 },
017f2a10 7078 [ALC269_FIXUP_PCM_44K] = {
1727a771 7079 .type = HDA_FIXUP_FUNC,
017f2a10 7080 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
7081 .chained = true,
7082 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 7083 },
adabb3ec 7084 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 7085 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
7086 .v.func = alc269_fixup_stereo_dmic,
7087 },
7c478f03
DH
7088 [ALC269_FIXUP_HEADSET_MIC] = {
7089 .type = HDA_FIXUP_FUNC,
7090 .v.func = alc269_fixup_headset_mic,
7091 },
24519911 7092 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 7093 .type = HDA_FIXUP_FUNC,
24519911
TI
7094 .v.func = alc269_fixup_quanta_mute,
7095 },
7096 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
7097 .type = HDA_FIXUP_PINS,
7098 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
7099 { 0x1a, 0x2101103f }, /* dock line-out */
7100 { 0x1b, 0x23a11040 }, /* dock mic-in */
7101 { }
7102 },
7103 .chained = true,
7104 .chain_id = ALC269_FIXUP_QUANTA_MUTE
7105 },
2041d564
DH
7106 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
7107 .type = HDA_FIXUP_PINS,
7108 .v.pins = (const struct hda_pintbl[]) {
7109 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
7110 { }
7111 },
7112 },
cc7016ab
TI
7113 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
7114 .type = HDA_FIXUP_PINS,
7115 .v.pins = (const struct hda_pintbl[]) {
7116 { 0x21, 0x0221102f }, /* HP out */
7117 { }
7118 },
7119 },
4df3fd17
TI
7120 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
7121 .type = HDA_FIXUP_FUNC,
7122 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
7123 },
fdcc968a
JMG
7124 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
7125 .type = HDA_FIXUP_FUNC,
7126 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
7127 },
a4297b5d 7128 [ALC269_FIXUP_AMIC] = {
1727a771
TI
7129 .type = HDA_FIXUP_PINS,
7130 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7131 { 0x14, 0x99130110 }, /* speaker */
7132 { 0x15, 0x0121401f }, /* HP out */
7133 { 0x18, 0x01a19c20 }, /* mic */
7134 { 0x19, 0x99a3092f }, /* int-mic */
7135 { }
7136 },
7137 },
7138 [ALC269_FIXUP_DMIC] = {
1727a771
TI
7139 .type = HDA_FIXUP_PINS,
7140 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7141 { 0x12, 0x99a3092f }, /* int-mic */
7142 { 0x14, 0x99130110 }, /* speaker */
7143 { 0x15, 0x0121401f }, /* HP out */
7144 { 0x18, 0x01a19c20 }, /* mic */
7145 { }
7146 },
7147 },
7148 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
7149 .type = HDA_FIXUP_PINS,
7150 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7151 { 0x14, 0x99130110 }, /* speaker */
7152 { 0x18, 0x01a19c20 }, /* mic */
7153 { 0x19, 0x99a3092f }, /* int-mic */
7154 { 0x21, 0x0121401f }, /* HP out */
7155 { }
7156 },
7157 },
2267ea97 7158 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
7159 .type = HDA_FIXUP_PINS,
7160 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
7161 { 0x12, 0x99a3092f }, /* int-mic */
7162 { 0x14, 0x99130110 }, /* speaker */
7163 { 0x18, 0x01a19c20 }, /* mic */
7164 { 0x21, 0x0121401f }, /* HP out */
7165 { }
7166 },
7167 },
08fb0d0e 7168 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 7169 .type = HDA_FIXUP_FUNC,
08fb0d0e 7170 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 7171 },
d06ac143
DH
7172 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
7173 .type = HDA_FIXUP_FUNC,
7174 .v.func = alc269_fixup_hp_mute_led_mic1,
7175 },
08fb0d0e 7176 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 7177 .type = HDA_FIXUP_FUNC,
08fb0d0e 7178 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 7179 },
7f783bd5
TB
7180 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
7181 .type = HDA_FIXUP_FUNC,
7182 .v.func = alc269_fixup_hp_mute_led_mic3,
e8ed64b0
GKK
7183 .chained = true,
7184 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7f783bd5 7185 },
9f5c6faf
TI
7186 [ALC269_FIXUP_HP_GPIO_LED] = {
7187 .type = HDA_FIXUP_FUNC,
7188 .v.func = alc269_fixup_hp_gpio_led,
7189 },
9c5dc3bf
KY
7190 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
7191 .type = HDA_FIXUP_FUNC,
7192 .v.func = alc269_fixup_hp_gpio_mic1_led,
7193 },
7194 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
7195 .type = HDA_FIXUP_FUNC,
7196 .v.func = alc269_fixup_hp_line1_mic1_led,
7197 },
693b613d 7198 [ALC269_FIXUP_INV_DMIC] = {
1727a771 7199 .type = HDA_FIXUP_FUNC,
9d36a7dc 7200 .v.func = alc_fixup_inv_dmic,
693b613d 7201 },
9b745ab8
TI
7202 [ALC269_FIXUP_NO_SHUTUP] = {
7203 .type = HDA_FIXUP_FUNC,
7204 .v.func = alc_fixup_no_shutup,
7205 },
108cc108 7206 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
7207 .type = HDA_FIXUP_PINS,
7208 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
7209 { 0x19, 0x23a11040 }, /* dock mic */
7210 { 0x1b, 0x2121103f }, /* dock headphone */
7211 { }
7212 },
7213 .chained = true,
7214 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
7215 },
b590b38c
TI
7216 [ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST] = {
7217 .type = HDA_FIXUP_FUNC,
7218 .v.func = alc269_fixup_limit_int_mic_boost,
7219 .chained = true,
7220 .chain_id = ALC269_FIXUP_LENOVO_DOCK,
7221 },
108cc108 7222 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 7223 .type = HDA_FIXUP_FUNC,
108cc108 7224 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
7225 .chained = true,
7226 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 7227 },
73bdd597
DH
7228 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7229 .type = HDA_FIXUP_PINS,
7230 .v.pins = (const struct hda_pintbl[]) {
7231 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7232 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7233 { }
7234 },
7235 .chained = true,
7236 .chain_id = ALC269_FIXUP_HEADSET_MODE
7237 },
7238 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7239 .type = HDA_FIXUP_PINS,
7240 .v.pins = (const struct hda_pintbl[]) {
7241 { 0x16, 0x21014020 }, /* dock line out */
7242 { 0x19, 0x21a19030 }, /* dock mic */
7243 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7244 { }
7245 },
7246 .chained = true,
7247 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7248 },
338cae56
DH
7249 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
7250 .type = HDA_FIXUP_PINS,
7251 .v.pins = (const struct hda_pintbl[]) {
7252 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7253 { }
7254 },
7255 .chained = true,
7256 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7257 },
fcc6c877
KY
7258 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
7259 .type = HDA_FIXUP_PINS,
7260 .v.pins = (const struct hda_pintbl[]) {
7261 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7262 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7263 { }
7264 },
7265 .chained = true,
7266 .chain_id = ALC269_FIXUP_HEADSET_MODE
7267 },
73bdd597
DH
7268 [ALC269_FIXUP_HEADSET_MODE] = {
7269 .type = HDA_FIXUP_FUNC,
7270 .v.func = alc_fixup_headset_mode,
6676f308 7271 .chained = true,
b3802783 7272 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
73bdd597
DH
7273 },
7274 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7275 .type = HDA_FIXUP_FUNC,
7276 .v.func = alc_fixup_headset_mode_no_hp_mic,
7277 },
7819717b
TI
7278 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
7279 .type = HDA_FIXUP_PINS,
7280 .v.pins = (const struct hda_pintbl[]) {
7281 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
7282 { }
7283 },
7284 .chained = true,
7285 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7286 },
88cfcf86
DH
7287 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
7288 .type = HDA_FIXUP_PINS,
7289 .v.pins = (const struct hda_pintbl[]) {
7290 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7291 { }
7292 },
fbc78ad6
DH
7293 .chained = true,
7294 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 7295 },
0fbf21c3 7296 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
8ac51bbc
AB
7297 .type = HDA_FIXUP_PINS,
7298 .v.pins = (const struct hda_pintbl[]) {
7299 {0x12, 0x90a60130},
7300 {0x13, 0x40000000},
7301 {0x14, 0x90170110},
7302 {0x18, 0x411111f0},
7303 {0x19, 0x04a11040},
7304 {0x1a, 0x411111f0},
7305 {0x1b, 0x90170112},
7306 {0x1d, 0x40759a05},
7307 {0x1e, 0x411111f0},
7308 {0x21, 0x04211020},
7309 { }
7310 },
e2744fd7
AB
7311 .chained = true,
7312 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8ac51bbc 7313 },
a2ef03fe
TE
7314 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
7315 .type = HDA_FIXUP_FUNC,
7316 .v.func = alc298_fixup_huawei_mbx_stereo,
7317 .chained = true,
7318 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
7319 },
d240d1dc
DH
7320 [ALC269_FIXUP_ASUS_X101_FUNC] = {
7321 .type = HDA_FIXUP_FUNC,
7322 .v.func = alc269_fixup_x101_headset_mic,
7323 },
7324 [ALC269_FIXUP_ASUS_X101_VERB] = {
7325 .type = HDA_FIXUP_VERBS,
7326 .v.verbs = (const struct hda_verb[]) {
7327 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
7328 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
7329 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
7330 { }
7331 },
7332 .chained = true,
7333 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
7334 },
7335 [ALC269_FIXUP_ASUS_X101] = {
7336 .type = HDA_FIXUP_PINS,
7337 .v.pins = (const struct hda_pintbl[]) {
7338 { 0x18, 0x04a1182c }, /* Headset mic */
7339 { }
7340 },
7341 .chained = true,
7342 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
7343 },
08a978db 7344 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
7345 .type = HDA_FIXUP_PINS,
7346 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
7347 { 0x14, 0x99130110 }, /* speaker */
7348 { 0x19, 0x01a19c20 }, /* mic */
7349 { 0x1b, 0x99a7012f }, /* int-mic */
7350 { 0x21, 0x0121401f }, /* HP out */
7351 { }
7352 },
7353 },
7354 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 7355 .type = HDA_FIXUP_FUNC,
08a978db
DR
7356 .v.func = alc271_hp_gate_mic_jack,
7357 .chained = true,
7358 .chain_id = ALC271_FIXUP_AMIC_MIC2,
7359 },
b1e8972e
OR
7360 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
7361 .type = HDA_FIXUP_FUNC,
7362 .v.func = alc269_fixup_limit_int_mic_boost,
7363 .chained = true,
7364 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
7365 },
42397004
DR
7366 [ALC269_FIXUP_ACER_AC700] = {
7367 .type = HDA_FIXUP_PINS,
7368 .v.pins = (const struct hda_pintbl[]) {
7369 { 0x12, 0x99a3092f }, /* int-mic */
7370 { 0x14, 0x99130110 }, /* speaker */
7371 { 0x18, 0x03a11c20 }, /* mic */
7372 { 0x1e, 0x0346101e }, /* SPDIF1 */
7373 { 0x21, 0x0321101f }, /* HP out */
7374 { }
7375 },
7376 .chained = true,
7377 .chain_id = ALC271_FIXUP_DMIC,
7378 },
3e0d611b
DH
7379 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
7380 .type = HDA_FIXUP_FUNC,
7381 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
7382 .chained = true,
7383 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 7384 },
2cede303
OR
7385 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
7386 .type = HDA_FIXUP_FUNC,
7387 .v.func = alc269_fixup_limit_int_mic_boost,
7388 .chained = true,
7389 .chain_id = ALC269VB_FIXUP_DMIC,
7390 },
23870831
TI
7391 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
7392 .type = HDA_FIXUP_VERBS,
7393 .v.verbs = (const struct hda_verb[]) {
7394 /* class-D output amp +5dB */
7395 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
7396 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
7397 {}
7398 },
7399 .chained = true,
7400 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
7401 },
8e35cd4a
DH
7402 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
7403 .type = HDA_FIXUP_FUNC,
7404 .v.func = alc269_fixup_limit_int_mic_boost,
7405 .chained = true,
7406 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
7407 },
02b504d9
AA
7408 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
7409 .type = HDA_FIXUP_PINS,
7410 .v.pins = (const struct hda_pintbl[]) {
7411 { 0x12, 0x99a3092f }, /* int-mic */
7412 { 0x18, 0x03a11d20 }, /* mic */
7413 { 0x19, 0x411111f0 }, /* Unused bogus pin */
7414 { }
7415 },
7416 },
cd217a63
KY
7417 [ALC283_FIXUP_CHROME_BOOK] = {
7418 .type = HDA_FIXUP_FUNC,
7419 .v.func = alc283_fixup_chromebook,
7420 },
0202e99c
KY
7421 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
7422 .type = HDA_FIXUP_FUNC,
7423 .v.func = alc283_fixup_sense_combo_jack,
7424 .chained = true,
7425 .chain_id = ALC283_FIXUP_CHROME_BOOK,
7426 },
7bba2157
TI
7427 [ALC282_FIXUP_ASUS_TX300] = {
7428 .type = HDA_FIXUP_FUNC,
7429 .v.func = alc282_fixup_asus_tx300,
7430 },
1bb3e062
KY
7431 [ALC283_FIXUP_INT_MIC] = {
7432 .type = HDA_FIXUP_VERBS,
7433 .v.verbs = (const struct hda_verb[]) {
7434 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
7435 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
7436 { }
7437 },
7438 .chained = true,
7439 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7440 },
0f4881dc
DH
7441 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
7442 .type = HDA_FIXUP_PINS,
7443 .v.pins = (const struct hda_pintbl[]) {
7444 { 0x17, 0x90170112 }, /* subwoofer */
7445 { }
7446 },
7447 .chained = true,
7448 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
7449 },
7450 [ALC290_FIXUP_SUBWOOFER] = {
7451 .type = HDA_FIXUP_PINS,
7452 .v.pins = (const struct hda_pintbl[]) {
7453 { 0x17, 0x90170112 }, /* subwoofer */
7454 { }
7455 },
7456 .chained = true,
7457 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
7458 },
338cae56
DH
7459 [ALC290_FIXUP_MONO_SPEAKERS] = {
7460 .type = HDA_FIXUP_FUNC,
7461 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
7462 },
7463 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
7464 .type = HDA_FIXUP_FUNC,
7465 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
7466 .chained = true,
7467 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
7468 },
b67ae3f1
DH
7469 [ALC269_FIXUP_THINKPAD_ACPI] = {
7470 .type = HDA_FIXUP_FUNC,
d5a6cabf 7471 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
7472 .chained = true,
7473 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 7474 },
56f27013
DH
7475 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
7476 .type = HDA_FIXUP_FUNC,
7477 .v.func = alc_fixup_inv_dmic,
7478 .chained = true,
7479 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
7480 },
5824ce8d 7481 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
17d30460
HW
7482 .type = HDA_FIXUP_PINS,
7483 .v.pins = (const struct hda_pintbl[]) {
7484 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7485 { }
5824ce8d
CC
7486 },
7487 .chained = true,
17d30460 7488 .chain_id = ALC255_FIXUP_HEADSET_MODE
5824ce8d 7489 },
615966ad
CC
7490 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7491 .type = HDA_FIXUP_PINS,
7492 .v.pins = (const struct hda_pintbl[]) {
7493 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7494 { }
7495 },
7496 .chained = true,
7497 .chain_id = ALC255_FIXUP_HEADSET_MODE
7498 },
9a22a8f5
KY
7499 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7500 .type = HDA_FIXUP_PINS,
7501 .v.pins = (const struct hda_pintbl[]) {
7502 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7503 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7504 { }
7505 },
7506 .chained = true,
7507 .chain_id = ALC255_FIXUP_HEADSET_MODE
7508 },
31278997
KY
7509 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
7510 .type = HDA_FIXUP_PINS,
7511 .v.pins = (const struct hda_pintbl[]) {
7512 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7513 { }
7514 },
7515 .chained = true,
7516 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
7517 },
9a22a8f5
KY
7518 [ALC255_FIXUP_HEADSET_MODE] = {
7519 .type = HDA_FIXUP_FUNC,
7520 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a 7521 .chained = true,
b3802783 7522 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
9a22a8f5 7523 },
31278997
KY
7524 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
7525 .type = HDA_FIXUP_FUNC,
7526 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
7527 },
a22aa26f
KY
7528 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7529 .type = HDA_FIXUP_PINS,
7530 .v.pins = (const struct hda_pintbl[]) {
7531 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7532 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7533 { }
7534 },
7535 .chained = true,
7536 .chain_id = ALC269_FIXUP_HEADSET_MODE
7537 },
1c37c223 7538 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 7539 .type = HDA_FIXUP_FUNC,
7f57d803 7540 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
7541 .chained = true,
7542 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
7543 },
9a811230
TI
7544 [ALC292_FIXUP_TPT440] = {
7545 .type = HDA_FIXUP_FUNC,
157f0b7f 7546 .v.func = alc_fixup_disable_aamix,
9a811230
TI
7547 .chained = true,
7548 .chain_id = ALC292_FIXUP_TPT440_DOCK,
7549 },
abaa2274 7550 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
7551 .type = HDA_FIXUP_PINS,
7552 .v.pins = (const struct hda_pintbl[]) {
7553 { 0x19, 0x04a110f0 },
7554 { },
7555 },
7556 },
b3802783 7557 [ALC255_FIXUP_MIC_MUTE_LED] = {
00ef9940 7558 .type = HDA_FIXUP_FUNC,
8a503555 7559 .v.func = alc_fixup_micmute_led,
00ef9940 7560 },
1a22e775
TI
7561 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
7562 .type = HDA_FIXUP_PINS,
7563 .v.pins = (const struct hda_pintbl[]) {
7564 { 0x12, 0x90a60130 },
7565 { 0x14, 0x90170110 },
7566 { 0x17, 0x40000008 },
7567 { 0x18, 0x411111f0 },
0420694d 7568 { 0x19, 0x01a1913c },
1a22e775
TI
7569 { 0x1a, 0x411111f0 },
7570 { 0x1b, 0x411111f0 },
7571 { 0x1d, 0x40f89b2d },
7572 { 0x1e, 0x411111f0 },
7573 { 0x21, 0x0321101f },
7574 { },
7575 },
7576 },
c8426b27
TI
7577 [ALC269VB_FIXUP_ASPIRE_E1_COEF] = {
7578 .type = HDA_FIXUP_FUNC,
7579 .v.func = alc269vb_fixup_aspire_e1_coef,
7580 },
7a5255f1
DH
7581 [ALC280_FIXUP_HP_GPIO4] = {
7582 .type = HDA_FIXUP_FUNC,
7583 .v.func = alc280_fixup_hp_gpio4,
7584 },
eaa8e5ef
KY
7585 [ALC286_FIXUP_HP_GPIO_LED] = {
7586 .type = HDA_FIXUP_FUNC,
7587 .v.func = alc286_fixup_hp_gpio_led,
7588 },
33f4acd3
DH
7589 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
7590 .type = HDA_FIXUP_FUNC,
7591 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
7592 },
b4b33f9d
TC
7593 [ALC280_FIXUP_HP_DOCK_PINS] = {
7594 .type = HDA_FIXUP_PINS,
7595 .v.pins = (const struct hda_pintbl[]) {
7596 { 0x1b, 0x21011020 }, /* line-out */
7597 { 0x1a, 0x01a1903c }, /* headset mic */
7598 { 0x18, 0x2181103f }, /* line-in */
7599 { },
7600 },
7601 .chained = true,
7602 .chain_id = ALC280_FIXUP_HP_GPIO4
7603 },
04d5466a
JK
7604 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
7605 .type = HDA_FIXUP_PINS,
7606 .v.pins = (const struct hda_pintbl[]) {
7607 { 0x1b, 0x21011020 }, /* line-out */
7608 { 0x18, 0x2181103f }, /* line-in */
7609 { },
7610 },
7611 .chained = true,
7612 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
7613 },
98973f2f
KP
7614 [ALC280_FIXUP_HP_9480M] = {
7615 .type = HDA_FIXUP_FUNC,
7616 .v.func = alc280_fixup_hp_9480m,
7617 },
c3bb2b52
TI
7618 [ALC245_FIXUP_HP_X360_AMP] = {
7619 .type = HDA_FIXUP_FUNC,
7620 .v.func = alc245_fixup_hp_x360_amp,
5fc462c3
JC
7621 .chained = true,
7622 .chain_id = ALC245_FIXUP_HP_GPIO_LED
c3bb2b52 7623 },
e1e62b98
KY
7624 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
7625 .type = HDA_FIXUP_FUNC,
7626 .v.func = alc_fixup_headset_mode_dell_alc288,
7627 .chained = true,
b3802783 7628 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
e1e62b98
KY
7629 },
7630 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7631 .type = HDA_FIXUP_PINS,
7632 .v.pins = (const struct hda_pintbl[]) {
7633 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7634 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7635 { }
7636 },
7637 .chained = true,
7638 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
7639 },
831bfdf9
HW
7640 [ALC288_FIXUP_DISABLE_AAMIX] = {
7641 .type = HDA_FIXUP_FUNC,
7642 .v.func = alc_fixup_disable_aamix,
7643 .chained = true,
d44a6864 7644 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
7645 },
7646 [ALC288_FIXUP_DELL_XPS_13] = {
7647 .type = HDA_FIXUP_FUNC,
7648 .v.func = alc_fixup_dell_xps13,
7649 .chained = true,
7650 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
7651 },
8b99aba7
TI
7652 [ALC292_FIXUP_DISABLE_AAMIX] = {
7653 .type = HDA_FIXUP_FUNC,
7654 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
7655 .chained = true,
7656 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 7657 },
c04017ea
DH
7658 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
7659 .type = HDA_FIXUP_FUNC,
7660 .v.func = alc_fixup_disable_aamix,
7661 .chained = true,
7662 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
7663 },
5fab5829 7664 [ALC292_FIXUP_DELL_E7X_AAMIX] = {
8b99aba7
TI
7665 .type = HDA_FIXUP_FUNC,
7666 .v.func = alc_fixup_dell_xps13,
7667 .chained = true,
7668 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
7669 },
5fab5829
TI
7670 [ALC292_FIXUP_DELL_E7X] = {
7671 .type = HDA_FIXUP_FUNC,
8a503555 7672 .v.func = alc_fixup_micmute_led,
5fab5829
TI
7673 /* micmute fixup must be applied at last */
7674 .chained_before = true,
7675 .chain_id = ALC292_FIXUP_DELL_E7X_AAMIX,
7676 },
54324221
JM
7677 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
7678 .type = HDA_FIXUP_PINS,
7679 .v.pins = (const struct hda_pintbl[]) {
7680 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
7681 { }
7682 },
7683 .chained_before = true,
7684 .chain_id = ALC269_FIXUP_HEADSET_MODE,
7685 },
977e6276
KY
7686 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7687 .type = HDA_FIXUP_PINS,
7688 .v.pins = (const struct hda_pintbl[]) {
7689 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7690 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7691 { }
7692 },
7693 .chained = true,
7694 .chain_id = ALC269_FIXUP_HEADSET_MODE
7695 },
2f726aec
HW
7696 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
7697 .type = HDA_FIXUP_PINS,
7698 .v.pins = (const struct hda_pintbl[]) {
7699 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7700 { }
7701 },
7702 .chained = true,
7703 .chain_id = ALC269_FIXUP_HEADSET_MODE
7704 },
6ed1131f
KY
7705 [ALC275_FIXUP_DELL_XPS] = {
7706 .type = HDA_FIXUP_VERBS,
7707 .v.verbs = (const struct hda_verb[]) {
7708 /* Enables internal speaker */
7709 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
7710 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
7711 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
7712 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
7713 {}
7714 }
7715 },
23adc192
HW
7716 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
7717 .type = HDA_FIXUP_FUNC,
7718 .v.func = alc_fixup_disable_aamix,
7719 .chained = true,
7720 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
7721 },
3694cb29
K
7722 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
7723 .type = HDA_FIXUP_FUNC,
7724 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
7725 },
d1ee66c5
PC
7726 [ALC233_FIXUP_INTEL_NUC8_DMIC] = {
7727 .type = HDA_FIXUP_FUNC,
7728 .v.func = alc_fixup_inv_dmic,
7729 .chained = true,
7730 .chain_id = ALC233_FIXUP_INTEL_NUC8_BOOST,
7731 },
7732 [ALC233_FIXUP_INTEL_NUC8_BOOST] = {
7733 .type = HDA_FIXUP_FUNC,
7734 .v.func = alc269_fixup_limit_int_mic_boost
7735 },
3b43b71f
KHF
7736 [ALC255_FIXUP_DELL_SPK_NOISE] = {
7737 .type = HDA_FIXUP_FUNC,
7738 .v.func = alc_fixup_disable_aamix,
7739 .chained = true,
7740 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
7741 },
d1dd4211
KY
7742 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
7743 .type = HDA_FIXUP_FUNC,
7744 .v.func = alc_fixup_disable_mic_vref,
7745 .chained = true,
7746 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
7747 },
2ae95577
DH
7748 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
7749 .type = HDA_FIXUP_VERBS,
7750 .v.verbs = (const struct hda_verb[]) {
7751 /* Disable pass-through path for FRONT 14h */
7752 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
7753 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
7754 {}
7755 },
7756 .chained = true,
d1dd4211 7757 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
2ae95577 7758 },
f883982d
TI
7759 [ALC280_FIXUP_HP_HEADSET_MIC] = {
7760 .type = HDA_FIXUP_FUNC,
7761 .v.func = alc_fixup_disable_aamix,
7762 .chained = true,
7763 .chain_id = ALC269_FIXUP_HEADSET_MIC,
7764 },
e549d190
HW
7765 [ALC221_FIXUP_HP_FRONT_MIC] = {
7766 .type = HDA_FIXUP_PINS,
7767 .v.pins = (const struct hda_pintbl[]) {
7768 { 0x19, 0x02a19020 }, /* Front Mic */
7769 { }
7770 },
7771 },
c636b95e
SE
7772 [ALC292_FIXUP_TPT460] = {
7773 .type = HDA_FIXUP_FUNC,
7774 .v.func = alc_fixup_tpt440_dock,
7775 .chained = true,
7776 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
7777 },
dd9aa335
HW
7778 [ALC298_FIXUP_SPK_VOLUME] = {
7779 .type = HDA_FIXUP_FUNC,
7780 .v.func = alc298_fixup_speaker_volume,
59ec4b57 7781 .chained = true,
2f726aec 7782 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 7783 },
f86de9b1
KY
7784 [ALC298_FIXUP_LENOVO_SPK_VOLUME] = {
7785 .type = HDA_FIXUP_FUNC,
7786 .v.func = alc298_fixup_speaker_volume,
7787 },
e312a869
TI
7788 [ALC295_FIXUP_DISABLE_DAC3] = {
7789 .type = HDA_FIXUP_FUNC,
7790 .v.func = alc295_fixup_disable_dac3,
7791 },
d2cd795c
JK
7792 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
7793 .type = HDA_FIXUP_FUNC,
7794 .v.func = alc285_fixup_speaker2_to_dac1,
c37c0ab0
HW
7795 .chained = true,
7796 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
d2cd795c 7797 },
fd06c77e
KHF
7798 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
7799 .type = HDA_FIXUP_PINS,
7800 .v.pins = (const struct hda_pintbl[]) {
7801 { 0x1b, 0x90170151 },
7802 { }
7803 },
7804 .chained = true,
7805 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
7806 },
823ff161
GM
7807 [ALC269_FIXUP_ATIV_BOOK_8] = {
7808 .type = HDA_FIXUP_FUNC,
7809 .v.func = alc_fixup_auto_mute_via_amp,
7810 .chained = true,
7811 .chain_id = ALC269_FIXUP_NO_SHUTUP
7812 },
9eb5d0e6
KY
7813 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
7814 .type = HDA_FIXUP_PINS,
7815 .v.pins = (const struct hda_pintbl[]) {
7816 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7817 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
7818 { }
7819 },
7820 .chained = true,
7821 .chain_id = ALC269_FIXUP_HEADSET_MODE
7822 },
c1732ede
CC
7823 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
7824 .type = HDA_FIXUP_FUNC,
7825 .v.func = alc_fixup_headset_mode,
7826 },
7827 [ALC256_FIXUP_ASUS_MIC] = {
7828 .type = HDA_FIXUP_PINS,
7829 .v.pins = (const struct hda_pintbl[]) {
7830 { 0x13, 0x90a60160 }, /* use as internal mic */
7831 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
7832 { }
7833 },
7834 .chained = true,
7835 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
7836 },
eeed4cd1 7837 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
7838 .type = HDA_FIXUP_FUNC,
7839 /* Set up GPIO2 for the speaker amp */
7840 .v.func = alc_fixup_gpio4,
eeed4cd1 7841 },
216d7aeb
CC
7842 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
7843 .type = HDA_FIXUP_PINS,
7844 .v.pins = (const struct hda_pintbl[]) {
7845 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7846 { }
7847 },
7848 .chained = true,
7849 .chain_id = ALC269_FIXUP_HEADSET_MIC
7850 },
7851 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
7852 .type = HDA_FIXUP_VERBS,
7853 .v.verbs = (const struct hda_verb[]) {
7854 /* Enables internal speaker */
7855 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
7856 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
7857 {}
7858 },
7859 .chained = true,
7860 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
7861 },
ca169cc2
KY
7862 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
7863 .type = HDA_FIXUP_FUNC,
7864 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
f73bbf63
KHF
7865 .chained = true,
7866 .chain_id = ALC269_FIXUP_GPIO2
ca169cc2 7867 },
ea5c7eba
JHP
7868 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
7869 .type = HDA_FIXUP_VERBS,
7870 .v.verbs = (const struct hda_verb[]) {
7871 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
7872 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
7873 { }
7874 },
7875 .chained = true,
7876 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
7877 },
f33f79f3
HW
7878 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
7879 .type = HDA_FIXUP_PINS,
7880 .v.pins = (const struct hda_pintbl[]) {
7881 /* Change the mic location from front to right, otherwise there are
7882 two front mics with the same name, pulseaudio can't handle them.
7883 This is just a temporary workaround, after applying this fixup,
7884 there will be one "Front Mic" and one "Mic" in this machine.
7885 */
7886 { 0x1a, 0x04a19040 },
7887 { }
7888 },
7889 },
5f364135
KY
7890 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
7891 .type = HDA_FIXUP_PINS,
7892 .v.pins = (const struct hda_pintbl[]) {
7893 { 0x16, 0x0101102f }, /* Rear Headset HP */
7894 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
7895 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
7896 { 0x1b, 0x02011020 },
7897 { }
7898 },
7899 .chained = true,
52e4e368
KHF
7900 .chain_id = ALC225_FIXUP_S3_POP_NOISE
7901 },
7902 [ALC225_FIXUP_S3_POP_NOISE] = {
7903 .type = HDA_FIXUP_FUNC,
7904 .v.func = alc225_fixup_s3_pop_noise,
7905 .chained = true,
5f364135
KY
7906 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
7907 },
b84e8436
PH
7908 [ALC700_FIXUP_INTEL_REFERENCE] = {
7909 .type = HDA_FIXUP_VERBS,
7910 .v.verbs = (const struct hda_verb[]) {
7911 /* Enables internal speaker */
7912 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
7913 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
7914 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
7915 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
7916 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
7917 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
7918 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
7919 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
7920 {}
7921 }
7922 },
92266651
KY
7923 [ALC274_FIXUP_DELL_BIND_DACS] = {
7924 .type = HDA_FIXUP_FUNC,
7925 .v.func = alc274_fixup_bind_dacs,
7926 .chained = true,
7927 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
7928 },
7929 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
7930 .type = HDA_FIXUP_PINS,
7931 .v.pins = (const struct hda_pintbl[]) {
7932 { 0x1b, 0x0401102f },
7933 { }
7934 },
7935 .chained = true,
7936 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
7937 },
399c01aa 7938 [ALC298_FIXUP_TPT470_DOCK_FIX] = {
61fcf8ec
KY
7939 .type = HDA_FIXUP_FUNC,
7940 .v.func = alc_fixup_tpt470_dock,
7941 .chained = true,
7942 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
7943 },
399c01aa
TI
7944 [ALC298_FIXUP_TPT470_DOCK] = {
7945 .type = HDA_FIXUP_FUNC,
7946 .v.func = alc_fixup_tpt470_dacs,
7947 .chained = true,
7948 .chain_id = ALC298_FIXUP_TPT470_DOCK_FIX
7949 },
ae104a21
KY
7950 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
7951 .type = HDA_FIXUP_PINS,
7952 .v.pins = (const struct hda_pintbl[]) {
7953 { 0x14, 0x0201101f },
7954 { }
7955 },
7956 .chained = true,
7957 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
7958 },
f0ba9d69
KY
7959 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
7960 .type = HDA_FIXUP_PINS,
7961 .v.pins = (const struct hda_pintbl[]) {
7962 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7963 { }
7964 },
3ce0d5aa
HW
7965 .chained = true,
7966 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 7967 },
bbf8ff6b
TB
7968 [ALC295_FIXUP_HP_X360] = {
7969 .type = HDA_FIXUP_FUNC,
7970 .v.func = alc295_fixup_hp_top_speakers,
7971 .chained = true,
7972 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
7973 },
7974 [ALC221_FIXUP_HP_HEADSET_MIC] = {
7975 .type = HDA_FIXUP_PINS,
7976 .v.pins = (const struct hda_pintbl[]) {
7977 { 0x19, 0x0181313f},
7978 { }
7979 },
7980 .chained = true,
7981 .chain_id = ALC269_FIXUP_HEADSET_MIC
7982 },
c4cfcf6f
HW
7983 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
7984 .type = HDA_FIXUP_FUNC,
7985 .v.func = alc285_fixup_invalidate_dacs,
6ba189c5
HW
7986 .chained = true,
7987 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
c4cfcf6f 7988 },
e8ed64b0
GKK
7989 [ALC295_FIXUP_HP_AUTO_MUTE] = {
7990 .type = HDA_FIXUP_FUNC,
7991 .v.func = alc_fixup_auto_mute_via_amp,
7992 },
33aaebd4
CC
7993 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
7994 .type = HDA_FIXUP_PINS,
7995 .v.pins = (const struct hda_pintbl[]) {
7996 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
7997 { }
7998 },
7999 .chained = true,
8000 .chain_id = ALC269_FIXUP_HEADSET_MIC
8001 },
d8ae458e
CC
8002 [ALC294_FIXUP_ASUS_MIC] = {
8003 .type = HDA_FIXUP_PINS,
8004 .v.pins = (const struct hda_pintbl[]) {
8005 { 0x13, 0x90a60160 }, /* use as internal mic */
8006 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8007 { }
8008 },
8009 .chained = true,
ef9ddb9d 8010 .chain_id = ALC269_FIXUP_HEADSET_MIC
d8ae458e 8011 },
4e051106
JHP
8012 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
8013 .type = HDA_FIXUP_PINS,
8014 .v.pins = (const struct hda_pintbl[]) {
82b01149 8015 { 0x19, 0x01a1103c }, /* use as headset mic */
4e051106
JHP
8016 { }
8017 },
8018 .chained = true,
ef9ddb9d 8019 .chain_id = ALC269_FIXUP_HEADSET_MIC
4e051106
JHP
8020 },
8021 [ALC294_FIXUP_ASUS_SPK] = {
8022 .type = HDA_FIXUP_VERBS,
8023 .v.verbs = (const struct hda_verb[]) {
8024 /* Set EAPD high */
8025 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
8026 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
473fbe13
KY
8027 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8028 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
4e051106
JHP
8029 { }
8030 },
8031 .chained = true,
8032 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8033 },
c8a9afa6 8034 [ALC295_FIXUP_CHROME_BOOK] = {
e854747d 8035 .type = HDA_FIXUP_FUNC,
c8a9afa6 8036 .v.func = alc295_fixup_chromebook,
8983eb60
KY
8037 .chained = true,
8038 .chain_id = ALC225_FIXUP_HEADSET_JACK
8039 },
8040 [ALC225_FIXUP_HEADSET_JACK] = {
8041 .type = HDA_FIXUP_FUNC,
8042 .v.func = alc_fixup_headset_jack,
e854747d 8043 },
89e3a568
JS
8044 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8045 .type = HDA_FIXUP_PINS,
8046 .v.pins = (const struct hda_pintbl[]) {
8047 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8048 { }
8049 },
8050 .chained = true,
8051 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8052 },
c8c6ee61
HW
8053 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
8054 .type = HDA_FIXUP_VERBS,
8055 .v.verbs = (const struct hda_verb[]) {
8056 /* Disable PCBEEP-IN passthrough */
8057 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
8058 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
8059 { }
8060 },
8061 .chained = true,
8062 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
8063 },
cbc05fd6
JHP
8064 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
8065 .type = HDA_FIXUP_PINS,
8066 .v.pins = (const struct hda_pintbl[]) {
8067 { 0x19, 0x03a11130 },
8068 { 0x1a, 0x90a60140 }, /* use as internal mic */
8069 { }
8070 },
8071 .chained = true,
8072 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
8073 },
136824ef
KY
8074 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
8075 .type = HDA_FIXUP_PINS,
8076 .v.pins = (const struct hda_pintbl[]) {
8077 { 0x16, 0x01011020 }, /* Rear Line out */
8078 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
8079 { }
8080 },
8081 .chained = true,
8082 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
8083 },
8084 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
8085 .type = HDA_FIXUP_FUNC,
8086 .v.func = alc_fixup_auto_mute_via_amp,
8087 .chained = true,
8088 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
8089 },
8090 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
8091 .type = HDA_FIXUP_FUNC,
8092 .v.func = alc_fixup_disable_mic_vref,
8093 .chained = true,
8094 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8095 },
667a8f73
JHP
8096 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
8097 .type = HDA_FIXUP_VERBS,
8098 .v.verbs = (const struct hda_verb[]) {
8099 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
8100 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
8101 { }
8102 },
8103 .chained = true,
8104 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
8105 },
8c8967a7
DD
8106 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
8107 .type = HDA_FIXUP_PINS,
8108 .v.pins = (const struct hda_pintbl[]) {
8109 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8110 { }
8111 },
8112 .chained = true,
8113 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8114 },
e1037354
JHP
8115 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8116 .type = HDA_FIXUP_PINS,
8117 .v.pins = (const struct hda_pintbl[]) {
8118 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
8119 { }
8120 },
8121 .chained = true,
8122 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8123 },
e2a829b3
BR
8124 [ALC299_FIXUP_PREDATOR_SPK] = {
8125 .type = HDA_FIXUP_PINS,
8126 .v.pins = (const struct hda_pintbl[]) {
8127 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
8128 { }
8129 }
8130 },
bd9c10bc 8131 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
60083f9e
JHP
8132 .type = HDA_FIXUP_PINS,
8133 .v.pins = (const struct hda_pintbl[]) {
bd9c10bc
JMG
8134 { 0x19, 0x04a11040 },
8135 { 0x21, 0x04211020 },
60083f9e
JHP
8136 { }
8137 },
8138 .chained = true,
bd9c10bc 8139 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
60083f9e 8140 },
e79c2269 8141 [ALC289_FIXUP_DELL_SPK2] = {
bd9c10bc
JMG
8142 .type = HDA_FIXUP_PINS,
8143 .v.pins = (const struct hda_pintbl[]) {
e79c2269 8144 { 0x17, 0x90170130 }, /* bass spk */
bd9c10bc
JMG
8145 { }
8146 },
8147 .chained = true,
e79c2269 8148 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
bd9c10bc 8149 },
e79c2269
KY
8150 [ALC289_FIXUP_DUAL_SPK] = {
8151 .type = HDA_FIXUP_FUNC,
8152 .v.func = alc285_fixup_speaker2_to_dac1,
8153 .chained = true,
8154 .chain_id = ALC289_FIXUP_DELL_SPK2
8155 },
48e01504
CC
8156 [ALC294_FIXUP_SPK2_TO_DAC1] = {
8157 .type = HDA_FIXUP_FUNC,
8158 .v.func = alc285_fixup_speaker2_to_dac1,
8159 .chained = true,
8160 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8161 },
8162 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
436e2550
JHP
8163 .type = HDA_FIXUP_FUNC,
8164 /* The GPIO must be pulled to initialize the AMP */
8165 .v.func = alc_fixup_gpio4,
8166 .chained = true,
48e01504 8167 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
436e2550 8168 },
6a6660d0
TI
8169 [ALC285_FIXUP_THINKPAD_X1_GEN7] = {
8170 .type = HDA_FIXUP_FUNC,
8171 .v.func = alc285_fixup_thinkpad_x1_gen7,
8172 .chained = true,
8173 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8174 },
76f7dec0
KY
8175 [ALC285_FIXUP_THINKPAD_HEADSET_JACK] = {
8176 .type = HDA_FIXUP_FUNC,
8177 .v.func = alc_fixup_headset_jack,
8178 .chained = true,
6a6660d0 8179 .chain_id = ALC285_FIXUP_THINKPAD_X1_GEN7
76f7dec0 8180 },
8b33a134
JHP
8181 [ALC294_FIXUP_ASUS_HPE] = {
8182 .type = HDA_FIXUP_VERBS,
8183 .v.verbs = (const struct hda_verb[]) {
8184 /* Set EAPD high */
8185 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8186 { 0x20, AC_VERB_SET_PROC_COEF, 0x7774 },
8187 { }
8188 },
8189 .chained = true,
8190 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8191 },
c3cdf189
LJ
8192 [ALC294_FIXUP_ASUS_GX502_PINS] = {
8193 .type = HDA_FIXUP_PINS,
8194 .v.pins = (const struct hda_pintbl[]) {
8195 { 0x19, 0x03a11050 }, /* front HP mic */
8196 { 0x1a, 0x01a11830 }, /* rear external mic */
8197 { 0x21, 0x03211020 }, /* front HP out */
8198 { }
8199 },
8200 .chained = true,
8201 .chain_id = ALC294_FIXUP_ASUS_GX502_VERBS
8202 },
8203 [ALC294_FIXUP_ASUS_GX502_VERBS] = {
8204 .type = HDA_FIXUP_VERBS,
8205 .v.verbs = (const struct hda_verb[]) {
8206 /* set 0x15 to HP-OUT ctrl */
8207 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8208 /* unmute the 0x15 amp */
8209 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8210 { }
8211 },
8212 .chained = true,
8213 .chain_id = ALC294_FIXUP_ASUS_GX502_HP
8214 },
8215 [ALC294_FIXUP_ASUS_GX502_HP] = {
8216 .type = HDA_FIXUP_FUNC,
8217 .v.func = alc294_fixup_gx502_hp,
8218 },
c1b55029
DC
8219 [ALC294_FIXUP_ASUS_GU502_PINS] = {
8220 .type = HDA_FIXUP_PINS,
8221 .v.pins = (const struct hda_pintbl[]) {
8222 { 0x19, 0x01a11050 }, /* rear HP mic */
8223 { 0x1a, 0x01a11830 }, /* rear external mic */
8224 { 0x21, 0x012110f0 }, /* rear HP out */
8225 { }
8226 },
8227 .chained = true,
8228 .chain_id = ALC294_FIXUP_ASUS_GU502_VERBS
8229 },
8230 [ALC294_FIXUP_ASUS_GU502_VERBS] = {
8231 .type = HDA_FIXUP_VERBS,
8232 .v.verbs = (const struct hda_verb[]) {
8233 /* set 0x15 to HP-OUT ctrl */
8234 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
8235 /* unmute the 0x15 amp */
8236 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000 },
8237 /* set 0x1b to HP-OUT */
8238 { 0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
8239 { }
8240 },
8241 .chained = true,
8242 .chain_id = ALC294_FIXUP_ASUS_GU502_HP
8243 },
8244 [ALC294_FIXUP_ASUS_GU502_HP] = {
8245 .type = HDA_FIXUP_FUNC,
8246 .v.func = alc294_fixup_gu502_hp,
8247 },
1b94e59d
TI
8248 [ALC294_FIXUP_ASUS_COEF_1B] = {
8249 .type = HDA_FIXUP_VERBS,
8250 .v.verbs = (const struct hda_verb[]) {
8251 /* Set bit 10 to correct noisy output after reboot from
8252 * Windows 10 (due to pop noise reduction?)
8253 */
8254 { 0x20, AC_VERB_SET_COEF_INDEX, 0x1b },
8255 { 0x20, AC_VERB_SET_PROC_COEF, 0x4e4b },
8256 { }
8257 },
f8fbcdfb
TI
8258 .chained = true,
8259 .chain_id = ALC289_FIXUP_ASUS_GA401,
1b94e59d 8260 },
f5a88b0a
KHF
8261 [ALC285_FIXUP_HP_GPIO_LED] = {
8262 .type = HDA_FIXUP_FUNC,
8263 .v.func = alc285_fixup_hp_gpio_led,
8264 },
431e76c3
KY
8265 [ALC285_FIXUP_HP_MUTE_LED] = {
8266 .type = HDA_FIXUP_FUNC,
8267 .v.func = alc285_fixup_hp_mute_led,
8268 },
e7d66cf7
JS
8269 [ALC236_FIXUP_HP_GPIO_LED] = {
8270 .type = HDA_FIXUP_FUNC,
8271 .v.func = alc236_fixup_hp_gpio_led,
8272 },
24164f43
KY
8273 [ALC236_FIXUP_HP_MUTE_LED] = {
8274 .type = HDA_FIXUP_FUNC,
8275 .v.func = alc236_fixup_hp_mute_led,
8276 },
75b62ab6
JW
8277 [ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF] = {
8278 .type = HDA_FIXUP_FUNC,
8279 .v.func = alc236_fixup_hp_mute_led_micmute_vref,
8280 },
14425f1f
MP
8281 [ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8282 .type = HDA_FIXUP_VERBS,
8283 .v.verbs = (const struct hda_verb[]) {
8284 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc5 },
8285 { }
8286 },
8287 },
ef248d9b
MK
8288 [ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET] = {
8289 .type = HDA_FIXUP_VERBS,
8290 .v.verbs = (const struct hda_verb[]) {
8291 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08},
8292 { 0x20, AC_VERB_SET_PROC_COEF, 0x2fcf},
8293 { }
8294 },
8295 },
9e43342b
CC
8296 [ALC295_FIXUP_ASUS_MIC_NO_PRESENCE] = {
8297 .type = HDA_FIXUP_PINS,
8298 .v.pins = (const struct hda_pintbl[]) {
8299 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8300 { }
8301 },
8302 .chained = true,
8303 .chain_id = ALC269_FIXUP_HEADSET_MODE
8304 },
8eae7e9b
JHP
8305 [ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS] = {
8306 .type = HDA_FIXUP_PINS,
8307 .v.pins = (const struct hda_pintbl[]) {
8308 { 0x14, 0x90100120 }, /* use as internal speaker */
8309 { 0x18, 0x02a111f0 }, /* use as headset mic, without its own jack detect */
8310 { 0x1a, 0x01011020 }, /* use as line out */
8311 { },
8312 },
8313 .chained = true,
8314 .chain_id = ALC269_FIXUP_HEADSET_MIC
8315 },
6e15d126
JHP
8316 [ALC269VC_FIXUP_ACER_HEADSET_MIC] = {
8317 .type = HDA_FIXUP_PINS,
8318 .v.pins = (const struct hda_pintbl[]) {
8319 { 0x18, 0x02a11030 }, /* use as headset mic */
8320 { }
8321 },
8322 .chained = true,
8323 .chain_id = ALC269_FIXUP_HEADSET_MIC
8324 },
781c90c0
JHP
8325 [ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE] = {
8326 .type = HDA_FIXUP_PINS,
8327 .v.pins = (const struct hda_pintbl[]) {
8328 { 0x18, 0x01a11130 }, /* use as headset mic, without its own jack detect */
8329 { }
8330 },
8331 .chained = true,
8332 .chain_id = ALC269_FIXUP_HEADSET_MIC
8333 },
293a92c1 8334 [ALC289_FIXUP_ASUS_GA401] = {
c84bfedc
TI
8335 .type = HDA_FIXUP_FUNC,
8336 .v.func = alc289_fixup_asus_ga401,
8337 .chained = true,
8338 .chain_id = ALC289_FIXUP_ASUS_GA502,
ff53664d 8339 },
4b43d05a
AS
8340 [ALC289_FIXUP_ASUS_GA502] = {
8341 .type = HDA_FIXUP_PINS,
8342 .v.pins = (const struct hda_pintbl[]) {
8343 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
8344 { }
8345 },
8346 },
f50a121d
JHP
8347 [ALC256_FIXUP_ACER_MIC_NO_PRESENCE] = {
8348 .type = HDA_FIXUP_PINS,
8349 .v.pins = (const struct hda_pintbl[]) {
8350 { 0x19, 0x02a11120 }, /* use as headset mic, without its own jack detect */
8351 { }
8352 },
8353 .chained = true,
8354 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
8355 },
56496253
KY
8356 [ALC285_FIXUP_HP_GPIO_AMP_INIT] = {
8357 .type = HDA_FIXUP_FUNC,
8358 .v.func = alc285_fixup_hp_gpio_amp_init,
8359 .chained = true,
8360 .chain_id = ALC285_FIXUP_HP_GPIO_LED
8361 },
f1ec5be1
HC
8362 [ALC269_FIXUP_CZC_B20] = {
8363 .type = HDA_FIXUP_PINS,
8364 .v.pins = (const struct hda_pintbl[]) {
8365 { 0x12, 0x411111f0 },
8366 { 0x14, 0x90170110 }, /* speaker */
8367 { 0x15, 0x032f1020 }, /* HP out */
8368 { 0x17, 0x411111f0 },
8369 { 0x18, 0x03ab1040 }, /* mic */
8370 { 0x19, 0xb7a7013f },
8371 { 0x1a, 0x0181305f },
8372 { 0x1b, 0x411111f0 },
8373 { 0x1d, 0x411111f0 },
8374 { 0x1e, 0x411111f0 },
8375 { }
8376 },
8377 .chain_id = ALC269_FIXUP_DMIC,
8378 },
8379 [ALC269_FIXUP_CZC_TMI] = {
8380 .type = HDA_FIXUP_PINS,
8381 .v.pins = (const struct hda_pintbl[]) {
8382 { 0x12, 0x4000c000 },
8383 { 0x14, 0x90170110 }, /* speaker */
8384 { 0x15, 0x0421401f }, /* HP out */
8385 { 0x17, 0x411111f0 },
8386 { 0x18, 0x04a19020 }, /* mic */
8387 { 0x19, 0x411111f0 },
8388 { 0x1a, 0x411111f0 },
8389 { 0x1b, 0x411111f0 },
8390 { 0x1d, 0x40448505 },
8391 { 0x1e, 0x411111f0 },
8392 { 0x20, 0x8000ffff },
8393 { }
8394 },
8395 .chain_id = ALC269_FIXUP_DMIC,
8396 },
8397 [ALC269_FIXUP_CZC_L101] = {
8398 .type = HDA_FIXUP_PINS,
8399 .v.pins = (const struct hda_pintbl[]) {
8400 { 0x12, 0x40000000 },
8401 { 0x14, 0x01014010 }, /* speaker */
8402 { 0x15, 0x411111f0 }, /* HP out */
8403 { 0x16, 0x411111f0 },
8404 { 0x18, 0x01a19020 }, /* mic */
8405 { 0x19, 0x02a19021 },
8406 { 0x1a, 0x0181302f },
8407 { 0x1b, 0x0221401f },
8408 { 0x1c, 0x411111f0 },
8409 { 0x1d, 0x4044c601 },
8410 { 0x1e, 0x411111f0 },
8411 { }
8412 },
8413 .chain_id = ALC269_FIXUP_DMIC,
8414 },
8415 [ALC269_FIXUP_LEMOTE_A1802] = {
8416 .type = HDA_FIXUP_PINS,
8417 .v.pins = (const struct hda_pintbl[]) {
8418 { 0x12, 0x40000000 },
8419 { 0x14, 0x90170110 }, /* speaker */
8420 { 0x17, 0x411111f0 },
8421 { 0x18, 0x03a19040 }, /* mic1 */
8422 { 0x19, 0x90a70130 }, /* mic2 */
8423 { 0x1a, 0x411111f0 },
8424 { 0x1b, 0x411111f0 },
8425 { 0x1d, 0x40489d2d },
8426 { 0x1e, 0x411111f0 },
8427 { 0x20, 0x0003ffff },
8428 { 0x21, 0x03214020 },
8429 { }
8430 },
8431 .chain_id = ALC269_FIXUP_DMIC,
8432 },
8433 [ALC269_FIXUP_LEMOTE_A190X] = {
8434 .type = HDA_FIXUP_PINS,
8435 .v.pins = (const struct hda_pintbl[]) {
8436 { 0x14, 0x99130110 }, /* speaker */
8437 { 0x15, 0x0121401f }, /* HP out */
8438 { 0x18, 0x01a19c20 }, /* rear mic */
8439 { 0x19, 0x99a3092f }, /* front mic */
8440 { 0x1b, 0x0201401f }, /* front lineout */
8441 { }
8442 },
8443 .chain_id = ALC269_FIXUP_DMIC,
8444 },
e2d2fded
KHF
8445 [ALC256_FIXUP_INTEL_NUC8_RUGGED] = {
8446 .type = HDA_FIXUP_PINS,
8447 .v.pins = (const struct hda_pintbl[]) {
8448 { 0x1b, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8449 { }
8450 },
8451 .chained = true,
8452 .chain_id = ALC269_FIXUP_HEADSET_MODE
8453 },
73e7161e
WS
8454 [ALC256_FIXUP_INTEL_NUC10] = {
8455 .type = HDA_FIXUP_PINS,
8456 .v.pins = (const struct hda_pintbl[]) {
8457 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8458 { }
8459 },
8460 .chained = true,
8461 .chain_id = ALC269_FIXUP_HEADSET_MODE
8462 },
fc19d559
HW
8463 [ALC255_FIXUP_XIAOMI_HEADSET_MIC] = {
8464 .type = HDA_FIXUP_VERBS,
8465 .v.verbs = (const struct hda_verb[]) {
8466 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8467 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8468 { }
8469 },
8470 .chained = true,
c84bfedc 8471 .chain_id = ALC289_FIXUP_ASUS_GA502
fc19d559 8472 },
13468bfa
HW
8473 [ALC274_FIXUP_HP_MIC] = {
8474 .type = HDA_FIXUP_VERBS,
8475 .v.verbs = (const struct hda_verb[]) {
8476 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
8477 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
8478 { }
8479 },
8480 },
8a8de09c
KY
8481 [ALC274_FIXUP_HP_HEADSET_MIC] = {
8482 .type = HDA_FIXUP_FUNC,
8483 .v.func = alc274_fixup_hp_headset_mic,
8484 .chained = true,
8485 .chain_id = ALC274_FIXUP_HP_MIC
8486 },
622464c8
TI
8487 [ALC274_FIXUP_HP_ENVY_GPIO] = {
8488 .type = HDA_FIXUP_FUNC,
8489 .v.func = alc274_fixup_hp_envy_gpio,
8490 },
ef9ce66f
KY
8491 [ALC256_FIXUP_ASUS_HPE] = {
8492 .type = HDA_FIXUP_VERBS,
8493 .v.verbs = (const struct hda_verb[]) {
8494 /* Set EAPD high */
8495 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0f },
8496 { 0x20, AC_VERB_SET_PROC_COEF, 0x7778 },
8497 { }
8498 },
8499 .chained = true,
8500 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
8501 },
446b8185
KY
8502 [ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK] = {
8503 .type = HDA_FIXUP_FUNC,
8504 .v.func = alc_fixup_headset_jack,
8505 .chained = true,
8506 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
8507 },
a0ccbc53
KY
8508 [ALC287_FIXUP_HP_GPIO_LED] = {
8509 .type = HDA_FIXUP_FUNC,
8510 .v.func = alc287_fixup_hp_gpio_led,
8511 },
9e885770
KY
8512 [ALC256_FIXUP_HP_HEADSET_MIC] = {
8513 .type = HDA_FIXUP_FUNC,
8514 .v.func = alc274_fixup_hp_headset_mic,
8515 },
92666d45
KY
8516 [ALC236_FIXUP_DELL_AIO_HEADSET_MIC] = {
8517 .type = HDA_FIXUP_FUNC,
8518 .v.func = alc_fixup_no_int_mic,
8519 .chained = true,
8520 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
8521 },
34cdf405
CC
8522 [ALC282_FIXUP_ACER_DISABLE_LINEOUT] = {
8523 .type = HDA_FIXUP_PINS,
8524 .v.pins = (const struct hda_pintbl[]) {
8525 { 0x1b, 0x411111f0 },
8526 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
8527 { },
8528 },
8529 .chained = true,
8530 .chain_id = ALC269_FIXUP_HEADSET_MODE
8531 },
495dc763
CC
8532 [ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST] = {
8533 .type = HDA_FIXUP_FUNC,
8534 .v.func = alc269_fixup_limit_int_mic_boost,
8535 .chained = true,
8536 .chain_id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
8537 },
d0e18561
CC
8538 [ALC256_FIXUP_ACER_HEADSET_MIC] = {
8539 .type = HDA_FIXUP_PINS,
8540 .v.pins = (const struct hda_pintbl[]) {
8541 { 0x19, 0x02a1113c }, /* use as headset mic, without its own jack detect */
8542 { 0x1a, 0x90a1092f }, /* use as internal mic */
8543 { }
8544 },
8545 .chained = true,
8546 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8547 },
26928ca1
TI
8548 [ALC285_FIXUP_IDEAPAD_S740_COEF] = {
8549 .type = HDA_FIXUP_FUNC,
8550 .v.func = alc285_fixup_ideapad_s740_coef,
8551 .chained = true,
8552 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8553 },
bd15b155
KHF
8554 [ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
8555 .type = HDA_FIXUP_FUNC,
8556 .v.func = alc269_fixup_limit_int_mic_boost,
8557 .chained = true,
8558 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8559 },
8eedd3a7
TI
8560 [ALC295_FIXUP_ASUS_DACS] = {
8561 .type = HDA_FIXUP_FUNC,
8562 .v.func = alc295_fixup_asus_dacs,
8563 },
5d84b531
TI
8564 [ALC295_FIXUP_HP_OMEN] = {
8565 .type = HDA_FIXUP_PINS,
8566 .v.pins = (const struct hda_pintbl[]) {
8567 { 0x12, 0xb7a60130 },
8568 { 0x13, 0x40000000 },
8569 { 0x14, 0x411111f0 },
8570 { 0x16, 0x411111f0 },
8571 { 0x17, 0x90170110 },
8572 { 0x18, 0x411111f0 },
8573 { 0x19, 0x02a11030 },
8574 { 0x1a, 0x411111f0 },
8575 { 0x1b, 0x04a19030 },
8576 { 0x1d, 0x40600001 },
8577 { 0x1e, 0x411111f0 },
8578 { 0x21, 0x03211020 },
8579 {}
8580 },
8581 .chained = true,
8582 .chain_id = ALC269_FIXUP_HP_LINE1_MIC1_LED,
8583 },
f2be77fe 8584 [ALC285_FIXUP_HP_SPECTRE_X360] = {
434591b2
ED
8585 .type = HDA_FIXUP_FUNC,
8586 .v.func = alc285_fixup_hp_spectre_x360,
f2be77fe 8587 },
d94befbb
DB
8588 [ALC285_FIXUP_HP_SPECTRE_X360_EB1] = {
8589 .type = HDA_FIXUP_FUNC,
8590 .v.func = alc285_fixup_hp_spectre_x360_eb1
8591 },
9ebaef05
HW
8592 [ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP] = {
8593 .type = HDA_FIXUP_FUNC,
8594 .v.func = alc285_fixup_ideapad_s740_coef,
8595 .chained = true,
8596 .chain_id = ALC285_FIXUP_THINKPAD_HEADSET_JACK,
8597 },
29c8f40b
PU
8598 [ALC623_FIXUP_LENOVO_THINKSTATION_P340] = {
8599 .type = HDA_FIXUP_FUNC,
8600 .v.func = alc_fixup_no_shutup,
8601 .chained = true,
8602 .chain_id = ALC283_FIXUP_HEADSET_MIC,
8603 },
57c9e21a
HW
8604 [ALC255_FIXUP_ACER_HEADPHONE_AND_MIC] = {
8605 .type = HDA_FIXUP_PINS,
8606 .v.pins = (const struct hda_pintbl[]) {
8607 { 0x21, 0x03211030 }, /* Change the Headphone location to Left */
8608 { }
8609 },
8610 .chained = true,
8611 .chain_id = ALC255_FIXUP_XIAOMI_HEADSET_MIC
8612 },
8903376d
KHF
8613 [ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST] = {
8614 .type = HDA_FIXUP_FUNC,
8615 .v.func = alc269_fixup_limit_int_mic_boost,
8616 .chained = true,
8617 .chain_id = ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF,
8618 },
8f4c9042
BF
8619 [ALC285_FIXUP_LEGION_Y9000X_SPEAKERS] = {
8620 .type = HDA_FIXUP_FUNC,
8621 .v.func = alc285_fixup_ideapad_s740_coef,
8622 .chained = true,
8623 .chain_id = ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE,
8624 },
8625 [ALC285_FIXUP_LEGION_Y9000X_AUTOMUTE] = {
8626 .type = HDA_FIXUP_FUNC,
8627 .v.func = alc287_fixup_legion_15imhg05_speakers,
8628 .chained = true,
8629 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
8630 },
ad7cc2d4
CB
8631 [ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS] = {
8632 .type = HDA_FIXUP_VERBS,
8633 //.v.verbs = legion_15imhg05_coefs,
8634 .v.verbs = (const struct hda_verb[]) {
8635 // set left speaker Legion 7i.
8636 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8637 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
8638
8639 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8640 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8641 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8642 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
8643 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8644
8645 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8646 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8647 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8648 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8649 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8650
8651 // set right speaker Legion 7i.
8652 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8653 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
8654
8655 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8656 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8657 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8658 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
8659 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8660
8661 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8662 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8663 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8664 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8665 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8666 {}
8667 },
8668 .chained = true,
8669 .chain_id = ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE,
8670 },
8671 [ALC287_FIXUP_LEGION_15IMHG05_AUTOMUTE] = {
8672 .type = HDA_FIXUP_FUNC,
8673 .v.func = alc287_fixup_legion_15imhg05_speakers,
8674 .chained = true,
8675 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8676 },
8677 [ALC287_FIXUP_YOGA7_14ITL_SPEAKERS] = {
8678 .type = HDA_FIXUP_VERBS,
8679 .v.verbs = (const struct hda_verb[]) {
8680 // set left speaker Yoga 7i.
8681 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8682 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
8683
8684 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8685 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8686 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8687 { 0x20, AC_VERB_SET_PROC_COEF, 0x1a },
8688 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8689
8690 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8691 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8692 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8693 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8694 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8695
8696 // set right speaker Yoga 7i.
8697 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8698 { 0x20, AC_VERB_SET_PROC_COEF, 0x46 },
8699
8700 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8701 { 0x20, AC_VERB_SET_PROC_COEF, 0xc },
8702 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8703 { 0x20, AC_VERB_SET_PROC_COEF, 0x2a },
8704 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8705
8706 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8707 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8708 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8709 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8710 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8711 {}
8712 },
8713 .chained = true,
8714 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8715 },
8716 [ALC287_FIXUP_13S_GEN2_SPEAKERS] = {
8717 .type = HDA_FIXUP_VERBS,
8718 .v.verbs = (const struct hda_verb[]) {
8719 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8720 { 0x20, AC_VERB_SET_PROC_COEF, 0x41 },
023a062f 8721 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
ad7cc2d4
CB
8722 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8723 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8724 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8725 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8726 { 0x20, AC_VERB_SET_COEF_INDEX, 0x24 },
8727 { 0x20, AC_VERB_SET_PROC_COEF, 0x42 },
8728 { 0x20, AC_VERB_SET_COEF_INDEX, 0x26 },
8729 { 0x20, AC_VERB_SET_PROC_COEF, 0x2 },
8730 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8731 { 0x20, AC_VERB_SET_PROC_COEF, 0x0 },
8732 { 0x20, AC_VERB_SET_PROC_COEF, 0xb020 },
8733 {}
8734 },
8735 .chained = true,
8736 .chain_id = ALC269_FIXUP_HEADSET_MODE,
8737 },
619764cc 8738 [ALC256_FIXUP_SET_COEF_DEFAULTS] = {
dd6dd6e3 8739 .type = HDA_FIXUP_FUNC,
619764cc 8740 .v.func = alc256_fixup_set_coef_defaults,
dd6dd6e3 8741 },
5fc462c3
JC
8742 [ALC245_FIXUP_HP_GPIO_LED] = {
8743 .type = HDA_FIXUP_FUNC,
8744 .v.func = alc245_fixup_hp_gpio_led,
8745 },
1278cc5a
JS
8746 [ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
8747 .type = HDA_FIXUP_PINS,
8748 .v.pins = (const struct hda_pintbl[]) {
8749 { 0x19, 0x03a11120 }, /* use as headset mic, without its own jack detect */
8750 { }
8751 },
8752 .chained = true,
8753 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
8754 },
174a7fb3
WS
8755 [ALC233_FIXUP_NO_AUDIO_JACK] = {
8756 .type = HDA_FIXUP_FUNC,
8757 .v.func = alc233_fixup_no_audio_jack,
8758 },
edca7cc4
WS
8759 [ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME] = {
8760 .type = HDA_FIXUP_FUNC,
8761 .v.func = alc256_fixup_mic_no_presence_and_resume,
8762 .chained = true,
8763 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
8764 },
d3dca026
LT
8765 [ALC287_FIXUP_LEGION_16ACHG6] = {
8766 .type = HDA_FIXUP_FUNC,
8767 .v.func = alc287_fixup_legion_16achg6_speakers,
8768 },
ae7abe36
SB
8769 [ALC287_FIXUP_CS35L41_I2C_2] = {
8770 .type = HDA_FIXUP_FUNC,
8771 .v.func = cs35l41_fixup_i2c_two,
a6ac60b3
HW
8772 .chained = true,
8773 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
ae7abe36 8774 },
b3fbe536
AC
8775 [ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED] = {
8776 .type = HDA_FIXUP_FUNC,
8777 .v.func = cs35l41_fixup_i2c_two,
8778 .chained = true,
8779 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8780 },
07bcab93
LT
8781 [ALC245_FIXUP_CS35L41_SPI_2] = {
8782 .type = HDA_FIXUP_FUNC,
8783 .v.func = cs35l41_fixup_spi_two,
8784 },
ce18f905
KHF
8785 [ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED] = {
8786 .type = HDA_FIXUP_FUNC,
8787 .v.func = cs35l41_fixup_spi_two,
8788 .chained = true,
8789 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
8790 },
07bcab93
LT
8791 [ALC245_FIXUP_CS35L41_SPI_4] = {
8792 .type = HDA_FIXUP_FUNC,
8793 .v.func = cs35l41_fixup_spi_four,
8794 },
8795 [ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED] = {
8796 .type = HDA_FIXUP_FUNC,
864cb14c 8797 .v.func = cs35l41_fixup_spi_four,
07bcab93 8798 .chained = true,
864cb14c 8799 .chain_id = ALC285_FIXUP_HP_GPIO_LED,
07bcab93 8800 },
91502a9a
AS
8801 [ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED] = {
8802 .type = HDA_FIXUP_VERBS,
8803 .v.verbs = (const struct hda_verb[]) {
8804 { 0x20, AC_VERB_SET_COEF_INDEX, 0x19 },
8805 { 0x20, AC_VERB_SET_PROC_COEF, 0x8e11 },
8806 { }
8807 },
8808 .chained = true,
8809 .chain_id = ALC285_FIXUP_HP_MUTE_LED,
8810 },
f1d4e28b
KY
8811};
8812
1d045db9 8813static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 8814 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
8815 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
8816 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 8817 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b 8818 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
8819 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
8820 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 8821 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 8822 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 8823 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
433f894e 8824 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
c8426b27 8825 SND_PCI_QUIRK(0x1025, 0x0840, "Acer Aspire E1", ALC269VB_FIXUP_ASPIRE_E1_COEF),
13be30f1 8826 SND_PCI_QUIRK(0x1025, 0x101c, "Acer Veriton N2510G", ALC269_FIXUP_LIFEBOOK),
705b65f1 8827 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
6e15d126 8828 SND_PCI_QUIRK(0x1025, 0x1065, "Acer Aspire C20-820", ALC269VC_FIXUP_ACER_HEADSET_MIC),
b9c2fa52 8829 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
495dc763 8830 SND_PCI_QUIRK(0x1025, 0x1094, "Acer Aspire E5-575T", ALC255_FIXUP_ACER_LIMIT_INT_MIC_BOOST),
c7531e31
CC
8831 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
8832 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
13be30f1
CC
8833 SND_PCI_QUIRK(0x1025, 0x1166, "Acer Veriton N4640G", ALC269_FIXUP_LIFEBOOK),
8834 SND_PCI_QUIRK(0x1025, 0x1167, "Acer Veriton N6640G", ALC269_FIXUP_LIFEBOOK),
e2a829b3 8835 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
8eae7e9b 8836 SND_PCI_QUIRK(0x1025, 0x1247, "Acer vCopperbox", ALC269VC_FIXUP_ACER_VCOPPERBOX_PINS),
781c90c0 8837 SND_PCI_QUIRK(0x1025, 0x1248, "Acer Veriton N4660G", ALC269VC_FIXUP_ACER_MIC_NO_PRESENCE),
d0e18561 8838 SND_PCI_QUIRK(0x1025, 0x1269, "Acer SWIFT SF314-54", ALC256_FIXUP_ACER_HEADSET_MIC),
667a8f73
JHP
8839 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8840 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
8841 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
d0e18561 8842 SND_PCI_QUIRK(0x1025, 0x129c, "Acer SWIFT SF314-55", ALC256_FIXUP_ACER_HEADSET_MIC),
35171fbf 8843 SND_PCI_QUIRK(0x1025, 0x1300, "Acer SWIFT SF314-56", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
2733cceb 8844 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
ea5c7eba 8845 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
cbc05fd6 8846 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
2a5bb694 8847 SND_PCI_QUIRK(0x1025, 0x141f, "Acer Spin SP513-54N", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
0d4867a1 8848 SND_PCI_QUIRK(0x1025, 0x142b, "Acer Swift SF314-42", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
f50a121d 8849 SND_PCI_QUIRK(0x1025, 0x1430, "Acer TravelMate B311R-31", ALC256_FIXUP_ACER_MIC_NO_PRESENCE),
57c9e21a 8850 SND_PCI_QUIRK(0x1025, 0x1466, "Acer Aspire A515-56", ALC255_FIXUP_ACER_HEADPHONE_AND_MIC),
aaedfb47 8851 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6ed1131f 8852 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 8853 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 8854 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
8855 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
8856 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 8857 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
8858 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
8859 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
8860 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
8861 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
8862 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 8863 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 8864 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 8865 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
8866 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8867 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 8868 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 8869 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 8870 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 8871 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
8872 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8873 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
8874 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8875 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8876 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8877 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
8878 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
fd06c77e 8879 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 8880 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
c0ca5ece 8881 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
709ae62e 8882 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 8883 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
493de342 8884 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
aa143ad3 8885 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
5f364135 8886 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
40e2c4e5
KY
8887 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
8888 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
8889 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
8890 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 8891 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
136824ef 8892 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
da484d00 8893 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
c2a7c55a 8894 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
e79c2269 8895 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
aa143ad3 8896 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
78def224
KY
8897 SND_PCI_QUIRK(0x1028, 0x098d, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
8898 SND_PCI_QUIRK(0x1028, 0x09bf, "Dell Precision", ALC233_FIXUP_ASUS_MIC_NO_PRESENCE),
92666d45
KY
8899 SND_PCI_QUIRK(0x1028, 0x0a2e, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
8900 SND_PCI_QUIRK(0x1028, 0x0a30, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC),
c1e89523 8901 SND_PCI_QUIRK(0x1028, 0x0a58, "Dell", ALC255_FIXUP_DELL_HEADSET_MIC),
da946920 8902 SND_PCI_QUIRK(0x1028, 0x0a61, "Dell XPS 15 9510", ALC289_FIXUP_DUAL_SPK),
eb676622 8903 SND_PCI_QUIRK(0x1028, 0x0a62, "Dell Precision 5560", ALC289_FIXUP_DUAL_SPK),
2b987fe8
CC
8904 SND_PCI_QUIRK(0x1028, 0x0a9d, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
8905 SND_PCI_QUIRK(0x1028, 0x0a9e, "Dell Latitude 5430", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE),
a22aa26f
KY
8906 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
8907 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 8908 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 8909 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 8910 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
7976eb49 8911 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 8912 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 8913 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
8914 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8915 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
8916 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8917 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
8918 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
8919 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
8920 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
8921 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 8922 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf
KY
8923 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8924 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8925 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8926 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8927 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 8928 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 8929 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
45461e3b 8930 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 8931 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
8932 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8933 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8934 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
8935 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8936 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8937 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8938 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8939 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
9c5dc3bf 8940 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 8941 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 8942 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
45461e3b 8943 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
9c5dc3bf 8944 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 8945 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 8946 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 8947 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 8948 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
8949 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8950 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8951 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8952 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8953 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 8954 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
8955 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8956 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
45461e3b
TI
8957 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8958 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
8959 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8960 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
8a02b164
KY
8961 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8962 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8963 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8964 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
167897f4
JK
8965 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
8966 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
1c9d9dfd
KY
8967 SND_PCI_QUIRK(0x103c, 0x8077, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
8968 SND_PCI_QUIRK(0x103c, 0x8158, "HP", ALC256_FIXUP_HP_HEADSET_MIC),
563785ed 8969 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
e549d190 8970 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 8971 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
aeedad25 8972 SND_PCI_QUIRK(0x103c, 0x827f, "HP x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
167897f4
JK
8973 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
8974 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 8975 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
901be145 8976 SND_PCI_QUIRK(0x103c, 0x841c, "HP Pavilion 15-CK0xx", ALC269_FIXUP_HP_MUTE_LED_MIC3),
190d0381 8977 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
5d84b531 8978 SND_PCI_QUIRK(0x103c, 0x84da, "HP OMEN dc0019-ur", ALC295_FIXUP_HP_OMEN),
d33cd42d 8979 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
f2be77fe 8980 SND_PCI_QUIRK(0x103c, 0x8519, "HP Spectre x360 15-df0xxx", ALC285_FIXUP_HP_SPECTRE_X360),
d296a74b 8981 SND_PCI_QUIRK(0x103c, 0x860f, "HP ZBook 15 G6", ALC285_FIXUP_HP_GPIO_AMP_INIT),
0ac05b25 8982 SND_PCI_QUIRK(0x103c, 0x861f, "HP Elite Dragonfly G1", ALC285_FIXUP_HP_GPIO_AMP_INIT),
b2c22910 8983 SND_PCI_QUIRK(0x103c, 0x869d, "HP", ALC236_FIXUP_HP_MUTE_LED),
622464c8 8984 SND_PCI_QUIRK(0x103c, 0x86c7, "HP Envy AiO 32", ALC274_FIXUP_HP_ENVY_GPIO),
15d295b5 8985 SND_PCI_QUIRK(0x103c, 0x8716, "HP Elite Dragonfly G2 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
61d3e874 8986 SND_PCI_QUIRK(0x103c, 0x8720, "HP EliteBook x360 1040 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
a598098c 8987 SND_PCI_QUIRK(0x103c, 0x8724, "HP EliteBook 850 G7", ALC285_FIXUP_HP_GPIO_LED),
c058493d 8988 SND_PCI_QUIRK(0x103c, 0x8728, "HP EliteBook 840 G7", ALC285_FIXUP_HP_GPIO_LED),
b2c22910 8989 SND_PCI_QUIRK(0x103c, 0x8729, "HP", ALC285_FIXUP_HP_GPIO_LED),
75b62ab6 8990 SND_PCI_QUIRK(0x103c, 0x8730, "HP ProBook 445 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
05ec7161 8991 SND_PCI_QUIRK(0x103c, 0x8735, "HP ProBook 435 G7", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
56496253 8992 SND_PCI_QUIRK(0x103c, 0x8736, "HP", ALC285_FIXUP_HP_GPIO_AMP_INIT),
08befca4 8993 SND_PCI_QUIRK(0x103c, 0x8760, "HP", ALC285_FIXUP_HP_MUTE_LED),
431e76c3 8994 SND_PCI_QUIRK(0x103c, 0x877a, "HP", ALC285_FIXUP_HP_MUTE_LED),
24164f43 8995 SND_PCI_QUIRK(0x103c, 0x877d, "HP", ALC236_FIXUP_HP_MUTE_LED),
91bc1568
JS
8996 SND_PCI_QUIRK(0x103c, 0x8780, "HP ZBook Fury 17 G7 Mobile Workstation",
8997 ALC285_FIXUP_HP_GPIO_AMP_INIT),
8998 SND_PCI_QUIRK(0x103c, 0x8783, "HP ZBook Fury 15 G7 Mobile Workstation",
8999 ALC285_FIXUP_HP_GPIO_AMP_INIT),
375f8426 9000 SND_PCI_QUIRK(0x103c, 0x8788, "HP OMEN 15", ALC285_FIXUP_HP_MUTE_LED),
48422958 9001 SND_PCI_QUIRK(0x103c, 0x87c8, "HP", ALC287_FIXUP_HP_GPIO_LED),
e7d66cf7 9002 SND_PCI_QUIRK(0x103c, 0x87e5, "HP ProBook 440 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
2b70b264 9003 SND_PCI_QUIRK(0x103c, 0x87e7, "HP ProBook 450 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
fb3acdb2 9004 SND_PCI_QUIRK(0x103c, 0x87f1, "HP ProBook 630 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
417eadfd 9005 SND_PCI_QUIRK(0x103c, 0x87f2, "HP ProBook 640 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
a0ccbc53
KY
9006 SND_PCI_QUIRK(0x103c, 0x87f4, "HP", ALC287_FIXUP_HP_GPIO_LED),
9007 SND_PCI_QUIRK(0x103c, 0x87f5, "HP", ALC287_FIXUP_HP_GPIO_LED),
93ab3eaf 9008 SND_PCI_QUIRK(0x103c, 0x87f6, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
c3bb2b52 9009 SND_PCI_QUIRK(0x103c, 0x87f7, "HP Spectre x360 14", ALC245_FIXUP_HP_X360_AMP),
d07149ab 9010 SND_PCI_QUIRK(0x103c, 0x8805, "HP ProBook 650 G8 Notebook PC", ALC236_FIXUP_HP_GPIO_LED),
dfc2e8ae 9011 SND_PCI_QUIRK(0x103c, 0x880d, "HP EliteBook 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
d94befbb
DB
9012 SND_PCI_QUIRK(0x103c, 0x8811, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
9013 SND_PCI_QUIRK(0x103c, 0x8812, "HP Spectre x360 15-eb1xxx", ALC285_FIXUP_HP_SPECTRE_X360_EB1),
53b861be 9014 SND_PCI_QUIRK(0x103c, 0x8846, "HP EliteBook 850 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
c3d2c882 9015 SND_PCI_QUIRK(0x103c, 0x8847, "HP EliteBook x360 830 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
dfb06401 9016 SND_PCI_QUIRK(0x103c, 0x884b, "HP EliteBook 840 Aero G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
ca688339 9017 SND_PCI_QUIRK(0x103c, 0x884c, "HP EliteBook 840 G8 Notebook PC", ALC285_FIXUP_HP_GPIO_LED),
8903376d
KHF
9018 SND_PCI_QUIRK(0x103c, 0x8862, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
9019 SND_PCI_QUIRK(0x103c, 0x8863, "HP ProBook 445 G8 Notebook PC", ALC236_FIXUP_HP_LIMIT_INT_MIC_BOOST),
50dbfae9 9020 SND_PCI_QUIRK(0x103c, 0x886d, "HP ZBook Fury 17.3 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
e650c1a9 9021 SND_PCI_QUIRK(0x103c, 0x8870, "HP ZBook Fury 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
bbe183e0 9022 SND_PCI_QUIRK(0x103c, 0x8873, "HP ZBook Studio 15.6 Inch G8 Mobile Workstation PC", ALC285_FIXUP_HP_GPIO_AMP_INIT),
600dd2a7 9023 SND_PCI_QUIRK(0x103c, 0x888d, "HP ZBook Power 15.6 inch G8 Mobile Workstation PC", ALC236_FIXUP_HP_GPIO_LED),
91502a9a 9024 SND_PCI_QUIRK(0x103c, 0x8895, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_SPEAKERS_MICMUTE_LED),
0e68c4b1 9025 SND_PCI_QUIRK(0x103c, 0x8896, "HP EliteBook 855 G8 Notebook PC", ALC285_FIXUP_HP_MUTE_LED),
bd15b155 9026 SND_PCI_QUIRK(0x103c, 0x8898, "HP EliteBook 845 G8 Notebook PC", ALC285_FIXUP_HP_LIMIT_INT_MIC_BOOST),
42334fbc 9027 SND_PCI_QUIRK(0x103c, 0x88d0, "HP Pavilion 15-eh1xxx (mainboard 88D0)", ALC287_FIXUP_HP_GPIO_LED),
5f5d8890
AC
9028 SND_PCI_QUIRK(0x103c, 0x896e, "HP EliteBook x360 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9029 SND_PCI_QUIRK(0x103c, 0x8971, "HP EliteBook 830 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9030 SND_PCI_QUIRK(0x103c, 0x8972, "HP EliteBook 840 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9031 SND_PCI_QUIRK(0x103c, 0x8973, "HP EliteBook 860 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9032 SND_PCI_QUIRK(0x103c, 0x8974, "HP EliteBook 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
9033 SND_PCI_QUIRK(0x103c, 0x8975, "HP EliteBook x360 840 Aero G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
07bcab93
LT
9034 SND_PCI_QUIRK(0x103c, 0x8981, "HP Elite Dragonfly G3", ALC245_FIXUP_CS35L41_SPI_4),
9035 SND_PCI_QUIRK(0x103c, 0x898e, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
9036 SND_PCI_QUIRK(0x103c, 0x898f, "HP EliteBook 835 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9037 SND_PCI_QUIRK(0x103c, 0x8991, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9038 SND_PCI_QUIRK(0x103c, 0x8992, "HP EliteBook 845 G9", ALC287_FIXUP_CS35L41_I2C_2),
b3fbe536 9039 SND_PCI_QUIRK(0x103c, 0x8994, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2_HP_GPIO_LED),
07bcab93 9040 SND_PCI_QUIRK(0x103c, 0x8995, "HP EliteBook 855 G9", ALC287_FIXUP_CS35L41_I2C_2),
e6194c8d
AC
9041 SND_PCI_QUIRK(0x103c, 0x89a4, "HP ProBook 440 G9", ALC236_FIXUP_HP_GPIO_LED),
9042 SND_PCI_QUIRK(0x103c, 0x89a6, "HP ProBook 450 G9", ALC236_FIXUP_HP_GPIO_LED),
9043 SND_PCI_QUIRK(0x103c, 0x89ac, "HP EliteBook 640 G9", ALC236_FIXUP_HP_GPIO_LED),
9044 SND_PCI_QUIRK(0x103c, 0x89ae, "HP EliteBook 650 G9", ALC236_FIXUP_HP_GPIO_LED),
07bcab93 9045 SND_PCI_QUIRK(0x103c, 0x89c3, "Zbook Studio G9", ALC245_FIXUP_CS35L41_SPI_4_HP_GPIO_LED),
ce18f905 9046 SND_PCI_QUIRK(0x103c, 0x89c6, "Zbook Fury 17 G9", ALC245_FIXUP_CS35L41_SPI_2_HP_GPIO_LED),
f7ac570d 9047 SND_PCI_QUIRK(0x103c, 0x89ca, "HP", ALC236_FIXUP_HP_MUTE_LED_MICMUTE_VREF),
c1732ede 9048 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 9049 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 9050 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9cf6533e 9051 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
c1732ede 9052 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 9053 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3e0d611b 9054 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1 9055 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3cd0ed63 9056 SND_PCI_QUIRK(0x1043, 0x125e, "ASUS Q524UQK", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
5cfca596 9057 SND_PCI_QUIRK(0x1043, 0x1271, "ASUS X430UN", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1
TI
9058 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
9059 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
c1732ede 9060 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
3cd0ed63 9061 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
c1732ede 9062 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 9063 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
23870831 9064 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
3e0d611b 9065 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
8eedd3a7 9066 SND_PCI_QUIRK(0x1043, 0x1740, "ASUS UX430UA", ALC295_FIXUP_ASUS_DACS),
48e01504 9067 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
739d0959 9068 SND_PCI_QUIRK(0x1043, 0x1662, "ASUS GV301QH", ALC294_FIXUP_ASUS_DUAL_SPK),
3cd0ed63 9069 SND_PCI_QUIRK(0x1043, 0x1881, "ASUS Zephyrus S/M", ALC294_FIXUP_ASUS_GX502_PINS),
8c8967a7 9070 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
4963d66b 9071 SND_PCI_QUIRK(0x1043, 0x18f1, "Asus FX505DT", ALC256_FIXUP_ASUS_HEADSET_MIC),
158ae2f5 9072 SND_PCI_QUIRK(0x1043, 0x194e, "ASUS UX563FD", ALC294_FIXUP_ASUS_HPE),
4fad4fb9 9073 SND_PCI_QUIRK(0x1043, 0x1970, "ASUS UX550VE", ALC289_FIXUP_ASUS_GA401),
5de3b943 9074 SND_PCI_QUIRK(0x1043, 0x1982, "ASUS B1400CEPE", ALC256_FIXUP_ASUS_HPE),
8b33a134 9075 SND_PCI_QUIRK(0x1043, 0x19ce, "ASUS B9450FA", ALC294_FIXUP_ASUS_HPE),
7900e817 9076 SND_PCI_QUIRK(0x1043, 0x19e1, "ASUS UX581LV", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE),
017f2a10 9077 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 9078 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
1b94e59d 9079 SND_PCI_QUIRK(0x1043, 0x1b11, "ASUS UX431DA", ALC294_FIXUP_ASUS_COEF_1B),
693b613d 9080 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
615966ad 9081 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1 9082 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
c1732ede 9083 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
ef9ce66f 9084 SND_PCI_QUIRK(0x1043, 0x1d4e, "ASUS TM420", ALC256_FIXUP_ASUS_HPE),
4b43d05a 9085 SND_PCI_QUIRK(0x1043, 0x1e11, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA502),
c1b55029 9086 SND_PCI_QUIRK(0x1043, 0x1e51, "ASUS Zephyrus M15", ALC294_FIXUP_ASUS_GU502_PINS),
76fae618 9087 SND_PCI_QUIRK(0x1043, 0x1e8e, "ASUS Zephyrus G15", ALC289_FIXUP_ASUS_GA401),
293a92c1 9088 SND_PCI_QUIRK(0x1043, 0x1f11, "ASUS Zephyrus G14", ALC289_FIXUP_ASUS_GA401),
b7557267 9089 SND_PCI_QUIRK(0x1043, 0x1d42, "ASUS Zephyrus G14 2022", ALC289_FIXUP_ASUS_GA401),
94db9cc8 9090 SND_PCI_QUIRK(0x1043, 0x16b2, "ASUS GU603", ALC289_FIXUP_ASUS_GA401),
eeed4cd1 9091 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
adabb3ec
TI
9092 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
9093 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
9094 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
9095 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 9096 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
1d045db9
TI
9097 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
9098 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
9099 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 9100 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
cab561f8
TI
9101 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
9102 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
24519911 9103 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 9104 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 9105 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 9106 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
c656f747 9107 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
2041d564 9108 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 9109 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
c656f747 9110 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
6fa38ef1 9111 SND_PCI_QUIRK(0x10ec, 0x1230, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
ce2e79b2
PH
9112 SND_PCI_QUIRK(0x10ec, 0x1252, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
9113 SND_PCI_QUIRK(0x10ec, 0x1254, "Intel Reference board", ALC295_FIXUP_CHROME_BOOK),
0fca97a2 9114 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 9115 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
14425f1f
MP
9116 SND_PCI_QUIRK(0x144d, 0xc169, "Samsung Notebook 9 Pen (NP930SBE-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
9117 SND_PCI_QUIRK(0x144d, 0xc176, "Samsung Notebook 9 Pro (NP930MBE-K04US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
f70fff83 9118 SND_PCI_QUIRK(0x144d, 0xc189, "Samsung Galaxy Flex Book (NT950QCG-X716)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
8bcea6cb 9119 SND_PCI_QUIRK(0x144d, 0xc18a, "Samsung Galaxy Book Ion (NP930XCJ-K01US)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
823ff161 9120 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
568e4e82 9121 SND_PCI_QUIRK(0x144d, 0xc812, "Samsung Notebook Pen S (NT950SBE-X58)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
c656f747 9122 SND_PCI_QUIRK(0x144d, 0xc830, "Samsung Galaxy Book Ion (NT950XCJ-X716A)", ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
ef248d9b 9123 SND_PCI_QUIRK(0x144d, 0xc832, "Samsung Galaxy Book Flex Alpha (NP730QCJ)", ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET),
abaa2274
AA
9124 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
9125 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 9126 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
6ca653e3 9127 SND_PCI_QUIRK(0x152d, 0x1082, "Quanta NL3", ALC269_FIXUP_LIFEBOOK),
b5acfe15 9128 SND_PCI_QUIRK(0x1558, 0x1323, "Clevo N130ZU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b 9129 SND_PCI_QUIRK(0x1558, 0x1325, "Clevo N15[01][CW]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9130 SND_PCI_QUIRK(0x1558, 0x1401, "Clevo L140[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9131 SND_PCI_QUIRK(0x1558, 0x1403, "Clevo N140CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9132 SND_PCI_QUIRK(0x1558, 0x1404, "Clevo N150CU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9133 SND_PCI_QUIRK(0x1558, 0x14a1, "Clevo L141MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9134 SND_PCI_QUIRK(0x1558, 0x4018, "Clevo NV40M[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9135 SND_PCI_QUIRK(0x1558, 0x4019, "Clevo NV40MZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9136 SND_PCI_QUIRK(0x1558, 0x4020, "Clevo NV40MB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9137 SND_PCI_QUIRK(0x1558, 0x40a1, "Clevo NL40GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9138 SND_PCI_QUIRK(0x1558, 0x40c1, "Clevo NL40[CZ]U", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9139 SND_PCI_QUIRK(0x1558, 0x40d1, "Clevo NL41DU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
9140 SND_PCI_QUIRK(0x1558, 0x5015, "Clevo NH5[58]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9141 SND_PCI_QUIRK(0x1558, 0x5017, "Clevo NH7[79]H[HJK]Q", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9142 SND_PCI_QUIRK(0x1558, 0x50a3, "Clevo NJ51GU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9143 SND_PCI_QUIRK(0x1558, 0x50b3, "Clevo NK50S[BEZ]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9144 SND_PCI_QUIRK(0x1558, 0x50b6, "Clevo NK50S5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9145 SND_PCI_QUIRK(0x1558, 0x50b8, "Clevo NK50SZ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9146 SND_PCI_QUIRK(0x1558, 0x50d5, "Clevo NP50D5", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1278cc5a
JS
9147 SND_PCI_QUIRK(0x1558, 0x50e1, "Clevo NH5[58]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9148 SND_PCI_QUIRK(0x1558, 0x50e2, "Clevo NH7[79]HPQ", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 9149 SND_PCI_QUIRK(0x1558, 0x50f0, "Clevo NH50A[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 9150 SND_PCI_QUIRK(0x1558, 0x50f2, "Clevo NH50E[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 9151 SND_PCI_QUIRK(0x1558, 0x50f3, "Clevo NH58DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
9152 SND_PCI_QUIRK(0x1558, 0x50f5, "Clevo NH55EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9153 SND_PCI_QUIRK(0x1558, 0x50f6, "Clevo NH55DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9154 SND_PCI_QUIRK(0x1558, 0x5101, "Clevo S510WU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9155 SND_PCI_QUIRK(0x1558, 0x5157, "Clevo W517GU1", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9156 SND_PCI_QUIRK(0x1558, 0x51a1, "Clevo NS50MU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9157 SND_PCI_QUIRK(0x1558, 0x70a1, "Clevo NB70T[HJK]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9158 SND_PCI_QUIRK(0x1558, 0x70b3, "Clevo NK70SB", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
9159 SND_PCI_QUIRK(0x1558, 0x70f2, "Clevo NH79EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9160 SND_PCI_QUIRK(0x1558, 0x70f3, "Clevo NH77DPQ", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9161 SND_PCI_QUIRK(0x1558, 0x70f4, "Clevo NH77EPY", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9162 SND_PCI_QUIRK(0x1558, 0x70f6, "Clevo NH77DPQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9163 SND_PCI_QUIRK(0x1558, 0x8228, "Clevo NR40BU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9164 SND_PCI_QUIRK(0x1558, 0x8520, "Clevo NH50D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9165 SND_PCI_QUIRK(0x1558, 0x8521, "Clevo NH77D[CD]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9166 SND_PCI_QUIRK(0x1558, 0x8535, "Clevo NH50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9167 SND_PCI_QUIRK(0x1558, 0x8536, "Clevo NH79D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
9168 SND_PCI_QUIRK(0x1558, 0x8550, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9169 SND_PCI_QUIRK(0x1558, 0x8551, "Clevo NH[57][0-9][ER][ACDH]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9170 SND_PCI_QUIRK(0x1558, 0x8560, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9171 SND_PCI_QUIRK(0x1558, 0x8561, "Clevo NH[57][0-9][ER][ACDH]Q", ALC269_FIXUP_HEADSET_MIC),
9172 SND_PCI_QUIRK(0x1558, 0x8562, "Clevo NH[57][0-9]RZ[Q]", ALC269_FIXUP_DMIC),
b5acfe15 9173 SND_PCI_QUIRK(0x1558, 0x8668, "Clevo NP50B[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9cb72750 9174 SND_PCI_QUIRK(0x1558, 0x866d, "Clevo NP5[05]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
86222af0 9175 SND_PCI_QUIRK(0x1558, 0x867c, "Clevo NP7[01]PNP", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
0c20fce1 9176 SND_PCI_QUIRK(0x1558, 0x867d, "Clevo NP7[01]PN[HJK]", ALC256_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15 9177 SND_PCI_QUIRK(0x1558, 0x8680, "Clevo NJ50LU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
edca7cc4 9178 SND_PCI_QUIRK(0x1558, 0x8686, "Clevo NH50[CZ]U", ALC256_FIXUP_MIC_NO_PRESENCE_AND_RESUME),
b5acfe15
PH
9179 SND_PCI_QUIRK(0x1558, 0x8a20, "Clevo NH55DCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9180 SND_PCI_QUIRK(0x1558, 0x8a51, "Clevo NH70RCQ-Y", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9181 SND_PCI_QUIRK(0x1558, 0x8d50, "Clevo NH55RCQ-M", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9182 SND_PCI_QUIRK(0x1558, 0x951d, "Clevo N950T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2 9183 SND_PCI_QUIRK(0x1558, 0x9600, "Clevo N960K[PR]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
b5acfe15
PH
9184 SND_PCI_QUIRK(0x1558, 0x961d, "Clevo N960S[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9185 SND_PCI_QUIRK(0x1558, 0x971d, "Clevo N970T[CDF]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
745f260b
WS
9186 SND_PCI_QUIRK(0x1558, 0xa500, "Clevo NL5[03]RU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9187 SND_PCI_QUIRK(0x1558, 0xa600, "Clevo NL50NU", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
1d5cfca2
PH
9188 SND_PCI_QUIRK(0x1558, 0xb018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9189 SND_PCI_QUIRK(0x1558, 0xb019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9190 SND_PCI_QUIRK(0x1558, 0xb022, "Clevo NH77D[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9191 SND_PCI_QUIRK(0x1558, 0xc018, "Clevo NP50D[BE]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9192 SND_PCI_QUIRK(0x1558, 0xc019, "Clevo NH77D[BE]Q", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
9193 SND_PCI_QUIRK(0x1558, 0xc022, "Clevo NH77[DC][QW]", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
ca169cc2 9194 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
29c8f40b 9195 SND_PCI_QUIRK(0x17aa, 0x1048, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
1d045db9
TI
9196 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
9197 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
9198 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
9199 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
9200 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
f552ff54 9201 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
b590b38c 9202 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST),
c8415a48 9203 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 9204 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 9205 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 9206 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 9207 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 9208 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 9209 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 9210 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 9211 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 9212 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 9213 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 9214 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 9215 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 9216 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
9217 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9218 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 9219 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 9220 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
9221 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
9222 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9223 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 9224 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
9225 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9226 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9227 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 9228 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9774dc21 9229 SND_PCI_QUIRK(0x17aa, 0x2292, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
ca707b3f 9230 SND_PCI_QUIRK(0x17aa, 0x22be, "Thinkpad X1 Carbon 8th", ALC285_FIXUP_THINKPAD_HEADSET_JACK),
446b8185
KY
9231 SND_PCI_QUIRK(0x17aa, 0x22c1, "Thinkpad P1 Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
9232 SND_PCI_QUIRK(0x17aa, 0x22c2, "Thinkpad X1 Extreme Gen 3", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK),
ae7abe36
SB
9233 SND_PCI_QUIRK(0x17aa, 0x22f1, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
9234 SND_PCI_QUIRK(0x17aa, 0x22f2, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
9235 SND_PCI_QUIRK(0x17aa, 0x22f3, "Thinkpad", ALC287_FIXUP_CS35L41_I2C_2),
3694cb29 9236 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 9237 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 9238 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
bef33e19 9239 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 9240 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 9241 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 9242 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
2a36c16e 9243 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
8a6c55d0
AM
9244 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
9245 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
e4efa826 9246 SND_PCI_QUIRK(0x17aa, 0x31af, "ThinkCentre Station", ALC623_FIXUP_LENOVO_THINKSTATION_P340),
2aac550d 9247 SND_PCI_QUIRK(0x17aa, 0x3813, "Legion 7i 15IMHG05", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
f86de9b1 9248 SND_PCI_QUIRK(0x17aa, 0x3818, "Lenovo C940", ALC298_FIXUP_LENOVO_SPK_VOLUME),
2aac550d 9249 SND_PCI_QUIRK(0x17aa, 0x3819, "Lenovo 13s Gen2 ITL", ALC287_FIXUP_13S_GEN2_SPEAKERS),
3b79954f 9250 SND_PCI_QUIRK(0x17aa, 0x3820, "Yoga Duet 7 13ITL6", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
8f4c9042 9251 SND_PCI_QUIRK(0x17aa, 0x3824, "Legion Y9000X 2020", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
2aac550d 9252 SND_PCI_QUIRK(0x17aa, 0x3827, "Ideapad S740", ALC285_FIXUP_IDEAPAD_S740_COEF),
b81e9e5c 9253 SND_PCI_QUIRK(0x17aa, 0x3834, "Lenovo IdeaPad Slim 9i 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
c07f2c7b 9254 SND_PCI_QUIRK(0x17aa, 0x383d, "Legion Y9000X 2019", ALC285_FIXUP_LEGION_Y9000X_SPEAKERS),
9ebaef05 9255 SND_PCI_QUIRK(0x17aa, 0x3843, "Yoga 9i", ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP),
d3dca026 9256 SND_PCI_QUIRK(0x17aa, 0x3847, "Legion 7 16ACHG6", ALC287_FIXUP_LEGION_16ACHG6),
2aac550d 9257 SND_PCI_QUIRK(0x17aa, 0x384a, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
ad7cc2d4
CB
9258 SND_PCI_QUIRK(0x17aa, 0x3852, "Lenovo Yoga 7 14ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
9259 SND_PCI_QUIRK(0x17aa, 0x3853, "Lenovo Yoga 7 15ITL5", ALC287_FIXUP_YOGA7_14ITL_SPEAKERS),
56f27013 9260 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 9261 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
56df90b6 9262 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
f552ff54 9263 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
a4a9e082 9264 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 9265 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 9266 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 9267 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 9268 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 9269 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 9270 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 9271 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 9272 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 9273 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 9274 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 9275 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
9276 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9277 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9278 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
264fb034 9279 SND_PCI_QUIRK(0x17aa, 0x508b, "Thinkpad X12 Gen 1", ALC287_FIXUP_LEGION_15IMHG05_SPEAKERS),
cd5302c0 9280 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
9281 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
9282 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
1d045db9 9283 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
174a7fb3 9284 SND_PCI_QUIRK(0x1849, 0x1233, "ASRock NUC Box 1100", ALC233_FIXUP_NO_AUDIO_JACK),
0fbf21c3 9285 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
f1ec5be1
HC
9286 SND_PCI_QUIRK(0x1b35, 0x1235, "CZC B20", ALC269_FIXUP_CZC_B20),
9287 SND_PCI_QUIRK(0x1b35, 0x1236, "CZC TMI", ALC269_FIXUP_CZC_TMI),
9288 SND_PCI_QUIRK(0x1b35, 0x1237, "CZC L101", ALC269_FIXUP_CZC_L101),
02b504d9 9289 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
c656f747
TI
9290 SND_PCI_QUIRK(0x1c06, 0x2013, "Lemote A1802", ALC269_FIXUP_LEMOTE_A1802),
9291 SND_PCI_QUIRK(0x1c06, 0x2015, "Lemote A190X", ALC269_FIXUP_LEMOTE_A190X),
619764cc 9292 SND_PCI_QUIRK(0x1d05, 0x1132, "TongFang PHxTxX1", ALC256_FIXUP_SET_COEF_DEFAULTS),
fc19d559 9293 SND_PCI_QUIRK(0x1d72, 0x1602, "RedmiBook", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
b95bc12e 9294 SND_PCI_QUIRK(0x1d72, 0x1701, "XiaomiNotebook Pro", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE),
695d1ec3 9295 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
e1c86210 9296 SND_PCI_QUIRK(0x1d72, 0x1947, "RedmiBook Air", ALC255_FIXUP_XIAOMI_HEADSET_MIC),
d1ee66c5 9297 SND_PCI_QUIRK(0x8086, 0x2074, "Intel NUC 8", ALC233_FIXUP_INTEL_NUC8_DMIC),
e2d2fded 9298 SND_PCI_QUIRK(0x8086, 0x2080, "Intel NUC 8 Rugged", ALC256_FIXUP_INTEL_NUC8_RUGGED),
73e7161e 9299 SND_PCI_QUIRK(0x8086, 0x2081, "Intel NUC 10", ALC256_FIXUP_INTEL_NUC10),
a4297b5d 9300
a7f3eedc 9301#if 0
a4297b5d
TI
9302 /* Below is a quirk table taken from the old code.
9303 * Basically the device should work as is without the fixup table.
9304 * If BIOS doesn't give a proper info, enable the corresponding
9305 * fixup entry.
7d7eb9ea 9306 */
a4297b5d
TI
9307 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
9308 ALC269_FIXUP_AMIC),
9309 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
9310 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
9311 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
9312 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
9313 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
9314 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
9315 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
9316 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
9317 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
9318 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
9319 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
9320 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
9321 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
9322 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
9323 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
9324 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
9325 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
9326 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
9327 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
9328 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
9329 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
9330 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
9331 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
9332 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
9333 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
9334 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
9335 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
9336 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
9337 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
9338 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
9339 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
9340 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
9341 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
9342 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
9343 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
9344 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
9345 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
9346 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
9347 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
9348#endif
9349 {}
9350};
9351
214eef76
DH
9352static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
9353 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
9354 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
9355 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
9356 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
0fbf21c3 9357 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
214eef76
DH
9358 {}
9359};
9360
1727a771 9361static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
9362 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
9363 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
9364 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
9365 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
9366 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 9367 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
9368 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
9369 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 9370 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
b590b38c 9371 {.id = ALC269_FIXUP_LENOVO_DOCK_LIMIT_BOOST, .name = "lenovo-dock-limit-boost"},
9f5c6faf 9372 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 9373 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
9374 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
9375 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
9376 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
9377 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 9378 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 9379 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 9380 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 9381 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 9382 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
399c01aa 9383 {.id = ALC298_FIXUP_TPT470_DOCK_FIX, .name = "tpt470-dock-fix"},
a26d96c7 9384 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 9385 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 9386 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
9387 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
9388 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
9389 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
9390 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
9391 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
9392 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
9393 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
9394 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
9395 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
9396 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
9397 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
9398 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
9399 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
9400 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
9401 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
9402 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
9403 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
9404 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
9405 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
9406 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
9407 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
9408 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
9409 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
9410 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
9411 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
9412 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
9413 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
9414 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
9415 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
9416 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
9417 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
9418 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
9419 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
9420 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
9421 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
9422 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
9423 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
9424 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
9425 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
9426 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
b3802783 9427 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
a26d96c7 9428 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
c8426b27 9429 {.id = ALC269VB_FIXUP_ASPIRE_E1_COEF, .name = "aspire-e1-coef"},
a26d96c7
TI
9430 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
9431 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
9432 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
9433 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
9434 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
9435 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
9436 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
9437 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
9438 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
9439 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
9440 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
9441 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
9442 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
9443 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
a26d96c7
TI
9444 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
9445 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
9446 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
82aa0d7e 9447 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
a26d96c7 9448 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
d2cd795c 9449 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
a26d96c7
TI
9450 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
9451 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
9452 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
9453 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
9454 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
9455 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
9456 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
9457 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
9458 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
9459 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
9460 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
9461 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
9462 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
9463 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
9464 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
9465 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
9466 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
8983eb60
KY
9467 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
9468 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
e2a829b3 9469 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
a2ef03fe 9470 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
bd9c10bc 9471 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
23dc9586 9472 {.id = ALC298_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc298-samsung-headphone"},
ef248d9b 9473 {.id = ALC256_FIXUP_SAMSUNG_HEADPHONE_VERY_QUIET, .name = "alc256-samsung-headphone"},
fc19d559 9474 {.id = ALC255_FIXUP_XIAOMI_HEADSET_MIC, .name = "alc255-xiaomi-headset"},
13468bfa 9475 {.id = ALC274_FIXUP_HP_MIC, .name = "alc274-hp-mic-detect"},
c3bb2b52 9476 {.id = ALC245_FIXUP_HP_X360_AMP, .name = "alc245-hp-x360-amp"},
5d84b531 9477 {.id = ALC295_FIXUP_HP_OMEN, .name = "alc295-hp-omen"},
f2be77fe 9478 {.id = ALC285_FIXUP_HP_SPECTRE_X360, .name = "alc285-hp-spectre-x360"},
d94befbb 9479 {.id = ALC285_FIXUP_HP_SPECTRE_X360_EB1, .name = "alc285-hp-spectre-x360-eb1"},
9ebaef05 9480 {.id = ALC287_FIXUP_IDEAPAD_BASS_SPK_AMP, .name = "alc287-ideapad-bass-spk-amp"},
29c8f40b 9481 {.id = ALC623_FIXUP_LENOVO_THINKSTATION_P340, .name = "alc623-lenovo-thinkstation-p340"},
57c9e21a 9482 {.id = ALC255_FIXUP_ACER_HEADPHONE_AND_MIC, .name = "alc255-acer-headphone-and-mic"},
aa723946 9483 {.id = ALC285_FIXUP_HP_GPIO_AMP_INIT, .name = "alc285-hp-amp-init"},
1d045db9 9484 {}
6dda9f4a 9485};
cfc5a845 9486#define ALC225_STANDARD_PINS \
cfc5a845 9487 {0x21, 0x04211020}
6dda9f4a 9488
e8191a8e
HW
9489#define ALC256_STANDARD_PINS \
9490 {0x12, 0x90a60140}, \
9491 {0x14, 0x90170110}, \
e8191a8e
HW
9492 {0x21, 0x02211020}
9493
fea185e2 9494#define ALC282_STANDARD_PINS \
11580297 9495 {0x14, 0x90170110}
e1e62b98 9496
fea185e2 9497#define ALC290_STANDARD_PINS \
11580297 9498 {0x12, 0x99a30130}
fea185e2
DH
9499
9500#define ALC292_STANDARD_PINS \
9501 {0x14, 0x90170110}, \
11580297 9502 {0x15, 0x0221401f}
977e6276 9503
3f640970
HW
9504#define ALC295_STANDARD_PINS \
9505 {0x12, 0xb7a60130}, \
9506 {0x14, 0x90170110}, \
3f640970
HW
9507 {0x21, 0x04211020}
9508
703867e2
WS
9509#define ALC298_STANDARD_PINS \
9510 {0x12, 0x90a60130}, \
9511 {0x21, 0x03211020}
9512
e1918938 9513static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
9514 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
9515 {0x14, 0x01014020},
9516 {0x17, 0x90170110},
9517 {0x18, 0x02a11030},
9518 {0x19, 0x0181303F},
9519 {0x21, 0x0221102f}),
5824ce8d
CC
9520 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
9521 {0x12, 0x90a601c0},
9522 {0x14, 0x90171120},
9523 {0x21, 0x02211030}),
615966ad
CC
9524 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9525 {0x14, 0x90170110},
9526 {0x1b, 0x90a70130},
9527 {0x21, 0x03211020}),
9528 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9529 {0x1a, 0x90a70130},
9530 {0x1b, 0x90170110},
9531 {0x21, 0x03211020}),
2ae95577 9532 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 9533 ALC225_STANDARD_PINS,
8a132099 9534 {0x12, 0xb7a60130},
cfc5a845 9535 {0x14, 0x901701a0}),
2ae95577 9536 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 9537 ALC225_STANDARD_PINS,
8a132099 9538 {0x12, 0xb7a60130},
cfc5a845 9539 {0x14, 0x901701b0}),
8a132099
HW
9540 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9541 ALC225_STANDARD_PINS,
9542 {0x12, 0xb7a60150},
9543 {0x14, 0x901701a0}),
9544 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9545 ALC225_STANDARD_PINS,
9546 {0x12, 0xb7a60150},
9547 {0x14, 0x901701b0}),
9548 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
9549 ALC225_STANDARD_PINS,
9550 {0x12, 0xb7a60130},
9551 {0x1b, 0x90170110}),
0ce48e17
KHF
9552 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9553 {0x1b, 0x01111010},
9554 {0x1e, 0x01451130},
9555 {0x21, 0x02211020}),
986376b6
HW
9556 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
9557 {0x12, 0x90a60140},
9558 {0x14, 0x90170110},
9559 {0x19, 0x02a11030},
9560 {0x21, 0x02211020}),
e41fc8c5
HW
9561 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9562 {0x14, 0x90170110},
9563 {0x19, 0x02a11030},
9564 {0x1a, 0x02a11040},
9565 {0x1b, 0x01014020},
9566 {0x21, 0x0221101f}),
d06fb562
HW
9567 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9568 {0x14, 0x90170110},
9569 {0x19, 0x02a11030},
9570 {0x1a, 0x02a11040},
9571 {0x1b, 0x01011020},
9572 {0x21, 0x0221101f}),
c6b17f10
HW
9573 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
9574 {0x14, 0x90170110},
9575 {0x19, 0x02a11020},
9576 {0x1a, 0x02a11030},
9577 {0x21, 0x0221101f}),
92666d45
KY
9578 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC236_FIXUP_DELL_AIO_HEADSET_MIC,
9579 {0x21, 0x02211010}),
9e885770
KY
9580 SND_HDA_PIN_QUIRK(0x10ec0236, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
9581 {0x14, 0x90170110},
9582 {0x19, 0x02a11020},
9583 {0x21, 0x02211030}),
c77900e6 9584 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 9585 {0x14, 0x90170110},
c77900e6 9586 {0x21, 0x02211020}),
86c72d1c
HW
9587 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9588 {0x14, 0x90170130},
9589 {0x21, 0x02211040}),
76c2132e
DH
9590 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9591 {0x12, 0x90a60140},
9592 {0x14, 0x90170110},
76c2132e
DH
9593 {0x21, 0x02211020}),
9594 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9595 {0x12, 0x90a60160},
9596 {0x14, 0x90170120},
76c2132e 9597 {0x21, 0x02211030}),
392c9da2
HW
9598 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9599 {0x14, 0x90170110},
9600 {0x1b, 0x02011020},
9601 {0x21, 0x0221101f}),
6aecd871
HW
9602 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9603 {0x14, 0x90170110},
9604 {0x1b, 0x01011020},
9605 {0x21, 0x0221101f}),
cba59972 9606 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 9607 {0x14, 0x90170130},
cba59972 9608 {0x1b, 0x01014020},
cba59972 9609 {0x21, 0x0221103f}),
6aecd871
HW
9610 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9611 {0x14, 0x90170130},
9612 {0x1b, 0x01011020},
9613 {0x21, 0x0221103f}),
59ec4b57
HW
9614 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9615 {0x14, 0x90170130},
9616 {0x1b, 0x02011020},
9617 {0x21, 0x0221103f}),
e9c28e16 9618 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 9619 {0x14, 0x90170150},
e9c28e16 9620 {0x1b, 0x02011020},
e9c28e16
WS
9621 {0x21, 0x0221105f}),
9622 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 9623 {0x14, 0x90170110},
e9c28e16 9624 {0x1b, 0x01014020},
e9c28e16 9625 {0x21, 0x0221101f}),
76c2132e
DH
9626 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9627 {0x12, 0x90a60160},
9628 {0x14, 0x90170120},
9629 {0x17, 0x90170140},
76c2132e
DH
9630 {0x21, 0x0321102f}),
9631 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9632 {0x12, 0x90a60160},
9633 {0x14, 0x90170130},
76c2132e
DH
9634 {0x21, 0x02211040}),
9635 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9636 {0x12, 0x90a60160},
9637 {0x14, 0x90170140},
76c2132e
DH
9638 {0x21, 0x02211050}),
9639 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9640 {0x12, 0x90a60170},
9641 {0x14, 0x90170120},
76c2132e
DH
9642 {0x21, 0x02211030}),
9643 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9644 {0x12, 0x90a60170},
9645 {0x14, 0x90170130},
76c2132e 9646 {0x21, 0x02211040}),
0a1f90a9
HW
9647 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9648 {0x12, 0x90a60170},
9649 {0x14, 0x90171130},
9650 {0x21, 0x02211040}),
70658b99 9651 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
9652 {0x12, 0x90a60170},
9653 {0x14, 0x90170140},
70658b99 9654 {0x21, 0x02211050}),
9b5a4e39 9655 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
9656 {0x12, 0x90a60180},
9657 {0x14, 0x90170130},
9b5a4e39 9658 {0x21, 0x02211040}),
f90d83b3
AK
9659 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9660 {0x12, 0x90a60180},
9661 {0x14, 0x90170120},
9662 {0x21, 0x02211030}),
989dbe4a
HW
9663 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9664 {0x1b, 0x01011020},
9665 {0x21, 0x02211010}),
c1732ede
CC
9666 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
9667 {0x14, 0x90170110},
9668 {0x1b, 0x90a70130},
9669 {0x21, 0x04211020}),
9670 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
9671 {0x14, 0x90170110},
9672 {0x1b, 0x90a70130},
9673 {0x21, 0x03211020}),
a806ef1c
CC
9674 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9675 {0x12, 0x90a60130},
9676 {0x14, 0x90170110},
9677 {0x21, 0x03211020}),
6ac371aa
JHP
9678 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9679 {0x12, 0x90a60130},
9680 {0x14, 0x90170110},
9681 {0x21, 0x04211020}),
e1037354
JHP
9682 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
9683 {0x1a, 0x90a70130},
9684 {0x1b, 0x90170110},
9685 {0x21, 0x03211020}),
9e885770
KY
9686 SND_HDA_PIN_QUIRK(0x10ec0256, 0x103c, "HP", ALC256_FIXUP_HP_HEADSET_MIC,
9687 {0x14, 0x90170110},
9688 {0x19, 0x02a11020},
9689 {0x21, 0x0221101f}),
8a8de09c
KY
9690 SND_HDA_PIN_QUIRK(0x10ec0274, 0x103c, "HP", ALC274_FIXUP_HP_HEADSET_MIC,
9691 {0x17, 0x90170110},
9692 {0x19, 0x03a11030},
9693 {0x21, 0x03211020}),
cf51eb9d
DH
9694 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
9695 {0x12, 0x90a60130},
cf51eb9d
DH
9696 {0x14, 0x90170110},
9697 {0x15, 0x0421101f},
11580297 9698 {0x1a, 0x04a11020}),
0279661b
HW
9699 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
9700 {0x12, 0x90a60140},
0279661b
HW
9701 {0x14, 0x90170110},
9702 {0x15, 0x0421101f},
0279661b 9703 {0x18, 0x02811030},
0279661b 9704 {0x1a, 0x04a1103f},
11580297 9705 {0x1b, 0x02011020}),
42304474 9706 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9707 ALC282_STANDARD_PINS,
42304474 9708 {0x12, 0x99a30130},
42304474 9709 {0x19, 0x03a11020},
42304474 9710 {0x21, 0x0321101f}),
2c609999 9711 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9712 ALC282_STANDARD_PINS,
2c609999 9713 {0x12, 0x99a30130},
2c609999 9714 {0x19, 0x03a11020},
2c609999
HW
9715 {0x21, 0x03211040}),
9716 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9717 ALC282_STANDARD_PINS,
2c609999 9718 {0x12, 0x99a30130},
2c609999 9719 {0x19, 0x03a11030},
2c609999
HW
9720 {0x21, 0x03211020}),
9721 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9722 ALC282_STANDARD_PINS,
2c609999 9723 {0x12, 0x99a30130},
2c609999 9724 {0x19, 0x04a11020},
2c609999 9725 {0x21, 0x0421101f}),
200afc09 9726 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 9727 ALC282_STANDARD_PINS,
200afc09 9728 {0x12, 0x90a60140},
200afc09 9729 {0x19, 0x04a11030},
200afc09 9730 {0x21, 0x04211020}),
34cdf405
CC
9731 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
9732 ALC282_STANDARD_PINS,
9733 {0x12, 0x90a609c0},
9734 {0x18, 0x03a11830},
9735 {0x19, 0x04a19831},
9736 {0x1a, 0x0481303f},
9737 {0x1b, 0x04211020},
9738 {0x21, 0x0321101f}),
9739 SND_HDA_PIN_QUIRK(0x10ec0282, 0x1025, "Acer", ALC282_FIXUP_ACER_DISABLE_LINEOUT,
9740 ALC282_STANDARD_PINS,
9741 {0x12, 0x90a60940},
9742 {0x18, 0x03a11830},
9743 {0x19, 0x04a19831},
9744 {0x1a, 0x0481303f},
9745 {0x1b, 0x04211020},
9746 {0x21, 0x0321101f}),
76c2132e 9747 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 9748 ALC282_STANDARD_PINS,
76c2132e 9749 {0x12, 0x90a60130},
76c2132e
DH
9750 {0x21, 0x0321101f}),
9751 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9752 {0x12, 0x90a60160},
9753 {0x14, 0x90170120},
76c2132e 9754 {0x21, 0x02211030}),
bc262179 9755 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 9756 ALC282_STANDARD_PINS,
bc262179 9757 {0x12, 0x90a60130},
bc262179 9758 {0x19, 0x03a11020},
bc262179 9759 {0x21, 0x0321101f}),
c8c6ee61 9760 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
266fd994
SL
9761 {0x12, 0x90a60130},
9762 {0x14, 0x90170110},
9763 {0x19, 0x04a11040},
9764 {0x21, 0x04211020}),
9765 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
9766 {0x14, 0x90170110},
9767 {0x19, 0x04a11040},
9768 {0x1d, 0x40600001},
9769 {0x21, 0x04211020}),
9770 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_NO_BASS_SPK_HEADSET_JACK,
c4cfcf6f
HW
9771 {0x14, 0x90170110},
9772 {0x19, 0x04a11040},
9773 {0x21, 0x04211020}),
c72b9bfe
HW
9774 SND_HDA_PIN_QUIRK(0x10ec0287, 0x17aa, "Lenovo", ALC285_FIXUP_THINKPAD_HEADSET_JACK,
9775 {0x14, 0x90170110},
9776 {0x17, 0x90170111},
9777 {0x19, 0x03a11030},
9778 {0x21, 0x03211020}),
33aaebd4
CC
9779 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
9780 {0x12, 0x90a60130},
9781 {0x17, 0x90170110},
9782 {0x21, 0x02211020}),
d44a6864 9783 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 9784 {0x12, 0x90a60120},
e1e62b98 9785 {0x14, 0x90170110},
e1e62b98 9786 {0x21, 0x0321101f}),
e4442bcf 9787 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9788 ALC290_STANDARD_PINS,
e4442bcf 9789 {0x15, 0x04211040},
e4442bcf 9790 {0x18, 0x90170112},
11580297 9791 {0x1a, 0x04a11020}),
e4442bcf 9792 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9793 ALC290_STANDARD_PINS,
e4442bcf 9794 {0x15, 0x04211040},
e4442bcf 9795 {0x18, 0x90170110},
11580297 9796 {0x1a, 0x04a11020}),
e4442bcf 9797 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9798 ALC290_STANDARD_PINS,
e4442bcf 9799 {0x15, 0x0421101f},
11580297 9800 {0x1a, 0x04a11020}),
e4442bcf 9801 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9802 ALC290_STANDARD_PINS,
e4442bcf 9803 {0x15, 0x04211020},
11580297 9804 {0x1a, 0x04a11040}),
e4442bcf 9805 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9806 ALC290_STANDARD_PINS,
e4442bcf
HW
9807 {0x14, 0x90170110},
9808 {0x15, 0x04211020},
11580297 9809 {0x1a, 0x04a11040}),
e4442bcf 9810 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9811 ALC290_STANDARD_PINS,
e4442bcf
HW
9812 {0x14, 0x90170110},
9813 {0x15, 0x04211020},
11580297 9814 {0x1a, 0x04a11020}),
e4442bcf 9815 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 9816 ALC290_STANDARD_PINS,
e4442bcf
HW
9817 {0x14, 0x90170110},
9818 {0x15, 0x0421101f},
11580297 9819 {0x1a, 0x04a11020}),
e8818fa8 9820 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 9821 ALC292_STANDARD_PINS,
e8818fa8 9822 {0x12, 0x90a60140},
e8818fa8 9823 {0x16, 0x01014020},
11580297 9824 {0x19, 0x01a19030}),
e8818fa8 9825 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 9826 ALC292_STANDARD_PINS,
e8818fa8 9827 {0x12, 0x90a60140},
e8818fa8
HW
9828 {0x16, 0x01014020},
9829 {0x18, 0x02a19031},
11580297 9830 {0x19, 0x01a1903e}),
76c2132e 9831 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 9832 ALC292_STANDARD_PINS,
11580297 9833 {0x12, 0x90a60140}),
76c2132e 9834 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 9835 ALC292_STANDARD_PINS,
76c2132e 9836 {0x13, 0x90a60140},
76c2132e 9837 {0x16, 0x21014020},
11580297 9838 {0x19, 0x21a19030}),
e03fdbde 9839 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 9840 ALC292_STANDARD_PINS,
11580297 9841 {0x13, 0x90a60140}),
eeacd80f
JHP
9842 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_HPE,
9843 {0x17, 0x90170110},
9844 {0x21, 0x04211020}),
d8ae458e
CC
9845 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
9846 {0x14, 0x90170110},
9847 {0x1b, 0x90a70130},
9848 {0x21, 0x04211020}),
8bb37a2a
JHP
9849 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9850 {0x12, 0x90a60130},
9851 {0x17, 0x90170110},
9852 {0x21, 0x03211020}),
0bea4cc8
JHP
9853 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9854 {0x12, 0x90a60130},
9855 {0x17, 0x90170110},
9856 {0x21, 0x04211020}),
3887c26c
TI
9857 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
9858 {0x12, 0x90a60130},
9859 {0x17, 0x90170110},
9860 {0x21, 0x03211020}),
9e43342b 9861 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
ad97d667
JHP
9862 {0x12, 0x90a60120},
9863 {0x17, 0x90170110},
9864 {0x21, 0x04211030}),
9865 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9e43342b
CC
9866 {0x12, 0x90a60130},
9867 {0x17, 0x90170110},
9868 {0x21, 0x03211020}),
9869 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC295_FIXUP_ASUS_MIC_NO_PRESENCE,
9870 {0x12, 0x90a60130},
9871 {0x17, 0x90170110},
9872 {0x21, 0x03211020}),
fbc57129 9873 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
0a29c57b
KY
9874 {0x14, 0x90170110},
9875 {0x21, 0x04211020}),
fbc57129
KY
9876 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9877 {0x14, 0x90170110},
9878 {0x21, 0x04211030}),
3f640970 9879 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
f771d5bb
HW
9880 ALC295_STANDARD_PINS,
9881 {0x17, 0x21014020},
9882 {0x18, 0x21a19030}),
9883 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9884 ALC295_STANDARD_PINS,
9885 {0x17, 0x21014040},
9886 {0x18, 0x21a19050}),
3f307834
HW
9887 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
9888 ALC295_STANDARD_PINS),
9f502ff5
TI
9889 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
9890 ALC298_STANDARD_PINS,
9891 {0x17, 0x90170110}),
977e6276 9892 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
9893 ALC298_STANDARD_PINS,
9894 {0x17, 0x90170140}),
9895 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
9896 ALC298_STANDARD_PINS,
9f502ff5 9897 {0x17, 0x90170150}),
9f1bc2c4
KHF
9898 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
9899 {0x12, 0xb7a60140},
9900 {0x13, 0xb7a60150},
9901 {0x17, 0x90170110},
9902 {0x1a, 0x03011020},
9903 {0x21, 0x03211030}),
54324221
JM
9904 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
9905 {0x12, 0xb7a60140},
9906 {0x17, 0x90170110},
9907 {0x1a, 0x03a11030},
9908 {0x21, 0x03211020}),
fcc6c877
KY
9909 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9910 ALC225_STANDARD_PINS,
9911 {0x12, 0xb7a60130},
fcc6c877 9912 {0x17, 0x90170110}),
573fcbfd
HW
9913 SND_HDA_PIN_QUIRK(0x10ec0623, 0x17aa, "Lenovo", ALC283_FIXUP_HEADSET_MIC,
9914 {0x14, 0x01014010},
9915 {0x17, 0x90170120},
9916 {0x18, 0x02a11030},
9917 {0x19, 0x02a1103f},
9918 {0x21, 0x0221101f}),
e1918938
HW
9919 {}
9920};
6dda9f4a 9921
7c0a6939
HW
9922/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
9923 * more machines, don't need to match all valid pins, just need to match
9924 * all the pins defined in the tbl. Just because of this reason, it is possible
9925 * that a single machine matches multiple tbls, so there is one limitation:
9926 * at most one tbl is allowed to define for the same vendor and same codec
9927 */
9928static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
9929 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
9930 {0x19, 0x40000000},
9931 {0x1b, 0x40000000}),
aed8c7f4
HW
9932 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9933 {0x19, 0x40000000},
9934 {0x1a, 0x40000000}),
d64ebdbf
HW
9935 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9936 {0x19, 0x40000000},
9937 {0x1a, 0x40000000}),
5815bdfd
HW
9938 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
9939 {0x19, 0x40000000},
9940 {0x1a, 0x40000000}),
7c0a6939
HW
9941 {}
9942};
9943
546bb678 9944static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 9945{
526af6eb 9946 struct alc_spec *spec = codec->spec;
1d045db9 9947 int val;
ebb83eeb 9948
526af6eb 9949 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 9950 return;
526af6eb 9951
1bb7e43e 9952 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
9953 alc_write_coef_idx(codec, 0xf, 0x960b);
9954 alc_write_coef_idx(codec, 0xe, 0x8817);
9955 }
ebb83eeb 9956
1bb7e43e 9957 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
9958 alc_write_coef_idx(codec, 0xf, 0x960b);
9959 alc_write_coef_idx(codec, 0xe, 0x8814);
9960 }
ebb83eeb 9961
1bb7e43e 9962 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 9963 /* Power up output pin */
98b24883 9964 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 9965 }
ebb83eeb 9966
1bb7e43e 9967 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 9968 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 9969 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
9970 /* Capless ramp up clock control */
9971 alc_write_coef_idx(codec, 0xd, val | (1<<10));
9972 }
9973 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 9974 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
9975 /* Class D power on reset */
9976 alc_write_coef_idx(codec, 0x17, val | (1<<7));
9977 }
9978 }
ebb83eeb 9979
98b24883
TI
9980 /* HP */
9981 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 9982}
a7f2371f 9983
1d045db9
TI
9984/*
9985 */
1d045db9
TI
9986static int patch_alc269(struct hda_codec *codec)
9987{
9988 struct alc_spec *spec;
3de95173 9989 int err;
f1d4e28b 9990
3de95173 9991 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 9992 if (err < 0)
3de95173
TI
9993 return err;
9994
9995 spec = codec->spec;
08c189f2 9996 spec->gen.shared_mic_vref_pin = 0x18;
317d9313 9997 codec->power_save_node = 0;
e16fb6d1 9998
225068ab
TI
9999#ifdef CONFIG_PM
10000 codec->patch_ops.suspend = alc269_suspend;
10001 codec->patch_ops.resume = alc269_resume;
10002#endif
c2d6af53
KY
10003 spec->shutup = alc_default_shutup;
10004 spec->init_hook = alc_default_init;
225068ab 10005
7639a06c 10006 switch (codec->core.vendor_id) {
065380f0 10007 case 0x10ec0269:
1d045db9 10008 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
10009 switch (alc_get_coef0(codec) & 0x00f0) {
10010 case 0x0010:
5100cd07
TI
10011 if (codec->bus->pci &&
10012 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 10013 spec->cdefine.platform_type == 1)
20ca0c35 10014 err = alc_codec_rename(codec, "ALC271X");
1d045db9 10015 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
10016 break;
10017 case 0x0020:
5100cd07
TI
10018 if (codec->bus->pci &&
10019 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 10020 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 10021 err = alc_codec_rename(codec, "ALC3202");
1d045db9 10022 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 10023 break;
adcc70b2
KY
10024 case 0x0030:
10025 spec->codec_variant = ALC269_TYPE_ALC269VD;
10026 break;
1bb7e43e 10027 default:
1d045db9 10028 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 10029 }
e16fb6d1
TI
10030 if (err < 0)
10031 goto error;
c2d6af53 10032 spec->shutup = alc269_shutup;
546bb678 10033 spec->init_hook = alc269_fill_coef;
1d045db9 10034 alc269_fill_coef(codec);
065380f0
KY
10035 break;
10036
10037 case 0x10ec0280:
10038 case 0x10ec0290:
10039 spec->codec_variant = ALC269_TYPE_ALC280;
10040 break;
10041 case 0x10ec0282:
065380f0 10042 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
10043 spec->shutup = alc282_shutup;
10044 spec->init_hook = alc282_init;
065380f0 10045 break;
2af02be7
KY
10046 case 0x10ec0233:
10047 case 0x10ec0283:
10048 spec->codec_variant = ALC269_TYPE_ALC283;
10049 spec->shutup = alc283_shutup;
10050 spec->init_hook = alc283_init;
10051 break;
065380f0
KY
10052 case 0x10ec0284:
10053 case 0x10ec0292:
10054 spec->codec_variant = ALC269_TYPE_ALC284;
10055 break;
161ebf29 10056 case 0x10ec0293:
4731d5de 10057 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 10058 break;
7fc7d047 10059 case 0x10ec0286:
7c665932 10060 case 0x10ec0288:
7fc7d047
KY
10061 spec->codec_variant = ALC269_TYPE_ALC286;
10062 break;
506b62c3
KY
10063 case 0x10ec0298:
10064 spec->codec_variant = ALC269_TYPE_ALC298;
10065 break;
ea04a1db 10066 case 0x10ec0235:
1d04c9de
KY
10067 case 0x10ec0255:
10068 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
10069 spec->shutup = alc256_shutup;
10070 spec->init_hook = alc256_init;
1d04c9de 10071 break;
1948fc06 10072 case 0x10ec0230:
736f20a7 10073 case 0x10ec0236:
4344aec8
KY
10074 case 0x10ec0256:
10075 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
10076 spec->shutup = alc256_shutup;
10077 spec->init_hook = alc256_init;
7d1b6e29 10078 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
4344aec8 10079 break;
f429e7e4
KY
10080 case 0x10ec0257:
10081 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
10082 spec->shutup = alc256_shutup;
10083 spec->init_hook = alc256_init;
f429e7e4
KY
10084 spec->gen.mixer_nid = 0;
10085 break;
0a6f0600 10086 case 0x10ec0215:
7fbdcd83 10087 case 0x10ec0245:
0a6f0600
KY
10088 case 0x10ec0285:
10089 case 0x10ec0289:
10090 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
10091 spec->shutup = alc225_shutup;
10092 spec->init_hook = alc225_init;
0a6f0600
KY
10093 spec->gen.mixer_nid = 0;
10094 break;
4231430d 10095 case 0x10ec0225:
7d727869 10096 case 0x10ec0295:
28f1f9b2 10097 case 0x10ec0299:
4231430d 10098 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
10099 spec->shutup = alc225_shutup;
10100 spec->init_hook = alc225_init;
c1350bff 10101 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 10102 break;
99cee034
KY
10103 case 0x10ec0287:
10104 spec->codec_variant = ALC269_TYPE_ALC287;
10105 spec->shutup = alc225_shutup;
10106 spec->init_hook = alc225_init;
10107 spec->gen.mixer_nid = 0; /* no loopback on ALC287 */
10108 break;
dcd4f0db
KY
10109 case 0x10ec0234:
10110 case 0x10ec0274:
10111 case 0x10ec0294:
10112 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 10113 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 10114 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
693abe11 10115 spec->init_hook = alc294_init;
dcd4f0db 10116 break;
1078bef0
KY
10117 case 0x10ec0300:
10118 spec->codec_variant = ALC269_TYPE_ALC300;
10119 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
dcd4f0db 10120 break;
f0778871
KY
10121 case 0x10ec0623:
10122 spec->codec_variant = ALC269_TYPE_ALC623;
10123 break;
6fbae35a
KY
10124 case 0x10ec0700:
10125 case 0x10ec0701:
10126 case 0x10ec0703:
83629532 10127 case 0x10ec0711:
6fbae35a
KY
10128 spec->codec_variant = ALC269_TYPE_ALC700;
10129 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 10130 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
693abe11 10131 spec->init_hook = alc294_init;
6fbae35a
KY
10132 break;
10133
1d045db9 10134 }
6dda9f4a 10135
ad60d502 10136 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 10137 spec->has_alc5505_dsp = 1;
ad60d502
KY
10138 spec->init_hook = alc5505_dsp_init;
10139 }
10140
c9af753f
TI
10141 alc_pre_init(codec);
10142
efe55732
TI
10143 snd_hda_pick_fixup(codec, alc269_fixup_models,
10144 alc269_fixup_tbl, alc269_fixups);
13d9c6b9
TI
10145 /* FIXME: both TX300 and ROG Strix G17 have the same SSID, and
10146 * the quirk breaks the latter (bko#214101).
10147 * Clear the wrong entry.
10148 */
10149 if (codec->fixup_id == ALC282_FIXUP_ASUS_TX300 &&
10150 codec->core.vendor_id == 0x10ec0294) {
10151 codec_dbg(codec, "Clear wrong fixup for ASUS ROG Strix G17\n");
10152 codec->fixup_id = HDA_FIXUP_ID_NOT_SET;
10153 }
10154
0fc1e447 10155 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
7c0a6939 10156 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
efe55732
TI
10157 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
10158 alc269_fixups);
10159 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
10160
10161 alc_auto_parse_customize_define(codec);
10162
10163 if (has_cdefine_beep(codec))
10164 spec->gen.beep_nid = 0x01;
10165
a4297b5d
TI
10166 /* automatic parse from the BIOS config */
10167 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
10168 if (err < 0)
10169 goto error;
6dda9f4a 10170
fea80fae
TI
10171 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
10172 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
10173 if (err < 0)
10174 goto error;
10175 }
f1d4e28b 10176
1727a771 10177 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 10178
1d045db9 10179 return 0;
e16fb6d1
TI
10180
10181 error:
10182 alc_free(codec);
10183 return err;
1d045db9 10184}
f1d4e28b 10185
1d045db9
TI
10186/*
10187 * ALC861
10188 */
622e84cd 10189
1d045db9 10190static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 10191{
1d045db9 10192 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
10193 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
10194 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
10195}
10196
1d045db9
TI
10197/* Pin config fixes */
10198enum {
e652f4c8
TI
10199 ALC861_FIXUP_FSC_AMILO_PI1505,
10200 ALC861_FIXUP_AMP_VREF_0F,
10201 ALC861_FIXUP_NO_JACK_DETECT,
10202 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 10203 ALC660_FIXUP_ASUS_W7J,
1d045db9 10204};
7085ec12 10205
31150f23
TI
10206/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
10207static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 10208 const struct hda_fixup *fix, int action)
31150f23
TI
10209{
10210 struct alc_spec *spec = codec->spec;
10211 unsigned int val;
10212
1727a771 10213 if (action != HDA_FIXUP_ACT_INIT)
31150f23 10214 return;
d3f02d60 10215 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
10216 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
10217 val |= AC_PINCTL_IN_EN;
10218 val |= AC_PINCTL_VREF_50;
cdd03ced 10219 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 10220 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
10221}
10222
e652f4c8
TI
10223/* suppress the jack-detection */
10224static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 10225 const struct hda_fixup *fix, int action)
e652f4c8 10226{
1727a771 10227 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 10228 codec->no_jack_detect = 1;
7d7eb9ea 10229}
e652f4c8 10230
1727a771 10231static const struct hda_fixup alc861_fixups[] = {
e652f4c8 10232 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
10233 .type = HDA_FIXUP_PINS,
10234 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
10235 { 0x0b, 0x0221101f }, /* HP */
10236 { 0x0f, 0x90170310 }, /* speaker */
10237 { }
10238 }
10239 },
e652f4c8 10240 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 10241 .type = HDA_FIXUP_FUNC,
31150f23 10242 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 10243 },
e652f4c8 10244 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 10245 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
10246 .v.func = alc_fixup_no_jack_detect,
10247 },
10248 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 10249 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
10250 .v.func = alc861_fixup_asus_amp_vref_0f,
10251 .chained = true,
10252 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
10253 },
10254 [ALC660_FIXUP_ASUS_W7J] = {
10255 .type = HDA_FIXUP_VERBS,
10256 .v.verbs = (const struct hda_verb[]) {
10257 /* ASUS W7J needs a magic pin setup on unused NID 0x10
10258 * for enabling outputs
10259 */
10260 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
10261 { }
10262 },
e652f4c8 10263 }
1d045db9 10264};
7085ec12 10265
1d045db9 10266static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 10267 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 10268 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
10269 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
10270 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
10271 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
defce244 10272 SND_PCI_QUIRK_VENDOR(0x1584, "Haier/Uniwill", ALC861_FIXUP_AMP_VREF_0F),
e652f4c8 10273 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
10274 {}
10275};
3af9ee6b 10276
1d045db9
TI
10277/*
10278 */
1d045db9 10279static int patch_alc861(struct hda_codec *codec)
7085ec12 10280{
1d045db9 10281 struct alc_spec *spec;
1d045db9 10282 int err;
7085ec12 10283
3de95173
TI
10284 err = alc_alloc_spec(codec, 0x15);
10285 if (err < 0)
10286 return err;
1d045db9 10287
3de95173 10288 spec = codec->spec;
2722b535
TI
10289 if (has_cdefine_beep(codec))
10290 spec->gen.beep_nid = 0x23;
1d045db9 10291
225068ab
TI
10292#ifdef CONFIG_PM
10293 spec->power_hook = alc_power_eapd;
10294#endif
10295
c9af753f
TI
10296 alc_pre_init(codec);
10297
1727a771
TI
10298 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
10299 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 10300
cb4e4824
TI
10301 /* automatic parse from the BIOS config */
10302 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
10303 if (err < 0)
10304 goto error;
3af9ee6b 10305
fea80fae
TI
10306 if (!spec->gen.no_analog) {
10307 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
10308 if (err < 0)
10309 goto error;
10310 }
7085ec12 10311
1727a771 10312 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 10313
1d045db9 10314 return 0;
e16fb6d1
TI
10315
10316 error:
10317 alc_free(codec);
10318 return err;
7085ec12
TI
10319}
10320
1d045db9
TI
10321/*
10322 * ALC861-VD support
10323 *
10324 * Based on ALC882
10325 *
10326 * In addition, an independent DAC
10327 */
1d045db9 10328static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 10329{
1d045db9 10330 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
10331 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
10332 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
10333}
10334
1d045db9 10335enum {
8fdcb6fe
TI
10336 ALC660VD_FIX_ASUS_GPIO1,
10337 ALC861VD_FIX_DALLAS,
1d045db9 10338};
ce764ab2 10339
8fdcb6fe
TI
10340/* exclude VREF80 */
10341static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 10342 const struct hda_fixup *fix, int action)
8fdcb6fe 10343{
1727a771 10344 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
10345 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
10346 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
10347 }
10348}
10349
df73d83f
TI
10350/* reset GPIO1 */
10351static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
10352 const struct hda_fixup *fix, int action)
10353{
10354 struct alc_spec *spec = codec->spec;
10355
10356 if (action == HDA_FIXUP_ACT_PRE_PROBE)
10357 spec->gpio_mask |= 0x02;
10358 alc_fixup_gpio(codec, action, 0x01);
10359}
10360
1727a771 10361static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 10362 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
10363 .type = HDA_FIXUP_FUNC,
10364 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 10365 },
8fdcb6fe 10366 [ALC861VD_FIX_DALLAS] = {
1727a771 10367 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
10368 .v.func = alc861vd_fixup_dallas,
10369 },
1d045db9 10370};
ce764ab2 10371
1d045db9 10372static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 10373 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 10374 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 10375 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
10376 {}
10377};
ce764ab2 10378
1d045db9
TI
10379/*
10380 */
1d045db9 10381static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 10382{
1d045db9 10383 struct alc_spec *spec;
cb4e4824 10384 int err;
ce764ab2 10385
3de95173
TI
10386 err = alc_alloc_spec(codec, 0x0b);
10387 if (err < 0)
10388 return err;
1d045db9 10389
3de95173 10390 spec = codec->spec;
2722b535
TI
10391 if (has_cdefine_beep(codec))
10392 spec->gen.beep_nid = 0x23;
1d045db9 10393
225068ab
TI
10394 spec->shutup = alc_eapd_shutup;
10395
c9af753f
TI
10396 alc_pre_init(codec);
10397
1727a771
TI
10398 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
10399 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 10400
cb4e4824
TI
10401 /* automatic parse from the BIOS config */
10402 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
10403 if (err < 0)
10404 goto error;
ce764ab2 10405
fea80fae
TI
10406 if (!spec->gen.no_analog) {
10407 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
10408 if (err < 0)
10409 goto error;
10410 }
1d045db9 10411
1727a771 10412 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 10413
ce764ab2 10414 return 0;
e16fb6d1
TI
10415
10416 error:
10417 alc_free(codec);
10418 return err;
ce764ab2
TI
10419}
10420
1d045db9
TI
10421/*
10422 * ALC662 support
10423 *
10424 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
10425 * configuration. Each pin widget can choose any input DACs and a mixer.
10426 * Each ADC is connected from a mixer of all inputs. This makes possible
10427 * 6-channel independent captures.
10428 *
10429 * In addition, an independent DAC for the multi-playback (not used in this
10430 * driver yet).
10431 */
1d045db9
TI
10432
10433/*
10434 * BIOS auto configuration
10435 */
10436
bc9f98a9
KY
10437static int alc662_parse_auto_config(struct hda_codec *codec)
10438{
4c6d72d1 10439 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
10440 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
10441 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
10442 const hda_nid_t *ssids;
ee979a14 10443
7639a06c
TI
10444 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
10445 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
10446 codec->core.vendor_id == 0x10ec0671)
3e6179b8 10447 ssids = alc663_ssids;
6227cdce 10448 else
3e6179b8
TI
10449 ssids = alc662_ssids;
10450 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
10451}
10452
6be7948f 10453static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 10454 const struct hda_fixup *fix, int action)
6fc398cb 10455{
9bb1f06f 10456 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 10457 return;
6be7948f
TB
10458 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
10459 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
10460 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
10461 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
10462 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 10463 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
10464}
10465
8e383953
TI
10466static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
10467 { .channels = 2,
10468 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
10469 { .channels = 4,
10470 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
10471 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
10472 { }
10473};
10474
10475/* override the 2.1 chmap */
eb9ca3ab 10476static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
10477 const struct hda_fixup *fix, int action)
10478{
10479 if (action == HDA_FIXUP_ACT_BUILD) {
10480 struct alc_spec *spec = codec->spec;
bbbc7e85 10481 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
10482 }
10483}
10484
bf68665d
TI
10485/* avoid D3 for keeping GPIO up */
10486static unsigned int gpio_led_power_filter(struct hda_codec *codec,
10487 hda_nid_t nid,
10488 unsigned int power_state)
10489{
10490 struct alc_spec *spec = codec->spec;
d261eec8 10491 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
10492 return AC_PWRST_D0;
10493 return power_state;
10494}
10495
3e887f37
TI
10496static void alc662_fixup_led_gpio1(struct hda_codec *codec,
10497 const struct hda_fixup *fix, int action)
10498{
10499 struct alc_spec *spec = codec->spec;
3e887f37 10500
01e4a275 10501 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 10502 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 10503 spec->mute_led_polarity = 1;
bf68665d 10504 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
10505 }
10506}
10507
c6790c8e
KY
10508static void alc662_usi_automute_hook(struct hda_codec *codec,
10509 struct hda_jack_callback *jack)
10510{
10511 struct alc_spec *spec = codec->spec;
10512 int vref;
10513 msleep(200);
10514 snd_hda_gen_hp_automute(codec, jack);
10515
10516 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
10517 msleep(100);
10518 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
10519 vref);
10520}
10521
10522static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
10523 const struct hda_fixup *fix, int action)
10524{
10525 struct alc_spec *spec = codec->spec;
10526 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10527 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
10528 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
10529 }
10530}
10531
00066e97
SB
10532static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
10533 struct hda_jack_callback *cb)
10534{
10535 /* surround speakers at 0x1b already get muted automatically when
10536 * headphones are plugged in, but we have to mute/unmute the remaining
10537 * channels manually:
10538 * 0x15 - front left/front right
10539 * 0x18 - front center/ LFE
10540 */
10541 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
10542 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
10543 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
10544 } else {
10545 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
10546 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
10547 }
10548}
10549
10550static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
10551 const struct hda_fixup *fix, int action)
10552{
10553 /* Pin 0x1b: shared headphones jack and surround speakers */
10554 if (!is_jack_detectable(codec, 0x1b))
10555 return;
10556
10557 switch (action) {
10558 case HDA_FIXUP_ACT_PRE_PROBE:
10559 snd_hda_jack_detect_enable_callback(codec, 0x1b,
10560 alc662_aspire_ethos_mute_speakers);
336820c4
TI
10561 /* subwoofer needs an extra GPIO setting to become audible */
10562 alc_setup_gpio(codec, 0x02);
00066e97
SB
10563 break;
10564 case HDA_FIXUP_ACT_INIT:
10565 /* Make sure to start in a correct state, i.e. if
10566 * headphones have been plugged in before powering up the system
10567 */
10568 alc662_aspire_ethos_mute_speakers(codec, NULL);
10569 break;
10570 }
10571}
10572
5af29028
KY
10573static void alc671_fixup_hp_headset_mic2(struct hda_codec *codec,
10574 const struct hda_fixup *fix, int action)
10575{
10576 struct alc_spec *spec = codec->spec;
10577
10578 static const struct hda_pintbl pincfgs[] = {
10579 { 0x19, 0x02a11040 }, /* use as headset mic, with its own jack detect */
10580 { 0x1b, 0x0181304f },
10581 { }
10582 };
10583
10584 switch (action) {
10585 case HDA_FIXUP_ACT_PRE_PROBE:
10586 spec->gen.mixer_nid = 0;
10587 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
10588 snd_hda_apply_pincfgs(codec, pincfgs);
10589 break;
10590 case HDA_FIXUP_ACT_INIT:
10591 alc_write_coef_idx(codec, 0x19, 0xa054);
10592 break;
10593 }
10594}
10595
d7f32791
KY
10596static void alc897_hp_automute_hook(struct hda_codec *codec,
10597 struct hda_jack_callback *jack)
10598{
10599 struct alc_spec *spec = codec->spec;
10600 int vref;
10601
10602 snd_hda_gen_hp_automute(codec, jack);
10603 vref = spec->gen.hp_jack_present ? (PIN_HP | AC_PINCTL_VREF_100) : PIN_HP;
10604 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
10605 vref);
10606}
10607
10608static void alc897_fixup_lenovo_headset_mic(struct hda_codec *codec,
10609 const struct hda_fixup *fix, int action)
10610{
10611 struct alc_spec *spec = codec->spec;
10612 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
10613 spec->gen.hp_automute_hook = alc897_hp_automute_hook;
10614 }
10615}
10616
6b0f95c4 10617static const struct coef_fw alc668_coefs[] = {
f3f9185f
KY
10618 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
10619 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
10620 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
10621 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
10622 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
10623 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
10624 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
10625 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
10626 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
10627 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
10628 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
10629 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
10630 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
10631 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
10632 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
10633 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
10634 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
10635 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
10636 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
10637 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
10638 {}
10639};
10640
10641static void alc668_restore_default_value(struct hda_codec *codec)
10642{
10643 alc_process_coef_fw(codec, alc668_coefs);
10644}
10645
6cb3b707 10646enum {
2df03514 10647 ALC662_FIXUP_ASPIRE,
3e887f37 10648 ALC662_FIXUP_LED_GPIO1,
6cb3b707 10649 ALC662_FIXUP_IDEAPAD,
6be7948f 10650 ALC272_FIXUP_MARIO,
f1ec5be1 10651 ALC662_FIXUP_CZC_ET26,
d2ebd479 10652 ALC662_FIXUP_CZC_P10T,
94024cd1 10653 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 10654 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
10655 ALC662_FIXUP_ASUS_MODE1,
10656 ALC662_FIXUP_ASUS_MODE2,
10657 ALC662_FIXUP_ASUS_MODE3,
10658 ALC662_FIXUP_ASUS_MODE4,
10659 ALC662_FIXUP_ASUS_MODE5,
10660 ALC662_FIXUP_ASUS_MODE6,
10661 ALC662_FIXUP_ASUS_MODE7,
10662 ALC662_FIXUP_ASUS_MODE8,
1565cc35 10663 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 10664 ALC662_FIXUP_ZOTAC_Z68,
125821ae 10665 ALC662_FIXUP_INV_DMIC,
1f8b46cd 10666 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 10667 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 10668 ALC662_FIXUP_HEADSET_MODE,
73bdd597 10669 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 10670 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 10671 ALC662_FIXUP_BASS_16,
a30c9aaa 10672 ALC662_FIXUP_BASS_1A,
8e54b4ac 10673 ALC662_FIXUP_BASS_CHMAP,
493a52a9 10674 ALC668_FIXUP_AUTO_MUTE,
5e6db669 10675 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 10676 ALC668_FIXUP_DELL_XPS13,
9d4dc584 10677 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 10678 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 10679 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 10680 ALC668_FIXUP_MIC_COEF,
11ba6111 10681 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
10682 ALC891_FIXUP_HEADSET_MODE,
10683 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 10684 ALC662_FIXUP_ACER_VERITON,
1a3f0991 10685 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
10686 ALC662_FIXUP_USI_FUNC,
10687 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 10688 ALC662_FIXUP_LENOVO_MULTI_CODECS,
00066e97 10689 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
00066e97 10690 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
5af29028 10691 ALC671_FIXUP_HP_HEADSET_MIC2,
d858c706 10692 ALC662_FIXUP_ACER_X2660G_HEADSET_MODE,
a124458a 10693 ALC662_FIXUP_ACER_NITRO_HEADSET_MODE,
a3fd1a98
HW
10694 ALC668_FIXUP_ASUS_NO_HEADSET_MIC,
10695 ALC668_FIXUP_HEADSET_MIC,
10696 ALC668_FIXUP_MIC_DET_COEF,
d7f32791
KY
10697 ALC897_FIXUP_LENOVO_HEADSET_MIC,
10698 ALC897_FIXUP_HEADSET_MIC_PIN,
6cb3b707
DH
10699};
10700
1727a771 10701static const struct hda_fixup alc662_fixups[] = {
2df03514 10702 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
10703 .type = HDA_FIXUP_PINS,
10704 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
10705 { 0x15, 0x99130112 }, /* subwoofer */
10706 { }
10707 }
10708 },
3e887f37
TI
10709 [ALC662_FIXUP_LED_GPIO1] = {
10710 .type = HDA_FIXUP_FUNC,
10711 .v.func = alc662_fixup_led_gpio1,
10712 },
6cb3b707 10713 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
10714 .type = HDA_FIXUP_PINS,
10715 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
10716 { 0x17, 0x99130112 }, /* subwoofer */
10717 { }
3e887f37
TI
10718 },
10719 .chained = true,
10720 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 10721 },
6be7948f 10722 [ALC272_FIXUP_MARIO] = {
1727a771 10723 .type = HDA_FIXUP_FUNC,
b5bfbc67 10724 .v.func = alc272_fixup_mario,
d2ebd479 10725 },
f1ec5be1
HC
10726 [ALC662_FIXUP_CZC_ET26] = {
10727 .type = HDA_FIXUP_PINS,
10728 .v.pins = (const struct hda_pintbl[]) {
10729 {0x12, 0x403cc000},
10730 {0x14, 0x90170110}, /* speaker */
10731 {0x15, 0x411111f0},
10732 {0x16, 0x411111f0},
10733 {0x18, 0x01a19030}, /* mic */
10734 {0x19, 0x90a7013f}, /* int-mic */
10735 {0x1a, 0x01014020},
10736 {0x1b, 0x0121401f},
10737 {0x1c, 0x411111f0},
10738 {0x1d, 0x411111f0},
10739 {0x1e, 0x40478e35},
10740 {}
10741 },
10742 .chained = true,
10743 .chain_id = ALC662_FIXUP_SKU_IGNORE
10744 },
d2ebd479 10745 [ALC662_FIXUP_CZC_P10T] = {
1727a771 10746 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
10747 .v.verbs = (const struct hda_verb[]) {
10748 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
10749 {}
10750 }
10751 },
94024cd1 10752 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 10753 .type = HDA_FIXUP_FUNC,
23d30f28 10754 .v.func = alc_fixup_sku_ignore,
c6b35874 10755 },
e59ea3ed 10756 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
10757 .type = HDA_FIXUP_PINS,
10758 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
10759 { 0x14, 0x0221201f }, /* HP out */
10760 { }
10761 },
10762 .chained = true,
10763 .chain_id = ALC662_FIXUP_SKU_IGNORE
10764 },
53c334ad 10765 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
10766 .type = HDA_FIXUP_PINS,
10767 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10768 { 0x14, 0x99130110 }, /* speaker */
10769 { 0x18, 0x01a19c20 }, /* mic */
10770 { 0x19, 0x99a3092f }, /* int-mic */
10771 { 0x21, 0x0121401f }, /* HP out */
10772 { }
10773 },
10774 .chained = true,
10775 .chain_id = ALC662_FIXUP_SKU_IGNORE
10776 },
10777 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
10778 .type = HDA_FIXUP_PINS,
10779 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
10780 { 0x14, 0x99130110 }, /* speaker */
10781 { 0x18, 0x01a19820 }, /* mic */
10782 { 0x19, 0x99a3092f }, /* int-mic */
10783 { 0x1b, 0x0121401f }, /* HP out */
10784 { }
10785 },
53c334ad
TI
10786 .chained = true,
10787 .chain_id = ALC662_FIXUP_SKU_IGNORE
10788 },
10789 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
10790 .type = HDA_FIXUP_PINS,
10791 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10792 { 0x14, 0x99130110 }, /* speaker */
10793 { 0x15, 0x0121441f }, /* HP */
10794 { 0x18, 0x01a19840 }, /* mic */
10795 { 0x19, 0x99a3094f }, /* int-mic */
10796 { 0x21, 0x01211420 }, /* HP2 */
10797 { }
10798 },
10799 .chained = true,
10800 .chain_id = ALC662_FIXUP_SKU_IGNORE
10801 },
10802 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
10803 .type = HDA_FIXUP_PINS,
10804 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10805 { 0x14, 0x99130110 }, /* speaker */
10806 { 0x16, 0x99130111 }, /* speaker */
10807 { 0x18, 0x01a19840 }, /* mic */
10808 { 0x19, 0x99a3094f }, /* int-mic */
10809 { 0x21, 0x0121441f }, /* HP */
10810 { }
10811 },
10812 .chained = true,
10813 .chain_id = ALC662_FIXUP_SKU_IGNORE
10814 },
10815 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
10816 .type = HDA_FIXUP_PINS,
10817 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10818 { 0x14, 0x99130110 }, /* speaker */
10819 { 0x15, 0x0121441f }, /* HP */
10820 { 0x16, 0x99130111 }, /* speaker */
10821 { 0x18, 0x01a19840 }, /* mic */
10822 { 0x19, 0x99a3094f }, /* int-mic */
10823 { }
10824 },
10825 .chained = true,
10826 .chain_id = ALC662_FIXUP_SKU_IGNORE
10827 },
10828 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
10829 .type = HDA_FIXUP_PINS,
10830 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10831 { 0x14, 0x99130110 }, /* speaker */
10832 { 0x15, 0x01211420 }, /* HP2 */
10833 { 0x18, 0x01a19840 }, /* mic */
10834 { 0x19, 0x99a3094f }, /* int-mic */
10835 { 0x1b, 0x0121441f }, /* HP */
10836 { }
10837 },
10838 .chained = true,
10839 .chain_id = ALC662_FIXUP_SKU_IGNORE
10840 },
10841 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
10842 .type = HDA_FIXUP_PINS,
10843 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10844 { 0x14, 0x99130110 }, /* speaker */
10845 { 0x17, 0x99130111 }, /* speaker */
10846 { 0x18, 0x01a19840 }, /* mic */
10847 { 0x19, 0x99a3094f }, /* int-mic */
10848 { 0x1b, 0x01214020 }, /* HP */
10849 { 0x21, 0x0121401f }, /* HP */
10850 { }
10851 },
10852 .chained = true,
10853 .chain_id = ALC662_FIXUP_SKU_IGNORE
10854 },
10855 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
10856 .type = HDA_FIXUP_PINS,
10857 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
10858 { 0x14, 0x99130110 }, /* speaker */
10859 { 0x12, 0x99a30970 }, /* int-mic */
10860 { 0x15, 0x01214020 }, /* HP */
10861 { 0x17, 0x99130111 }, /* speaker */
10862 { 0x18, 0x01a19840 }, /* mic */
10863 { 0x21, 0x0121401f }, /* HP */
10864 { }
10865 },
10866 .chained = true,
10867 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 10868 },
1565cc35 10869 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 10870 .type = HDA_FIXUP_FUNC,
1565cc35
TI
10871 .v.func = alc_fixup_no_jack_detect,
10872 },
edfe3bfc 10873 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
10874 .type = HDA_FIXUP_PINS,
10875 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
10876 { 0x1b, 0x02214020 }, /* Front HP */
10877 { }
10878 }
10879 },
125821ae 10880 [ALC662_FIXUP_INV_DMIC] = {
1727a771 10881 .type = HDA_FIXUP_FUNC,
9d36a7dc 10882 .v.func = alc_fixup_inv_dmic,
125821ae 10883 },
033b0a7c
GM
10884 [ALC668_FIXUP_DELL_XPS13] = {
10885 .type = HDA_FIXUP_FUNC,
10886 .v.func = alc_fixup_dell_xps13,
10887 .chained = true,
10888 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
10889 },
5e6db669
GM
10890 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
10891 .type = HDA_FIXUP_FUNC,
10892 .v.func = alc_fixup_disable_aamix,
10893 .chained = true,
10894 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
10895 },
493a52a9
HW
10896 [ALC668_FIXUP_AUTO_MUTE] = {
10897 .type = HDA_FIXUP_FUNC,
10898 .v.func = alc_fixup_auto_mute_via_amp,
10899 .chained = true,
10900 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
10901 },
1f8b46cd
DH
10902 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
10903 .type = HDA_FIXUP_PINS,
10904 .v.pins = (const struct hda_pintbl[]) {
10905 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
10906 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
10907 { }
10908 },
10909 .chained = true,
10910 .chain_id = ALC662_FIXUP_HEADSET_MODE
10911 },
10912 [ALC662_FIXUP_HEADSET_MODE] = {
10913 .type = HDA_FIXUP_FUNC,
10914 .v.func = alc_fixup_headset_mode_alc662,
10915 },
73bdd597
DH
10916 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
10917 .type = HDA_FIXUP_PINS,
10918 .v.pins = (const struct hda_pintbl[]) {
10919 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
10920 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
10921 { }
10922 },
10923 .chained = true,
10924 .chain_id = ALC668_FIXUP_HEADSET_MODE
10925 },
10926 [ALC668_FIXUP_HEADSET_MODE] = {
10927 .type = HDA_FIXUP_FUNC,
10928 .v.func = alc_fixup_headset_mode_alc668,
10929 },
8e54b4ac 10930 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 10931 .type = HDA_FIXUP_FUNC,
eb9ca3ab 10932 .v.func = alc_fixup_bass_chmap,
8e383953
TI
10933 .chained = true,
10934 .chain_id = ALC662_FIXUP_ASUS_MODE4
10935 },
61a75f13
DH
10936 [ALC662_FIXUP_BASS_16] = {
10937 .type = HDA_FIXUP_PINS,
10938 .v.pins = (const struct hda_pintbl[]) {
10939 {0x16, 0x80106111}, /* bass speaker */
10940 {}
10941 },
10942 .chained = true,
10943 .chain_id = ALC662_FIXUP_BASS_CHMAP,
10944 },
a30c9aaa
TI
10945 [ALC662_FIXUP_BASS_1A] = {
10946 .type = HDA_FIXUP_PINS,
10947 .v.pins = (const struct hda_pintbl[]) {
10948 {0x1a, 0x80106111}, /* bass speaker */
10949 {}
10950 },
8e54b4ac
DH
10951 .chained = true,
10952 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 10953 },
8e54b4ac 10954 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 10955 .type = HDA_FIXUP_FUNC,
eb9ca3ab 10956 .v.func = alc_fixup_bass_chmap,
a30c9aaa 10957 },
9d4dc584
BM
10958 [ALC662_FIXUP_ASUS_Nx50] = {
10959 .type = HDA_FIXUP_FUNC,
10960 .v.func = alc_fixup_auto_mute_via_amp,
10961 .chained = true,
10962 .chain_id = ALC662_FIXUP_BASS_1A
10963 },
fc7438b1
MP
10964 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
10965 .type = HDA_FIXUP_FUNC,
10966 .v.func = alc_fixup_headset_mode_alc668,
10967 .chain_id = ALC662_FIXUP_BASS_CHMAP
10968 },
3231e205
YP
10969 [ALC668_FIXUP_ASUS_Nx51] = {
10970 .type = HDA_FIXUP_PINS,
10971 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
10972 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
10973 { 0x1a, 0x90170151 }, /* bass speaker */
10974 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
10975 {}
10976 },
10977 .chained = true,
fc7438b1 10978 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 10979 },
5b7c5e1f 10980 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
10981 .type = HDA_FIXUP_VERBS,
10982 .v.verbs = (const struct hda_verb[]) {
10983 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
10984 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
10985 {}
10986 },
10987 },
5b7c5e1f
TI
10988 [ALC668_FIXUP_ASUS_G751] = {
10989 .type = HDA_FIXUP_PINS,
10990 .v.pins = (const struct hda_pintbl[]) {
10991 { 0x16, 0x0421101f }, /* HP */
10992 {}
10993 },
10994 .chained = true,
10995 .chain_id = ALC668_FIXUP_MIC_COEF
10996 },
78f4f7c2
KY
10997 [ALC891_FIXUP_HEADSET_MODE] = {
10998 .type = HDA_FIXUP_FUNC,
10999 .v.func = alc_fixup_headset_mode,
11000 },
11001 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
11002 .type = HDA_FIXUP_PINS,
11003 .v.pins = (const struct hda_pintbl[]) {
11004 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
11005 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
11006 { }
11007 },
11008 .chained = true,
11009 .chain_id = ALC891_FIXUP_HEADSET_MODE
11010 },
9b51fe3e
SB
11011 [ALC662_FIXUP_ACER_VERITON] = {
11012 .type = HDA_FIXUP_PINS,
11013 .v.pins = (const struct hda_pintbl[]) {
11014 { 0x15, 0x50170120 }, /* no internal speaker */
11015 { }
11016 }
11017 },
1a3f0991
TI
11018 [ALC892_FIXUP_ASROCK_MOBO] = {
11019 .type = HDA_FIXUP_PINS,
11020 .v.pins = (const struct hda_pintbl[]) {
11021 { 0x15, 0x40f000f0 }, /* disabled */
11022 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
11023 { }
11024 }
11025 },
c6790c8e
KY
11026 [ALC662_FIXUP_USI_FUNC] = {
11027 .type = HDA_FIXUP_FUNC,
11028 .v.func = alc662_fixup_usi_headset_mic,
11029 },
11030 [ALC662_FIXUP_USI_HEADSET_MODE] = {
11031 .type = HDA_FIXUP_PINS,
11032 .v.pins = (const struct hda_pintbl[]) {
11033 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
11034 { 0x18, 0x01a1903d },
11035 { }
11036 },
11037 .chained = true,
11038 .chain_id = ALC662_FIXUP_USI_FUNC
11039 },
ca169cc2
KY
11040 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
11041 .type = HDA_FIXUP_FUNC,
11042 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
11043 },
00066e97
SB
11044 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
11045 .type = HDA_FIXUP_FUNC,
11046 .v.func = alc662_fixup_aspire_ethos_hp,
11047 },
00066e97
SB
11048 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
11049 .type = HDA_FIXUP_PINS,
11050 .v.pins = (const struct hda_pintbl[]) {
11051 { 0x15, 0x92130110 }, /* front speakers */
11052 { 0x18, 0x99130111 }, /* center/subwoofer */
11053 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
11054 { }
11055 },
11056 .chained = true,
336820c4 11057 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
00066e97 11058 },
5af29028
KY
11059 [ALC671_FIXUP_HP_HEADSET_MIC2] = {
11060 .type = HDA_FIXUP_FUNC,
11061 .v.func = alc671_fixup_hp_headset_mic2,
11062 },
d858c706
JHP
11063 [ALC662_FIXUP_ACER_X2660G_HEADSET_MODE] = {
11064 .type = HDA_FIXUP_PINS,
11065 .v.pins = (const struct hda_pintbl[]) {
11066 { 0x1a, 0x02a1113c }, /* use as headset mic, without its own jack detect */
11067 { }
11068 },
11069 .chained = true,
11070 .chain_id = ALC662_FIXUP_USI_FUNC
11071 },
a124458a
JHP
11072 [ALC662_FIXUP_ACER_NITRO_HEADSET_MODE] = {
11073 .type = HDA_FIXUP_PINS,
11074 .v.pins = (const struct hda_pintbl[]) {
11075 { 0x1a, 0x01a11140 }, /* use as headset mic, without its own jack detect */
11076 { 0x1b, 0x0221144f },
11077 { }
11078 },
11079 .chained = true,
11080 .chain_id = ALC662_FIXUP_USI_FUNC
11081 },
a3fd1a98
HW
11082 [ALC668_FIXUP_ASUS_NO_HEADSET_MIC] = {
11083 .type = HDA_FIXUP_PINS,
11084 .v.pins = (const struct hda_pintbl[]) {
11085 { 0x1b, 0x04a1112c },
11086 { }
11087 },
11088 .chained = true,
11089 .chain_id = ALC668_FIXUP_HEADSET_MIC
11090 },
11091 [ALC668_FIXUP_HEADSET_MIC] = {
11092 .type = HDA_FIXUP_FUNC,
11093 .v.func = alc269_fixup_headset_mic,
11094 .chained = true,
11095 .chain_id = ALC668_FIXUP_MIC_DET_COEF
11096 },
11097 [ALC668_FIXUP_MIC_DET_COEF] = {
11098 .type = HDA_FIXUP_VERBS,
11099 .v.verbs = (const struct hda_verb[]) {
11100 { 0x20, AC_VERB_SET_COEF_INDEX, 0x15 },
11101 { 0x20, AC_VERB_SET_PROC_COEF, 0x0d60 },
11102 {}
11103 },
11104 },
d7f32791
KY
11105 [ALC897_FIXUP_LENOVO_HEADSET_MIC] = {
11106 .type = HDA_FIXUP_FUNC,
11107 .v.func = alc897_fixup_lenovo_headset_mic,
11108 },
11109 [ALC897_FIXUP_HEADSET_MIC_PIN] = {
11110 .type = HDA_FIXUP_PINS,
11111 .v.pins = (const struct hda_pintbl[]) {
11112 { 0x1a, 0x03a11050 },
11113 { }
11114 },
11115 .chained = true,
11116 .chain_id = ALC897_FIXUP_LENOVO_HEADSET_MIC
11117 },
6cb3b707
DH
11118};
11119
a9111321 11120static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 11121 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 11122 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 11123 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 11124 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 11125 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 11126 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 11127 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 11128 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
9edeb110 11129 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
a124458a 11130 SND_PCI_QUIRK(0x1025, 0x123c, "Acer Nitro N50-600", ALC662_FIXUP_ACER_NITRO_HEADSET_MODE),
d858c706 11131 SND_PCI_QUIRK(0x1025, 0x124e, "Acer 2660G", ALC662_FIXUP_ACER_X2660G_HEADSET_MODE),
73bdd597
DH
11132 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11133 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 11134 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 11135 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 11136 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 11137 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 11138 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
11139 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
11140 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 11141 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 11142 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
148ebf54 11143 SND_PCI_QUIRK(0x103c, 0x873e, "HP", ALC671_FIXUP_HP_HEADSET_MIC2),
882bd07f 11144 SND_PCI_QUIRK(0x103c, 0x885f, "HP 288 Pro G8", ALC671_FIXUP_HP_HEADSET_MIC2),
2da2dc9e 11145 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 11146 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
9d4dc584 11147 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 11148 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
9edeb110 11149 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
8e54b4ac 11150 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 11151 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
11152 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
11153 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
a3fd1a98 11154 SND_PCI_QUIRK(0x1043, 0x185d, "ASUS G551JW", ALC668_FIXUP_ASUS_NO_HEADSET_MIC),
c7efff92 11155 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 11156 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 11157 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 11158 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 11159 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 11160 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 11161 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 11162 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
5a873857 11163 SND_PCI_QUIRK(0x17aa, 0x1057, "Lenovo P360", ALC897_FIXUP_HEADSET_MIC_PIN),
d7f32791
KY
11164 SND_PCI_QUIRK(0x17aa, 0x32ca, "Lenovo ThinkCentre M80", ALC897_FIXUP_HEADSET_MIC_PIN),
11165 SND_PCI_QUIRK(0x17aa, 0x32cb, "Lenovo ThinkCentre M70", ALC897_FIXUP_HEADSET_MIC_PIN),
11166 SND_PCI_QUIRK(0x17aa, 0x32cf, "Lenovo ThinkCentre M950", ALC897_FIXUP_HEADSET_MIC_PIN),
11167 SND_PCI_QUIRK(0x17aa, 0x32f7, "Lenovo ThinkCentre M90", ALC897_FIXUP_HEADSET_MIC_PIN),
d4118588 11168 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 11169 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 11170 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 11171 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 11172 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
f1ec5be1 11173 SND_PCI_QUIRK(0x1b35, 0x1234, "CZC ET26", ALC662_FIXUP_CZC_ET26),
d2ebd479 11174 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
53c334ad
TI
11175
11176#if 0
11177 /* Below is a quirk table taken from the old code.
11178 * Basically the device should work as is without the fixup table.
11179 * If BIOS doesn't give a proper info, enable the corresponding
11180 * fixup entry.
7d7eb9ea 11181 */
53c334ad
TI
11182 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
11183 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
11184 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
11185 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
11186 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11187 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11188 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11189 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
11190 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
11191 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11192 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
11193 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
11194 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
11195 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
11196 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
11197 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11198 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
11199 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
11200 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11201 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11202 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11203 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11204 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
11205 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
11206 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
11207 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11208 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
11209 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
11210 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11211 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
11212 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11213 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11214 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
11215 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
11216 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
11217 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
11218 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
11219 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
11220 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
11221 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
11222 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
11223 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
11224 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11225 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
11226 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
11227 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
11228 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
11229 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
11230 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
11231 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
11232#endif
6cb3b707
DH
11233 {}
11234};
11235
1727a771 11236static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
11237 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
11238 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 11239 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 11240 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
11241 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
11242 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
11243 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
11244 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
11245 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
11246 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
11247 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
11248 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 11249 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 11250 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 11251 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 11252 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
11253 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
11254 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
11255 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
11256 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
11257 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
11258 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
11259 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
11260 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 11261 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
11262 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
11263 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
11264 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
11265 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
11266 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 11267 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
00066e97 11268 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
6be7948f
TB
11269 {}
11270};
6cb3b707 11271
532895c5 11272static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
11273 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11274 {0x17, 0x02211010},
11275 {0x18, 0x01a19030},
11276 {0x1a, 0x01813040},
11277 {0x21, 0x01014020}),
4b4e0e32
HW
11278 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
11279 {0x16, 0x01813030},
11280 {0x17, 0x02211010},
11281 {0x18, 0x01a19040},
11282 {0x21, 0x01014020}),
1f8b46cd 11283 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 11284 {0x14, 0x01014010},
1f8b46cd 11285 {0x18, 0x01a19020},
1f8b46cd 11286 {0x1a, 0x0181302f},
11580297 11287 {0x1b, 0x0221401f}),
76c2132e
DH
11288 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11289 {0x12, 0x99a30130},
11290 {0x14, 0x90170110},
11291 {0x15, 0x0321101f},
11580297 11292 {0x16, 0x03011020}),
76c2132e
DH
11293 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11294 {0x12, 0x99a30140},
11295 {0x14, 0x90170110},
11296 {0x15, 0x0321101f},
11580297 11297 {0x16, 0x03011020}),
76c2132e
DH
11298 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
11299 {0x12, 0x99a30150},
11300 {0x14, 0x90170110},
11301 {0x15, 0x0321101f},
11580297 11302 {0x16, 0x03011020}),
76c2132e 11303 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
11304 {0x14, 0x90170110},
11305 {0x15, 0x0321101f},
11580297 11306 {0x16, 0x03011020}),
76c2132e
DH
11307 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
11308 {0x12, 0x90a60130},
11309 {0x14, 0x90170110},
11580297 11310 {0x15, 0x0321101f}),
5af29028
KY
11311 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11312 {0x14, 0x01014010},
11313 {0x17, 0x90170150},
f2adbae0 11314 {0x19, 0x02a11060},
5af29028
KY
11315 {0x1b, 0x01813030},
11316 {0x21, 0x02211020}),
11317 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11318 {0x14, 0x01014010},
11319 {0x18, 0x01a19040},
11320 {0x1b, 0x01813030},
11321 {0x21, 0x02211020}),
11322 SND_HDA_PIN_QUIRK(0x10ec0671, 0x103c, "HP cPC", ALC671_FIXUP_HP_HEADSET_MIC2,
11323 {0x14, 0x01014020},
11324 {0x17, 0x90170110},
11325 {0x18, 0x01a19050},
11326 {0x1b, 0x01813040},
11327 {0x21, 0x02211030}),
532895c5
HW
11328 {}
11329};
11330
1d045db9
TI
11331/*
11332 */
bc9f98a9
KY
11333static int patch_alc662(struct hda_codec *codec)
11334{
11335 struct alc_spec *spec;
3de95173 11336 int err;
bc9f98a9 11337
3de95173
TI
11338 err = alc_alloc_spec(codec, 0x0b);
11339 if (err < 0)
11340 return err;
bc9f98a9 11341
3de95173 11342 spec = codec->spec;
1f0f4b80 11343
225068ab
TI
11344 spec->shutup = alc_eapd_shutup;
11345
53c334ad
TI
11346 /* handle multiple HPs as is */
11347 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
11348
2c3bf9ab
TI
11349 alc_fix_pll_init(codec, 0x20, 0x04, 15);
11350
7639a06c 11351 switch (codec->core.vendor_id) {
f3f9185f
KY
11352 case 0x10ec0668:
11353 spec->init_hook = alc668_restore_default_value;
11354 break;
f3f9185f 11355 }
8663ff75 11356
c9af753f
TI
11357 alc_pre_init(codec);
11358
1727a771 11359 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 11360 alc662_fixup_tbl, alc662_fixups);
0fc1e447 11361 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
1727a771 11362 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
11363
11364 alc_auto_parse_customize_define(codec);
11365
7504b6cd
TI
11366 if (has_cdefine_beep(codec))
11367 spec->gen.beep_nid = 0x01;
11368
1bb7e43e 11369 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 11370 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 11371 spec->cdefine.platform_type == 1) {
6134b1a2
WY
11372 err = alc_codec_rename(codec, "ALC272X");
11373 if (err < 0)
e16fb6d1 11374 goto error;
20ca0c35 11375 }
274693f3 11376
b9c5106c
TI
11377 /* automatic parse from the BIOS config */
11378 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
11379 if (err < 0)
11380 goto error;
bc9f98a9 11381
7504b6cd 11382 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 11383 switch (codec->core.vendor_id) {
da00c244 11384 case 0x10ec0662:
fea80fae 11385 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
11386 break;
11387 case 0x10ec0272:
11388 case 0x10ec0663:
11389 case 0x10ec0665:
9ad54547 11390 case 0x10ec0668:
fea80fae 11391 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
11392 break;
11393 case 0x10ec0273:
fea80fae 11394 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
11395 break;
11396 }
fea80fae
TI
11397 if (err < 0)
11398 goto error;
cec27c89 11399 }
2134ea4f 11400
1727a771 11401 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 11402
bc9f98a9 11403 return 0;
801f49d3 11404
e16fb6d1
TI
11405 error:
11406 alc_free(codec);
11407 return err;
b478b998
KY
11408}
11409
d1eb57f4
KY
11410/*
11411 * ALC680 support
11412 */
d1eb57f4 11413
d1eb57f4
KY
11414static int alc680_parse_auto_config(struct hda_codec *codec)
11415{
3e6179b8 11416 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
11417}
11418
d1eb57f4 11419/*
d1eb57f4 11420 */
d1eb57f4
KY
11421static int patch_alc680(struct hda_codec *codec)
11422{
d1eb57f4
KY
11423 int err;
11424
1f0f4b80 11425 /* ALC680 has no aa-loopback mixer */
3de95173
TI
11426 err = alc_alloc_spec(codec, 0);
11427 if (err < 0)
11428 return err;
1f0f4b80 11429
1ebec5f2
TI
11430 /* automatic parse from the BIOS config */
11431 err = alc680_parse_auto_config(codec);
11432 if (err < 0) {
11433 alc_free(codec);
11434 return err;
d1eb57f4
KY
11435 }
11436
d1eb57f4
KY
11437 return 0;
11438}
11439
1da177e4
LT
11440/*
11441 * patch entries
11442 */
b9a94a9c 11443static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 11444 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 11445 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
2a36c16e 11446 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
4231430d 11447 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
1948fc06 11448 HDA_CODEC_ENTRY(0x10ec0230, "ALC236", patch_alc269),
b9a94a9c
TI
11449 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
11450 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 11451 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 11452 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 11453 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
7fbdcd83 11454 HDA_CODEC_ENTRY(0x10ec0245, "ALC245", patch_alc269),
b9a94a9c
TI
11455 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
11456 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 11457 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
11458 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
11459 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
11460 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
11461 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
11462 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
11463 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
11464 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 11465 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
11466 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
11467 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
11468 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
11469 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
11470 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
11471 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 11472 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c 11473 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
630e3612 11474 HDA_CODEC_ENTRY(0x10ec0287, "ALC287", patch_alc269),
b9a94a9c 11475 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 11476 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
11477 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
11478 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
11479 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 11480 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 11481 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 11482 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 11483 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
1078bef0 11484 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
f0778871 11485 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
b9a94a9c
TI
11486 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
11487 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
11488 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
11489 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
11490 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
11491 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
11492 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
11493 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
11494 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
11495 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
11496 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
11497 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
11498 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
11499 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
11500 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
11501 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
11502 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
83629532 11503 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
78f4f7c2 11504 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
11505 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
11506 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
11507 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
11508 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
11509 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
11510 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
11511 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
11512 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
11513 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
11514 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
11515 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
e5782a5d 11516 HDA_CODEC_ENTRY(0x10ec0897, "ALC897", patch_alc662),
b9a94a9c
TI
11517 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
11518 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
6d9ffcff 11519 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
65553b12 11520 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 11521 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
1da177e4
LT
11522 {} /* terminator */
11523};
b9a94a9c 11524MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
11525
11526MODULE_LICENSE("GPL");
11527MODULE_DESCRIPTION("Realtek HD-audio codec");
11528
d8a766a1 11529static struct hda_codec_driver realtek_driver = {
b9a94a9c 11530 .id = snd_hda_id_realtek,
1289e9e8
TI
11531};
11532
d8a766a1 11533module_hda_codec_driver(realtek_driver);