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