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