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