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