]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
Merge tag 'asoc-fix-v5.5-rc5' of https://git.kernel.org/pub/scm/linux/kernel/git...
[thirdparty/linux.git] / sound / pci / hda / patch_realtek.c
CommitLineData
d0fa1179 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * Universal Interface for Intel High Definition Audio Codec
4 *
1d045db9 5 * HD audio interface patch for Realtek ALC codecs
1da177e4 6 *
df694daa
KY
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 9 * Takashi Iwai <tiwai@suse.de>
409a3e98 10 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
11 */
12
1da177e4
LT
13#include <linux/init.h>
14#include <linux/delay.h>
15#include <linux/slab.h>
16#include <linux/pci.h>
08fb0d0e 17#include <linux/dmi.h>
da155d5b 18#include <linux/module.h>
33f4acd3 19#include <linux/input.h>
1da177e4 20#include <sound/core.h>
9ad0e496 21#include <sound/jack.h>
be57bfff 22#include <sound/hda_codec.h>
1da177e4 23#include "hda_local.h"
23d30f28 24#include "hda_auto_parser.h"
1835a0f9 25#include "hda_jack.h"
08c189f2 26#include "hda_generic.h"
1da177e4 27
cd63a5ff
TI
28/* keep halting ALC5505 DSP, for power saving */
29#define HALT_REALTEK_ALC5505
30
4a79ba34
TI
31/* extra amp-initialization sequence types */
32enum {
1c76aa5f 33 ALC_INIT_UNDEFINED,
4a79ba34
TI
34 ALC_INIT_NONE,
35 ALC_INIT_DEFAULT,
4a79ba34
TI
36};
37
73bdd597
DH
38enum {
39 ALC_HEADSET_MODE_UNKNOWN,
40 ALC_HEADSET_MODE_UNPLUGGED,
41 ALC_HEADSET_MODE_HEADSET,
42 ALC_HEADSET_MODE_MIC,
43 ALC_HEADSET_MODE_HEADPHONE,
44};
45
46enum {
47 ALC_HEADSET_TYPE_UNKNOWN,
48 ALC_HEADSET_TYPE_CTIA,
49 ALC_HEADSET_TYPE_OMTP,
50};
51
c7b60a89
HW
52enum {
53 ALC_KEY_MICMUTE_INDEX,
54};
55
da00c244
KY
56struct alc_customize_define {
57 unsigned int sku_cfg;
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
64 unsigned int swap:1;
65 unsigned int override:1;
90622917 66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
67};
68
1da177e4 69struct alc_spec {
08c189f2 70 struct hda_gen_spec gen; /* must be at head */
23d30f28 71
1da177e4 72 /* codec parameterization */
da00c244 73 struct alc_customize_define cdefine;
08c189f2 74 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 75
5579cd6f
TI
76 /* GPIO bits */
77 unsigned int gpio_mask;
78 unsigned int gpio_dir;
79 unsigned int gpio_data;
215c850c 80 bool gpio_write_delay; /* add a delay before writing gpio_data */
5579cd6f 81
08fb0d0e
TI
82 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
83 int mute_led_polarity;
84 hda_nid_t mute_led_nid;
9c5dc3bf 85 hda_nid_t cap_mute_led_nid;
08fb0d0e 86
0f32fd19
TI
87 unsigned int gpio_mute_led_mask;
88 unsigned int gpio_mic_led_mask;
9f5c6faf 89
73bdd597
DH
90 hda_nid_t headset_mic_pin;
91 hda_nid_t headphone_mic_pin;
92 int current_headset_mode;
93 int current_headset_type;
94
ae6b813a
TI
95 /* hooks */
96 void (*init_hook)(struct hda_codec *codec);
83012a7c 97#ifdef CONFIG_PM
c97259df 98 void (*power_hook)(struct hda_codec *codec);
f5de24b0 99#endif
1c716153 100 void (*shutup)(struct hda_codec *codec);
70a0976b 101 void (*reboot_notify)(struct hda_codec *codec);
d922b51d 102
4a79ba34 103 int init_amp;
d433a678 104 int codec_variant; /* flag for other variants */
97a26570
KY
105 unsigned int has_alc5505_dsp:1;
106 unsigned int no_depop_delay:1;
693abe11 107 unsigned int done_hp_init:1;
c0ca5ece 108 unsigned int no_shutup_pins:1;
d3ba58bb 109 unsigned int ultra_low_power:1;
e64f14f4 110
2c3bf9ab
TI
111 /* for PLL fix */
112 hda_nid_t pll_nid;
113 unsigned int pll_coef_idx, pll_coef_bit;
1bb7e43e 114 unsigned int coef0;
33f4acd3 115 struct input_dev *kb_dev;
c7b60a89 116 u8 alc_mute_keycode_map[1];
df694daa
KY
117};
118
f2a227cd
TI
119/*
120 * COEF access helper functions
121 */
122
123static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
124 unsigned int coef_idx)
125{
126 unsigned int val;
127
128 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
129 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
130 return val;
131}
132
133#define alc_read_coef_idx(codec, coef_idx) \
134 alc_read_coefex_idx(codec, 0x20, coef_idx)
135
136static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
137 unsigned int coef_idx, unsigned int coef_val)
138{
139 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
140 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
141}
142
143#define alc_write_coef_idx(codec, coef_idx, coef_val) \
144 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
145
98b24883
TI
146static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
147 unsigned int coef_idx, unsigned int mask,
148 unsigned int bits_set)
149{
150 unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
151
152 if (val != -1)
153 alc_write_coefex_idx(codec, nid, coef_idx,
154 (val & ~mask) | bits_set);
155}
156
157#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
158 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
159
f2a227cd
TI
160/* a special bypass for COEF 0; read the cached value at the second time */
161static unsigned int alc_get_coef0(struct hda_codec *codec)
162{
163 struct alc_spec *spec = codec->spec;
164
165 if (!spec->coef0)
166 spec->coef0 = alc_read_coef_idx(codec, 0);
167 return spec->coef0;
168}
169
54db6c39
TI
170/* coef writes/updates batch */
171struct coef_fw {
172 unsigned char nid;
173 unsigned char idx;
174 unsigned short mask;
175 unsigned short val;
176};
177
178#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
179 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
180#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
181#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
182#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
183
184static void alc_process_coef_fw(struct hda_codec *codec,
185 const struct coef_fw *fw)
186{
187 for (; fw->nid; fw++) {
188 if (fw->mask == (unsigned short)-1)
189 alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
190 else
191 alc_update_coefex_idx(codec, fw->nid, fw->idx,
192 fw->mask, fw->val);
193 }
194}
195
df694daa 196/*
1d045db9 197 * GPIO setup tables, used in initialization
df694daa 198 */
5579cd6f 199
bc9f98a9 200/* Enable GPIO mask and set output */
5579cd6f
TI
201static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
202{
203 struct alc_spec *spec = codec->spec;
bc9f98a9 204
5579cd6f
TI
205 spec->gpio_mask |= mask;
206 spec->gpio_dir |= mask;
207 spec->gpio_data |= mask;
208}
bc9f98a9 209
5579cd6f
TI
210static void alc_write_gpio_data(struct hda_codec *codec)
211{
212 struct alc_spec *spec = codec->spec;
213
214 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
215 spec->gpio_data);
216}
217
aaf312de
TI
218static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
219 bool on)
220{
221 struct alc_spec *spec = codec->spec;
222 unsigned int oldval = spec->gpio_data;
223
224 if (on)
225 spec->gpio_data |= mask;
226 else
227 spec->gpio_data &= ~mask;
228 if (oldval != spec->gpio_data)
229 alc_write_gpio_data(codec);
230}
231
5579cd6f
TI
232static void alc_write_gpio(struct hda_codec *codec)
233{
234 struct alc_spec *spec = codec->spec;
235
236 if (!spec->gpio_mask)
237 return;
238
239 snd_hda_codec_write(codec, codec->core.afg, 0,
240 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
241 snd_hda_codec_write(codec, codec->core.afg, 0,
242 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
215c850c
TI
243 if (spec->gpio_write_delay)
244 msleep(1);
5579cd6f
TI
245 alc_write_gpio_data(codec);
246}
247
248static void alc_fixup_gpio(struct hda_codec *codec, int action,
249 unsigned int mask)
250{
251 if (action == HDA_FIXUP_ACT_PRE_PROBE)
252 alc_setup_gpio(codec, mask);
253}
254
255static void alc_fixup_gpio1(struct hda_codec *codec,
256 const struct hda_fixup *fix, int action)
257{
258 alc_fixup_gpio(codec, action, 0x01);
259}
260
261static void alc_fixup_gpio2(struct hda_codec *codec,
262 const struct hda_fixup *fix, int action)
263{
264 alc_fixup_gpio(codec, action, 0x02);
265}
266
267static void alc_fixup_gpio3(struct hda_codec *codec,
268 const struct hda_fixup *fix, int action)
269{
270 alc_fixup_gpio(codec, action, 0x03);
271}
bdd148a3 272
ae065f1c
TI
273static void alc_fixup_gpio4(struct hda_codec *codec,
274 const struct hda_fixup *fix, int action)
275{
276 alc_fixup_gpio(codec, action, 0x04);
277}
278
2c3bf9ab
TI
279/*
280 * Fix hardware PLL issue
281 * On some codecs, the analog PLL gating control must be off while
282 * the default value is 1.
283 */
284static void alc_fix_pll(struct hda_codec *codec)
285{
286 struct alc_spec *spec = codec->spec;
2c3bf9ab 287
98b24883
TI
288 if (spec->pll_nid)
289 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
290 1 << spec->pll_coef_bit, 0);
2c3bf9ab
TI
291}
292
293static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
294 unsigned int coef_idx, unsigned int coef_bit)
295{
296 struct alc_spec *spec = codec->spec;
297 spec->pll_nid = nid;
298 spec->pll_coef_idx = coef_idx;
299 spec->pll_coef_bit = coef_bit;
300 alc_fix_pll(codec);
301}
302
cf5a2279 303/* update the master volume per volume-knob's unsol event */
1a4f69d5
TI
304static void alc_update_knob_master(struct hda_codec *codec,
305 struct hda_jack_callback *jack)
cf5a2279
TI
306{
307 unsigned int val;
308 struct snd_kcontrol *kctl;
309 struct snd_ctl_elem_value *uctl;
310
311 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
312 if (!kctl)
313 return;
314 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
315 if (!uctl)
316 return;
2ebab40e 317 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
318 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
319 val &= HDA_AMP_VOLMASK;
320 uctl->value.integer.value[0] = val;
321 uctl->value.integer.value[1] = val;
322 kctl->put(kctl, uctl);
323 kfree(uctl);
324}
325
29adc4b9 326static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 327{
29adc4b9
DH
328 /* For some reason, the res given from ALC880 is broken.
329 Here we adjust it properly. */
330 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
331}
332
394c97f8
KY
333/* Change EAPD to verb control */
334static void alc_fill_eapd_coef(struct hda_codec *codec)
335{
336 int coef;
337
338 coef = alc_get_coef0(codec);
339
7639a06c 340 switch (codec->core.vendor_id) {
394c97f8
KY
341 case 0x10ec0262:
342 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
343 break;
344 case 0x10ec0267:
345 case 0x10ec0268:
346 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
347 break;
348 case 0x10ec0269:
349 if ((coef & 0x00f0) == 0x0010)
350 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
351 if ((coef & 0x00f0) == 0x0020)
352 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
353 if ((coef & 0x00f0) == 0x0030)
354 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
355 break;
356 case 0x10ec0280:
357 case 0x10ec0284:
358 case 0x10ec0290:
359 case 0x10ec0292:
360 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
361 break;
4231430d 362 case 0x10ec0225:
44be77c5
TI
363 case 0x10ec0295:
364 case 0x10ec0299:
365 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
366 /* fallthrough */
367 case 0x10ec0215:
394c97f8 368 case 0x10ec0233:
ea04a1db 369 case 0x10ec0235:
394c97f8 370 case 0x10ec0255:
f429e7e4 371 case 0x10ec0257:
394c97f8
KY
372 case 0x10ec0282:
373 case 0x10ec0283:
374 case 0x10ec0286:
375 case 0x10ec0288:
0a6f0600 376 case 0x10ec0285:
506b62c3 377 case 0x10ec0298:
0a6f0600 378 case 0x10ec0289:
1078bef0 379 case 0x10ec0300:
394c97f8
KY
380 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
381 break;
e1e8c1fd
KY
382 case 0x10ec0236:
383 case 0x10ec0256:
384 alc_write_coef_idx(codec, 0x36, 0x5757);
385 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
386 break;
3aabf94c
KY
387 case 0x10ec0275:
388 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
389 break;
394c97f8
KY
390 case 0x10ec0293:
391 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
392 break;
dcd4f0db
KY
393 case 0x10ec0234:
394 case 0x10ec0274:
395 case 0x10ec0294:
6fbae35a
KY
396 case 0x10ec0700:
397 case 0x10ec0701:
398 case 0x10ec0703:
83629532 399 case 0x10ec0711:
dcd4f0db
KY
400 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
401 break;
394c97f8
KY
402 case 0x10ec0662:
403 if ((coef & 0x00f0) == 0x0030)
404 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
405 break;
406 case 0x10ec0272:
407 case 0x10ec0273:
408 case 0x10ec0663:
409 case 0x10ec0665:
410 case 0x10ec0670:
411 case 0x10ec0671:
412 case 0x10ec0672:
413 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
414 break;
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 */
39fa84e9 468 static hda_nid_t pins[] = {
af95b414 469 0x0f, 0x10, 0x14, 0x15, 0x17, 0
39fa84e9
TI
470 };
471 hda_nid_t *p;
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 */
02a237b2
TI
1940 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1941 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1942 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1943 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1944 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1945 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1727a771 1946 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb
TI
1947 /* restore the connections */
1948 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1949 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1950 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1951 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1952 snd_hda_override_conn_list(codec, 0x1a, 5, 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
TI
1959{
1960 struct alc_spec *spec = codec->spec;
9f660a1c 1961 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
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{
1997 static hda_nid_t nids[2] = { 0x18, 0x1a };
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{
2007 static hda_nid_t nids[1] = { 0x18 };
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{
2017 static hda_nid_t nids[2] = { 0x18, 0x19 };
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{
2099 hda_nid_t conn1[1] = { 0x0c };
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 */
2108 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
2109 snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
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 */
5249 static hda_nid_t preferred_pairs[] = {
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. */
5521 hda_nid_t conn1[2] = { 0x0c };
5522 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5523 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
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
5538 hda_nid_t conn1[1] = { 0x0c };
5539 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
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) {
5548 hda_nid_t conn[2] = { 0x02, 0x03 };
5549 snd_hda_override_conn_list(codec, 0x17, 2, conn);
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) {
5558 hda_nid_t conn[1] = { 0x02 };
5559 snd_hda_override_conn_list(codec, 0x17, 1, conn);
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;
5637 static hda_nid_t preferred_pairs[] = {
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,
8b99aba7
TI
5850 ALC292_FIXUP_DELL_E7X,
5851 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 5852 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
54324221 5853 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
977e6276 5854 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 5855 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 5856 ALC275_FIXUP_DELL_XPS,
8c69729b 5857 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
1099f484 5858 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2,
23adc192 5859 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 5860 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 5861 ALC255_FIXUP_DELL_SPK_NOISE,
d1dd4211 5862 ALC225_FIXUP_DISABLE_MIC_VREF,
2ae95577 5863 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 5864 ALC295_FIXUP_DISABLE_DAC3,
d2cd795c 5865 ALC285_FIXUP_SPEAKER2_TO_DAC1,
f883982d 5866 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 5867 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 5868 ALC292_FIXUP_TPT460,
dd9aa335 5869 ALC298_FIXUP_SPK_VOLUME,
fd06c77e 5870 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 5871 ALC269_FIXUP_ATIV_BOOK_8,
9eb5d0e6 5872 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
5873 ALC256_FIXUP_ASUS_HEADSET_MODE,
5874 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 5875 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
5876 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5877 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 5878 ALC233_FIXUP_LENOVO_MULTI_CODECS,
ea5c7eba 5879 ALC233_FIXUP_ACER_HEADSET_MIC,
f33f79f3 5880 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 5881 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
b84e8436 5882 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
5883 ALC274_FIXUP_DELL_BIND_DACS,
5884 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
61fcf8ec 5885 ALC298_FIXUP_TPT470_DOCK,
ae104a21 5886 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 5887 ALC255_FIXUP_DELL_HEADSET_MIC,
0fbf21c3 5888 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
a2ef03fe 5889 ALC298_FIXUP_HUAWEI_MBX_STEREO,
bbf8ff6b 5890 ALC295_FIXUP_HP_X360,
8a328ac1 5891 ALC221_FIXUP_HP_HEADSET_MIC,
c4cfcf6f 5892 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
e8ed64b0 5893 ALC295_FIXUP_HP_AUTO_MUTE,
33aaebd4 5894 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
d8ae458e 5895 ALC294_FIXUP_ASUS_MIC,
4e051106
JHP
5896 ALC294_FIXUP_ASUS_HEADSET_MIC,
5897 ALC294_FIXUP_ASUS_SPK,
89e3a568 5898 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
c8c6ee61 5899 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
cbc05fd6 5900 ALC255_FIXUP_ACER_HEADSET_MIC,
10f5b1b8 5901 ALC295_FIXUP_CHROME_BOOK,
8983eb60 5902 ALC225_FIXUP_HEADSET_JACK,
136824ef
KY
5903 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
5904 ALC225_FIXUP_WYSE_AUTO_MUTE,
5905 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
667a8f73 5906 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
8c8967a7 5907 ALC256_FIXUP_ASUS_HEADSET_MIC,
e1037354 5908 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
e2a829b3 5909 ALC299_FIXUP_PREDATOR_SPK,
bd9c10bc 5910 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
e79c2269
KY
5911 ALC289_FIXUP_DELL_SPK2,
5912 ALC289_FIXUP_DUAL_SPK,
48e01504
CC
5913 ALC294_FIXUP_SPK2_TO_DAC1,
5914 ALC294_FIXUP_ASUS_DUAL_SPK,
5915
f1d4e28b
KY
5916};
5917
1727a771 5918static const struct hda_fixup alc269_fixups[] = {
1d045db9 5919 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
5920 .type = HDA_FIXUP_PINCTLS,
5921 .v.pins = (const struct hda_pintbl[]) {
5922 {0x19, PIN_VREFGRD},
1d045db9
TI
5923 {}
5924 }
f1d4e28b 5925 },
1d045db9 5926 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
5927 .type = HDA_FIXUP_FUNC,
5928 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
5929 .chained = true,
5930 .chain_id = ALC269_FIXUP_SONY_VAIO
5931 },
5932 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 5933 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5934 .v.verbs = (const struct hda_verb[]) {
5935 /* Enables internal speaker */
5936 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5937 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5938 {}
5939 }
5940 },
5941 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 5942 .type = HDA_FIXUP_FUNC,
23d30f28 5943 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
5944 },
5945 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
5946 .type = HDA_FIXUP_PINS,
5947 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
5948 { 0x17, 0x99130111 }, /* subwoofer */
5949 { }
5950 }
5951 },
5952 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 5953 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5954 .v.verbs = (const struct hda_verb[]) {
5955 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5956 {}
5957 }
5958 },
5959 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 5960 .type = HDA_FIXUP_FUNC,
1d045db9
TI
5961 .v.func = alc269_fixup_hweq,
5962 .chained = true,
5963 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5964 },
e9bd7d5c
TI
5965 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5966 .type = HDA_FIXUP_FUNC,
5967 .v.func = alc_fixup_disable_aamix,
5968 .chained = true,
5969 .chain_id = ALC269_FIXUP_SONY_VAIO
5970 },
1d045db9 5971 [ALC271_FIXUP_DMIC] = {
1727a771 5972 .type = HDA_FIXUP_FUNC,
1d045db9 5973 .v.func = alc271_fixup_dmic,
f1d4e28b 5974 },
017f2a10 5975 [ALC269_FIXUP_PCM_44K] = {
1727a771 5976 .type = HDA_FIXUP_FUNC,
017f2a10 5977 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
5978 .chained = true,
5979 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 5980 },
adabb3ec 5981 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 5982 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
5983 .v.func = alc269_fixup_stereo_dmic,
5984 },
7c478f03
DH
5985 [ALC269_FIXUP_HEADSET_MIC] = {
5986 .type = HDA_FIXUP_FUNC,
5987 .v.func = alc269_fixup_headset_mic,
5988 },
24519911 5989 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 5990 .type = HDA_FIXUP_FUNC,
24519911
TI
5991 .v.func = alc269_fixup_quanta_mute,
5992 },
5993 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
5994 .type = HDA_FIXUP_PINS,
5995 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
5996 { 0x1a, 0x2101103f }, /* dock line-out */
5997 { 0x1b, 0x23a11040 }, /* dock mic-in */
5998 { }
5999 },
6000 .chained = true,
6001 .chain_id = ALC269_FIXUP_QUANTA_MUTE
6002 },
2041d564
DH
6003 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
6004 .type = HDA_FIXUP_PINS,
6005 .v.pins = (const struct hda_pintbl[]) {
6006 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
6007 { }
6008 },
6009 },
cc7016ab
TI
6010 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
6011 .type = HDA_FIXUP_PINS,
6012 .v.pins = (const struct hda_pintbl[]) {
6013 { 0x21, 0x0221102f }, /* HP out */
6014 { }
6015 },
6016 },
4df3fd17
TI
6017 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
6018 .type = HDA_FIXUP_FUNC,
6019 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
6020 },
fdcc968a
JMG
6021 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
6022 .type = HDA_FIXUP_FUNC,
6023 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
6024 },
a4297b5d 6025 [ALC269_FIXUP_AMIC] = {
1727a771
TI
6026 .type = HDA_FIXUP_PINS,
6027 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6028 { 0x14, 0x99130110 }, /* speaker */
6029 { 0x15, 0x0121401f }, /* HP out */
6030 { 0x18, 0x01a19c20 }, /* mic */
6031 { 0x19, 0x99a3092f }, /* int-mic */
6032 { }
6033 },
6034 },
6035 [ALC269_FIXUP_DMIC] = {
1727a771
TI
6036 .type = HDA_FIXUP_PINS,
6037 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6038 { 0x12, 0x99a3092f }, /* int-mic */
6039 { 0x14, 0x99130110 }, /* speaker */
6040 { 0x15, 0x0121401f }, /* HP out */
6041 { 0x18, 0x01a19c20 }, /* mic */
6042 { }
6043 },
6044 },
6045 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
6046 .type = HDA_FIXUP_PINS,
6047 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6048 { 0x14, 0x99130110 }, /* speaker */
6049 { 0x18, 0x01a19c20 }, /* mic */
6050 { 0x19, 0x99a3092f }, /* int-mic */
6051 { 0x21, 0x0121401f }, /* HP out */
6052 { }
6053 },
6054 },
2267ea97 6055 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
6056 .type = HDA_FIXUP_PINS,
6057 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6058 { 0x12, 0x99a3092f }, /* int-mic */
6059 { 0x14, 0x99130110 }, /* speaker */
6060 { 0x18, 0x01a19c20 }, /* mic */
6061 { 0x21, 0x0121401f }, /* HP out */
6062 { }
6063 },
6064 },
08fb0d0e 6065 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 6066 .type = HDA_FIXUP_FUNC,
08fb0d0e 6067 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 6068 },
d06ac143
DH
6069 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
6070 .type = HDA_FIXUP_FUNC,
6071 .v.func = alc269_fixup_hp_mute_led_mic1,
6072 },
08fb0d0e 6073 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 6074 .type = HDA_FIXUP_FUNC,
08fb0d0e 6075 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 6076 },
7f783bd5
TB
6077 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
6078 .type = HDA_FIXUP_FUNC,
6079 .v.func = alc269_fixup_hp_mute_led_mic3,
e8ed64b0
GKK
6080 .chained = true,
6081 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7f783bd5 6082 },
9f5c6faf
TI
6083 [ALC269_FIXUP_HP_GPIO_LED] = {
6084 .type = HDA_FIXUP_FUNC,
6085 .v.func = alc269_fixup_hp_gpio_led,
6086 },
9c5dc3bf
KY
6087 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
6088 .type = HDA_FIXUP_FUNC,
6089 .v.func = alc269_fixup_hp_gpio_mic1_led,
6090 },
6091 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
6092 .type = HDA_FIXUP_FUNC,
6093 .v.func = alc269_fixup_hp_line1_mic1_led,
6094 },
693b613d 6095 [ALC269_FIXUP_INV_DMIC] = {
1727a771 6096 .type = HDA_FIXUP_FUNC,
9d36a7dc 6097 .v.func = alc_fixup_inv_dmic,
693b613d 6098 },
9b745ab8
TI
6099 [ALC269_FIXUP_NO_SHUTUP] = {
6100 .type = HDA_FIXUP_FUNC,
6101 .v.func = alc_fixup_no_shutup,
6102 },
108cc108 6103 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
6104 .type = HDA_FIXUP_PINS,
6105 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
6106 { 0x19, 0x23a11040 }, /* dock mic */
6107 { 0x1b, 0x2121103f }, /* dock headphone */
6108 { }
6109 },
6110 .chained = true,
6111 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6112 },
6113 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 6114 .type = HDA_FIXUP_FUNC,
108cc108 6115 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
6116 .chained = true,
6117 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 6118 },
73bdd597
DH
6119 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6120 .type = HDA_FIXUP_PINS,
6121 .v.pins = (const struct hda_pintbl[]) {
6122 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6123 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6124 { }
6125 },
6126 .chained = true,
6127 .chain_id = ALC269_FIXUP_HEADSET_MODE
6128 },
6129 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6130 .type = HDA_FIXUP_PINS,
6131 .v.pins = (const struct hda_pintbl[]) {
6132 { 0x16, 0x21014020 }, /* dock line out */
6133 { 0x19, 0x21a19030 }, /* dock mic */
6134 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6135 { }
6136 },
6137 .chained = true,
6138 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6139 },
338cae56
DH
6140 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
6141 .type = HDA_FIXUP_PINS,
6142 .v.pins = (const struct hda_pintbl[]) {
6143 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6144 { }
6145 },
6146 .chained = true,
6147 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6148 },
fcc6c877
KY
6149 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
6150 .type = HDA_FIXUP_PINS,
6151 .v.pins = (const struct hda_pintbl[]) {
6152 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6153 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6154 { }
6155 },
6156 .chained = true,
6157 .chain_id = ALC269_FIXUP_HEADSET_MODE
6158 },
73bdd597
DH
6159 [ALC269_FIXUP_HEADSET_MODE] = {
6160 .type = HDA_FIXUP_FUNC,
6161 .v.func = alc_fixup_headset_mode,
6676f308 6162 .chained = true,
b3802783 6163 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
73bdd597
DH
6164 },
6165 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6166 .type = HDA_FIXUP_FUNC,
6167 .v.func = alc_fixup_headset_mode_no_hp_mic,
6168 },
7819717b
TI
6169 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
6170 .type = HDA_FIXUP_PINS,
6171 .v.pins = (const struct hda_pintbl[]) {
6172 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
6173 { }
6174 },
6175 .chained = true,
6176 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6177 },
88cfcf86
DH
6178 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
6179 .type = HDA_FIXUP_PINS,
6180 .v.pins = (const struct hda_pintbl[]) {
6181 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6182 { }
6183 },
fbc78ad6
DH
6184 .chained = true,
6185 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 6186 },
0fbf21c3 6187 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
8ac51bbc
AB
6188 .type = HDA_FIXUP_PINS,
6189 .v.pins = (const struct hda_pintbl[]) {
6190 {0x12, 0x90a60130},
6191 {0x13, 0x40000000},
6192 {0x14, 0x90170110},
6193 {0x18, 0x411111f0},
6194 {0x19, 0x04a11040},
6195 {0x1a, 0x411111f0},
6196 {0x1b, 0x90170112},
6197 {0x1d, 0x40759a05},
6198 {0x1e, 0x411111f0},
6199 {0x21, 0x04211020},
6200 { }
6201 },
e2744fd7
AB
6202 .chained = true,
6203 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8ac51bbc 6204 },
a2ef03fe
TE
6205 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
6206 .type = HDA_FIXUP_FUNC,
6207 .v.func = alc298_fixup_huawei_mbx_stereo,
6208 .chained = true,
6209 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6210 },
d240d1dc
DH
6211 [ALC269_FIXUP_ASUS_X101_FUNC] = {
6212 .type = HDA_FIXUP_FUNC,
6213 .v.func = alc269_fixup_x101_headset_mic,
6214 },
6215 [ALC269_FIXUP_ASUS_X101_VERB] = {
6216 .type = HDA_FIXUP_VERBS,
6217 .v.verbs = (const struct hda_verb[]) {
6218 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
6219 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
6220 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
6221 { }
6222 },
6223 .chained = true,
6224 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
6225 },
6226 [ALC269_FIXUP_ASUS_X101] = {
6227 .type = HDA_FIXUP_PINS,
6228 .v.pins = (const struct hda_pintbl[]) {
6229 { 0x18, 0x04a1182c }, /* Headset mic */
6230 { }
6231 },
6232 .chained = true,
6233 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
6234 },
08a978db 6235 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
6236 .type = HDA_FIXUP_PINS,
6237 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
6238 { 0x14, 0x99130110 }, /* speaker */
6239 { 0x19, 0x01a19c20 }, /* mic */
6240 { 0x1b, 0x99a7012f }, /* int-mic */
6241 { 0x21, 0x0121401f }, /* HP out */
6242 { }
6243 },
6244 },
6245 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 6246 .type = HDA_FIXUP_FUNC,
08a978db
DR
6247 .v.func = alc271_hp_gate_mic_jack,
6248 .chained = true,
6249 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6250 },
b1e8972e
OR
6251 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
6252 .type = HDA_FIXUP_FUNC,
6253 .v.func = alc269_fixup_limit_int_mic_boost,
6254 .chained = true,
6255 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
6256 },
42397004
DR
6257 [ALC269_FIXUP_ACER_AC700] = {
6258 .type = HDA_FIXUP_PINS,
6259 .v.pins = (const struct hda_pintbl[]) {
6260 { 0x12, 0x99a3092f }, /* int-mic */
6261 { 0x14, 0x99130110 }, /* speaker */
6262 { 0x18, 0x03a11c20 }, /* mic */
6263 { 0x1e, 0x0346101e }, /* SPDIF1 */
6264 { 0x21, 0x0321101f }, /* HP out */
6265 { }
6266 },
6267 .chained = true,
6268 .chain_id = ALC271_FIXUP_DMIC,
6269 },
3e0d611b
DH
6270 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
6271 .type = HDA_FIXUP_FUNC,
6272 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
6273 .chained = true,
6274 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 6275 },
2cede303
OR
6276 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
6277 .type = HDA_FIXUP_FUNC,
6278 .v.func = alc269_fixup_limit_int_mic_boost,
6279 .chained = true,
6280 .chain_id = ALC269VB_FIXUP_DMIC,
6281 },
23870831
TI
6282 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
6283 .type = HDA_FIXUP_VERBS,
6284 .v.verbs = (const struct hda_verb[]) {
6285 /* class-D output amp +5dB */
6286 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
6287 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
6288 {}
6289 },
6290 .chained = true,
6291 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
6292 },
8e35cd4a
DH
6293 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
6294 .type = HDA_FIXUP_FUNC,
6295 .v.func = alc269_fixup_limit_int_mic_boost,
6296 .chained = true,
6297 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
6298 },
02b504d9
AA
6299 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
6300 .type = HDA_FIXUP_PINS,
6301 .v.pins = (const struct hda_pintbl[]) {
6302 { 0x12, 0x99a3092f }, /* int-mic */
6303 { 0x18, 0x03a11d20 }, /* mic */
6304 { 0x19, 0x411111f0 }, /* Unused bogus pin */
6305 { }
6306 },
6307 },
cd217a63
KY
6308 [ALC283_FIXUP_CHROME_BOOK] = {
6309 .type = HDA_FIXUP_FUNC,
6310 .v.func = alc283_fixup_chromebook,
6311 },
0202e99c
KY
6312 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
6313 .type = HDA_FIXUP_FUNC,
6314 .v.func = alc283_fixup_sense_combo_jack,
6315 .chained = true,
6316 .chain_id = ALC283_FIXUP_CHROME_BOOK,
6317 },
7bba2157
TI
6318 [ALC282_FIXUP_ASUS_TX300] = {
6319 .type = HDA_FIXUP_FUNC,
6320 .v.func = alc282_fixup_asus_tx300,
6321 },
1bb3e062
KY
6322 [ALC283_FIXUP_INT_MIC] = {
6323 .type = HDA_FIXUP_VERBS,
6324 .v.verbs = (const struct hda_verb[]) {
6325 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
6326 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
6327 { }
6328 },
6329 .chained = true,
6330 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6331 },
0f4881dc
DH
6332 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
6333 .type = HDA_FIXUP_PINS,
6334 .v.pins = (const struct hda_pintbl[]) {
6335 { 0x17, 0x90170112 }, /* subwoofer */
6336 { }
6337 },
6338 .chained = true,
6339 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6340 },
6341 [ALC290_FIXUP_SUBWOOFER] = {
6342 .type = HDA_FIXUP_PINS,
6343 .v.pins = (const struct hda_pintbl[]) {
6344 { 0x17, 0x90170112 }, /* subwoofer */
6345 { }
6346 },
6347 .chained = true,
6348 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
6349 },
338cae56
DH
6350 [ALC290_FIXUP_MONO_SPEAKERS] = {
6351 .type = HDA_FIXUP_FUNC,
6352 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
6353 },
6354 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
6355 .type = HDA_FIXUP_FUNC,
6356 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
6357 .chained = true,
6358 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6359 },
b67ae3f1
DH
6360 [ALC269_FIXUP_THINKPAD_ACPI] = {
6361 .type = HDA_FIXUP_FUNC,
d5a6cabf 6362 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
6363 .chained = true,
6364 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 6365 },
56f27013
DH
6366 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
6367 .type = HDA_FIXUP_FUNC,
6368 .v.func = alc_fixup_inv_dmic,
6369 .chained = true,
6370 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6371 },
5824ce8d 6372 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
17d30460
HW
6373 .type = HDA_FIXUP_PINS,
6374 .v.pins = (const struct hda_pintbl[]) {
6375 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6376 { }
5824ce8d
CC
6377 },
6378 .chained = true,
17d30460 6379 .chain_id = ALC255_FIXUP_HEADSET_MODE
5824ce8d 6380 },
615966ad
CC
6381 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6382 .type = HDA_FIXUP_PINS,
6383 .v.pins = (const struct hda_pintbl[]) {
6384 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6385 { }
6386 },
6387 .chained = true,
6388 .chain_id = ALC255_FIXUP_HEADSET_MODE
6389 },
9a22a8f5
KY
6390 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6391 .type = HDA_FIXUP_PINS,
6392 .v.pins = (const struct hda_pintbl[]) {
6393 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6394 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6395 { }
6396 },
6397 .chained = true,
6398 .chain_id = ALC255_FIXUP_HEADSET_MODE
6399 },
31278997
KY
6400 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6401 .type = HDA_FIXUP_PINS,
6402 .v.pins = (const struct hda_pintbl[]) {
6403 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6404 { }
6405 },
6406 .chained = true,
6407 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6408 },
9a22a8f5
KY
6409 [ALC255_FIXUP_HEADSET_MODE] = {
6410 .type = HDA_FIXUP_FUNC,
6411 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a 6412 .chained = true,
b3802783 6413 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
9a22a8f5 6414 },
31278997
KY
6415 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6416 .type = HDA_FIXUP_FUNC,
6417 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
6418 },
a22aa26f
KY
6419 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6420 .type = HDA_FIXUP_PINS,
6421 .v.pins = (const struct hda_pintbl[]) {
6422 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6423 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6424 { }
6425 },
6426 .chained = true,
6427 .chain_id = ALC269_FIXUP_HEADSET_MODE
6428 },
1c37c223 6429 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 6430 .type = HDA_FIXUP_FUNC,
7f57d803 6431 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
6432 .chained = true,
6433 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6434 },
9a811230
TI
6435 [ALC292_FIXUP_TPT440] = {
6436 .type = HDA_FIXUP_FUNC,
157f0b7f 6437 .v.func = alc_fixup_disable_aamix,
9a811230
TI
6438 .chained = true,
6439 .chain_id = ALC292_FIXUP_TPT440_DOCK,
6440 },
abaa2274 6441 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
6442 .type = HDA_FIXUP_PINS,
6443 .v.pins = (const struct hda_pintbl[]) {
6444 { 0x19, 0x04a110f0 },
6445 { },
6446 },
6447 },
b3802783 6448 [ALC255_FIXUP_MIC_MUTE_LED] = {
00ef9940 6449 .type = HDA_FIXUP_FUNC,
b3802783 6450 .v.func = snd_hda_gen_fixup_micmute_led,
00ef9940 6451 },
1a22e775
TI
6452 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
6453 .type = HDA_FIXUP_PINS,
6454 .v.pins = (const struct hda_pintbl[]) {
6455 { 0x12, 0x90a60130 },
6456 { 0x14, 0x90170110 },
6457 { 0x17, 0x40000008 },
6458 { 0x18, 0x411111f0 },
0420694d 6459 { 0x19, 0x01a1913c },
1a22e775
TI
6460 { 0x1a, 0x411111f0 },
6461 { 0x1b, 0x411111f0 },
6462 { 0x1d, 0x40f89b2d },
6463 { 0x1e, 0x411111f0 },
6464 { 0x21, 0x0321101f },
6465 { },
6466 },
6467 },
7a5255f1
DH
6468 [ALC280_FIXUP_HP_GPIO4] = {
6469 .type = HDA_FIXUP_FUNC,
6470 .v.func = alc280_fixup_hp_gpio4,
6471 },
eaa8e5ef
KY
6472 [ALC286_FIXUP_HP_GPIO_LED] = {
6473 .type = HDA_FIXUP_FUNC,
6474 .v.func = alc286_fixup_hp_gpio_led,
6475 },
33f4acd3
DH
6476 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
6477 .type = HDA_FIXUP_FUNC,
6478 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
6479 },
b4b33f9d
TC
6480 [ALC280_FIXUP_HP_DOCK_PINS] = {
6481 .type = HDA_FIXUP_PINS,
6482 .v.pins = (const struct hda_pintbl[]) {
6483 { 0x1b, 0x21011020 }, /* line-out */
6484 { 0x1a, 0x01a1903c }, /* headset mic */
6485 { 0x18, 0x2181103f }, /* line-in */
6486 { },
6487 },
6488 .chained = true,
6489 .chain_id = ALC280_FIXUP_HP_GPIO4
6490 },
04d5466a
JK
6491 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
6492 .type = HDA_FIXUP_PINS,
6493 .v.pins = (const struct hda_pintbl[]) {
6494 { 0x1b, 0x21011020 }, /* line-out */
6495 { 0x18, 0x2181103f }, /* line-in */
6496 { },
6497 },
6498 .chained = true,
6499 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
6500 },
98973f2f
KP
6501 [ALC280_FIXUP_HP_9480M] = {
6502 .type = HDA_FIXUP_FUNC,
6503 .v.func = alc280_fixup_hp_9480m,
6504 },
e1e62b98
KY
6505 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
6506 .type = HDA_FIXUP_FUNC,
6507 .v.func = alc_fixup_headset_mode_dell_alc288,
6508 .chained = true,
b3802783 6509 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
e1e62b98
KY
6510 },
6511 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6512 .type = HDA_FIXUP_PINS,
6513 .v.pins = (const struct hda_pintbl[]) {
6514 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6515 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6516 { }
6517 },
6518 .chained = true,
6519 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
6520 },
831bfdf9
HW
6521 [ALC288_FIXUP_DISABLE_AAMIX] = {
6522 .type = HDA_FIXUP_FUNC,
6523 .v.func = alc_fixup_disable_aamix,
6524 .chained = true,
d44a6864 6525 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
6526 },
6527 [ALC288_FIXUP_DELL_XPS_13] = {
6528 .type = HDA_FIXUP_FUNC,
6529 .v.func = alc_fixup_dell_xps13,
6530 .chained = true,
6531 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
6532 },
8b99aba7
TI
6533 [ALC292_FIXUP_DISABLE_AAMIX] = {
6534 .type = HDA_FIXUP_FUNC,
6535 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
6536 .chained = true,
6537 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 6538 },
c04017ea
DH
6539 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
6540 .type = HDA_FIXUP_FUNC,
6541 .v.func = alc_fixup_disable_aamix,
6542 .chained = true,
6543 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
6544 },
8b99aba7
TI
6545 [ALC292_FIXUP_DELL_E7X] = {
6546 .type = HDA_FIXUP_FUNC,
6547 .v.func = alc_fixup_dell_xps13,
6548 .chained = true,
6549 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
6550 },
54324221
JM
6551 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
6552 .type = HDA_FIXUP_PINS,
6553 .v.pins = (const struct hda_pintbl[]) {
6554 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
6555 { }
6556 },
6557 .chained_before = true,
6558 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6559 },
977e6276
KY
6560 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6561 .type = HDA_FIXUP_PINS,
6562 .v.pins = (const struct hda_pintbl[]) {
6563 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6564 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6565 { }
6566 },
6567 .chained = true,
6568 .chain_id = ALC269_FIXUP_HEADSET_MODE
6569 },
2f726aec
HW
6570 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
6571 .type = HDA_FIXUP_PINS,
6572 .v.pins = (const struct hda_pintbl[]) {
6573 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6574 { }
6575 },
6576 .chained = true,
6577 .chain_id = ALC269_FIXUP_HEADSET_MODE
6578 },
6ed1131f
KY
6579 [ALC275_FIXUP_DELL_XPS] = {
6580 .type = HDA_FIXUP_VERBS,
6581 .v.verbs = (const struct hda_verb[]) {
6582 /* Enables internal speaker */
6583 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
6584 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
6585 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
6586 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
6587 {}
6588 }
6589 },
8c69729b
HW
6590 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
6591 .type = HDA_FIXUP_VERBS,
6592 .v.verbs = (const struct hda_verb[]) {
6593 /* Disable pass-through path for FRONT 14h */
6594 {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
6595 {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
6596 {}
6597 },
6598 .chained = true,
6599 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6600 },
1099f484
KHF
6601 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2] = {
6602 .type = HDA_FIXUP_FUNC,
6603 .v.func = alc256_fixup_dell_xps_13_headphone_noise2,
6604 .chained = true,
6605 .chain_id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
6606 },
23adc192
HW
6607 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
6608 .type = HDA_FIXUP_FUNC,
6609 .v.func = alc_fixup_disable_aamix,
6610 .chained = true,
6611 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6612 },
3694cb29
K
6613 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
6614 .type = HDA_FIXUP_FUNC,
6615 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
6616 },
3b43b71f
KHF
6617 [ALC255_FIXUP_DELL_SPK_NOISE] = {
6618 .type = HDA_FIXUP_FUNC,
6619 .v.func = alc_fixup_disable_aamix,
6620 .chained = true,
6621 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6622 },
d1dd4211
KY
6623 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
6624 .type = HDA_FIXUP_FUNC,
6625 .v.func = alc_fixup_disable_mic_vref,
6626 .chained = true,
6627 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6628 },
2ae95577
DH
6629 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6630 .type = HDA_FIXUP_VERBS,
6631 .v.verbs = (const struct hda_verb[]) {
6632 /* Disable pass-through path for FRONT 14h */
6633 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6634 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6635 {}
6636 },
6637 .chained = true,
d1dd4211 6638 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
2ae95577 6639 },
f883982d
TI
6640 [ALC280_FIXUP_HP_HEADSET_MIC] = {
6641 .type = HDA_FIXUP_FUNC,
6642 .v.func = alc_fixup_disable_aamix,
6643 .chained = true,
6644 .chain_id = ALC269_FIXUP_HEADSET_MIC,
6645 },
e549d190
HW
6646 [ALC221_FIXUP_HP_FRONT_MIC] = {
6647 .type = HDA_FIXUP_PINS,
6648 .v.pins = (const struct hda_pintbl[]) {
6649 { 0x19, 0x02a19020 }, /* Front Mic */
6650 { }
6651 },
6652 },
c636b95e
SE
6653 [ALC292_FIXUP_TPT460] = {
6654 .type = HDA_FIXUP_FUNC,
6655 .v.func = alc_fixup_tpt440_dock,
6656 .chained = true,
6657 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6658 },
dd9aa335
HW
6659 [ALC298_FIXUP_SPK_VOLUME] = {
6660 .type = HDA_FIXUP_FUNC,
6661 .v.func = alc298_fixup_speaker_volume,
59ec4b57 6662 .chained = true,
2f726aec 6663 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 6664 },
e312a869
TI
6665 [ALC295_FIXUP_DISABLE_DAC3] = {
6666 .type = HDA_FIXUP_FUNC,
6667 .v.func = alc295_fixup_disable_dac3,
6668 },
d2cd795c
JK
6669 [ALC285_FIXUP_SPEAKER2_TO_DAC1] = {
6670 .type = HDA_FIXUP_FUNC,
6671 .v.func = alc285_fixup_speaker2_to_dac1,
6672 },
fd06c77e
KHF
6673 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6674 .type = HDA_FIXUP_PINS,
6675 .v.pins = (const struct hda_pintbl[]) {
6676 { 0x1b, 0x90170151 },
6677 { }
6678 },
6679 .chained = true,
6680 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6681 },
823ff161
GM
6682 [ALC269_FIXUP_ATIV_BOOK_8] = {
6683 .type = HDA_FIXUP_FUNC,
6684 .v.func = alc_fixup_auto_mute_via_amp,
6685 .chained = true,
6686 .chain_id = ALC269_FIXUP_NO_SHUTUP
6687 },
9eb5d0e6
KY
6688 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6689 .type = HDA_FIXUP_PINS,
6690 .v.pins = (const struct hda_pintbl[]) {
6691 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6692 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6693 { }
6694 },
6695 .chained = true,
6696 .chain_id = ALC269_FIXUP_HEADSET_MODE
6697 },
c1732ede
CC
6698 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6699 .type = HDA_FIXUP_FUNC,
6700 .v.func = alc_fixup_headset_mode,
6701 },
6702 [ALC256_FIXUP_ASUS_MIC] = {
6703 .type = HDA_FIXUP_PINS,
6704 .v.pins = (const struct hda_pintbl[]) {
6705 { 0x13, 0x90a60160 }, /* use as internal mic */
6706 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6707 { }
6708 },
6709 .chained = true,
6710 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6711 },
eeed4cd1 6712 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
6713 .type = HDA_FIXUP_FUNC,
6714 /* Set up GPIO2 for the speaker amp */
6715 .v.func = alc_fixup_gpio4,
eeed4cd1 6716 },
216d7aeb
CC
6717 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6718 .type = HDA_FIXUP_PINS,
6719 .v.pins = (const struct hda_pintbl[]) {
6720 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6721 { }
6722 },
6723 .chained = true,
6724 .chain_id = ALC269_FIXUP_HEADSET_MIC
6725 },
6726 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6727 .type = HDA_FIXUP_VERBS,
6728 .v.verbs = (const struct hda_verb[]) {
6729 /* Enables internal speaker */
6730 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6731 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6732 {}
6733 },
6734 .chained = true,
6735 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6736 },
ca169cc2
KY
6737 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6738 .type = HDA_FIXUP_FUNC,
6739 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6740 },
ea5c7eba
JHP
6741 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
6742 .type = HDA_FIXUP_VERBS,
6743 .v.verbs = (const struct hda_verb[]) {
6744 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
6745 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
6746 { }
6747 },
6748 .chained = true,
6749 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6750 },
f33f79f3
HW
6751 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6752 .type = HDA_FIXUP_PINS,
6753 .v.pins = (const struct hda_pintbl[]) {
6754 /* Change the mic location from front to right, otherwise there are
6755 two front mics with the same name, pulseaudio can't handle them.
6756 This is just a temporary workaround, after applying this fixup,
6757 there will be one "Front Mic" and one "Mic" in this machine.
6758 */
6759 { 0x1a, 0x04a19040 },
6760 { }
6761 },
6762 },
5f364135
KY
6763 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6764 .type = HDA_FIXUP_PINS,
6765 .v.pins = (const struct hda_pintbl[]) {
6766 { 0x16, 0x0101102f }, /* Rear Headset HP */
6767 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6768 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6769 { 0x1b, 0x02011020 },
6770 { }
6771 },
6772 .chained = true,
6773 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6774 },
b84e8436
PH
6775 [ALC700_FIXUP_INTEL_REFERENCE] = {
6776 .type = HDA_FIXUP_VERBS,
6777 .v.verbs = (const struct hda_verb[]) {
6778 /* Enables internal speaker */
6779 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
6780 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
6781 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
6782 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
6783 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
6784 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
6785 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
6786 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
6787 {}
6788 }
6789 },
92266651
KY
6790 [ALC274_FIXUP_DELL_BIND_DACS] = {
6791 .type = HDA_FIXUP_FUNC,
6792 .v.func = alc274_fixup_bind_dacs,
6793 .chained = true,
6794 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6795 },
6796 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6797 .type = HDA_FIXUP_PINS,
6798 .v.pins = (const struct hda_pintbl[]) {
6799 { 0x1b, 0x0401102f },
6800 { }
6801 },
6802 .chained = true,
6803 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6804 },
61fcf8ec
KY
6805 [ALC298_FIXUP_TPT470_DOCK] = {
6806 .type = HDA_FIXUP_FUNC,
6807 .v.func = alc_fixup_tpt470_dock,
6808 .chained = true,
6809 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
6810 },
ae104a21
KY
6811 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
6812 .type = HDA_FIXUP_PINS,
6813 .v.pins = (const struct hda_pintbl[]) {
6814 { 0x14, 0x0201101f },
6815 { }
6816 },
6817 .chained = true,
6818 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6819 },
f0ba9d69
KY
6820 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
6821 .type = HDA_FIXUP_PINS,
6822 .v.pins = (const struct hda_pintbl[]) {
6823 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6824 { }
6825 },
3ce0d5aa
HW
6826 .chained = true,
6827 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 6828 },
bbf8ff6b
TB
6829 [ALC295_FIXUP_HP_X360] = {
6830 .type = HDA_FIXUP_FUNC,
6831 .v.func = alc295_fixup_hp_top_speakers,
6832 .chained = true,
6833 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
6834 },
6835 [ALC221_FIXUP_HP_HEADSET_MIC] = {
6836 .type = HDA_FIXUP_PINS,
6837 .v.pins = (const struct hda_pintbl[]) {
6838 { 0x19, 0x0181313f},
6839 { }
6840 },
6841 .chained = true,
6842 .chain_id = ALC269_FIXUP_HEADSET_MIC
6843 },
c4cfcf6f
HW
6844 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
6845 .type = HDA_FIXUP_FUNC,
6846 .v.func = alc285_fixup_invalidate_dacs,
6ba189c5
HW
6847 .chained = true,
6848 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
c4cfcf6f 6849 },
e8ed64b0
GKK
6850 [ALC295_FIXUP_HP_AUTO_MUTE] = {
6851 .type = HDA_FIXUP_FUNC,
6852 .v.func = alc_fixup_auto_mute_via_amp,
6853 },
33aaebd4
CC
6854 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
6855 .type = HDA_FIXUP_PINS,
6856 .v.pins = (const struct hda_pintbl[]) {
6857 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6858 { }
6859 },
6860 .chained = true,
6861 .chain_id = ALC269_FIXUP_HEADSET_MIC
6862 },
d8ae458e
CC
6863 [ALC294_FIXUP_ASUS_MIC] = {
6864 .type = HDA_FIXUP_PINS,
6865 .v.pins = (const struct hda_pintbl[]) {
6866 { 0x13, 0x90a60160 }, /* use as internal mic */
6867 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6868 { }
6869 },
6870 .chained = true,
6871 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6872 },
4e051106
JHP
6873 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
6874 .type = HDA_FIXUP_PINS,
6875 .v.pins = (const struct hda_pintbl[]) {
82b01149 6876 { 0x19, 0x01a1103c }, /* use as headset mic */
4e051106
JHP
6877 { }
6878 },
6879 .chained = true,
6880 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6881 },
6882 [ALC294_FIXUP_ASUS_SPK] = {
6883 .type = HDA_FIXUP_VERBS,
6884 .v.verbs = (const struct hda_verb[]) {
6885 /* Set EAPD high */
6886 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
6887 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
6888 { }
6889 },
6890 .chained = true,
6891 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
6892 },
c8a9afa6 6893 [ALC295_FIXUP_CHROME_BOOK] = {
e854747d 6894 .type = HDA_FIXUP_FUNC,
c8a9afa6 6895 .v.func = alc295_fixup_chromebook,
8983eb60
KY
6896 .chained = true,
6897 .chain_id = ALC225_FIXUP_HEADSET_JACK
6898 },
6899 [ALC225_FIXUP_HEADSET_JACK] = {
6900 .type = HDA_FIXUP_FUNC,
6901 .v.func = alc_fixup_headset_jack,
e854747d 6902 },
89e3a568
JS
6903 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
6904 .type = HDA_FIXUP_PINS,
6905 .v.pins = (const struct hda_pintbl[]) {
6906 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6907 { }
6908 },
6909 .chained = true,
6910 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6911 },
c8c6ee61
HW
6912 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
6913 .type = HDA_FIXUP_VERBS,
6914 .v.verbs = (const struct hda_verb[]) {
6915 /* Disable PCBEEP-IN passthrough */
6916 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6917 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6918 { }
6919 },
6920 .chained = true,
6921 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
6922 },
cbc05fd6
JHP
6923 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
6924 .type = HDA_FIXUP_PINS,
6925 .v.pins = (const struct hda_pintbl[]) {
6926 { 0x19, 0x03a11130 },
6927 { 0x1a, 0x90a60140 }, /* use as internal mic */
6928 { }
6929 },
6930 .chained = true,
6931 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6932 },
136824ef
KY
6933 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
6934 .type = HDA_FIXUP_PINS,
6935 .v.pins = (const struct hda_pintbl[]) {
6936 { 0x16, 0x01011020 }, /* Rear Line out */
6937 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
6938 { }
6939 },
6940 .chained = true,
6941 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
6942 },
6943 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
6944 .type = HDA_FIXUP_FUNC,
6945 .v.func = alc_fixup_auto_mute_via_amp,
6946 .chained = true,
6947 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
6948 },
6949 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
6950 .type = HDA_FIXUP_FUNC,
6951 .v.func = alc_fixup_disable_mic_vref,
6952 .chained = true,
6953 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6954 },
667a8f73
JHP
6955 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
6956 .type = HDA_FIXUP_VERBS,
6957 .v.verbs = (const struct hda_verb[]) {
6958 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
6959 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
6960 { }
6961 },
6962 .chained = true,
6963 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
6964 },
8c8967a7
DD
6965 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
6966 .type = HDA_FIXUP_PINS,
6967 .v.pins = (const struct hda_pintbl[]) {
6968 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
6969 { }
6970 },
6971 .chained = true,
6972 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6973 },
e1037354
JHP
6974 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6975 .type = HDA_FIXUP_PINS,
6976 .v.pins = (const struct hda_pintbl[]) {
6977 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6978 { }
6979 },
6980 .chained = true,
6981 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6982 },
e2a829b3
BR
6983 [ALC299_FIXUP_PREDATOR_SPK] = {
6984 .type = HDA_FIXUP_PINS,
6985 .v.pins = (const struct hda_pintbl[]) {
6986 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
6987 { }
6988 }
6989 },
bd9c10bc
JMG
6990 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
6991 .type = HDA_FIXUP_PINS,
6992 .v.pins = (const struct hda_pintbl[]) {
6993 { 0x19, 0x04a11040 },
6994 { 0x21, 0x04211020 },
6995 { }
6996 },
6997 .chained = true,
6998 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6999 },
e79c2269
KY
7000 [ALC289_FIXUP_DELL_SPK2] = {
7001 .type = HDA_FIXUP_PINS,
7002 .v.pins = (const struct hda_pintbl[]) {
7003 { 0x17, 0x90170130 }, /* bass spk */
7004 { }
7005 },
7006 .chained = true,
7007 .chain_id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE
7008 },
7009 [ALC289_FIXUP_DUAL_SPK] = {
7010 .type = HDA_FIXUP_FUNC,
7011 .v.func = alc285_fixup_speaker2_to_dac1,
7012 .chained = true,
7013 .chain_id = ALC289_FIXUP_DELL_SPK2
7014 },
48e01504
CC
7015 [ALC294_FIXUP_SPK2_TO_DAC1] = {
7016 .type = HDA_FIXUP_FUNC,
7017 .v.func = alc285_fixup_speaker2_to_dac1,
7018 .chained = true,
7019 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
7020 },
7021 [ALC294_FIXUP_ASUS_DUAL_SPK] = {
7022 .type = HDA_FIXUP_FUNC,
7023 /* The GPIO must be pulled to initialize the AMP */
7024 .v.func = alc_fixup_gpio4,
7025 .chained = true,
7026 .chain_id = ALC294_FIXUP_SPK2_TO_DAC1
7027 },
7028
f1d4e28b
KY
7029};
7030
1d045db9 7031static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 7032 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
7033 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
7034 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 7035 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b
TI
7036 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
7037 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
7038 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
7039 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 7040 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 7041 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 7042 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
705b65f1 7043 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
b9c2fa52 7044 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
c7531e31
CC
7045 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
7046 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
e2a829b3 7047 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
667a8f73
JHP
7048 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
7049 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
7050 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
2733cceb 7051 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
ea5c7eba 7052 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
cbc05fd6 7053 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
aaedfb47 7054 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6ed1131f 7055 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 7056 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 7057 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
7058 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
7059 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 7060 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
7061 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
7062 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
7063 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
7064 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
7065 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 7066 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 7067 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 7068 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
7069 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7070 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 7071 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 7072 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 7073 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 7074 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
7075 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7076 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
7077 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7078 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7079 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7080 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7081 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
1099f484 7082 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
fd06c77e 7083 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 7084 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
c0ca5ece 7085 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
1099f484 7086 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
709ae62e 7087 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 7088 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
e312a869 7089 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
493de342 7090 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
5f364135 7091 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
1099f484 7092 SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
40e2c4e5
KY
7093 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
7094 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
7095 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
7096 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 7097 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
136824ef 7098 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
da484d00 7099 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
c2a7c55a 7100 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
e79c2269
KY
7101 SND_PCI_QUIRK(0x1028, 0x097e, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
7102 SND_PCI_QUIRK(0x1028, 0x097d, "Dell Precision", ALC289_FIXUP_DUAL_SPK),
a22aa26f
KY
7103 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7104 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 7105 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 7106 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 7107 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
33f4acd3 7108 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 7109 /* ALC282 */
7976eb49 7110 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7111 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7112 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
7113 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7114 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7115 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7116 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 7117 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
c60666bd 7118 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7119 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7120 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7121 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
eaa8e5ef 7122 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
b4b33f9d 7123 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
3271cb22 7124 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
c60666bd 7125 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7126 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7127 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7128 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7129 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
98973f2f 7130 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9c5dc3bf
KY
7131 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7132 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 7133 /* ALC290 */
9c5dc3bf 7134 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7135 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7136 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
7137 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7138 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7139 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7140 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7141 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7142 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 7143 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
c60666bd 7144 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7145 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7146 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7147 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
7148 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7149 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7150 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 7151 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7152 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7153 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7154 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7155 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7156 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7157 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7158 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164
KY
7159 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7160 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7161 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7162 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
f883982d 7163 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
167897f4
JK
7164 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7165 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
563785ed 7166 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
e549d190 7167 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 7168 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
167897f4
JK
7169 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7170 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 7171 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
190d0381 7172 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
d33cd42d 7173 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
c1732ede 7174 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 7175 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 7176 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9cf6533e 7177 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
c1732ede 7178 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 7179 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3e0d611b 7180 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1
TI
7181 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7182 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
7183 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
c1732ede
CC
7184 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
7185 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
7186 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 7187 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
23870831 7188 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
3e0d611b 7189 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
48e01504 7190 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_DUAL_SPK),
8c8967a7 7191 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
017f2a10 7192 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 7193 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
693b613d 7194 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
615966ad 7195 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1 7196 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
c1732ede 7197 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
eeed4cd1 7198 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
adabb3ec
TI
7199 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
7200 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
7201 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7202 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 7203 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
f88abaa0 7204 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
88cfcf86 7205 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
1d045db9
TI
7206 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
7207 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7208 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 7209 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
24519911 7210 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 7211 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 7212 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
88776f36 7213 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 7214 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
2041d564 7215 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 7216 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
0fca97a2 7217 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 7218 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
823ff161 7219 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
abaa2274
AA
7220 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
7221 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 7222 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
89e3a568 7223 SND_PCI_QUIRK(0x1558, 0x1325, "System76 Darter Pro (darp5)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
80a5052d 7224 SND_PCI_QUIRK(0x1558, 0x8550, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
891afcf2
JS
7225 SND_PCI_QUIRK(0x1558, 0x8551, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7226 SND_PCI_QUIRK(0x1558, 0x8560, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7227 SND_PCI_QUIRK(0x1558, 0x8561, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
ca169cc2 7228 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
1d045db9
TI
7229 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
7230 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
7231 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
7232 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
7233 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
707fba3f 7234 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
c8415a48 7235 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
84f98fdf 7236 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 7237 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 7238 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 7239 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 7240 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 7241 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 7242 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 7243 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 7244 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 7245 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 7246 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 7247 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 7248 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 7249 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
7250 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7251 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 7252 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 7253 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7254 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
7255 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7256 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 7257 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7258 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7259 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7260 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 7261 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
d2cd795c 7262 SND_PCI_QUIRK(0x17aa, 0x2293, "Thinkpad X1 Carbon 7th", ALC285_FIXUP_SPEAKER2_TO_DAC1),
3694cb29 7263 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 7264 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 7265 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
bef33e19 7266 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 7267 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 7268 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 7269 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
2a36c16e 7270 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
8a6c55d0
AM
7271 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
7272 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
56f27013 7273 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 7274 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
56df90b6 7275 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
a4a9e082 7276 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 7277 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 7278 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 7279 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 7280 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 7281 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 7282 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 7283 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 7284 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 7285 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 7286 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 7287 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7288 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7289 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7290 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
cd5302c0 7291 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
7292 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7293 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
012e7eb1 7294 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
1d045db9 7295 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
0fbf21c3 7296 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
02b504d9 7297 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
695d1ec3 7298 SND_PCI_QUIRK(0x1d72, 0x1901, "RedmiBook 14", ALC256_FIXUP_ASUS_HEADSET_MIC),
bd9c10bc 7299 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
a4297b5d 7300
a7f3eedc 7301#if 0
a4297b5d
TI
7302 /* Below is a quirk table taken from the old code.
7303 * Basically the device should work as is without the fixup table.
7304 * If BIOS doesn't give a proper info, enable the corresponding
7305 * fixup entry.
7d7eb9ea 7306 */
a4297b5d
TI
7307 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
7308 ALC269_FIXUP_AMIC),
7309 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
7310 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
7311 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
7312 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
7313 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
7314 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
7315 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
7316 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
7317 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
7318 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
7319 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
7320 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
7321 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
7322 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
7323 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
7324 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
7325 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
7326 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
7327 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
7328 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
7329 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
7330 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
7331 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
7332 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
7333 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
7334 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
7335 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
7336 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
7337 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
7338 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
7339 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
7340 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
7341 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
7342 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
7343 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
7344 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
7345 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
7346 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
7347 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
7348#endif
7349 {}
7350};
7351
214eef76
DH
7352static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
7353 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
7354 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
7355 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
7356 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
0fbf21c3 7357 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
214eef76
DH
7358 {}
7359};
7360
1727a771 7361static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
7362 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
7363 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
7364 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
7365 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
7366 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 7367 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
7368 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
7369 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 7370 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
9f5c6faf 7371 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 7372 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
7373 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
7374 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
7375 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
7376 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 7377 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 7378 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 7379 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 7380 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 7381 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
a26d96c7 7382 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 7383 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 7384 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
7385 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
7386 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
7387 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
7388 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
7389 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
7390 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
7391 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
7392 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
7393 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
7394 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
7395 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
7396 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
7397 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
7398 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
7399 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
7400 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
7401 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
7402 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
7403 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
7404 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
7405 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
7406 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
7407 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
7408 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
7409 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
7410 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
7411 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
7412 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
7413 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
7414 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
7415 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
7416 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
7417 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
7418 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
7419 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
7420 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
7421 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
7422 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
7423 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
7424 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
b3802783 7425 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
a26d96c7
TI
7426 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
7427 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
7428 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7429 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
7430 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
7431 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
7432 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
7433 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
7434 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
7435 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
7436 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
7437 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
7438 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
7439 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
7440 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
7441 {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"},
7442 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
7443 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
7444 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
82aa0d7e 7445 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
a26d96c7 7446 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
d2cd795c 7447 {.id = ALC285_FIXUP_SPEAKER2_TO_DAC1, .name = "alc285-speaker2-to-dac1"},
a26d96c7
TI
7448 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
7449 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
7450 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
7451 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
7452 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
7453 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
7454 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
7455 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
7456 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
7457 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
7458 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
7459 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
7460 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
7461 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
7462 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
7463 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
7464 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
8983eb60
KY
7465 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
7466 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
e2a829b3 7467 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
a2ef03fe 7468 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
bd9c10bc 7469 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
1d045db9 7470 {}
6dda9f4a 7471};
cfc5a845 7472#define ALC225_STANDARD_PINS \
cfc5a845 7473 {0x21, 0x04211020}
6dda9f4a 7474
e8191a8e
HW
7475#define ALC256_STANDARD_PINS \
7476 {0x12, 0x90a60140}, \
7477 {0x14, 0x90170110}, \
e8191a8e
HW
7478 {0x21, 0x02211020}
7479
fea185e2 7480#define ALC282_STANDARD_PINS \
11580297 7481 {0x14, 0x90170110}
e1e62b98 7482
fea185e2 7483#define ALC290_STANDARD_PINS \
11580297 7484 {0x12, 0x99a30130}
fea185e2
DH
7485
7486#define ALC292_STANDARD_PINS \
7487 {0x14, 0x90170110}, \
11580297 7488 {0x15, 0x0221401f}
977e6276 7489
3f640970
HW
7490#define ALC295_STANDARD_PINS \
7491 {0x12, 0xb7a60130}, \
7492 {0x14, 0x90170110}, \
3f640970
HW
7493 {0x21, 0x04211020}
7494
703867e2
WS
7495#define ALC298_STANDARD_PINS \
7496 {0x12, 0x90a60130}, \
7497 {0x21, 0x03211020}
7498
e1918938 7499static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
7500 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
7501 {0x14, 0x01014020},
7502 {0x17, 0x90170110},
7503 {0x18, 0x02a11030},
7504 {0x19, 0x0181303F},
7505 {0x21, 0x0221102f}),
5824ce8d
CC
7506 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7507 {0x12, 0x90a601c0},
7508 {0x14, 0x90171120},
7509 {0x21, 0x02211030}),
615966ad
CC
7510 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7511 {0x14, 0x90170110},
7512 {0x1b, 0x90a70130},
7513 {0x21, 0x03211020}),
7514 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7515 {0x1a, 0x90a70130},
7516 {0x1b, 0x90170110},
7517 {0x21, 0x03211020}),
2ae95577 7518 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 7519 ALC225_STANDARD_PINS,
8a132099 7520 {0x12, 0xb7a60130},
cfc5a845 7521 {0x14, 0x901701a0}),
2ae95577 7522 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 7523 ALC225_STANDARD_PINS,
8a132099 7524 {0x12, 0xb7a60130},
cfc5a845 7525 {0x14, 0x901701b0}),
8a132099
HW
7526 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7527 ALC225_STANDARD_PINS,
7528 {0x12, 0xb7a60150},
7529 {0x14, 0x901701a0}),
7530 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7531 ALC225_STANDARD_PINS,
7532 {0x12, 0xb7a60150},
7533 {0x14, 0x901701b0}),
7534 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7535 ALC225_STANDARD_PINS,
7536 {0x12, 0xb7a60130},
7537 {0x1b, 0x90170110}),
0ce48e17
KHF
7538 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7539 {0x1b, 0x01111010},
7540 {0x1e, 0x01451130},
7541 {0x21, 0x02211020}),
986376b6
HW
7542 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7543 {0x12, 0x90a60140},
7544 {0x14, 0x90170110},
7545 {0x19, 0x02a11030},
7546 {0x21, 0x02211020}),
e41fc8c5
HW
7547 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7548 {0x14, 0x90170110},
7549 {0x19, 0x02a11030},
7550 {0x1a, 0x02a11040},
7551 {0x1b, 0x01014020},
7552 {0x21, 0x0221101f}),
d06fb562
HW
7553 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7554 {0x14, 0x90170110},
7555 {0x19, 0x02a11030},
7556 {0x1a, 0x02a11040},
7557 {0x1b, 0x01011020},
7558 {0x21, 0x0221101f}),
c6b17f10
HW
7559 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7560 {0x14, 0x90170110},
7561 {0x19, 0x02a11020},
7562 {0x1a, 0x02a11030},
7563 {0x21, 0x0221101f}),
c77900e6 7564 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 7565 {0x14, 0x90170110},
c77900e6 7566 {0x21, 0x02211020}),
86c72d1c
HW
7567 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7568 {0x14, 0x90170130},
7569 {0x21, 0x02211040}),
76c2132e
DH
7570 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7571 {0x12, 0x90a60140},
7572 {0x14, 0x90170110},
76c2132e
DH
7573 {0x21, 0x02211020}),
7574 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7575 {0x12, 0x90a60160},
7576 {0x14, 0x90170120},
76c2132e 7577 {0x21, 0x02211030}),
392c9da2
HW
7578 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7579 {0x14, 0x90170110},
7580 {0x1b, 0x02011020},
7581 {0x21, 0x0221101f}),
6aecd871
HW
7582 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7583 {0x14, 0x90170110},
7584 {0x1b, 0x01011020},
7585 {0x21, 0x0221101f}),
cba59972 7586 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 7587 {0x14, 0x90170130},
cba59972 7588 {0x1b, 0x01014020},
cba59972 7589 {0x21, 0x0221103f}),
6aecd871
HW
7590 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7591 {0x14, 0x90170130},
7592 {0x1b, 0x01011020},
7593 {0x21, 0x0221103f}),
59ec4b57
HW
7594 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7595 {0x14, 0x90170130},
7596 {0x1b, 0x02011020},
7597 {0x21, 0x0221103f}),
e9c28e16 7598 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 7599 {0x14, 0x90170150},
e9c28e16 7600 {0x1b, 0x02011020},
e9c28e16
WS
7601 {0x21, 0x0221105f}),
7602 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 7603 {0x14, 0x90170110},
e9c28e16 7604 {0x1b, 0x01014020},
e9c28e16 7605 {0x21, 0x0221101f}),
76c2132e
DH
7606 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7607 {0x12, 0x90a60160},
7608 {0x14, 0x90170120},
7609 {0x17, 0x90170140},
76c2132e
DH
7610 {0x21, 0x0321102f}),
7611 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7612 {0x12, 0x90a60160},
7613 {0x14, 0x90170130},
76c2132e
DH
7614 {0x21, 0x02211040}),
7615 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7616 {0x12, 0x90a60160},
7617 {0x14, 0x90170140},
76c2132e
DH
7618 {0x21, 0x02211050}),
7619 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7620 {0x12, 0x90a60170},
7621 {0x14, 0x90170120},
76c2132e
DH
7622 {0x21, 0x02211030}),
7623 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7624 {0x12, 0x90a60170},
7625 {0x14, 0x90170130},
76c2132e 7626 {0x21, 0x02211040}),
0a1f90a9
HW
7627 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7628 {0x12, 0x90a60170},
7629 {0x14, 0x90171130},
7630 {0x21, 0x02211040}),
70658b99 7631 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
7632 {0x12, 0x90a60170},
7633 {0x14, 0x90170140},
70658b99 7634 {0x21, 0x02211050}),
9b5a4e39 7635 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
7636 {0x12, 0x90a60180},
7637 {0x14, 0x90170130},
9b5a4e39 7638 {0x21, 0x02211040}),
f90d83b3
AK
7639 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7640 {0x12, 0x90a60180},
7641 {0x14, 0x90170120},
7642 {0x21, 0x02211030}),
989dbe4a
HW
7643 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7644 {0x1b, 0x01011020},
7645 {0x21, 0x02211010}),
c1732ede
CC
7646 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7647 {0x14, 0x90170110},
7648 {0x1b, 0x90a70130},
7649 {0x21, 0x04211020}),
7650 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7651 {0x14, 0x90170110},
7652 {0x1b, 0x90a70130},
7653 {0x21, 0x03211020}),
a806ef1c
CC
7654 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7655 {0x12, 0x90a60130},
7656 {0x14, 0x90170110},
7657 {0x21, 0x03211020}),
6ac371aa
JHP
7658 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7659 {0x12, 0x90a60130},
7660 {0x14, 0x90170110},
7661 {0x21, 0x04211020}),
e1037354
JHP
7662 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7663 {0x1a, 0x90a70130},
7664 {0x1b, 0x90170110},
7665 {0x21, 0x03211020}),
cf51eb9d
DH
7666 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
7667 {0x12, 0x90a60130},
cf51eb9d
DH
7668 {0x14, 0x90170110},
7669 {0x15, 0x0421101f},
11580297 7670 {0x1a, 0x04a11020}),
0279661b
HW
7671 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
7672 {0x12, 0x90a60140},
0279661b
HW
7673 {0x14, 0x90170110},
7674 {0x15, 0x0421101f},
0279661b 7675 {0x18, 0x02811030},
0279661b 7676 {0x1a, 0x04a1103f},
11580297 7677 {0x1b, 0x02011020}),
42304474 7678 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7679 ALC282_STANDARD_PINS,
42304474 7680 {0x12, 0x99a30130},
42304474 7681 {0x19, 0x03a11020},
42304474 7682 {0x21, 0x0321101f}),
2c609999 7683 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7684 ALC282_STANDARD_PINS,
2c609999 7685 {0x12, 0x99a30130},
2c609999 7686 {0x19, 0x03a11020},
2c609999
HW
7687 {0x21, 0x03211040}),
7688 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7689 ALC282_STANDARD_PINS,
2c609999 7690 {0x12, 0x99a30130},
2c609999 7691 {0x19, 0x03a11030},
2c609999
HW
7692 {0x21, 0x03211020}),
7693 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7694 ALC282_STANDARD_PINS,
2c609999 7695 {0x12, 0x99a30130},
2c609999 7696 {0x19, 0x04a11020},
2c609999 7697 {0x21, 0x0421101f}),
200afc09 7698 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 7699 ALC282_STANDARD_PINS,
200afc09 7700 {0x12, 0x90a60140},
200afc09 7701 {0x19, 0x04a11030},
200afc09 7702 {0x21, 0x04211020}),
76c2132e 7703 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7704 ALC282_STANDARD_PINS,
76c2132e 7705 {0x12, 0x90a60130},
76c2132e
DH
7706 {0x21, 0x0321101f}),
7707 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7708 {0x12, 0x90a60160},
7709 {0x14, 0x90170120},
76c2132e 7710 {0x21, 0x02211030}),
bc262179 7711 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7712 ALC282_STANDARD_PINS,
bc262179 7713 {0x12, 0x90a60130},
bc262179 7714 {0x19, 0x03a11020},
bc262179 7715 {0x21, 0x0321101f}),
c8c6ee61 7716 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
c4cfcf6f
HW
7717 {0x12, 0x90a60130},
7718 {0x14, 0x90170110},
7719 {0x19, 0x04a11040},
7720 {0x21, 0x04211020}),
33aaebd4
CC
7721 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7722 {0x12, 0x90a60130},
7723 {0x17, 0x90170110},
7724 {0x21, 0x02211020}),
d44a6864 7725 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 7726 {0x12, 0x90a60120},
e1e62b98 7727 {0x14, 0x90170110},
e1e62b98 7728 {0x21, 0x0321101f}),
e4442bcf 7729 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7730 ALC290_STANDARD_PINS,
e4442bcf 7731 {0x15, 0x04211040},
e4442bcf 7732 {0x18, 0x90170112},
11580297 7733 {0x1a, 0x04a11020}),
e4442bcf 7734 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7735 ALC290_STANDARD_PINS,
e4442bcf 7736 {0x15, 0x04211040},
e4442bcf 7737 {0x18, 0x90170110},
11580297 7738 {0x1a, 0x04a11020}),
e4442bcf 7739 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7740 ALC290_STANDARD_PINS,
e4442bcf 7741 {0x15, 0x0421101f},
11580297 7742 {0x1a, 0x04a11020}),
e4442bcf 7743 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7744 ALC290_STANDARD_PINS,
e4442bcf 7745 {0x15, 0x04211020},
11580297 7746 {0x1a, 0x04a11040}),
e4442bcf 7747 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7748 ALC290_STANDARD_PINS,
e4442bcf
HW
7749 {0x14, 0x90170110},
7750 {0x15, 0x04211020},
11580297 7751 {0x1a, 0x04a11040}),
e4442bcf 7752 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7753 ALC290_STANDARD_PINS,
e4442bcf
HW
7754 {0x14, 0x90170110},
7755 {0x15, 0x04211020},
11580297 7756 {0x1a, 0x04a11020}),
e4442bcf 7757 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7758 ALC290_STANDARD_PINS,
e4442bcf
HW
7759 {0x14, 0x90170110},
7760 {0x15, 0x0421101f},
11580297 7761 {0x1a, 0x04a11020}),
e8818fa8 7762 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7763 ALC292_STANDARD_PINS,
e8818fa8 7764 {0x12, 0x90a60140},
e8818fa8 7765 {0x16, 0x01014020},
11580297 7766 {0x19, 0x01a19030}),
e8818fa8 7767 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7768 ALC292_STANDARD_PINS,
e8818fa8 7769 {0x12, 0x90a60140},
e8818fa8
HW
7770 {0x16, 0x01014020},
7771 {0x18, 0x02a19031},
11580297 7772 {0x19, 0x01a1903e}),
76c2132e 7773 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 7774 ALC292_STANDARD_PINS,
11580297 7775 {0x12, 0x90a60140}),
76c2132e 7776 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7777 ALC292_STANDARD_PINS,
76c2132e 7778 {0x13, 0x90a60140},
76c2132e 7779 {0x16, 0x21014020},
11580297 7780 {0x19, 0x21a19030}),
e03fdbde 7781 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7782 ALC292_STANDARD_PINS,
11580297 7783 {0x13, 0x90a60140}),
d8ae458e
CC
7784 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
7785 {0x14, 0x90170110},
7786 {0x1b, 0x90a70130},
7787 {0x21, 0x04211020}),
8bb37a2a
JHP
7788 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7789 {0x12, 0x90a60130},
7790 {0x17, 0x90170110},
7791 {0x21, 0x03211020}),
0bea4cc8
JHP
7792 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7793 {0x12, 0x90a60130},
7794 {0x17, 0x90170110},
7795 {0x21, 0x04211020}),
3887c26c
TI
7796 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7797 {0x12, 0x90a60130},
7798 {0x17, 0x90170110},
7799 {0x21, 0x03211020}),
fbc57129 7800 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
0a29c57b
KY
7801 {0x14, 0x90170110},
7802 {0x21, 0x04211020}),
fbc57129
KY
7803 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7804 {0x14, 0x90170110},
7805 {0x21, 0x04211030}),
3f640970 7806 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
f771d5bb
HW
7807 ALC295_STANDARD_PINS,
7808 {0x17, 0x21014020},
7809 {0x18, 0x21a19030}),
7810 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7811 ALC295_STANDARD_PINS,
7812 {0x17, 0x21014040},
7813 {0x18, 0x21a19050}),
3f307834
HW
7814 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7815 ALC295_STANDARD_PINS),
9f502ff5
TI
7816 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7817 ALC298_STANDARD_PINS,
7818 {0x17, 0x90170110}),
977e6276 7819 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
7820 ALC298_STANDARD_PINS,
7821 {0x17, 0x90170140}),
7822 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7823 ALC298_STANDARD_PINS,
9f502ff5 7824 {0x17, 0x90170150}),
9f1bc2c4
KHF
7825 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
7826 {0x12, 0xb7a60140},
7827 {0x13, 0xb7a60150},
7828 {0x17, 0x90170110},
7829 {0x1a, 0x03011020},
7830 {0x21, 0x03211030}),
54324221
JM
7831 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7832 {0x12, 0xb7a60140},
7833 {0x17, 0x90170110},
7834 {0x1a, 0x03a11030},
7835 {0x21, 0x03211020}),
fcc6c877
KY
7836 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7837 ALC225_STANDARD_PINS,
7838 {0x12, 0xb7a60130},
fcc6c877 7839 {0x17, 0x90170110}),
e1918938
HW
7840 {}
7841};
6dda9f4a 7842
7c0a6939
HW
7843/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
7844 * more machines, don't need to match all valid pins, just need to match
7845 * all the pins defined in the tbl. Just because of this reason, it is possible
7846 * that a single machine matches multiple tbls, so there is one limitation:
7847 * at most one tbl is allowed to define for the same vendor and same codec
7848 */
7849static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
7850 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7851 {0x19, 0x40000000},
7852 {0x1b, 0x40000000}),
aed8c7f4
HW
7853 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7854 {0x19, 0x40000000},
7855 {0x1a, 0x40000000}),
d64ebdbf
HW
7856 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7857 {0x19, 0x40000000},
7858 {0x1a, 0x40000000}),
5815bdfd
HW
7859 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
7860 {0x19, 0x40000000},
7861 {0x1a, 0x40000000}),
7c0a6939
HW
7862 {}
7863};
7864
546bb678 7865static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 7866{
526af6eb 7867 struct alc_spec *spec = codec->spec;
1d045db9 7868 int val;
ebb83eeb 7869
526af6eb 7870 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 7871 return;
526af6eb 7872
1bb7e43e 7873 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
7874 alc_write_coef_idx(codec, 0xf, 0x960b);
7875 alc_write_coef_idx(codec, 0xe, 0x8817);
7876 }
ebb83eeb 7877
1bb7e43e 7878 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
7879 alc_write_coef_idx(codec, 0xf, 0x960b);
7880 alc_write_coef_idx(codec, 0xe, 0x8814);
7881 }
ebb83eeb 7882
1bb7e43e 7883 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 7884 /* Power up output pin */
98b24883 7885 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 7886 }
ebb83eeb 7887
1bb7e43e 7888 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 7889 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 7890 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
7891 /* Capless ramp up clock control */
7892 alc_write_coef_idx(codec, 0xd, val | (1<<10));
7893 }
7894 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 7895 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
7896 /* Class D power on reset */
7897 alc_write_coef_idx(codec, 0x17, val | (1<<7));
7898 }
7899 }
ebb83eeb 7900
98b24883
TI
7901 /* HP */
7902 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 7903}
a7f2371f 7904
1d045db9
TI
7905/*
7906 */
1d045db9
TI
7907static int patch_alc269(struct hda_codec *codec)
7908{
7909 struct alc_spec *spec;
3de95173 7910 int err;
f1d4e28b 7911
3de95173 7912 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 7913 if (err < 0)
3de95173
TI
7914 return err;
7915
7916 spec = codec->spec;
08c189f2 7917 spec->gen.shared_mic_vref_pin = 0x18;
317d9313 7918 codec->power_save_node = 0;
e16fb6d1 7919
225068ab
TI
7920#ifdef CONFIG_PM
7921 codec->patch_ops.suspend = alc269_suspend;
7922 codec->patch_ops.resume = alc269_resume;
7923#endif
c2d6af53
KY
7924 spec->shutup = alc_default_shutup;
7925 spec->init_hook = alc_default_init;
225068ab 7926
7639a06c 7927 switch (codec->core.vendor_id) {
065380f0 7928 case 0x10ec0269:
1d045db9 7929 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
7930 switch (alc_get_coef0(codec) & 0x00f0) {
7931 case 0x0010:
5100cd07
TI
7932 if (codec->bus->pci &&
7933 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 7934 spec->cdefine.platform_type == 1)
20ca0c35 7935 err = alc_codec_rename(codec, "ALC271X");
1d045db9 7936 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
7937 break;
7938 case 0x0020:
5100cd07
TI
7939 if (codec->bus->pci &&
7940 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 7941 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 7942 err = alc_codec_rename(codec, "ALC3202");
1d045db9 7943 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 7944 break;
adcc70b2
KY
7945 case 0x0030:
7946 spec->codec_variant = ALC269_TYPE_ALC269VD;
7947 break;
1bb7e43e 7948 default:
1d045db9 7949 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 7950 }
e16fb6d1
TI
7951 if (err < 0)
7952 goto error;
c2d6af53 7953 spec->shutup = alc269_shutup;
546bb678 7954 spec->init_hook = alc269_fill_coef;
1d045db9 7955 alc269_fill_coef(codec);
065380f0
KY
7956 break;
7957
7958 case 0x10ec0280:
7959 case 0x10ec0290:
7960 spec->codec_variant = ALC269_TYPE_ALC280;
7961 break;
7962 case 0x10ec0282:
065380f0 7963 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
7964 spec->shutup = alc282_shutup;
7965 spec->init_hook = alc282_init;
065380f0 7966 break;
2af02be7
KY
7967 case 0x10ec0233:
7968 case 0x10ec0283:
7969 spec->codec_variant = ALC269_TYPE_ALC283;
7970 spec->shutup = alc283_shutup;
7971 spec->init_hook = alc283_init;
7972 break;
065380f0
KY
7973 case 0x10ec0284:
7974 case 0x10ec0292:
7975 spec->codec_variant = ALC269_TYPE_ALC284;
7976 break;
161ebf29 7977 case 0x10ec0293:
4731d5de 7978 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 7979 break;
7fc7d047 7980 case 0x10ec0286:
7c665932 7981 case 0x10ec0288:
7fc7d047
KY
7982 spec->codec_variant = ALC269_TYPE_ALC286;
7983 break;
506b62c3
KY
7984 case 0x10ec0298:
7985 spec->codec_variant = ALC269_TYPE_ALC298;
7986 break;
ea04a1db 7987 case 0x10ec0235:
1d04c9de
KY
7988 case 0x10ec0255:
7989 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
7990 spec->shutup = alc256_shutup;
7991 spec->init_hook = alc256_init;
1d04c9de 7992 break;
736f20a7 7993 case 0x10ec0236:
4344aec8
KY
7994 case 0x10ec0256:
7995 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
7996 spec->shutup = alc256_shutup;
7997 spec->init_hook = alc256_init;
7d1b6e29 7998 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
4344aec8 7999 break;
f429e7e4
KY
8000 case 0x10ec0257:
8001 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
8002 spec->shutup = alc256_shutup;
8003 spec->init_hook = alc256_init;
f429e7e4
KY
8004 spec->gen.mixer_nid = 0;
8005 break;
0a6f0600
KY
8006 case 0x10ec0215:
8007 case 0x10ec0285:
8008 case 0x10ec0289:
8009 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
8010 spec->shutup = alc225_shutup;
8011 spec->init_hook = alc225_init;
0a6f0600
KY
8012 spec->gen.mixer_nid = 0;
8013 break;
4231430d 8014 case 0x10ec0225:
7d727869 8015 case 0x10ec0295:
28f1f9b2 8016 case 0x10ec0299:
4231430d 8017 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
8018 spec->shutup = alc225_shutup;
8019 spec->init_hook = alc225_init;
c1350bff 8020 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 8021 break;
dcd4f0db
KY
8022 case 0x10ec0234:
8023 case 0x10ec0274:
8024 case 0x10ec0294:
8025 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 8026 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 8027 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
693abe11 8028 spec->init_hook = alc294_init;
dcd4f0db 8029 break;
1078bef0
KY
8030 case 0x10ec0300:
8031 spec->codec_variant = ALC269_TYPE_ALC300;
8032 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
dcd4f0db 8033 break;
f0778871
KY
8034 case 0x10ec0623:
8035 spec->codec_variant = ALC269_TYPE_ALC623;
8036 break;
6fbae35a
KY
8037 case 0x10ec0700:
8038 case 0x10ec0701:
8039 case 0x10ec0703:
83629532 8040 case 0x10ec0711:
6fbae35a
KY
8041 spec->codec_variant = ALC269_TYPE_ALC700;
8042 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 8043 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
693abe11 8044 spec->init_hook = alc294_init;
6fbae35a
KY
8045 break;
8046
1d045db9 8047 }
6dda9f4a 8048
ad60d502 8049 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 8050 spec->has_alc5505_dsp = 1;
ad60d502
KY
8051 spec->init_hook = alc5505_dsp_init;
8052 }
8053
c9af753f
TI
8054 alc_pre_init(codec);
8055
efe55732
TI
8056 snd_hda_pick_fixup(codec, alc269_fixup_models,
8057 alc269_fixup_tbl, alc269_fixups);
0fc1e447 8058 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
7c0a6939 8059 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
efe55732
TI
8060 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
8061 alc269_fixups);
8062 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8063
8064 alc_auto_parse_customize_define(codec);
8065
8066 if (has_cdefine_beep(codec))
8067 spec->gen.beep_nid = 0x01;
8068
a4297b5d
TI
8069 /* automatic parse from the BIOS config */
8070 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
8071 if (err < 0)
8072 goto error;
6dda9f4a 8073
fea80fae
TI
8074 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
8075 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
8076 if (err < 0)
8077 goto error;
8078 }
f1d4e28b 8079
1727a771 8080 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8081
1d045db9 8082 return 0;
e16fb6d1
TI
8083
8084 error:
8085 alc_free(codec);
8086 return err;
1d045db9 8087}
f1d4e28b 8088
1d045db9
TI
8089/*
8090 * ALC861
8091 */
622e84cd 8092
1d045db9 8093static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 8094{
1d045db9 8095 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8096 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
8097 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
8098}
8099
1d045db9
TI
8100/* Pin config fixes */
8101enum {
e652f4c8
TI
8102 ALC861_FIXUP_FSC_AMILO_PI1505,
8103 ALC861_FIXUP_AMP_VREF_0F,
8104 ALC861_FIXUP_NO_JACK_DETECT,
8105 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 8106 ALC660_FIXUP_ASUS_W7J,
1d045db9 8107};
7085ec12 8108
31150f23
TI
8109/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
8110static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 8111 const struct hda_fixup *fix, int action)
31150f23
TI
8112{
8113 struct alc_spec *spec = codec->spec;
8114 unsigned int val;
8115
1727a771 8116 if (action != HDA_FIXUP_ACT_INIT)
31150f23 8117 return;
d3f02d60 8118 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
8119 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
8120 val |= AC_PINCTL_IN_EN;
8121 val |= AC_PINCTL_VREF_50;
cdd03ced 8122 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 8123 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
8124}
8125
e652f4c8
TI
8126/* suppress the jack-detection */
8127static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 8128 const struct hda_fixup *fix, int action)
e652f4c8 8129{
1727a771 8130 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 8131 codec->no_jack_detect = 1;
7d7eb9ea 8132}
e652f4c8 8133
1727a771 8134static const struct hda_fixup alc861_fixups[] = {
e652f4c8 8135 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
8136 .type = HDA_FIXUP_PINS,
8137 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
8138 { 0x0b, 0x0221101f }, /* HP */
8139 { 0x0f, 0x90170310 }, /* speaker */
8140 { }
8141 }
8142 },
e652f4c8 8143 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 8144 .type = HDA_FIXUP_FUNC,
31150f23 8145 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 8146 },
e652f4c8 8147 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 8148 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
8149 .v.func = alc_fixup_no_jack_detect,
8150 },
8151 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 8152 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
8153 .v.func = alc861_fixup_asus_amp_vref_0f,
8154 .chained = true,
8155 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
8156 },
8157 [ALC660_FIXUP_ASUS_W7J] = {
8158 .type = HDA_FIXUP_VERBS,
8159 .v.verbs = (const struct hda_verb[]) {
8160 /* ASUS W7J needs a magic pin setup on unused NID 0x10
8161 * for enabling outputs
8162 */
8163 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8164 { }
8165 },
e652f4c8 8166 }
1d045db9 8167};
7085ec12 8168
1d045db9 8169static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 8170 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 8171 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
8172 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
8173 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
8174 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
8175 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
8176 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
8177 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
8178 {}
8179};
3af9ee6b 8180
1d045db9
TI
8181/*
8182 */
1d045db9 8183static int patch_alc861(struct hda_codec *codec)
7085ec12 8184{
1d045db9 8185 struct alc_spec *spec;
1d045db9 8186 int err;
7085ec12 8187
3de95173
TI
8188 err = alc_alloc_spec(codec, 0x15);
8189 if (err < 0)
8190 return err;
1d045db9 8191
3de95173 8192 spec = codec->spec;
2722b535
TI
8193 if (has_cdefine_beep(codec))
8194 spec->gen.beep_nid = 0x23;
1d045db9 8195
225068ab
TI
8196#ifdef CONFIG_PM
8197 spec->power_hook = alc_power_eapd;
8198#endif
8199
c9af753f
TI
8200 alc_pre_init(codec);
8201
1727a771
TI
8202 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
8203 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 8204
cb4e4824
TI
8205 /* automatic parse from the BIOS config */
8206 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
8207 if (err < 0)
8208 goto error;
3af9ee6b 8209
fea80fae
TI
8210 if (!spec->gen.no_analog) {
8211 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
8212 if (err < 0)
8213 goto error;
8214 }
7085ec12 8215
1727a771 8216 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8217
1d045db9 8218 return 0;
e16fb6d1
TI
8219
8220 error:
8221 alc_free(codec);
8222 return err;
7085ec12
TI
8223}
8224
1d045db9
TI
8225/*
8226 * ALC861-VD support
8227 *
8228 * Based on ALC882
8229 *
8230 * In addition, an independent DAC
8231 */
1d045db9 8232static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 8233{
1d045db9 8234 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8235 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8236 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
8237}
8238
1d045db9 8239enum {
8fdcb6fe
TI
8240 ALC660VD_FIX_ASUS_GPIO1,
8241 ALC861VD_FIX_DALLAS,
1d045db9 8242};
ce764ab2 8243
8fdcb6fe
TI
8244/* exclude VREF80 */
8245static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 8246 const struct hda_fixup *fix, int action)
8fdcb6fe 8247{
1727a771 8248 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
8249 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
8250 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
8251 }
8252}
8253
df73d83f
TI
8254/* reset GPIO1 */
8255static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
8256 const struct hda_fixup *fix, int action)
8257{
8258 struct alc_spec *spec = codec->spec;
8259
8260 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8261 spec->gpio_mask |= 0x02;
8262 alc_fixup_gpio(codec, action, 0x01);
8263}
8264
1727a771 8265static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 8266 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
8267 .type = HDA_FIXUP_FUNC,
8268 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 8269 },
8fdcb6fe 8270 [ALC861VD_FIX_DALLAS] = {
1727a771 8271 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
8272 .v.func = alc861vd_fixup_dallas,
8273 },
1d045db9 8274};
ce764ab2 8275
1d045db9 8276static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 8277 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 8278 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 8279 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
8280 {}
8281};
ce764ab2 8282
1d045db9
TI
8283/*
8284 */
1d045db9 8285static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 8286{
1d045db9 8287 struct alc_spec *spec;
cb4e4824 8288 int err;
ce764ab2 8289
3de95173
TI
8290 err = alc_alloc_spec(codec, 0x0b);
8291 if (err < 0)
8292 return err;
1d045db9 8293
3de95173 8294 spec = codec->spec;
2722b535
TI
8295 if (has_cdefine_beep(codec))
8296 spec->gen.beep_nid = 0x23;
1d045db9 8297
225068ab
TI
8298 spec->shutup = alc_eapd_shutup;
8299
c9af753f
TI
8300 alc_pre_init(codec);
8301
1727a771
TI
8302 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
8303 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 8304
cb4e4824
TI
8305 /* automatic parse from the BIOS config */
8306 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
8307 if (err < 0)
8308 goto error;
ce764ab2 8309
fea80fae
TI
8310 if (!spec->gen.no_analog) {
8311 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
8312 if (err < 0)
8313 goto error;
8314 }
1d045db9 8315
1727a771 8316 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8317
ce764ab2 8318 return 0;
e16fb6d1
TI
8319
8320 error:
8321 alc_free(codec);
8322 return err;
ce764ab2
TI
8323}
8324
1d045db9
TI
8325/*
8326 * ALC662 support
8327 *
8328 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
8329 * configuration. Each pin widget can choose any input DACs and a mixer.
8330 * Each ADC is connected from a mixer of all inputs. This makes possible
8331 * 6-channel independent captures.
8332 *
8333 * In addition, an independent DAC for the multi-playback (not used in this
8334 * driver yet).
8335 */
1d045db9
TI
8336
8337/*
8338 * BIOS auto configuration
8339 */
8340
bc9f98a9
KY
8341static int alc662_parse_auto_config(struct hda_codec *codec)
8342{
4c6d72d1 8343 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8344 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
8345 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8346 const hda_nid_t *ssids;
ee979a14 8347
7639a06c
TI
8348 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
8349 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
8350 codec->core.vendor_id == 0x10ec0671)
3e6179b8 8351 ssids = alc663_ssids;
6227cdce 8352 else
3e6179b8
TI
8353 ssids = alc662_ssids;
8354 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
8355}
8356
6be7948f 8357static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 8358 const struct hda_fixup *fix, int action)
6fc398cb 8359{
9bb1f06f 8360 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 8361 return;
6be7948f
TB
8362 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
8363 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
8364 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
8365 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
8366 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 8367 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
8368}
8369
8e383953
TI
8370static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
8371 { .channels = 2,
8372 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
8373 { .channels = 4,
8374 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
8375 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
8376 { }
8377};
8378
8379/* override the 2.1 chmap */
eb9ca3ab 8380static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
8381 const struct hda_fixup *fix, int action)
8382{
8383 if (action == HDA_FIXUP_ACT_BUILD) {
8384 struct alc_spec *spec = codec->spec;
bbbc7e85 8385 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
8386 }
8387}
8388
bf68665d
TI
8389/* avoid D3 for keeping GPIO up */
8390static unsigned int gpio_led_power_filter(struct hda_codec *codec,
8391 hda_nid_t nid,
8392 unsigned int power_state)
8393{
8394 struct alc_spec *spec = codec->spec;
d261eec8 8395 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
8396 return AC_PWRST_D0;
8397 return power_state;
8398}
8399
3e887f37
TI
8400static void alc662_fixup_led_gpio1(struct hda_codec *codec,
8401 const struct hda_fixup *fix, int action)
8402{
8403 struct alc_spec *spec = codec->spec;
3e887f37 8404
01e4a275 8405 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 8406 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 8407 spec->mute_led_polarity = 1;
bf68665d 8408 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
8409 }
8410}
8411
c6790c8e
KY
8412static void alc662_usi_automute_hook(struct hda_codec *codec,
8413 struct hda_jack_callback *jack)
8414{
8415 struct alc_spec *spec = codec->spec;
8416 int vref;
8417 msleep(200);
8418 snd_hda_gen_hp_automute(codec, jack);
8419
8420 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
8421 msleep(100);
8422 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8423 vref);
8424}
8425
8426static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
8427 const struct hda_fixup *fix, int action)
8428{
8429 struct alc_spec *spec = codec->spec;
8430 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8431 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
8432 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
8433 }
8434}
8435
00066e97
SB
8436static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
8437 struct hda_jack_callback *cb)
8438{
8439 /* surround speakers at 0x1b already get muted automatically when
8440 * headphones are plugged in, but we have to mute/unmute the remaining
8441 * channels manually:
8442 * 0x15 - front left/front right
8443 * 0x18 - front center/ LFE
8444 */
8445 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
8446 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
8447 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
8448 } else {
8449 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
8450 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
8451 }
8452}
8453
8454static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
8455 const struct hda_fixup *fix, int action)
8456{
8457 /* Pin 0x1b: shared headphones jack and surround speakers */
8458 if (!is_jack_detectable(codec, 0x1b))
8459 return;
8460
8461 switch (action) {
8462 case HDA_FIXUP_ACT_PRE_PROBE:
8463 snd_hda_jack_detect_enable_callback(codec, 0x1b,
8464 alc662_aspire_ethos_mute_speakers);
336820c4
TI
8465 /* subwoofer needs an extra GPIO setting to become audible */
8466 alc_setup_gpio(codec, 0x02);
00066e97
SB
8467 break;
8468 case HDA_FIXUP_ACT_INIT:
8469 /* Make sure to start in a correct state, i.e. if
8470 * headphones have been plugged in before powering up the system
8471 */
8472 alc662_aspire_ethos_mute_speakers(codec, NULL);
8473 break;
8474 }
8475}
8476
f3f9185f
KY
8477static struct coef_fw alc668_coefs[] = {
8478 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
8479 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
8480 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
8481 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
8482 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
8483 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
8484 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
8485 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
8486 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
8487 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
8488 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
8489 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
8490 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
8491 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
8492 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
8493 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
8494 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
8495 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
8496 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
8497 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
8498 {}
8499};
8500
8501static void alc668_restore_default_value(struct hda_codec *codec)
8502{
8503 alc_process_coef_fw(codec, alc668_coefs);
8504}
8505
6cb3b707 8506enum {
2df03514 8507 ALC662_FIXUP_ASPIRE,
3e887f37 8508 ALC662_FIXUP_LED_GPIO1,
6cb3b707 8509 ALC662_FIXUP_IDEAPAD,
6be7948f 8510 ALC272_FIXUP_MARIO,
d2ebd479 8511 ALC662_FIXUP_CZC_P10T,
94024cd1 8512 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 8513 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
8514 ALC662_FIXUP_ASUS_MODE1,
8515 ALC662_FIXUP_ASUS_MODE2,
8516 ALC662_FIXUP_ASUS_MODE3,
8517 ALC662_FIXUP_ASUS_MODE4,
8518 ALC662_FIXUP_ASUS_MODE5,
8519 ALC662_FIXUP_ASUS_MODE6,
8520 ALC662_FIXUP_ASUS_MODE7,
8521 ALC662_FIXUP_ASUS_MODE8,
1565cc35 8522 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 8523 ALC662_FIXUP_ZOTAC_Z68,
125821ae 8524 ALC662_FIXUP_INV_DMIC,
1f8b46cd 8525 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 8526 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 8527 ALC662_FIXUP_HEADSET_MODE,
73bdd597 8528 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 8529 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 8530 ALC662_FIXUP_BASS_16,
a30c9aaa 8531 ALC662_FIXUP_BASS_1A,
8e54b4ac 8532 ALC662_FIXUP_BASS_CHMAP,
493a52a9 8533 ALC668_FIXUP_AUTO_MUTE,
5e6db669 8534 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 8535 ALC668_FIXUP_DELL_XPS13,
9d4dc584 8536 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 8537 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 8538 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 8539 ALC668_FIXUP_MIC_COEF,
11ba6111 8540 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
8541 ALC891_FIXUP_HEADSET_MODE,
8542 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 8543 ALC662_FIXUP_ACER_VERITON,
1a3f0991 8544 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
8545 ALC662_FIXUP_USI_FUNC,
8546 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 8547 ALC662_FIXUP_LENOVO_MULTI_CODECS,
00066e97 8548 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
00066e97 8549 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
6cb3b707
DH
8550};
8551
1727a771 8552static const struct hda_fixup alc662_fixups[] = {
2df03514 8553 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
8554 .type = HDA_FIXUP_PINS,
8555 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
8556 { 0x15, 0x99130112 }, /* subwoofer */
8557 { }
8558 }
8559 },
3e887f37
TI
8560 [ALC662_FIXUP_LED_GPIO1] = {
8561 .type = HDA_FIXUP_FUNC,
8562 .v.func = alc662_fixup_led_gpio1,
8563 },
6cb3b707 8564 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
8565 .type = HDA_FIXUP_PINS,
8566 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
8567 { 0x17, 0x99130112 }, /* subwoofer */
8568 { }
3e887f37
TI
8569 },
8570 .chained = true,
8571 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 8572 },
6be7948f 8573 [ALC272_FIXUP_MARIO] = {
1727a771 8574 .type = HDA_FIXUP_FUNC,
b5bfbc67 8575 .v.func = alc272_fixup_mario,
d2ebd479
AA
8576 },
8577 [ALC662_FIXUP_CZC_P10T] = {
1727a771 8578 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
8579 .v.verbs = (const struct hda_verb[]) {
8580 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
8581 {}
8582 }
8583 },
94024cd1 8584 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 8585 .type = HDA_FIXUP_FUNC,
23d30f28 8586 .v.func = alc_fixup_sku_ignore,
c6b35874 8587 },
e59ea3ed 8588 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
8589 .type = HDA_FIXUP_PINS,
8590 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
8591 { 0x14, 0x0221201f }, /* HP out */
8592 { }
8593 },
8594 .chained = true,
8595 .chain_id = ALC662_FIXUP_SKU_IGNORE
8596 },
53c334ad 8597 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
8598 .type = HDA_FIXUP_PINS,
8599 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8600 { 0x14, 0x99130110 }, /* speaker */
8601 { 0x18, 0x01a19c20 }, /* mic */
8602 { 0x19, 0x99a3092f }, /* int-mic */
8603 { 0x21, 0x0121401f }, /* HP out */
8604 { }
8605 },
8606 .chained = true,
8607 .chain_id = ALC662_FIXUP_SKU_IGNORE
8608 },
8609 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
8610 .type = HDA_FIXUP_PINS,
8611 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
8612 { 0x14, 0x99130110 }, /* speaker */
8613 { 0x18, 0x01a19820 }, /* mic */
8614 { 0x19, 0x99a3092f }, /* int-mic */
8615 { 0x1b, 0x0121401f }, /* HP out */
8616 { }
8617 },
53c334ad
TI
8618 .chained = true,
8619 .chain_id = ALC662_FIXUP_SKU_IGNORE
8620 },
8621 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
8622 .type = HDA_FIXUP_PINS,
8623 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8624 { 0x14, 0x99130110 }, /* speaker */
8625 { 0x15, 0x0121441f }, /* HP */
8626 { 0x18, 0x01a19840 }, /* mic */
8627 { 0x19, 0x99a3094f }, /* int-mic */
8628 { 0x21, 0x01211420 }, /* HP2 */
8629 { }
8630 },
8631 .chained = true,
8632 .chain_id = ALC662_FIXUP_SKU_IGNORE
8633 },
8634 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
8635 .type = HDA_FIXUP_PINS,
8636 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8637 { 0x14, 0x99130110 }, /* speaker */
8638 { 0x16, 0x99130111 }, /* speaker */
8639 { 0x18, 0x01a19840 }, /* mic */
8640 { 0x19, 0x99a3094f }, /* int-mic */
8641 { 0x21, 0x0121441f }, /* HP */
8642 { }
8643 },
8644 .chained = true,
8645 .chain_id = ALC662_FIXUP_SKU_IGNORE
8646 },
8647 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
8648 .type = HDA_FIXUP_PINS,
8649 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8650 { 0x14, 0x99130110 }, /* speaker */
8651 { 0x15, 0x0121441f }, /* HP */
8652 { 0x16, 0x99130111 }, /* speaker */
8653 { 0x18, 0x01a19840 }, /* mic */
8654 { 0x19, 0x99a3094f }, /* int-mic */
8655 { }
8656 },
8657 .chained = true,
8658 .chain_id = ALC662_FIXUP_SKU_IGNORE
8659 },
8660 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
8661 .type = HDA_FIXUP_PINS,
8662 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8663 { 0x14, 0x99130110 }, /* speaker */
8664 { 0x15, 0x01211420 }, /* HP2 */
8665 { 0x18, 0x01a19840 }, /* mic */
8666 { 0x19, 0x99a3094f }, /* int-mic */
8667 { 0x1b, 0x0121441f }, /* HP */
8668 { }
8669 },
8670 .chained = true,
8671 .chain_id = ALC662_FIXUP_SKU_IGNORE
8672 },
8673 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
8674 .type = HDA_FIXUP_PINS,
8675 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8676 { 0x14, 0x99130110 }, /* speaker */
8677 { 0x17, 0x99130111 }, /* speaker */
8678 { 0x18, 0x01a19840 }, /* mic */
8679 { 0x19, 0x99a3094f }, /* int-mic */
8680 { 0x1b, 0x01214020 }, /* HP */
8681 { 0x21, 0x0121401f }, /* HP */
8682 { }
8683 },
8684 .chained = true,
8685 .chain_id = ALC662_FIXUP_SKU_IGNORE
8686 },
8687 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
8688 .type = HDA_FIXUP_PINS,
8689 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8690 { 0x14, 0x99130110 }, /* speaker */
8691 { 0x12, 0x99a30970 }, /* int-mic */
8692 { 0x15, 0x01214020 }, /* HP */
8693 { 0x17, 0x99130111 }, /* speaker */
8694 { 0x18, 0x01a19840 }, /* mic */
8695 { 0x21, 0x0121401f }, /* HP */
8696 { }
8697 },
8698 .chained = true,
8699 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 8700 },
1565cc35 8701 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 8702 .type = HDA_FIXUP_FUNC,
1565cc35
TI
8703 .v.func = alc_fixup_no_jack_detect,
8704 },
edfe3bfc 8705 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
8706 .type = HDA_FIXUP_PINS,
8707 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
8708 { 0x1b, 0x02214020 }, /* Front HP */
8709 { }
8710 }
8711 },
125821ae 8712 [ALC662_FIXUP_INV_DMIC] = {
1727a771 8713 .type = HDA_FIXUP_FUNC,
9d36a7dc 8714 .v.func = alc_fixup_inv_dmic,
125821ae 8715 },
033b0a7c
GM
8716 [ALC668_FIXUP_DELL_XPS13] = {
8717 .type = HDA_FIXUP_FUNC,
8718 .v.func = alc_fixup_dell_xps13,
8719 .chained = true,
8720 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
8721 },
5e6db669
GM
8722 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
8723 .type = HDA_FIXUP_FUNC,
8724 .v.func = alc_fixup_disable_aamix,
8725 .chained = true,
8726 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8727 },
493a52a9
HW
8728 [ALC668_FIXUP_AUTO_MUTE] = {
8729 .type = HDA_FIXUP_FUNC,
8730 .v.func = alc_fixup_auto_mute_via_amp,
8731 .chained = true,
8732 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8733 },
1f8b46cd
DH
8734 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
8735 .type = HDA_FIXUP_PINS,
8736 .v.pins = (const struct hda_pintbl[]) {
8737 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8738 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
8739 { }
8740 },
8741 .chained = true,
8742 .chain_id = ALC662_FIXUP_HEADSET_MODE
8743 },
8744 [ALC662_FIXUP_HEADSET_MODE] = {
8745 .type = HDA_FIXUP_FUNC,
8746 .v.func = alc_fixup_headset_mode_alc662,
8747 },
73bdd597
DH
8748 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
8749 .type = HDA_FIXUP_PINS,
8750 .v.pins = (const struct hda_pintbl[]) {
8751 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8752 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8753 { }
8754 },
8755 .chained = true,
8756 .chain_id = ALC668_FIXUP_HEADSET_MODE
8757 },
8758 [ALC668_FIXUP_HEADSET_MODE] = {
8759 .type = HDA_FIXUP_FUNC,
8760 .v.func = alc_fixup_headset_mode_alc668,
8761 },
8e54b4ac 8762 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 8763 .type = HDA_FIXUP_FUNC,
eb9ca3ab 8764 .v.func = alc_fixup_bass_chmap,
8e383953
TI
8765 .chained = true,
8766 .chain_id = ALC662_FIXUP_ASUS_MODE4
8767 },
61a75f13
DH
8768 [ALC662_FIXUP_BASS_16] = {
8769 .type = HDA_FIXUP_PINS,
8770 .v.pins = (const struct hda_pintbl[]) {
8771 {0x16, 0x80106111}, /* bass speaker */
8772 {}
8773 },
8774 .chained = true,
8775 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8776 },
a30c9aaa
TI
8777 [ALC662_FIXUP_BASS_1A] = {
8778 .type = HDA_FIXUP_PINS,
8779 .v.pins = (const struct hda_pintbl[]) {
8780 {0x1a, 0x80106111}, /* bass speaker */
8781 {}
8782 },
8e54b4ac
DH
8783 .chained = true,
8784 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 8785 },
8e54b4ac 8786 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 8787 .type = HDA_FIXUP_FUNC,
eb9ca3ab 8788 .v.func = alc_fixup_bass_chmap,
a30c9aaa 8789 },
9d4dc584
BM
8790 [ALC662_FIXUP_ASUS_Nx50] = {
8791 .type = HDA_FIXUP_FUNC,
8792 .v.func = alc_fixup_auto_mute_via_amp,
8793 .chained = true,
8794 .chain_id = ALC662_FIXUP_BASS_1A
8795 },
fc7438b1
MP
8796 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
8797 .type = HDA_FIXUP_FUNC,
8798 .v.func = alc_fixup_headset_mode_alc668,
8799 .chain_id = ALC662_FIXUP_BASS_CHMAP
8800 },
3231e205
YP
8801 [ALC668_FIXUP_ASUS_Nx51] = {
8802 .type = HDA_FIXUP_PINS,
8803 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
8804 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8805 { 0x1a, 0x90170151 }, /* bass speaker */
8806 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
8807 {}
8808 },
8809 .chained = true,
fc7438b1 8810 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 8811 },
5b7c5e1f 8812 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
8813 .type = HDA_FIXUP_VERBS,
8814 .v.verbs = (const struct hda_verb[]) {
8815 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
8816 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
8817 {}
8818 },
8819 },
5b7c5e1f
TI
8820 [ALC668_FIXUP_ASUS_G751] = {
8821 .type = HDA_FIXUP_PINS,
8822 .v.pins = (const struct hda_pintbl[]) {
8823 { 0x16, 0x0421101f }, /* HP */
8824 {}
8825 },
8826 .chained = true,
8827 .chain_id = ALC668_FIXUP_MIC_COEF
8828 },
78f4f7c2
KY
8829 [ALC891_FIXUP_HEADSET_MODE] = {
8830 .type = HDA_FIXUP_FUNC,
8831 .v.func = alc_fixup_headset_mode,
8832 },
8833 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
8834 .type = HDA_FIXUP_PINS,
8835 .v.pins = (const struct hda_pintbl[]) {
8836 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8837 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8838 { }
8839 },
8840 .chained = true,
8841 .chain_id = ALC891_FIXUP_HEADSET_MODE
8842 },
9b51fe3e
SB
8843 [ALC662_FIXUP_ACER_VERITON] = {
8844 .type = HDA_FIXUP_PINS,
8845 .v.pins = (const struct hda_pintbl[]) {
8846 { 0x15, 0x50170120 }, /* no internal speaker */
8847 { }
8848 }
8849 },
1a3f0991
TI
8850 [ALC892_FIXUP_ASROCK_MOBO] = {
8851 .type = HDA_FIXUP_PINS,
8852 .v.pins = (const struct hda_pintbl[]) {
8853 { 0x15, 0x40f000f0 }, /* disabled */
8854 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
8855 { }
8856 }
8857 },
c6790c8e
KY
8858 [ALC662_FIXUP_USI_FUNC] = {
8859 .type = HDA_FIXUP_FUNC,
8860 .v.func = alc662_fixup_usi_headset_mic,
8861 },
8862 [ALC662_FIXUP_USI_HEADSET_MODE] = {
8863 .type = HDA_FIXUP_PINS,
8864 .v.pins = (const struct hda_pintbl[]) {
8865 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
8866 { 0x18, 0x01a1903d },
8867 { }
8868 },
8869 .chained = true,
8870 .chain_id = ALC662_FIXUP_USI_FUNC
8871 },
ca169cc2
KY
8872 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
8873 .type = HDA_FIXUP_FUNC,
8874 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8875 },
00066e97
SB
8876 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
8877 .type = HDA_FIXUP_FUNC,
8878 .v.func = alc662_fixup_aspire_ethos_hp,
8879 },
00066e97
SB
8880 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
8881 .type = HDA_FIXUP_PINS,
8882 .v.pins = (const struct hda_pintbl[]) {
8883 { 0x15, 0x92130110 }, /* front speakers */
8884 { 0x18, 0x99130111 }, /* center/subwoofer */
8885 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
8886 { }
8887 },
8888 .chained = true,
336820c4 8889 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
00066e97 8890 },
6cb3b707
DH
8891};
8892
a9111321 8893static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 8894 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 8895 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 8896 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 8897 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 8898 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 8899 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 8900 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 8901 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
73bdd597
DH
8902 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8903 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 8904 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 8905 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 8906 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 8907 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 8908 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
8909 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8910 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 8911 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 8912 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
2da2dc9e 8913 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 8914 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
db8948e6 8915 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
9d4dc584 8916 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 8917 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
8e54b4ac 8918 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 8919 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
8920 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
8921 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
c7efff92 8922 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 8923 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 8924 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 8925 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 8926 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 8927 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 8928 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 8929 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
d4118588 8930 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 8931 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 8932 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 8933 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 8934 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
d2ebd479 8935 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
00066e97 8936 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
53c334ad
TI
8937
8938#if 0
8939 /* Below is a quirk table taken from the old code.
8940 * Basically the device should work as is without the fixup table.
8941 * If BIOS doesn't give a proper info, enable the corresponding
8942 * fixup entry.
7d7eb9ea 8943 */
53c334ad
TI
8944 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
8945 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
8946 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
8947 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
8948 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8949 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8950 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8951 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
8952 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
8953 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8954 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
8955 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
8956 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
8957 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
8958 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
8959 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8960 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
8961 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
8962 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8963 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8964 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8965 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8966 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
8967 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
8968 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
8969 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8970 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
8971 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8972 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8973 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
8974 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8975 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8976 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
8977 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
8978 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
8979 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
8980 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
8981 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
8982 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
8983 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8984 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
8985 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
8986 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8987 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
8988 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
8989 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
8990 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
8991 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
8992 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8993 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
8994#endif
6cb3b707
DH
8995 {}
8996};
8997
1727a771 8998static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
8999 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
9000 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 9001 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 9002 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
9003 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
9004 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
9005 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
9006 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
9007 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
9008 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
9009 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
9010 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 9011 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 9012 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 9013 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 9014 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
9015 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
9016 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
9017 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
9018 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
9019 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
9020 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
9021 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
9022 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 9023 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
9024 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
9025 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
9026 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
9027 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
9028 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 9029 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
00066e97 9030 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
6be7948f
TB
9031 {}
9032};
6cb3b707 9033
532895c5 9034static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
9035 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9036 {0x17, 0x02211010},
9037 {0x18, 0x01a19030},
9038 {0x1a, 0x01813040},
9039 {0x21, 0x01014020}),
4b4e0e32
HW
9040 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9041 {0x16, 0x01813030},
9042 {0x17, 0x02211010},
9043 {0x18, 0x01a19040},
9044 {0x21, 0x01014020}),
1f8b46cd 9045 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 9046 {0x14, 0x01014010},
1f8b46cd 9047 {0x18, 0x01a19020},
1f8b46cd 9048 {0x1a, 0x0181302f},
11580297 9049 {0x1b, 0x0221401f}),
76c2132e
DH
9050 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9051 {0x12, 0x99a30130},
9052 {0x14, 0x90170110},
9053 {0x15, 0x0321101f},
11580297 9054 {0x16, 0x03011020}),
76c2132e
DH
9055 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9056 {0x12, 0x99a30140},
9057 {0x14, 0x90170110},
9058 {0x15, 0x0321101f},
11580297 9059 {0x16, 0x03011020}),
76c2132e
DH
9060 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9061 {0x12, 0x99a30150},
9062 {0x14, 0x90170110},
9063 {0x15, 0x0321101f},
11580297 9064 {0x16, 0x03011020}),
76c2132e 9065 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
9066 {0x14, 0x90170110},
9067 {0x15, 0x0321101f},
11580297 9068 {0x16, 0x03011020}),
76c2132e
DH
9069 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
9070 {0x12, 0x90a60130},
9071 {0x14, 0x90170110},
11580297 9072 {0x15, 0x0321101f}),
532895c5
HW
9073 {}
9074};
9075
1d045db9
TI
9076/*
9077 */
bc9f98a9
KY
9078static int patch_alc662(struct hda_codec *codec)
9079{
9080 struct alc_spec *spec;
3de95173 9081 int err;
bc9f98a9 9082
3de95173
TI
9083 err = alc_alloc_spec(codec, 0x0b);
9084 if (err < 0)
9085 return err;
bc9f98a9 9086
3de95173 9087 spec = codec->spec;
1f0f4b80 9088
225068ab
TI
9089 spec->shutup = alc_eapd_shutup;
9090
53c334ad
TI
9091 /* handle multiple HPs as is */
9092 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
9093
2c3bf9ab
TI
9094 alc_fix_pll_init(codec, 0x20, 0x04, 15);
9095
7639a06c 9096 switch (codec->core.vendor_id) {
f3f9185f
KY
9097 case 0x10ec0668:
9098 spec->init_hook = alc668_restore_default_value;
9099 break;
f3f9185f 9100 }
8663ff75 9101
c9af753f
TI
9102 alc_pre_init(codec);
9103
1727a771 9104 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 9105 alc662_fixup_tbl, alc662_fixups);
0fc1e447 9106 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
1727a771 9107 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
9108
9109 alc_auto_parse_customize_define(codec);
9110
7504b6cd
TI
9111 if (has_cdefine_beep(codec))
9112 spec->gen.beep_nid = 0x01;
9113
1bb7e43e 9114 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 9115 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 9116 spec->cdefine.platform_type == 1) {
6134b1a2
WY
9117 err = alc_codec_rename(codec, "ALC272X");
9118 if (err < 0)
e16fb6d1 9119 goto error;
20ca0c35 9120 }
274693f3 9121
b9c5106c
TI
9122 /* automatic parse from the BIOS config */
9123 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
9124 if (err < 0)
9125 goto error;
bc9f98a9 9126
7504b6cd 9127 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 9128 switch (codec->core.vendor_id) {
da00c244 9129 case 0x10ec0662:
fea80fae 9130 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
9131 break;
9132 case 0x10ec0272:
9133 case 0x10ec0663:
9134 case 0x10ec0665:
9ad54547 9135 case 0x10ec0668:
fea80fae 9136 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
9137 break;
9138 case 0x10ec0273:
fea80fae 9139 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
9140 break;
9141 }
fea80fae
TI
9142 if (err < 0)
9143 goto error;
cec27c89 9144 }
2134ea4f 9145
1727a771 9146 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 9147
bc9f98a9 9148 return 0;
801f49d3 9149
e16fb6d1
TI
9150 error:
9151 alc_free(codec);
9152 return err;
b478b998
KY
9153}
9154
d1eb57f4
KY
9155/*
9156 * ALC680 support
9157 */
d1eb57f4 9158
d1eb57f4
KY
9159static int alc680_parse_auto_config(struct hda_codec *codec)
9160{
3e6179b8 9161 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
9162}
9163
d1eb57f4 9164/*
d1eb57f4 9165 */
d1eb57f4
KY
9166static int patch_alc680(struct hda_codec *codec)
9167{
d1eb57f4
KY
9168 int err;
9169
1f0f4b80 9170 /* ALC680 has no aa-loopback mixer */
3de95173
TI
9171 err = alc_alloc_spec(codec, 0);
9172 if (err < 0)
9173 return err;
1f0f4b80 9174
1ebec5f2
TI
9175 /* automatic parse from the BIOS config */
9176 err = alc680_parse_auto_config(codec);
9177 if (err < 0) {
9178 alc_free(codec);
9179 return err;
d1eb57f4
KY
9180 }
9181
d1eb57f4
KY
9182 return 0;
9183}
9184
1da177e4
LT
9185/*
9186 * patch entries
9187 */
b9a94a9c 9188static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 9189 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 9190 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
2a36c16e 9191 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
4231430d 9192 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
b9a94a9c
TI
9193 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
9194 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 9195 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 9196 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 9197 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
b9a94a9c
TI
9198 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
9199 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 9200 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
9201 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
9202 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
9203 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
9204 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
9205 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
9206 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
9207 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 9208 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
9209 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
9210 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
9211 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
9212 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
9213 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
9214 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 9215 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c
TI
9216 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
9217 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 9218 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
9219 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
9220 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
9221 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 9222 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 9223 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 9224 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 9225 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
1078bef0 9226 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
f0778871 9227 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
b9a94a9c
TI
9228 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
9229 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
9230 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
9231 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
9232 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
9233 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
9234 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
9235 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
9236 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
9237 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
9238 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
9239 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
9240 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
9241 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
9242 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
9243 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
9244 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
83629532 9245 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
78f4f7c2 9246 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
9247 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
9248 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
9249 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
9250 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
9251 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
9252 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
9253 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
9254 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
9255 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
9256 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
9257 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
9258 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
9259 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
6d9ffcff 9260 HDA_CODEC_ENTRY(0x10ec0b00, "ALCS1200A", patch_alc882),
65553b12 9261 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 9262 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
1da177e4
LT
9263 {} /* terminator */
9264};
b9a94a9c 9265MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
9266
9267MODULE_LICENSE("GPL");
9268MODULE_DESCRIPTION("Realtek HD-audio codec");
9269
d8a766a1 9270static struct hda_codec_driver realtek_driver = {
b9a94a9c 9271 .id = snd_hda_id_realtek,
1289e9e8
TI
9272};
9273
d8a766a1 9274module_hda_codec_driver(realtek_driver);