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