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