]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
ALSA: control: Fix race between adding and removing a user element
[thirdparty/linux.git] / sound / pci / hda / patch_realtek.c
CommitLineData
1da177e4
LT
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
1d045db9 4 * HD audio interface patch for Realtek ALC codecs
1da177e4 5 *
df694daa
KY
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 8 * Takashi Iwai <tiwai@suse.de>
409a3e98 9 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
10 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
1da177e4
LT
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
08fb0d0e 30#include <linux/dmi.h>
da155d5b 31#include <linux/module.h>
33f4acd3 32#include <linux/input.h>
1da177e4 33#include <sound/core.h>
9ad0e496 34#include <sound/jack.h>
be57bfff 35#include <sound/hda_codec.h>
1da177e4 36#include "hda_local.h"
23d30f28 37#include "hda_auto_parser.h"
1835a0f9 38#include "hda_jack.h"
08c189f2 39#include "hda_generic.h"
1da177e4 40
cd63a5ff
TI
41/* keep halting ALC5505 DSP, for power saving */
42#define HALT_REALTEK_ALC5505
43
4a79ba34
TI
44/* extra amp-initialization sequence types */
45enum {
1c76aa5f 46 ALC_INIT_UNDEFINED,
4a79ba34
TI
47 ALC_INIT_NONE,
48 ALC_INIT_DEFAULT,
4a79ba34
TI
49};
50
73bdd597
DH
51enum {
52 ALC_HEADSET_MODE_UNKNOWN,
53 ALC_HEADSET_MODE_UNPLUGGED,
54 ALC_HEADSET_MODE_HEADSET,
55 ALC_HEADSET_MODE_MIC,
56 ALC_HEADSET_MODE_HEADPHONE,
57};
58
59enum {
60 ALC_HEADSET_TYPE_UNKNOWN,
61 ALC_HEADSET_TYPE_CTIA,
62 ALC_HEADSET_TYPE_OMTP,
63};
64
c7b60a89
HW
65enum {
66 ALC_KEY_MICMUTE_INDEX,
67};
68
da00c244
KY
69struct alc_customize_define {
70 unsigned int sku_cfg;
71 unsigned char port_connectivity;
72 unsigned char check_sum;
73 unsigned char customization;
74 unsigned char external_amp;
75 unsigned int enable_pcbeep:1;
76 unsigned int platform_type:1;
77 unsigned int swap:1;
78 unsigned int override:1;
90622917 79 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
80};
81
1da177e4 82struct alc_spec {
08c189f2 83 struct hda_gen_spec gen; /* must be at head */
23d30f28 84
1da177e4 85 /* codec parameterization */
da00c244 86 struct alc_customize_define cdefine;
08c189f2 87 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 88
5579cd6f
TI
89 /* GPIO bits */
90 unsigned int gpio_mask;
91 unsigned int gpio_dir;
92 unsigned int gpio_data;
215c850c 93 bool gpio_write_delay; /* add a delay before writing gpio_data */
5579cd6f 94
08fb0d0e
TI
95 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
96 int mute_led_polarity;
97 hda_nid_t mute_led_nid;
9c5dc3bf 98 hda_nid_t cap_mute_led_nid;
08fb0d0e 99
0f32fd19
TI
100 unsigned int gpio_mute_led_mask;
101 unsigned int gpio_mic_led_mask;
9f5c6faf 102
73bdd597
DH
103 hda_nid_t headset_mic_pin;
104 hda_nid_t headphone_mic_pin;
105 int current_headset_mode;
106 int current_headset_type;
107
ae6b813a
TI
108 /* hooks */
109 void (*init_hook)(struct hda_codec *codec);
83012a7c 110#ifdef CONFIG_PM
c97259df 111 void (*power_hook)(struct hda_codec *codec);
f5de24b0 112#endif
1c716153 113 void (*shutup)(struct hda_codec *codec);
70a0976b 114 void (*reboot_notify)(struct hda_codec *codec);
d922b51d 115
4a79ba34 116 int init_amp;
d433a678 117 int codec_variant; /* flag for other variants */
97a26570
KY
118 unsigned int has_alc5505_dsp:1;
119 unsigned int no_depop_delay:1;
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),
f3d737b6 2368 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2f0d520a 2369 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
7a6069bf
TI
2370 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2371 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2372 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2373 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2374 {}
2375};
2376
1727a771 2377static const struct hda_model_fixup alc882_fixup_models[] = {
772c2917
TI
2378 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2379 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2380 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2381 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2382 {.id = ALC889_FIXUP_CD, .name = "cd"},
2383 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2384 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2385 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2386 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2387 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2388 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2389 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2390 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2391 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2392 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
912093bc
TI
2393 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2394 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2395 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
772c2917
TI
2396 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2397 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2398 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2399 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2400 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2401 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2402 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2403 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
6e72aa5f 2404 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2405 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
772c2917 2406 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
ba90d6a6 2407 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
772c2917 2408 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
912093bc
TI
2409 {}
2410};
2411
f6a92248 2412/*
1d045db9 2413 * BIOS auto configuration
f6a92248 2414 */
1d045db9
TI
2415/* almost identical with ALC880 parser... */
2416static int alc882_parse_auto_config(struct hda_codec *codec)
2417{
1d045db9 2418 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2419 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2420 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2421}
b896b4eb 2422
1d045db9
TI
2423/*
2424 */
1d045db9 2425static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2426{
2427 struct alc_spec *spec;
1a97b7f2 2428 int err;
f6a92248 2429
3de95173
TI
2430 err = alc_alloc_spec(codec, 0x0b);
2431 if (err < 0)
2432 return err;
f6a92248 2433
3de95173 2434 spec = codec->spec;
1f0f4b80 2435
7639a06c 2436 switch (codec->core.vendor_id) {
1d045db9
TI
2437 case 0x10ec0882:
2438 case 0x10ec0885:
acf08081 2439 case 0x10ec0900:
a535ad57 2440 case 0x10ec1220:
1d045db9
TI
2441 break;
2442 default:
2443 /* ALC883 and variants */
2444 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2445 break;
c793bec5 2446 }
977ddd6b 2447
1727a771 2448 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2449 alc882_fixups);
1727a771 2450 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2451
1d045db9
TI
2452 alc_auto_parse_customize_define(codec);
2453
7504b6cd
TI
2454 if (has_cdefine_beep(codec))
2455 spec->gen.beep_nid = 0x01;
2456
1a97b7f2
TI
2457 /* automatic parse from the BIOS config */
2458 err = alc882_parse_auto_config(codec);
2459 if (err < 0)
2460 goto error;
f6a92248 2461
fea80fae
TI
2462 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2463 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2464 if (err < 0)
2465 goto error;
2466 }
f6a92248 2467
1727a771 2468 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2469
f6a92248 2470 return 0;
e16fb6d1
TI
2471
2472 error:
2473 alc_free(codec);
2474 return err;
f6a92248
KY
2475}
2476
df694daa 2477
df694daa 2478/*
1d045db9 2479 * ALC262 support
df694daa 2480 */
1d045db9 2481static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2482{
1d045db9 2483 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2484 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2485 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2486}
2487
df694daa 2488/*
1d045db9 2489 * Pin config fixes
df694daa 2490 */
cfc9b06f 2491enum {
ea4e7af1 2492 ALC262_FIXUP_FSC_H270,
7513e6da 2493 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2494 ALC262_FIXUP_HP_Z200,
2495 ALC262_FIXUP_TYAN,
c470150c 2496 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2497 ALC262_FIXUP_BENQ,
2498 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2499 ALC262_FIXUP_INV_DMIC,
b5c6611f 2500 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2501};
2502
1727a771 2503static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2504 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2505 .type = HDA_FIXUP_PINS,
2506 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2507 { 0x14, 0x99130110 }, /* speaker */
2508 { 0x15, 0x0221142f }, /* front HP */
2509 { 0x1b, 0x0121141f }, /* rear HP */
2510 { }
2511 }
2512 },
7513e6da
TI
2513 [ALC262_FIXUP_FSC_S7110] = {
2514 .type = HDA_FIXUP_PINS,
2515 .v.pins = (const struct hda_pintbl[]) {
2516 { 0x15, 0x90170110 }, /* speaker */
2517 { }
2518 },
2519 .chained = true,
2520 .chain_id = ALC262_FIXUP_BENQ,
2521 },
ea4e7af1 2522 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2523 .type = HDA_FIXUP_PINS,
2524 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2525 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2526 { }
2527 }
cfc9b06f 2528 },
ea4e7af1 2529 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2530 .type = HDA_FIXUP_PINS,
2531 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2532 { 0x14, 0x1993e1f0 }, /* int AUX */
2533 { }
2534 }
2535 },
c470150c 2536 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2537 .type = HDA_FIXUP_PINCTLS,
2538 .v.pins = (const struct hda_pintbl[]) {
2539 { 0x19, PIN_VREF50 },
b42590b8
TI
2540 {}
2541 },
2542 .chained = true,
2543 .chain_id = ALC262_FIXUP_BENQ,
2544 },
2545 [ALC262_FIXUP_BENQ] = {
1727a771 2546 .type = HDA_FIXUP_VERBS,
b42590b8 2547 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2548 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2549 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2550 {}
2551 }
2552 },
b42590b8 2553 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2554 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2555 .v.verbs = (const struct hda_verb[]) {
2556 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2557 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2558 {}
2559 }
2560 },
6e72aa5f 2561 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2562 .type = HDA_FIXUP_FUNC,
9d36a7dc 2563 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2564 },
b5c6611f
ML
2565 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2566 .type = HDA_FIXUP_FUNC,
2567 .v.func = alc_fixup_no_depop_delay,
2568 },
cfc9b06f
TI
2569};
2570
1d045db9 2571static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2572 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2573 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2574 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1 2575 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
275ec0cb 2576 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
ea4e7af1 2577 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2578 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2579 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2580 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2581 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2582 {}
2583};
df694daa 2584
1727a771 2585static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f 2586 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
e43c44d6
TI
2587 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2588 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2589 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2590 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2591 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2592 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2593 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2594 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
6e72aa5f
TI
2595 {}
2596};
1d045db9 2597
1d045db9
TI
2598/*
2599 */
1d045db9 2600static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2601{
2602 struct alc_spec *spec;
df694daa
KY
2603 int err;
2604
3de95173
TI
2605 err = alc_alloc_spec(codec, 0x0b);
2606 if (err < 0)
2607 return err;
df694daa 2608
3de95173 2609 spec = codec->spec;
08c189f2 2610 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9 2611
225068ab
TI
2612 spec->shutup = alc_eapd_shutup;
2613
1d045db9
TI
2614#if 0
2615 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2616 * under-run
2617 */
98b24883 2618 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
1d045db9 2619#endif
1d045db9
TI
2620 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2621
1727a771 2622 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2623 alc262_fixups);
1727a771 2624 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2625
af741c15
TI
2626 alc_auto_parse_customize_define(codec);
2627
7504b6cd
TI
2628 if (has_cdefine_beep(codec))
2629 spec->gen.beep_nid = 0x01;
2630
42399f7a
TI
2631 /* automatic parse from the BIOS config */
2632 err = alc262_parse_auto_config(codec);
2633 if (err < 0)
2634 goto error;
df694daa 2635
fea80fae
TI
2636 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2637 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2638 if (err < 0)
2639 goto error;
2640 }
2134ea4f 2641
1727a771 2642 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2643
1da177e4 2644 return 0;
e16fb6d1
TI
2645
2646 error:
2647 alc_free(codec);
2648 return err;
1da177e4
LT
2649}
2650
f32610ed 2651/*
1d045db9 2652 * ALC268
f32610ed 2653 */
1d045db9 2654/* bind Beep switches of both NID 0x0f and 0x10 */
a717777d
TI
2655static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2656 struct snd_ctl_elem_value *ucontrol)
2657{
2658 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2659 unsigned long pval;
2660 int err;
2661
2662 mutex_lock(&codec->control_mutex);
2663 pval = kcontrol->private_value;
2664 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2665 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2666 if (err >= 0) {
2667 kcontrol->private_value = (pval & ~0xff) | 0x10;
2668 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2669 }
2670 kcontrol->private_value = pval;
2671 mutex_unlock(&codec->control_mutex);
2672 return err;
2673}
f32610ed 2674
1d045db9
TI
2675static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2676 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
a717777d
TI
2677 {
2678 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2679 .name = "Beep Playback Switch",
2680 .subdevice = HDA_SUBDEV_AMP_FLAG,
2681 .info = snd_hda_mixer_amp_switch_info,
2682 .get = snd_hda_mixer_amp_switch_get,
2683 .put = alc268_beep_switch_put,
2684 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2685 },
f32610ed
JS
2686};
2687
1d045db9
TI
2688/* set PCBEEP vol = 0, mute connections */
2689static const struct hda_verb alc268_beep_init_verbs[] = {
2690 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2691 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2692 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2693 { }
f32610ed
JS
2694};
2695
6e72aa5f
TI
2696enum {
2697 ALC268_FIXUP_INV_DMIC,
cb766404 2698 ALC268_FIXUP_HP_EAPD,
24eff328 2699 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
2700};
2701
1727a771 2702static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 2703 [ALC268_FIXUP_INV_DMIC] = {
1727a771 2704 .type = HDA_FIXUP_FUNC,
9d36a7dc 2705 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2706 },
cb766404 2707 [ALC268_FIXUP_HP_EAPD] = {
1727a771 2708 .type = HDA_FIXUP_VERBS,
cb766404
TI
2709 .v.verbs = (const struct hda_verb[]) {
2710 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2711 {}
2712 }
2713 },
24eff328
TI
2714 [ALC268_FIXUP_SPDIF] = {
2715 .type = HDA_FIXUP_PINS,
2716 .v.pins = (const struct hda_pintbl[]) {
2717 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2718 {}
2719 }
2720 },
6e72aa5f
TI
2721};
2722
1727a771 2723static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 2724 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404 2725 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
03bf11c9 2726 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
cb766404
TI
2727 {}
2728};
2729
2730static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 2731 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 2732 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
2733 /* below is codec SSID since multiple Toshiba laptops have the
2734 * same PCI SSID 1179:ff00
2735 */
2736 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
2737 {}
2738};
2739
f32610ed
JS
2740/*
2741 * BIOS auto configuration
2742 */
1d045db9 2743static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 2744{
3e6179b8 2745 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 2746 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
2747}
2748
1d045db9
TI
2749/*
2750 */
1d045db9 2751static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
2752{
2753 struct alc_spec *spec;
a5cb463a 2754 int i, err;
f32610ed 2755
1d045db9 2756 /* ALC268 has no aa-loopback mixer */
3de95173
TI
2757 err = alc_alloc_spec(codec, 0);
2758 if (err < 0)
2759 return err;
2760
2761 spec = codec->spec;
7504b6cd 2762 spec->gen.beep_nid = 0x01;
1f0f4b80 2763
225068ab
TI
2764 spec->shutup = alc_eapd_shutup;
2765
1727a771
TI
2766 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2767 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 2768
6ebb8053
TI
2769 /* automatic parse from the BIOS config */
2770 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
2771 if (err < 0)
2772 goto error;
f32610ed 2773
7504b6cd
TI
2774 if (err > 0 && !spec->gen.no_analog &&
2775 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
a5cb463a
TI
2776 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
2777 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
2778 &alc268_beep_mixer[i])) {
2779 err = -ENOMEM;
2780 goto error;
2781 }
2782 }
7504b6cd 2783 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
2784 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2785 /* override the amp caps for beep generator */
2786 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2787 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2788 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2789 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2790 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
2791 }
2792
1727a771 2793 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 2794
f32610ed 2795 return 0;
e16fb6d1
TI
2796
2797 error:
2798 alc_free(codec);
2799 return err;
f32610ed
JS
2800}
2801
bc9f98a9 2802/*
1d045db9 2803 * ALC269
bc9f98a9 2804 */
08c189f2 2805
1d045db9 2806static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
1d045db9 2807 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9
KY
2808};
2809
1d045db9 2810static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
1d045db9 2811 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9 2812};
291702f0 2813
1d045db9
TI
2814/* different alc269-variants */
2815enum {
2816 ALC269_TYPE_ALC269VA,
2817 ALC269_TYPE_ALC269VB,
2818 ALC269_TYPE_ALC269VC,
adcc70b2 2819 ALC269_TYPE_ALC269VD,
065380f0
KY
2820 ALC269_TYPE_ALC280,
2821 ALC269_TYPE_ALC282,
2af02be7 2822 ALC269_TYPE_ALC283,
065380f0 2823 ALC269_TYPE_ALC284,
4731d5de 2824 ALC269_TYPE_ALC293,
7fc7d047 2825 ALC269_TYPE_ALC286,
506b62c3 2826 ALC269_TYPE_ALC298,
1d04c9de 2827 ALC269_TYPE_ALC255,
4344aec8 2828 ALC269_TYPE_ALC256,
f429e7e4 2829 ALC269_TYPE_ALC257,
0a6f0600 2830 ALC269_TYPE_ALC215,
4231430d 2831 ALC269_TYPE_ALC225,
dcd4f0db 2832 ALC269_TYPE_ALC294,
6fbae35a 2833 ALC269_TYPE_ALC700,
bc9f98a9
KY
2834};
2835
2836/*
1d045db9 2837 * BIOS auto configuration
bc9f98a9 2838 */
1d045db9
TI
2839static int alc269_parse_auto_config(struct hda_codec *codec)
2840{
1d045db9 2841 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2842 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2843 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2844 struct alc_spec *spec = codec->spec;
adcc70b2
KY
2845 const hda_nid_t *ssids;
2846
2847 switch (spec->codec_variant) {
2848 case ALC269_TYPE_ALC269VA:
2849 case ALC269_TYPE_ALC269VC:
065380f0
KY
2850 case ALC269_TYPE_ALC280:
2851 case ALC269_TYPE_ALC284:
4731d5de 2852 case ALC269_TYPE_ALC293:
adcc70b2
KY
2853 ssids = alc269va_ssids;
2854 break;
2855 case ALC269_TYPE_ALC269VB:
2856 case ALC269_TYPE_ALC269VD:
065380f0 2857 case ALC269_TYPE_ALC282:
2af02be7 2858 case ALC269_TYPE_ALC283:
7fc7d047 2859 case ALC269_TYPE_ALC286:
506b62c3 2860 case ALC269_TYPE_ALC298:
1d04c9de 2861 case ALC269_TYPE_ALC255:
4344aec8 2862 case ALC269_TYPE_ALC256:
f429e7e4 2863 case ALC269_TYPE_ALC257:
0a6f0600 2864 case ALC269_TYPE_ALC215:
4231430d 2865 case ALC269_TYPE_ALC225:
dcd4f0db 2866 case ALC269_TYPE_ALC294:
6fbae35a 2867 case ALC269_TYPE_ALC700:
adcc70b2
KY
2868 ssids = alc269_ssids;
2869 break;
2870 default:
2871 ssids = alc269_ssids;
2872 break;
2873 }
bc9f98a9 2874
3e6179b8 2875 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 2876}
bc9f98a9 2877
f7ae9ba0
KY
2878static int find_ext_mic_pin(struct hda_codec *codec);
2879
2880static void alc286_shutup(struct hda_codec *codec)
2881{
a9c2dfc8 2882 const struct hda_pincfg *pin;
f7ae9ba0
KY
2883 int i;
2884 int mic_pin = find_ext_mic_pin(codec);
2885 /* don't shut up pins when unloading the driver; otherwise it breaks
2886 * the default pin setup at the next load of the driver
2887 */
2888 if (codec->bus->shutdown)
2889 return;
a9c2dfc8 2890 snd_array_for_each(&codec->init_pins, i, pin) {
f7ae9ba0
KY
2891 /* use read here for syncing after issuing each verb */
2892 if (pin->nid != mic_pin)
2893 snd_hda_codec_read(codec, pin->nid, 0,
2894 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
2895 }
2896 codec->pins_shutup = 1;
2897}
2898
1387e2d1 2899static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9 2900{
98b24883 2901 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
1d045db9 2902}
291702f0 2903
1d045db9
TI
2904static void alc269_shutup(struct hda_codec *codec)
2905{
adcc70b2
KY
2906 struct alc_spec *spec = codec->spec;
2907
1387e2d1
KY
2908 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2909 alc269vb_toggle_power_output(codec, 0);
2910 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2911 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2912 msleep(150);
2913 }
9bfb2844 2914 snd_hda_shutup_pins(codec);
1d045db9 2915}
291702f0 2916
54db6c39
TI
2917static struct coef_fw alc282_coefs[] = {
2918 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
32fa7e49 2919 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
2920 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2921 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2922 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2923 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2924 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
2925 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
2926 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
2927 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
2928 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
2929 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
2930 WRITE_COEF(0x34, 0xa0c0), /* ANC */
2931 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
2932 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
2933 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
2934 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
2935 WRITE_COEF(0x63, 0x2902), /* PLL */
2936 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
2937 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
2938 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
2939 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
2940 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
2941 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
2942 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
2943 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
2944 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
2945 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
2946 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
2947 {}
2948};
2949
cb149cb3
KY
2950static void alc282_restore_default_value(struct hda_codec *codec)
2951{
54db6c39 2952 alc_process_coef_fw(codec, alc282_coefs);
cb149cb3
KY
2953}
2954
7b5c7a02
KY
2955static void alc282_init(struct hda_codec *codec)
2956{
2957 struct alc_spec *spec = codec->spec;
2958 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2959 bool hp_pin_sense;
2960 int coef78;
2961
cb149cb3
KY
2962 alc282_restore_default_value(codec);
2963
7b5c7a02
KY
2964 if (!hp_pin)
2965 return;
2966 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2967 coef78 = alc_read_coef_idx(codec, 0x78);
2968
2969 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
2970 /* Headphone capless set to high power mode */
2971 alc_write_coef_idx(codec, 0x78, 0x9004);
2972
2973 if (hp_pin_sense)
2974 msleep(2);
2975
2976 snd_hda_codec_write(codec, hp_pin, 0,
2977 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2978
2979 if (hp_pin_sense)
2980 msleep(85);
2981
2982 snd_hda_codec_write(codec, hp_pin, 0,
2983 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2984
2985 if (hp_pin_sense)
2986 msleep(100);
2987
2988 /* Headphone capless set to normal mode */
2989 alc_write_coef_idx(codec, 0x78, coef78);
2990}
2991
2992static void alc282_shutup(struct hda_codec *codec)
2993{
2994 struct alc_spec *spec = codec->spec;
2995 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2996 bool hp_pin_sense;
2997 int coef78;
2998
2999 if (!hp_pin) {
3000 alc269_shutup(codec);
3001 return;
3002 }
3003
3004 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3005 coef78 = alc_read_coef_idx(codec, 0x78);
3006 alc_write_coef_idx(codec, 0x78, 0x9004);
3007
3008 if (hp_pin_sense)
3009 msleep(2);
3010
3011 snd_hda_codec_write(codec, hp_pin, 0,
3012 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3013
3014 if (hp_pin_sense)
3015 msleep(85);
3016
3017 snd_hda_codec_write(codec, hp_pin, 0,
3018 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3019
3020 if (hp_pin_sense)
3021 msleep(100);
3022
3023 alc_auto_setup_eapd(codec, false);
3024 snd_hda_shutup_pins(codec);
3025 alc_write_coef_idx(codec, 0x78, coef78);
3026}
3027
54db6c39
TI
3028static struct coef_fw alc283_coefs[] = {
3029 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
56779864 3030 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3031 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3032 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3033 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3034 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3035 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3036 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3037 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3038 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3039 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3040 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3041 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3042 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3043 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3044 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3045 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3046 WRITE_COEF(0x2e, 0x2902), /* PLL */
3047 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3048 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3049 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3050 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3051 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3052 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3053 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3054 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3055 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3056 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3057 WRITE_COEF(0x49, 0x0), /* test mode */
3058 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3059 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3060 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
56779864 3061 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
54db6c39
TI
3062 {}
3063};
3064
6bd55b04
KY
3065static void alc283_restore_default_value(struct hda_codec *codec)
3066{
54db6c39 3067 alc_process_coef_fw(codec, alc283_coefs);
6bd55b04
KY
3068}
3069
2af02be7
KY
3070static void alc283_init(struct hda_codec *codec)
3071{
3072 struct alc_spec *spec = codec->spec;
3073 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3074 bool hp_pin_sense;
2af02be7 3075
8314f225
KY
3076 if (!spec->gen.autocfg.hp_outs) {
3077 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
3078 hp_pin = spec->gen.autocfg.line_out_pins[0];
3079 }
3080
6bd55b04
KY
3081 alc283_restore_default_value(codec);
3082
2af02be7
KY
3083 if (!hp_pin)
3084 return;
a59d7199
KY
3085
3086 msleep(30);
2af02be7
KY
3087 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3088
3089 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3090 /* Headphone capless set to high power mode */
3091 alc_write_coef_idx(codec, 0x43, 0x9004);
3092
3093 snd_hda_codec_write(codec, hp_pin, 0,
3094 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3095
3096 if (hp_pin_sense)
3097 msleep(85);
3098
3099 snd_hda_codec_write(codec, hp_pin, 0,
3100 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3101
3102 if (hp_pin_sense)
3103 msleep(85);
3104 /* Index 0x46 Combo jack auto switch control 2 */
3105 /* 3k pull low control for Headset jack. */
98b24883 3106 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2af02be7
KY
3107 /* Headphone capless set to normal mode */
3108 alc_write_coef_idx(codec, 0x43, 0x9614);
3109}
3110
3111static void alc283_shutup(struct hda_codec *codec)
3112{
3113 struct alc_spec *spec = codec->spec;
3114 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3115 bool hp_pin_sense;
2af02be7 3116
8314f225
KY
3117 if (!spec->gen.autocfg.hp_outs) {
3118 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
3119 hp_pin = spec->gen.autocfg.line_out_pins[0];
3120 }
3121
2af02be7
KY
3122 if (!hp_pin) {
3123 alc269_shutup(codec);
3124 return;
3125 }
3126
3127 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3128
3129 alc_write_coef_idx(codec, 0x43, 0x9004);
3130
b450b17c
HP
3131 /*depop hp during suspend*/
3132 alc_write_coef_idx(codec, 0x06, 0x2100);
3133
2af02be7
KY
3134 snd_hda_codec_write(codec, hp_pin, 0,
3135 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3136
3137 if (hp_pin_sense)
88011c09 3138 msleep(100);
2af02be7
KY
3139
3140 snd_hda_codec_write(codec, hp_pin, 0,
3141 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3142
98b24883 3143 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2af02be7
KY
3144
3145 if (hp_pin_sense)
88011c09 3146 msleep(100);
0435b3ff 3147 alc_auto_setup_eapd(codec, false);
2af02be7
KY
3148 snd_hda_shutup_pins(codec);
3149 alc_write_coef_idx(codec, 0x43, 0x9614);
3150}
3151
4a219ef8
KY
3152static void alc256_init(struct hda_codec *codec)
3153{
3154 struct alc_spec *spec = codec->spec;
3155 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3156 bool hp_pin_sense;
3157
3158 if (!hp_pin)
3159 return;
3160
3161 msleep(30);
3162
3163 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3164
3165 if (hp_pin_sense)
3166 msleep(2);
3167
3168 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3169
3170 snd_hda_codec_write(codec, hp_pin, 0,
3171 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3172
3173 if (hp_pin_sense)
3174 msleep(85);
3175
3176 snd_hda_codec_write(codec, hp_pin, 0,
3177 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3178
3179 if (hp_pin_sense)
3180 msleep(100);
3181
3182 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3183 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
88d42b2b
KY
3184 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3185 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
4a219ef8
KY
3186}
3187
3188static void alc256_shutup(struct hda_codec *codec)
3189{
3190 struct alc_spec *spec = codec->spec;
3191 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3192 bool hp_pin_sense;
3193
3194 if (!hp_pin) {
3195 alc269_shutup(codec);
3196 return;
3197 }
3198
3199 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3200
3201 if (hp_pin_sense)
3202 msleep(2);
3203
3204 snd_hda_codec_write(codec, hp_pin, 0,
3205 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3206
3207 if (hp_pin_sense)
3208 msleep(85);
3209
1c9609e3
TI
3210 /* 3k pull low control for Headset jack. */
3211 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3212 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3213
4a219ef8
KY
3214 snd_hda_codec_write(codec, hp_pin, 0,
3215 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3216
4a219ef8
KY
3217 if (hp_pin_sense)
3218 msleep(100);
3219
3220 alc_auto_setup_eapd(codec, false);
3221 snd_hda_shutup_pins(codec);
3222}
3223
da911b1f
KY
3224static void alc225_init(struct hda_codec *codec)
3225{
3226 struct alc_spec *spec = codec->spec;
3227 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3228 bool hp1_pin_sense, hp2_pin_sense;
3229
3230 if (!hp_pin)
3231 return;
3232
3233 msleep(30);
3234
3235 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3236 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3237
3238 if (hp1_pin_sense || hp2_pin_sense)
3239 msleep(2);
3240
3241 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
3242
3243 if (hp1_pin_sense)
3244 snd_hda_codec_write(codec, hp_pin, 0,
3245 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3246 if (hp2_pin_sense)
3247 snd_hda_codec_write(codec, 0x16, 0,
3248 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3249
3250 if (hp1_pin_sense || hp2_pin_sense)
3251 msleep(85);
3252
3253 if (hp1_pin_sense)
3254 snd_hda_codec_write(codec, hp_pin, 0,
3255 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3256 if (hp2_pin_sense)
3257 snd_hda_codec_write(codec, 0x16, 0,
3258 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3259
3260 if (hp1_pin_sense || hp2_pin_sense)
3261 msleep(100);
3262
3263 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3264 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3265}
3266
3267static void alc225_shutup(struct hda_codec *codec)
3268{
3269 struct alc_spec *spec = codec->spec;
3270 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3271 bool hp1_pin_sense, hp2_pin_sense;
3272
3273 if (!hp_pin) {
3274 alc269_shutup(codec);
3275 return;
3276 }
3277
3278 /* 3k pull low control for Headset jack. */
3279 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3280
3281 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3282 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3283
3284 if (hp1_pin_sense || hp2_pin_sense)
3285 msleep(2);
3286
3287 if (hp1_pin_sense)
3288 snd_hda_codec_write(codec, hp_pin, 0,
3289 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3290 if (hp2_pin_sense)
3291 snd_hda_codec_write(codec, 0x16, 0,
3292 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3293
3294 if (hp1_pin_sense || hp2_pin_sense)
3295 msleep(85);
3296
3297 if (hp1_pin_sense)
3298 snd_hda_codec_write(codec, hp_pin, 0,
3299 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3300 if (hp2_pin_sense)
3301 snd_hda_codec_write(codec, 0x16, 0,
3302 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3303
3304 if (hp1_pin_sense || hp2_pin_sense)
3305 msleep(100);
3306
3307 alc_auto_setup_eapd(codec, false);
3308 snd_hda_shutup_pins(codec);
3309}
3310
c2d6af53
KY
3311static void alc_default_init(struct hda_codec *codec)
3312{
3313 struct alc_spec *spec = codec->spec;
3314 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3315 bool hp_pin_sense;
3316
3317 if (!hp_pin)
3318 return;
3319
3320 msleep(30);
3321
3322 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3323
3324 if (hp_pin_sense)
3325 msleep(2);
3326
3327 snd_hda_codec_write(codec, hp_pin, 0,
3328 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3329
3330 if (hp_pin_sense)
3331 msleep(85);
3332
3333 snd_hda_codec_write(codec, hp_pin, 0,
3334 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3335
3336 if (hp_pin_sense)
3337 msleep(100);
3338}
3339
3340static void alc_default_shutup(struct hda_codec *codec)
3341{
3342 struct alc_spec *spec = codec->spec;
3343 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3344 bool hp_pin_sense;
3345
3346 if (!hp_pin) {
3347 alc269_shutup(codec);
3348 return;
3349 }
3350
3351 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3352
3353 if (hp_pin_sense)
3354 msleep(2);
3355
3356 snd_hda_codec_write(codec, hp_pin, 0,
3357 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3358
3359 if (hp_pin_sense)
3360 msleep(85);
3361
3362 snd_hda_codec_write(codec, hp_pin, 0,
3363 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3364
3365 if (hp_pin_sense)
3366 msleep(100);
3367
3368 alc_auto_setup_eapd(codec, false);
3369 snd_hda_shutup_pins(codec);
3370}
3371
ad60d502
KY
3372static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3373 unsigned int val)
3374{
3375 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3376 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3377 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3378}
3379
3380static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3381{
3382 unsigned int val;
3383
3384 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3385 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3386 & 0xffff;
3387 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3388 << 16;
3389 return val;
3390}
3391
3392static void alc5505_dsp_halt(struct hda_codec *codec)
3393{
3394 unsigned int val;
3395
3396 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3397 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3398 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3399 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3400 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3401 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3402 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3403 val = alc5505_coef_get(codec, 0x6220);
3404 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3405}
3406
3407static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3408{
3409 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3410 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3411 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3412 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3413 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3414 alc5505_coef_set(codec, 0x880c, 0x00000004);
3415}
3416
3417static void alc5505_dsp_init(struct hda_codec *codec)
3418{
3419 unsigned int val;
3420
3421 alc5505_dsp_halt(codec);
3422 alc5505_dsp_back_from_halt(codec);
3423 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3424 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3425 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3426 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3427 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3428 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3429 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3430 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3431 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3432 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3433 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3434 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3435 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3436
3437 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3438 if (val <= 3)
3439 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3440 else
3441 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3442
3443 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3444 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3445 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3446 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3447 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3448 alc5505_coef_set(codec, 0x880c, 0x00000003);
3449 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
3450
3451#ifdef HALT_REALTEK_ALC5505
3452 alc5505_dsp_halt(codec);
3453#endif
ad60d502
KY
3454}
3455
cd63a5ff
TI
3456#ifdef HALT_REALTEK_ALC5505
3457#define alc5505_dsp_suspend(codec) /* NOP */
3458#define alc5505_dsp_resume(codec) /* NOP */
3459#else
3460#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3461#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3462#endif
3463
2a43952a 3464#ifdef CONFIG_PM
ad60d502
KY
3465static int alc269_suspend(struct hda_codec *codec)
3466{
3467 struct alc_spec *spec = codec->spec;
3468
3469 if (spec->has_alc5505_dsp)
cd63a5ff 3470 alc5505_dsp_suspend(codec);
ad60d502
KY
3471 return alc_suspend(codec);
3472}
3473
1d045db9
TI
3474static int alc269_resume(struct hda_codec *codec)
3475{
adcc70b2
KY
3476 struct alc_spec *spec = codec->spec;
3477
1387e2d1
KY
3478 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3479 alc269vb_toggle_power_output(codec, 0);
3480 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 3481 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3482 msleep(150);
3483 }
8c427226 3484
1d045db9 3485 codec->patch_ops.init(codec);
f1d4e28b 3486
1387e2d1
KY
3487 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3488 alc269vb_toggle_power_output(codec, 1);
3489 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 3490 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
3491 msleep(200);
3492 }
f1d4e28b 3493
eeecd9d1 3494 regcache_sync(codec->core.regmap);
1d045db9 3495 hda_call_check_power_status(codec, 0x01);
f475371a
HW
3496
3497 /* on some machine, the BIOS will clear the codec gpio data when enter
3498 * suspend, and won't restore the data after resume, so we restore it
3499 * in the driver.
3500 */
d261eec8
TI
3501 if (spec->gpio_data)
3502 alc_write_gpio_data(codec);
f475371a 3503
ad60d502 3504 if (spec->has_alc5505_dsp)
cd63a5ff 3505 alc5505_dsp_resume(codec);
c5177c86 3506
1d045db9
TI
3507 return 0;
3508}
2a43952a 3509#endif /* CONFIG_PM */
f1d4e28b 3510
108cc108 3511static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 3512 const struct hda_fixup *fix, int action)
108cc108
DH
3513{
3514 struct alc_spec *spec = codec->spec;
3515
1727a771 3516 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
3517 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3518}
3519
fdcc968a
JMG
3520static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
3521 const struct hda_fixup *fix,
3522 int action)
3523{
3524 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
3525 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
3526
3527 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
3528 snd_hda_codec_set_pincfg(codec, 0x19,
3529 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
3530 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
3531}
3532
1d045db9 3533static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 3534 const struct hda_fixup *fix, int action)
1d045db9 3535{
98b24883
TI
3536 if (action == HDA_FIXUP_ACT_INIT)
3537 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
1d045db9 3538}
f1d4e28b 3539
7c478f03
DH
3540static void alc269_fixup_headset_mic(struct hda_codec *codec,
3541 const struct hda_fixup *fix, int action)
3542{
3543 struct alc_spec *spec = codec->spec;
3544
3545 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3546 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3547}
3548
1d045db9 3549static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 3550 const struct hda_fixup *fix, int action)
1d045db9
TI
3551{
3552 static const struct hda_verb verbs[] = {
3553 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3554 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3555 {}
3556 };
3557 unsigned int cfg;
f1d4e28b 3558
7639a06c
TI
3559 if (strcmp(codec->core.chip_name, "ALC271X") &&
3560 strcmp(codec->core.chip_name, "ALC269VB"))
1d045db9
TI
3561 return;
3562 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3563 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3564 snd_hda_sequence_write(codec, verbs);
3565}
f1d4e28b 3566
017f2a10 3567static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 3568 const struct hda_fixup *fix, int action)
017f2a10
TI
3569{
3570 struct alc_spec *spec = codec->spec;
3571
1727a771 3572 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
3573 return;
3574
3575 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3576 * fix the sample rate of analog I/O to 44.1kHz
3577 */
08c189f2
TI
3578 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3579 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
3580}
3581
adabb3ec 3582static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 3583 const struct hda_fixup *fix, int action)
adabb3ec 3584{
adabb3ec
TI
3585 /* The digital-mic unit sends PDM (differential signal) instead of
3586 * the standard PCM, thus you can't record a valid mono stream as is.
3587 * Below is a workaround specific to ALC269 to control the dmic
3588 * signal source as mono.
3589 */
98b24883
TI
3590 if (action == HDA_FIXUP_ACT_INIT)
3591 alc_update_coef_idx(codec, 0x07, 0, 0x80);
adabb3ec
TI
3592}
3593
24519911
TI
3594static void alc269_quanta_automute(struct hda_codec *codec)
3595{
08c189f2 3596 snd_hda_gen_update_outputs(codec);
24519911 3597
1687ccc8
TI
3598 alc_write_coef_idx(codec, 0x0c, 0x680);
3599 alc_write_coef_idx(codec, 0x0c, 0x480);
24519911
TI
3600}
3601
3602static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 3603 const struct hda_fixup *fix, int action)
24519911
TI
3604{
3605 struct alc_spec *spec = codec->spec;
1727a771 3606 if (action != HDA_FIXUP_ACT_PROBE)
24519911 3607 return;
08c189f2 3608 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
3609}
3610
d240d1dc 3611static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 3612 struct hda_jack_callback *jack)
d240d1dc
DH
3613{
3614 struct alc_spec *spec = codec->spec;
3615 int vref;
3616 msleep(200);
3617 snd_hda_gen_hp_automute(codec, jack);
3618
3619 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3620 msleep(100);
3621 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3622 vref);
3623 msleep(500);
3624 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3625 vref);
3626}
3627
3628static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3629 const struct hda_fixup *fix, int action)
3630{
3631 struct alc_spec *spec = codec->spec;
3632 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3633 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3634 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3635 }
3636}
3637
3638
08fb0d0e
TI
3639/* update mute-LED according to the speaker mute state via mic VREF pin */
3640static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
6d3cd5d4
DH
3641{
3642 struct hda_codec *codec = private_data;
08fb0d0e
TI
3643 struct alc_spec *spec = codec->spec;
3644 unsigned int pinval;
3645
3646 if (spec->mute_led_polarity)
3647 enabled = !enabled;
415d555e
TI
3648 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3649 pinval &= ~AC_PINCTL_VREFEN;
3650 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
e40bdb03
TI
3651 if (spec->mute_led_nid) {
3652 /* temporarily power up/down for setting VREF */
3653 snd_hda_power_up_pm(codec);
08fb0d0e 3654 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
e40bdb03
TI
3655 snd_hda_power_down_pm(codec);
3656 }
6d3cd5d4
DH
3657}
3658
d5b6b65e
DH
3659/* Make sure the led works even in runtime suspend */
3660static unsigned int led_power_filter(struct hda_codec *codec,
3661 hda_nid_t nid,
3662 unsigned int power_state)
3663{
3664 struct alc_spec *spec = codec->spec;
3665
50dd9050
HW
3666 if (power_state != AC_PWRST_D3 || nid == 0 ||
3667 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
d5b6b65e
DH
3668 return power_state;
3669
3670 /* Set pin ctl again, it might have just been set to 0 */
3671 snd_hda_set_pin_ctl(codec, nid,
3672 snd_hda_codec_get_pin_target(codec, nid));
3673
cffd3966 3674 return snd_hda_gen_path_power_filter(codec, nid, power_state);
d5b6b65e
DH
3675}
3676
08fb0d0e
TI
3677static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3678 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
3679{
3680 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
3681 const struct dmi_device *dev = NULL;
3682
3683 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3684 return;
3685
3686 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3687 int pol, pin;
3688 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3689 continue;
3690 if (pin < 0x0a || pin >= 0x10)
3691 break;
3692 spec->mute_led_polarity = pol;
3693 spec->mute_led_nid = pin - 0x0a + 0x18;
3694 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
fd25a97a 3695 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3696 codec->power_filter = led_power_filter;
4e76a883
TI
3697 codec_dbg(codec,
3698 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
08fb0d0e 3699 spec->mute_led_polarity);
6d3cd5d4
DH
3700 break;
3701 }
3702}
3703
85c467dc
TI
3704static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
3705 const struct hda_fixup *fix,
3706 int action, hda_nid_t pin)
d06ac143
DH
3707{
3708 struct alc_spec *spec = codec->spec;
85c467dc 3709
d06ac143
DH
3710 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3711 spec->mute_led_polarity = 0;
85c467dc 3712 spec->mute_led_nid = pin;
d06ac143
DH
3713 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3714 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3715 codec->power_filter = led_power_filter;
d06ac143
DH
3716 }
3717}
3718
85c467dc
TI
3719static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3720 const struct hda_fixup *fix, int action)
3721{
3722 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
3723}
3724
08fb0d0e
TI
3725static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3726 const struct hda_fixup *fix, int action)
420b0feb 3727{
85c467dc 3728 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
420b0feb
TI
3729}
3730
7f783bd5
TB
3731static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
3732 const struct hda_fixup *fix, int action)
3733{
85c467dc 3734 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
7f783bd5
TB
3735}
3736
0f32fd19
TI
3737/* update LED status via GPIO */
3738static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3739 bool enabled)
9f5c6faf 3740{
9f5c6faf 3741 struct alc_spec *spec = codec->spec;
9f5c6faf 3742
0f32fd19
TI
3743 if (spec->mute_led_polarity)
3744 enabled = !enabled;
d261eec8 3745 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
9f5c6faf
TI
3746}
3747
0f32fd19
TI
3748/* turn on/off mute LED via GPIO per vmaster hook */
3749static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
9f5c6faf 3750{
0f32fd19 3751 struct hda_codec *codec = private_data;
9f5c6faf 3752 struct alc_spec *spec = codec->spec;
9f5c6faf 3753
0f32fd19
TI
3754 alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3755}
9f5c6faf 3756
0f32fd19 3757/* turn on/off mic-mute LED via GPIO per capture hook */
d03abeca 3758static void alc_gpio_micmute_update(struct hda_codec *codec)
0f32fd19
TI
3759{
3760 struct alc_spec *spec = codec->spec;
3761
d03abeca
TI
3762 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3763 spec->gen.micmute_led.led_value);
9f5c6faf
TI
3764}
3765
01e4a275
TI
3766/* setup mute and mic-mute GPIO bits, add hooks appropriately */
3767static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
3768 int action,
3769 unsigned int mute_mask,
3770 unsigned int micmute_mask)
9f5c6faf
TI
3771{
3772 struct alc_spec *spec = codec->spec;
9f5c6faf 3773
01e4a275
TI
3774 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
3775
3776 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3777 return;
3778 if (mute_mask) {
3779 spec->gpio_mute_led_mask = mute_mask;
0f32fd19 3780 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
01e4a275
TI
3781 }
3782 if (micmute_mask) {
3783 spec->gpio_mic_led_mask = micmute_mask;
d03abeca 3784 snd_hda_gen_add_micmute_led(codec, alc_gpio_micmute_update);
9f5c6faf
TI
3785 }
3786}
3787
01e4a275 3788static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
eaa8e5ef
KY
3789 const struct hda_fixup *fix, int action)
3790{
01e4a275
TI
3791 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
3792}
eaa8e5ef 3793
01e4a275
TI
3794static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
3795 const struct hda_fixup *fix, int action)
3796{
3797 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
9f5c6faf
TI
3798}
3799
9c5dc3bf 3800/* turn on/off mic-mute LED per capture hook */
d03abeca 3801static void alc_cap_micmute_update(struct hda_codec *codec)
9c5dc3bf
KY
3802{
3803 struct alc_spec *spec = codec->spec;
d03abeca 3804 unsigned int pinval;
9c5dc3bf 3805
d03abeca
TI
3806 if (!spec->cap_mute_led_nid)
3807 return;
fc1fad93 3808 pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
9c5dc3bf 3809 pinval &= ~AC_PINCTL_VREFEN;
d03abeca
TI
3810 if (spec->gen.micmute_led.led_value)
3811 pinval |= AC_PINCTL_VREF_80;
9c5dc3bf 3812 else
d03abeca
TI
3813 pinval |= AC_PINCTL_VREF_HIZ;
3814 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
9c5dc3bf
KY
3815}
3816
3817static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
3818 const struct hda_fixup *fix, int action)
3819{
3820 struct alc_spec *spec = codec->spec;
9c5dc3bf 3821
01e4a275 3822 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
9c5dc3bf 3823 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
3824 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
3825 * enable headphone amp
3826 */
3827 spec->gpio_mask |= 0x10;
3828 spec->gpio_dir |= 0x10;
9c5dc3bf 3829 spec->cap_mute_led_nid = 0x18;
d03abeca 3830 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
50dd9050 3831 codec->power_filter = led_power_filter;
9c5dc3bf
KY
3832 }
3833}
3834
7a5255f1
DH
3835static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
3836 const struct hda_fixup *fix, int action)
3837{
7a5255f1 3838 struct alc_spec *spec = codec->spec;
7a5255f1 3839
01e4a275 3840 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
7a5255f1 3841 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7a5255f1 3842 spec->cap_mute_led_nid = 0x18;
d03abeca 3843 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
7a5255f1
DH
3844 codec->power_filter = led_power_filter;
3845 }
3846}
3847
6a30abaa 3848#if IS_REACHABLE(CONFIG_INPUT)
33f4acd3
DH
3849static void gpio2_mic_hotkey_event(struct hda_codec *codec,
3850 struct hda_jack_callback *event)
3851{
3852 struct alc_spec *spec = codec->spec;
3853
3854 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3855 send both key on and key off event for every interrupt. */
c7b60a89 3856 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
33f4acd3 3857 input_sync(spec->kb_dev);
c7b60a89 3858 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
33f4acd3
DH
3859 input_sync(spec->kb_dev);
3860}
33f4acd3 3861
3694cb29
K
3862static int alc_register_micmute_input_device(struct hda_codec *codec)
3863{
3864 struct alc_spec *spec = codec->spec;
c7b60a89 3865 int i;
3694cb29
K
3866
3867 spec->kb_dev = input_allocate_device();
3868 if (!spec->kb_dev) {
3869 codec_err(codec, "Out of memory (input_allocate_device)\n");
3870 return -ENOMEM;
3871 }
c7b60a89
HW
3872
3873 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
3874
3694cb29
K
3875 spec->kb_dev->name = "Microphone Mute Button";
3876 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
c7b60a89
HW
3877 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
3878 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
3879 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
3880 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
3881 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3694cb29
K
3882
3883 if (input_register_device(spec->kb_dev)) {
3884 codec_err(codec, "input_register_device failed\n");
3885 input_free_device(spec->kb_dev);
3886 spec->kb_dev = NULL;
3887 return -ENOMEM;
3888 }
3889
3890 return 0;
3891}
3892
01e4a275
TI
3893/* GPIO1 = set according to SKU external amp
3894 * GPIO2 = mic mute hotkey
3895 * GPIO3 = mute LED
3896 * GPIO4 = mic mute LED
3897 */
33f4acd3
DH
3898static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
3899 const struct hda_fixup *fix, int action)
3900{
33f4acd3
DH
3901 struct alc_spec *spec = codec->spec;
3902
01e4a275 3903 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
33f4acd3 3904 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 3905 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29 3906 if (alc_register_micmute_input_device(codec) != 0)
33f4acd3 3907 return;
33f4acd3 3908
01e4a275
TI
3909 spec->gpio_mask |= 0x06;
3910 spec->gpio_dir |= 0x02;
3911 spec->gpio_data |= 0x02;
7639a06c 3912 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
33f4acd3 3913 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
7639a06c 3914 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
33f4acd3 3915 gpio2_mic_hotkey_event);
33f4acd3
DH
3916 return;
3917 }
3918
3919 if (!spec->kb_dev)
3920 return;
3921
3922 switch (action) {
33f4acd3
DH
3923 case HDA_FIXUP_ACT_FREE:
3924 input_unregister_device(spec->kb_dev);
33f4acd3
DH
3925 spec->kb_dev = NULL;
3926 }
33f4acd3
DH
3927}
3928
01e4a275
TI
3929/* Line2 = mic mute hotkey
3930 * GPIO2 = mic mute LED
3931 */
3694cb29
K
3932static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
3933 const struct hda_fixup *fix, int action)
3934{
3694cb29
K
3935 struct alc_spec *spec = codec->spec;
3936
01e4a275 3937 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
3694cb29 3938 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 3939 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29
K
3940 if (alc_register_micmute_input_device(codec) != 0)
3941 return;
3942
3694cb29
K
3943 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3944 gpio2_mic_hotkey_event);
3694cb29
K
3945 return;
3946 }
3947
3948 if (!spec->kb_dev)
3949 return;
3950
3951 switch (action) {
3694cb29
K
3952 case HDA_FIXUP_ACT_FREE:
3953 input_unregister_device(spec->kb_dev);
3954 spec->kb_dev = NULL;
3955 }
3956}
c469652b
TI
3957#else /* INPUT */
3958#define alc280_fixup_hp_gpio2_mic_hotkey NULL
3959#define alc233_fixup_lenovo_line2_mic_hotkey NULL
3960#endif /* INPUT */
3694cb29 3961
9c5dc3bf
KY
3962static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
3963 const struct hda_fixup *fix, int action)
3964{
3965 struct alc_spec *spec = codec->spec;
3966
1bce62a6 3967 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
9c5dc3bf 3968 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9c5dc3bf 3969 spec->cap_mute_led_nid = 0x18;
d03abeca 3970 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
9c5dc3bf
KY
3971 }
3972}
3973
5a36767a
KY
3974static struct coef_fw alc225_pre_hsmode[] = {
3975 UPDATE_COEF(0x4a, 1<<8, 0),
3976 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
3977 UPDATE_COEF(0x63, 3<<14, 3<<14),
3978 UPDATE_COEF(0x4a, 3<<4, 2<<4),
3979 UPDATE_COEF(0x4a, 3<<10, 3<<10),
3980 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
3981 UPDATE_COEF(0x4a, 3<<10, 0),
3982 {}
3983};
3984
73bdd597
DH
3985static void alc_headset_mode_unplugged(struct hda_codec *codec)
3986{
54db6c39 3987 static struct coef_fw coef0255[] = {
54db6c39
TI
3988 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
3989 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
3990 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
3991 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
3992 {}
3993 };
e69e7e03
KY
3994 static struct coef_fw coef0255_1[] = {
3995 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
3996 {}
3997 };
3998 static struct coef_fw coef0256[] = {
3999 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
4000 {}
4001 };
54db6c39
TI
4002 static struct coef_fw coef0233[] = {
4003 WRITE_COEF(0x1b, 0x0c0b),
4004 WRITE_COEF(0x45, 0xc429),
4005 UPDATE_COEF(0x35, 0x4000, 0),
4006 WRITE_COEF(0x06, 0x2104),
4007 WRITE_COEF(0x1a, 0x0001),
4008 WRITE_COEF(0x26, 0x0004),
4009 WRITE_COEF(0x32, 0x42a3),
4010 {}
4011 };
f3b70332
KY
4012 static struct coef_fw coef0288[] = {
4013 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4014 UPDATE_COEF(0x50, 0x2000, 0x2000),
4015 UPDATE_COEF(0x56, 0x0006, 0x0006),
4016 UPDATE_COEF(0x66, 0x0008, 0),
4017 UPDATE_COEF(0x67, 0x2000, 0),
4018 {}
4019 };
89542936
KY
4020 static struct coef_fw coef0298[] = {
4021 UPDATE_COEF(0x19, 0x1300, 0x0300),
4022 {}
4023 };
54db6c39
TI
4024 static struct coef_fw coef0292[] = {
4025 WRITE_COEF(0x76, 0x000e),
4026 WRITE_COEF(0x6c, 0x2400),
4027 WRITE_COEF(0x18, 0x7308),
4028 WRITE_COEF(0x6b, 0xc429),
4029 {}
4030 };
4031 static struct coef_fw coef0293[] = {
4032 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4033 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4034 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4035 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4036 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4037 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4038 {}
4039 };
4040 static struct coef_fw coef0668[] = {
4041 WRITE_COEF(0x15, 0x0d40),
4042 WRITE_COEF(0xb7, 0x802b),
4043 {}
4044 };
4cc9b9d6 4045 static struct coef_fw coef0225[] = {
5a36767a 4046 UPDATE_COEF(0x63, 3<<14, 0),
4cc9b9d6
KY
4047 {}
4048 };
71683c32
KY
4049 static struct coef_fw coef0274[] = {
4050 UPDATE_COEF(0x4a, 0x0100, 0),
4051 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4052 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4053 UPDATE_COEF(0x4a, 0x0010, 0),
4054 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4055 WRITE_COEF(0x45, 0x5289),
4056 UPDATE_COEF(0x4a, 0x0c00, 0),
4057 {}
4058 };
54db6c39 4059
7639a06c 4060 switch (codec->core.vendor_id) {
9a22a8f5 4061 case 0x10ec0255:
e69e7e03
KY
4062 alc_process_coef_fw(codec, coef0255_1);
4063 alc_process_coef_fw(codec, coef0255);
4064 break;
736f20a7 4065 case 0x10ec0236:
7081adf3 4066 case 0x10ec0256:
e69e7e03 4067 alc_process_coef_fw(codec, coef0256);
54db6c39 4068 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4069 break;
71683c32
KY
4070 case 0x10ec0234:
4071 case 0x10ec0274:
4072 case 0x10ec0294:
4073 alc_process_coef_fw(codec, coef0274);
4074 break;
13fd08a3 4075 case 0x10ec0233:
73bdd597 4076 case 0x10ec0283:
54db6c39 4077 alc_process_coef_fw(codec, coef0233);
73bdd597 4078 break;
f3b70332
KY
4079 case 0x10ec0286:
4080 case 0x10ec0288:
89542936
KY
4081 alc_process_coef_fw(codec, coef0288);
4082 break;
1a5bc8d9 4083 case 0x10ec0298:
89542936 4084 alc_process_coef_fw(codec, coef0298);
f3b70332
KY
4085 alc_process_coef_fw(codec, coef0288);
4086 break;
73bdd597 4087 case 0x10ec0292:
54db6c39 4088 alc_process_coef_fw(codec, coef0292);
73bdd597 4089 break;
a22aa26f 4090 case 0x10ec0293:
54db6c39 4091 alc_process_coef_fw(codec, coef0293);
a22aa26f 4092 break;
73bdd597 4093 case 0x10ec0668:
54db6c39 4094 alc_process_coef_fw(codec, coef0668);
73bdd597 4095 break;
c2b691ee 4096 case 0x10ec0215:
4cc9b9d6 4097 case 0x10ec0225:
c2b691ee 4098 case 0x10ec0285:
7d727869 4099 case 0x10ec0295:
c2b691ee 4100 case 0x10ec0289:
28f1f9b2 4101 case 0x10ec0299:
4cc9b9d6
KY
4102 alc_process_coef_fw(codec, coef0225);
4103 break;
78f4f7c2
KY
4104 case 0x10ec0867:
4105 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4106 break;
73bdd597 4107 }
4e76a883 4108 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
73bdd597
DH
4109}
4110
4111
4112static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4113 hda_nid_t mic_pin)
4114{
54db6c39
TI
4115 static struct coef_fw coef0255[] = {
4116 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4117 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4118 {}
4119 };
4120 static struct coef_fw coef0233[] = {
4121 UPDATE_COEF(0x35, 0, 1<<14),
4122 WRITE_COEF(0x06, 0x2100),
4123 WRITE_COEF(0x1a, 0x0021),
4124 WRITE_COEF(0x26, 0x008c),
4125 {}
4126 };
f3b70332 4127 static struct coef_fw coef0288[] = {
89542936 4128 UPDATE_COEF(0x4f, 0x00c0, 0),
f3b70332
KY
4129 UPDATE_COEF(0x50, 0x2000, 0),
4130 UPDATE_COEF(0x56, 0x0006, 0),
4131 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4132 UPDATE_COEF(0x66, 0x0008, 0x0008),
4133 UPDATE_COEF(0x67, 0x2000, 0x2000),
4134 {}
4135 };
54db6c39
TI
4136 static struct coef_fw coef0292[] = {
4137 WRITE_COEF(0x19, 0xa208),
4138 WRITE_COEF(0x2e, 0xacf0),
4139 {}
4140 };
4141 static struct coef_fw coef0293[] = {
4142 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4143 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4144 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4145 {}
4146 };
4147 static struct coef_fw coef0688[] = {
4148 WRITE_COEF(0xb7, 0x802b),
4149 WRITE_COEF(0xb5, 0x1040),
4150 UPDATE_COEF(0xc3, 0, 1<<12),
4151 {}
4152 };
4cc9b9d6
KY
4153 static struct coef_fw coef0225[] = {
4154 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4155 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4156 UPDATE_COEF(0x63, 3<<14, 0),
4157 {}
4158 };
71683c32
KY
4159 static struct coef_fw coef0274[] = {
4160 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
4161 UPDATE_COEF(0x4a, 0x0010, 0),
4162 UPDATE_COEF(0x6b, 0xf000, 0),
4163 {}
4164 };
54db6c39 4165
7639a06c 4166 switch (codec->core.vendor_id) {
736f20a7 4167 case 0x10ec0236:
9a22a8f5 4168 case 0x10ec0255:
7081adf3 4169 case 0x10ec0256:
9a22a8f5
KY
4170 alc_write_coef_idx(codec, 0x45, 0xc489);
4171 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4172 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
4173 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4174 break;
71683c32
KY
4175 case 0x10ec0234:
4176 case 0x10ec0274:
4177 case 0x10ec0294:
4178 alc_write_coef_idx(codec, 0x45, 0x4689);
4179 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4180 alc_process_coef_fw(codec, coef0274);
4181 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4182 break;
13fd08a3 4183 case 0x10ec0233:
73bdd597
DH
4184 case 0x10ec0283:
4185 alc_write_coef_idx(codec, 0x45, 0xc429);
4186 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4187 alc_process_coef_fw(codec, coef0233);
73bdd597
DH
4188 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4189 break;
f3b70332
KY
4190 case 0x10ec0286:
4191 case 0x10ec0288:
1a5bc8d9 4192 case 0x10ec0298:
f3b70332
KY
4193 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4194 alc_process_coef_fw(codec, coef0288);
4195 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4196 break;
73bdd597
DH
4197 case 0x10ec0292:
4198 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4199 alc_process_coef_fw(codec, coef0292);
73bdd597 4200 break;
a22aa26f
KY
4201 case 0x10ec0293:
4202 /* Set to TRS mode */
4203 alc_write_coef_idx(codec, 0x45, 0xc429);
4204 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4205 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
4206 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4207 break;
78f4f7c2
KY
4208 case 0x10ec0867:
4209 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
4210 /* fallthru */
9eb5d0e6 4211 case 0x10ec0221:
1f8b46cd
DH
4212 case 0x10ec0662:
4213 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4214 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4215 break;
73bdd597
DH
4216 case 0x10ec0668:
4217 alc_write_coef_idx(codec, 0x11, 0x0001);
4218 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4219 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
4220 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4221 break;
c2b691ee 4222 case 0x10ec0215:
4cc9b9d6 4223 case 0x10ec0225:
c2b691ee 4224 case 0x10ec0285:
7d727869 4225 case 0x10ec0295:
c2b691ee 4226 case 0x10ec0289:
28f1f9b2 4227 case 0x10ec0299:
5a36767a 4228 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
4229 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
4230 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4231 alc_process_coef_fw(codec, coef0225);
4232 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4233 break;
73bdd597 4234 }
4e76a883 4235 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
73bdd597
DH
4236}
4237
4238static void alc_headset_mode_default(struct hda_codec *codec)
4239{
2ae95577 4240 static struct coef_fw coef0225[] = {
5a36767a
KY
4241 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
4242 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
4243 UPDATE_COEF(0x49, 3<<8, 0<<8),
4244 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4245 UPDATE_COEF(0x63, 3<<14, 0),
4246 UPDATE_COEF(0x67, 0xf000, 0x3000),
2ae95577
DH
4247 {}
4248 };
54db6c39
TI
4249 static struct coef_fw coef0255[] = {
4250 WRITE_COEF(0x45, 0xc089),
4251 WRITE_COEF(0x45, 0xc489),
4252 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4253 WRITE_COEF(0x49, 0x0049),
4254 {}
4255 };
4256 static struct coef_fw coef0233[] = {
4257 WRITE_COEF(0x06, 0x2100),
4258 WRITE_COEF(0x32, 0x4ea3),
4259 {}
4260 };
f3b70332
KY
4261 static struct coef_fw coef0288[] = {
4262 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
4263 UPDATE_COEF(0x50, 0x2000, 0x2000),
4264 UPDATE_COEF(0x56, 0x0006, 0x0006),
4265 UPDATE_COEF(0x66, 0x0008, 0),
4266 UPDATE_COEF(0x67, 0x2000, 0),
4267 {}
4268 };
54db6c39
TI
4269 static struct coef_fw coef0292[] = {
4270 WRITE_COEF(0x76, 0x000e),
4271 WRITE_COEF(0x6c, 0x2400),
4272 WRITE_COEF(0x6b, 0xc429),
4273 WRITE_COEF(0x18, 0x7308),
4274 {}
4275 };
4276 static struct coef_fw coef0293[] = {
4277 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4278 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
4279 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4280 {}
4281 };
4282 static struct coef_fw coef0688[] = {
4283 WRITE_COEF(0x11, 0x0041),
4284 WRITE_COEF(0x15, 0x0d40),
4285 WRITE_COEF(0xb7, 0x802b),
4286 {}
4287 };
71683c32
KY
4288 static struct coef_fw coef0274[] = {
4289 WRITE_COEF(0x45, 0x4289),
4290 UPDATE_COEF(0x4a, 0x0010, 0x0010),
4291 UPDATE_COEF(0x6b, 0x0f00, 0),
4292 UPDATE_COEF(0x49, 0x0300, 0x0300),
4293 {}
4294 };
54db6c39 4295
7639a06c 4296 switch (codec->core.vendor_id) {
c2b691ee 4297 case 0x10ec0215:
2ae95577 4298 case 0x10ec0225:
c2b691ee 4299 case 0x10ec0285:
7d727869 4300 case 0x10ec0295:
c2b691ee 4301 case 0x10ec0289:
28f1f9b2 4302 case 0x10ec0299:
5a36767a 4303 alc_process_coef_fw(codec, alc225_pre_hsmode);
2ae95577
DH
4304 alc_process_coef_fw(codec, coef0225);
4305 break;
736f20a7 4306 case 0x10ec0236:
9a22a8f5 4307 case 0x10ec0255:
7081adf3 4308 case 0x10ec0256:
54db6c39 4309 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4310 break;
71683c32
KY
4311 case 0x10ec0234:
4312 case 0x10ec0274:
4313 case 0x10ec0294:
4314 alc_process_coef_fw(codec, coef0274);
4315 break;
13fd08a3 4316 case 0x10ec0233:
73bdd597 4317 case 0x10ec0283:
54db6c39 4318 alc_process_coef_fw(codec, coef0233);
73bdd597 4319 break;
f3b70332
KY
4320 case 0x10ec0286:
4321 case 0x10ec0288:
1a5bc8d9 4322 case 0x10ec0298:
f3b70332
KY
4323 alc_process_coef_fw(codec, coef0288);
4324 break;
73bdd597 4325 case 0x10ec0292:
54db6c39 4326 alc_process_coef_fw(codec, coef0292);
73bdd597 4327 break;
a22aa26f 4328 case 0x10ec0293:
54db6c39 4329 alc_process_coef_fw(codec, coef0293);
a22aa26f 4330 break;
73bdd597 4331 case 0x10ec0668:
54db6c39 4332 alc_process_coef_fw(codec, coef0688);
73bdd597 4333 break;
78f4f7c2
KY
4334 case 0x10ec0867:
4335 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4336 break;
73bdd597 4337 }
4e76a883 4338 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
73bdd597
DH
4339}
4340
4341/* Iphone type */
4342static void alc_headset_mode_ctia(struct hda_codec *codec)
4343{
89542936
KY
4344 int val;
4345
54db6c39
TI
4346 static struct coef_fw coef0255[] = {
4347 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4348 WRITE_COEF(0x1b, 0x0c2b),
4349 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4350 {}
4351 };
e69e7e03
KY
4352 static struct coef_fw coef0256[] = {
4353 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4354 WRITE_COEF(0x1b, 0x0c6b),
4355 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4356 {}
4357 };
54db6c39
TI
4358 static struct coef_fw coef0233[] = {
4359 WRITE_COEF(0x45, 0xd429),
4360 WRITE_COEF(0x1b, 0x0c2b),
4361 WRITE_COEF(0x32, 0x4ea3),
4362 {}
4363 };
f3b70332
KY
4364 static struct coef_fw coef0288[] = {
4365 UPDATE_COEF(0x50, 0x2000, 0x2000),
4366 UPDATE_COEF(0x56, 0x0006, 0x0006),
4367 UPDATE_COEF(0x66, 0x0008, 0),
4368 UPDATE_COEF(0x67, 0x2000, 0),
4369 {}
4370 };
54db6c39
TI
4371 static struct coef_fw coef0292[] = {
4372 WRITE_COEF(0x6b, 0xd429),
4373 WRITE_COEF(0x76, 0x0008),
4374 WRITE_COEF(0x18, 0x7388),
4375 {}
4376 };
4377 static struct coef_fw coef0293[] = {
4378 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
4379 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4380 {}
4381 };
4382 static struct coef_fw coef0688[] = {
4383 WRITE_COEF(0x11, 0x0001),
4384 WRITE_COEF(0x15, 0x0d60),
4385 WRITE_COEF(0xc3, 0x0000),
4386 {}
4387 };
5a36767a 4388 static struct coef_fw coef0225_1[] = {
4cc9b9d6 4389 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5a36767a
KY
4390 UPDATE_COEF(0x63, 3<<14, 2<<14),
4391 {}
4392 };
4393 static struct coef_fw coef0225_2[] = {
4394 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4395 UPDATE_COEF(0x63, 3<<14, 1<<14),
4cc9b9d6
KY
4396 {}
4397 };
54db6c39 4398
7639a06c 4399 switch (codec->core.vendor_id) {
9a22a8f5 4400 case 0x10ec0255:
54db6c39 4401 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4402 break;
736f20a7 4403 case 0x10ec0236:
e69e7e03
KY
4404 case 0x10ec0256:
4405 alc_process_coef_fw(codec, coef0256);
4406 break;
71683c32
KY
4407 case 0x10ec0234:
4408 case 0x10ec0274:
4409 case 0x10ec0294:
4410 alc_write_coef_idx(codec, 0x45, 0xd689);
4411 break;
13fd08a3 4412 case 0x10ec0233:
73bdd597 4413 case 0x10ec0283:
54db6c39 4414 alc_process_coef_fw(codec, coef0233);
73bdd597 4415 break;
1a5bc8d9 4416 case 0x10ec0298:
89542936
KY
4417 val = alc_read_coef_idx(codec, 0x50);
4418 if (val & (1 << 12)) {
4419 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4420 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4421 msleep(300);
4422 } else {
4423 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4424 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4425 msleep(300);
4426 }
4427 break;
f3b70332
KY
4428 case 0x10ec0286:
4429 case 0x10ec0288:
4430 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4431 msleep(300);
4432 alc_process_coef_fw(codec, coef0288);
4433 break;
73bdd597 4434 case 0x10ec0292:
54db6c39 4435 alc_process_coef_fw(codec, coef0292);
73bdd597 4436 break;
a22aa26f 4437 case 0x10ec0293:
54db6c39 4438 alc_process_coef_fw(codec, coef0293);
a22aa26f 4439 break;
73bdd597 4440 case 0x10ec0668:
54db6c39 4441 alc_process_coef_fw(codec, coef0688);
73bdd597 4442 break;
c2b691ee 4443 case 0x10ec0215:
4cc9b9d6 4444 case 0x10ec0225:
c2b691ee 4445 case 0x10ec0285:
7d727869 4446 case 0x10ec0295:
c2b691ee 4447 case 0x10ec0289:
28f1f9b2 4448 case 0x10ec0299:
5a36767a
KY
4449 val = alc_read_coef_idx(codec, 0x45);
4450 if (val & (1 << 9))
4451 alc_process_coef_fw(codec, coef0225_2);
4452 else
4453 alc_process_coef_fw(codec, coef0225_1);
4cc9b9d6 4454 break;
78f4f7c2
KY
4455 case 0x10ec0867:
4456 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4457 break;
73bdd597 4458 }
4e76a883 4459 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
73bdd597
DH
4460}
4461
4462/* Nokia type */
4463static void alc_headset_mode_omtp(struct hda_codec *codec)
4464{
54db6c39
TI
4465 static struct coef_fw coef0255[] = {
4466 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4467 WRITE_COEF(0x1b, 0x0c2b),
4468 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4469 {}
4470 };
e69e7e03
KY
4471 static struct coef_fw coef0256[] = {
4472 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4473 WRITE_COEF(0x1b, 0x0c6b),
4474 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4475 {}
4476 };
54db6c39
TI
4477 static struct coef_fw coef0233[] = {
4478 WRITE_COEF(0x45, 0xe429),
4479 WRITE_COEF(0x1b, 0x0c2b),
4480 WRITE_COEF(0x32, 0x4ea3),
4481 {}
4482 };
f3b70332
KY
4483 static struct coef_fw coef0288[] = {
4484 UPDATE_COEF(0x50, 0x2000, 0x2000),
4485 UPDATE_COEF(0x56, 0x0006, 0x0006),
4486 UPDATE_COEF(0x66, 0x0008, 0),
4487 UPDATE_COEF(0x67, 0x2000, 0),
4488 {}
4489 };
54db6c39
TI
4490 static struct coef_fw coef0292[] = {
4491 WRITE_COEF(0x6b, 0xe429),
4492 WRITE_COEF(0x76, 0x0008),
4493 WRITE_COEF(0x18, 0x7388),
4494 {}
4495 };
4496 static struct coef_fw coef0293[] = {
4497 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4498 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4499 {}
4500 };
4501 static struct coef_fw coef0688[] = {
4502 WRITE_COEF(0x11, 0x0001),
4503 WRITE_COEF(0x15, 0x0d50),
4504 WRITE_COEF(0xc3, 0x0000),
4505 {}
4506 };
4cc9b9d6
KY
4507 static struct coef_fw coef0225[] = {
4508 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5a36767a 4509 UPDATE_COEF(0x63, 3<<14, 2<<14),
4cc9b9d6
KY
4510 {}
4511 };
54db6c39 4512
7639a06c 4513 switch (codec->core.vendor_id) {
9a22a8f5 4514 case 0x10ec0255:
54db6c39 4515 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4516 break;
736f20a7 4517 case 0x10ec0236:
e69e7e03
KY
4518 case 0x10ec0256:
4519 alc_process_coef_fw(codec, coef0256);
4520 break;
71683c32
KY
4521 case 0x10ec0234:
4522 case 0x10ec0274:
4523 case 0x10ec0294:
4524 alc_write_coef_idx(codec, 0x45, 0xe689);
4525 break;
13fd08a3 4526 case 0x10ec0233:
73bdd597 4527 case 0x10ec0283:
54db6c39 4528 alc_process_coef_fw(codec, coef0233);
73bdd597 4529 break;
1a5bc8d9
KY
4530 case 0x10ec0298:
4531 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
89542936
KY
4532 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4533 msleep(300);
4534 break;
f3b70332
KY
4535 case 0x10ec0286:
4536 case 0x10ec0288:
4537 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4538 msleep(300);
4539 alc_process_coef_fw(codec, coef0288);
4540 break;
73bdd597 4541 case 0x10ec0292:
54db6c39 4542 alc_process_coef_fw(codec, coef0292);
73bdd597 4543 break;
a22aa26f 4544 case 0x10ec0293:
54db6c39 4545 alc_process_coef_fw(codec, coef0293);
a22aa26f 4546 break;
73bdd597 4547 case 0x10ec0668:
54db6c39 4548 alc_process_coef_fw(codec, coef0688);
73bdd597 4549 break;
c2b691ee 4550 case 0x10ec0215:
4cc9b9d6 4551 case 0x10ec0225:
c2b691ee 4552 case 0x10ec0285:
7d727869 4553 case 0x10ec0295:
c2b691ee 4554 case 0x10ec0289:
28f1f9b2 4555 case 0x10ec0299:
4cc9b9d6
KY
4556 alc_process_coef_fw(codec, coef0225);
4557 break;
73bdd597 4558 }
4e76a883 4559 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
73bdd597
DH
4560}
4561
4562static void alc_determine_headset_type(struct hda_codec *codec)
4563{
4564 int val;
4565 bool is_ctia = false;
4566 struct alc_spec *spec = codec->spec;
54db6c39
TI
4567 static struct coef_fw coef0255[] = {
4568 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4569 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4570 conteol) */
4571 {}
4572 };
f3b70332
KY
4573 static struct coef_fw coef0288[] = {
4574 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4575 {}
4576 };
89542936
KY
4577 static struct coef_fw coef0298[] = {
4578 UPDATE_COEF(0x50, 0x2000, 0x2000),
4579 UPDATE_COEF(0x56, 0x0006, 0x0006),
4580 UPDATE_COEF(0x66, 0x0008, 0),
4581 UPDATE_COEF(0x67, 0x2000, 0),
4582 UPDATE_COEF(0x19, 0x1300, 0x1300),
4583 {}
4584 };
54db6c39
TI
4585 static struct coef_fw coef0293[] = {
4586 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4587 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4588 {}
4589 };
4590 static struct coef_fw coef0688[] = {
4591 WRITE_COEF(0x11, 0x0001),
4592 WRITE_COEF(0xb7, 0x802b),
4593 WRITE_COEF(0x15, 0x0d60),
4594 WRITE_COEF(0xc3, 0x0c00),
4595 {}
4596 };
71683c32
KY
4597 static struct coef_fw coef0274[] = {
4598 UPDATE_COEF(0x4a, 0x0010, 0),
4599 UPDATE_COEF(0x4a, 0x8000, 0),
4600 WRITE_COEF(0x45, 0xd289),
4601 UPDATE_COEF(0x49, 0x0300, 0x0300),
4602 {}
4603 };
73bdd597 4604
7639a06c 4605 switch (codec->core.vendor_id) {
736f20a7 4606 case 0x10ec0236:
9a22a8f5 4607 case 0x10ec0255:
7081adf3 4608 case 0x10ec0256:
54db6c39 4609 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
4610 msleep(300);
4611 val = alc_read_coef_idx(codec, 0x46);
4612 is_ctia = (val & 0x0070) == 0x0070;
4613 break;
71683c32
KY
4614 case 0x10ec0234:
4615 case 0x10ec0274:
4616 case 0x10ec0294:
4617 alc_process_coef_fw(codec, coef0274);
4618 msleep(80);
4619 val = alc_read_coef_idx(codec, 0x46);
4620 is_ctia = (val & 0x00f0) == 0x00f0;
4621 break;
13fd08a3 4622 case 0x10ec0233:
73bdd597
DH
4623 case 0x10ec0283:
4624 alc_write_coef_idx(codec, 0x45, 0xd029);
4625 msleep(300);
4626 val = alc_read_coef_idx(codec, 0x46);
4627 is_ctia = (val & 0x0070) == 0x0070;
4628 break;
1a5bc8d9 4629 case 0x10ec0298:
89542936
KY
4630 snd_hda_codec_write(codec, 0x21, 0,
4631 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4632 msleep(100);
4633 snd_hda_codec_write(codec, 0x21, 0,
4634 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4635 msleep(200);
4636
4637 val = alc_read_coef_idx(codec, 0x50);
4638 if (val & (1 << 12)) {
4639 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4640 alc_process_coef_fw(codec, coef0288);
4641 msleep(350);
4642 val = alc_read_coef_idx(codec, 0x50);
4643 is_ctia = (val & 0x0070) == 0x0070;
4644 } else {
4645 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4646 alc_process_coef_fw(codec, coef0288);
4647 msleep(350);
4648 val = alc_read_coef_idx(codec, 0x50);
4649 is_ctia = (val & 0x0070) == 0x0070;
4650 }
4651 alc_process_coef_fw(codec, coef0298);
4652 snd_hda_codec_write(codec, 0x21, 0,
4653 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4654 msleep(75);
4655 snd_hda_codec_write(codec, 0x21, 0,
4656 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4657 break;
f3b70332
KY
4658 case 0x10ec0286:
4659 case 0x10ec0288:
4660 alc_process_coef_fw(codec, coef0288);
4661 msleep(350);
4662 val = alc_read_coef_idx(codec, 0x50);
4663 is_ctia = (val & 0x0070) == 0x0070;
4664 break;
73bdd597
DH
4665 case 0x10ec0292:
4666 alc_write_coef_idx(codec, 0x6b, 0xd429);
4667 msleep(300);
4668 val = alc_read_coef_idx(codec, 0x6c);
4669 is_ctia = (val & 0x001c) == 0x001c;
4670 break;
a22aa26f 4671 case 0x10ec0293:
54db6c39 4672 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
4673 msleep(300);
4674 val = alc_read_coef_idx(codec, 0x46);
4675 is_ctia = (val & 0x0070) == 0x0070;
4676 break;
73bdd597 4677 case 0x10ec0668:
54db6c39 4678 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
4679 msleep(300);
4680 val = alc_read_coef_idx(codec, 0xbe);
4681 is_ctia = (val & 0x1c02) == 0x1c02;
4682 break;
c2b691ee 4683 case 0x10ec0215:
4cc9b9d6 4684 case 0x10ec0225:
c2b691ee 4685 case 0x10ec0285:
7d727869 4686 case 0x10ec0295:
c2b691ee 4687 case 0x10ec0289:
28f1f9b2 4688 case 0x10ec0299:
da911b1f
KY
4689 snd_hda_codec_write(codec, 0x21, 0,
4690 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4691 msleep(80);
4692 snd_hda_codec_write(codec, 0x21, 0,
4693 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4694
5a36767a
KY
4695 alc_process_coef_fw(codec, alc225_pre_hsmode);
4696 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
4697 val = alc_read_coef_idx(codec, 0x45);
4698 if (val & (1 << 9)) {
4699 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4700 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
4701 msleep(800);
4702 val = alc_read_coef_idx(codec, 0x46);
4703 is_ctia = (val & 0x00f0) == 0x00f0;
4704 } else {
4705 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4706 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
4707 msleep(800);
4708 val = alc_read_coef_idx(codec, 0x46);
4709 is_ctia = (val & 0x00f0) == 0x00f0;
4710 }
4711 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
4712 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
4713 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
da911b1f
KY
4714
4715 snd_hda_codec_write(codec, 0x21, 0,
4716 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4717 msleep(80);
4718 snd_hda_codec_write(codec, 0x21, 0,
4719 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4cc9b9d6 4720 break;
78f4f7c2
KY
4721 case 0x10ec0867:
4722 is_ctia = true;
4723 break;
73bdd597
DH
4724 }
4725
4e76a883 4726 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
73bdd597
DH
4727 is_ctia ? "yes" : "no");
4728 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
4729}
4730
4731static void alc_update_headset_mode(struct hda_codec *codec)
4732{
4733 struct alc_spec *spec = codec->spec;
4734
4735 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
4736 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
4737
4738 int new_headset_mode;
4739
4740 if (!snd_hda_jack_detect(codec, hp_pin))
4741 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
4742 else if (mux_pin == spec->headset_mic_pin)
4743 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
4744 else if (mux_pin == spec->headphone_mic_pin)
4745 new_headset_mode = ALC_HEADSET_MODE_MIC;
4746 else
4747 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
4748
5959a6bc
DH
4749 if (new_headset_mode == spec->current_headset_mode) {
4750 snd_hda_gen_update_outputs(codec);
73bdd597 4751 return;
5959a6bc 4752 }
73bdd597
DH
4753
4754 switch (new_headset_mode) {
4755 case ALC_HEADSET_MODE_UNPLUGGED:
4756 alc_headset_mode_unplugged(codec);
4757 spec->gen.hp_jack_present = false;
4758 break;
4759 case ALC_HEADSET_MODE_HEADSET:
4760 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
4761 alc_determine_headset_type(codec);
4762 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
4763 alc_headset_mode_ctia(codec);
4764 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
4765 alc_headset_mode_omtp(codec);
4766 spec->gen.hp_jack_present = true;
4767 break;
4768 case ALC_HEADSET_MODE_MIC:
4769 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
4770 spec->gen.hp_jack_present = false;
4771 break;
4772 case ALC_HEADSET_MODE_HEADPHONE:
4773 alc_headset_mode_default(codec);
4774 spec->gen.hp_jack_present = true;
4775 break;
4776 }
4777 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
4778 snd_hda_set_pin_ctl_cache(codec, hp_pin,
4779 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1f8b46cd 4780 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
73bdd597
DH
4781 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
4782 PIN_VREFHIZ);
4783 }
4784 spec->current_headset_mode = new_headset_mode;
4785
4786 snd_hda_gen_update_outputs(codec);
4787}
4788
4789static void alc_update_headset_mode_hook(struct hda_codec *codec,
7fe30711
TI
4790 struct snd_kcontrol *kcontrol,
4791 struct snd_ctl_elem_value *ucontrol)
73bdd597
DH
4792{
4793 alc_update_headset_mode(codec);
4794}
4795
1a4f69d5
TI
4796static void alc_update_headset_jack_cb(struct hda_codec *codec,
4797 struct hda_jack_callback *jack)
73bdd597
DH
4798{
4799 struct alc_spec *spec = codec->spec;
5db4d34b 4800 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
4801 snd_hda_gen_hp_automute(codec, jack);
4802}
4803
4804static void alc_probe_headset_mode(struct hda_codec *codec)
4805{
4806 int i;
4807 struct alc_spec *spec = codec->spec;
4808 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4809
4810 /* Find mic pins */
4811 for (i = 0; i < cfg->num_inputs; i++) {
4812 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
4813 spec->headset_mic_pin = cfg->inputs[i].pin;
4814 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
4815 spec->headphone_mic_pin = cfg->inputs[i].pin;
4816 }
4817
0bed2aa3 4818 WARN_ON(spec->gen.cap_sync_hook);
73bdd597
DH
4819 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
4820 spec->gen.automute_hook = alc_update_headset_mode;
4821 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
4822}
4823
4824static void alc_fixup_headset_mode(struct hda_codec *codec,
4825 const struct hda_fixup *fix, int action)
4826{
4827 struct alc_spec *spec = codec->spec;
4828
4829 switch (action) {
4830 case HDA_FIXUP_ACT_PRE_PROBE:
4831 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
4832 break;
4833 case HDA_FIXUP_ACT_PROBE:
4834 alc_probe_headset_mode(codec);
4835 break;
4836 case HDA_FIXUP_ACT_INIT:
4837 spec->current_headset_mode = 0;
4838 alc_update_headset_mode(codec);
4839 break;
4840 }
4841}
4842
4843static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
4844 const struct hda_fixup *fix, int action)
4845{
4846 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4847 struct alc_spec *spec = codec->spec;
4848 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4849 }
4850 else
4851 alc_fixup_headset_mode(codec, fix, action);
4852}
4853
31278997
KY
4854static void alc255_set_default_jack_type(struct hda_codec *codec)
4855{
4856 /* Set to iphone type */
e69e7e03 4857 static struct coef_fw alc255fw[] = {
54db6c39
TI
4858 WRITE_COEF(0x1b, 0x880b),
4859 WRITE_COEF(0x45, 0xd089),
4860 WRITE_COEF(0x1b, 0x080b),
4861 WRITE_COEF(0x46, 0x0004),
4862 WRITE_COEF(0x1b, 0x0c0b),
4863 {}
4864 };
e69e7e03
KY
4865 static struct coef_fw alc256fw[] = {
4866 WRITE_COEF(0x1b, 0x884b),
4867 WRITE_COEF(0x45, 0xd089),
4868 WRITE_COEF(0x1b, 0x084b),
4869 WRITE_COEF(0x46, 0x0004),
4870 WRITE_COEF(0x1b, 0x0c4b),
4871 {}
4872 };
4873 switch (codec->core.vendor_id) {
4874 case 0x10ec0255:
4875 alc_process_coef_fw(codec, alc255fw);
4876 break;
736f20a7 4877 case 0x10ec0236:
e69e7e03
KY
4878 case 0x10ec0256:
4879 alc_process_coef_fw(codec, alc256fw);
4880 break;
4881 }
31278997
KY
4882 msleep(30);
4883}
4884
9a22a8f5
KY
4885static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
4886 const struct hda_fixup *fix, int action)
4887{
4888 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
31278997 4889 alc255_set_default_jack_type(codec);
9a22a8f5
KY
4890 }
4891 alc_fixup_headset_mode(codec, fix, action);
4892}
4893
31278997
KY
4894static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
4895 const struct hda_fixup *fix, int action)
4896{
4897 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4898 struct alc_spec *spec = codec->spec;
4899 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4900 alc255_set_default_jack_type(codec);
4901 }
4902 else
4903 alc_fixup_headset_mode(codec, fix, action);
4904}
4905
e1e62b98
KY
4906static void alc288_update_headset_jack_cb(struct hda_codec *codec,
4907 struct hda_jack_callback *jack)
4908{
4909 struct alc_spec *spec = codec->spec;
e1e62b98
KY
4910
4911 alc_update_headset_jack_cb(codec, jack);
4912 /* Headset Mic enable or disable, only for Dell Dino */
d44a6864 4913 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
e1e62b98
KY
4914}
4915
4916static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
4917 const struct hda_fixup *fix, int action)
4918{
4919 alc_fixup_headset_mode(codec, fix, action);
4920 if (action == HDA_FIXUP_ACT_PROBE) {
4921 struct alc_spec *spec = codec->spec;
d44a6864
TI
4922 /* toggled via hp_automute_hook */
4923 spec->gpio_mask |= 0x40;
4924 spec->gpio_dir |= 0x40;
e1e62b98
KY
4925 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
4926 }
4927}
4928
493a52a9
HW
4929static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
4930 const struct hda_fixup *fix, int action)
4931{
4932 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4933 struct alc_spec *spec = codec->spec;
4934 spec->gen.auto_mute_via_amp = 1;
4935 }
4936}
4937
9b745ab8
TI
4938static void alc_no_shutup(struct hda_codec *codec)
4939{
4940}
4941
4942static void alc_fixup_no_shutup(struct hda_codec *codec,
4943 const struct hda_fixup *fix, int action)
4944{
efe55732 4945 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9b745ab8
TI
4946 struct alc_spec *spec = codec->spec;
4947 spec->shutup = alc_no_shutup;
4948 }
4949}
4950
5e6db669
GM
4951static void alc_fixup_disable_aamix(struct hda_codec *codec,
4952 const struct hda_fixup *fix, int action)
4953{
4954 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4955 struct alc_spec *spec = codec->spec;
4956 /* Disable AA-loopback as it causes white noise */
4957 spec->gen.mixer_nid = 0;
4958 }
4959}
4960
7f57d803
TI
4961/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
4962static void alc_fixup_tpt440_dock(struct hda_codec *codec,
4963 const struct hda_fixup *fix, int action)
4964{
4965 static const struct hda_pintbl pincfgs[] = {
4966 { 0x16, 0x21211010 }, /* dock headphone */
4967 { 0x19, 0x21a11010 }, /* dock mic */
4968 { }
4969 };
4970 struct alc_spec *spec = codec->spec;
4971
4972 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
70a0976b 4973 spec->reboot_notify = alc_d3_at_reboot; /* reduce noise */
7f57d803
TI
4974 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4975 codec->power_save_node = 0; /* avoid click noises */
4976 snd_hda_apply_pincfgs(codec, pincfgs);
4977 }
4978}
4979
61fcf8ec
KY
4980static void alc_fixup_tpt470_dock(struct hda_codec *codec,
4981 const struct hda_fixup *fix, int action)
4982{
4983 static const struct hda_pintbl pincfgs[] = {
4984 { 0x17, 0x21211010 }, /* dock headphone */
4985 { 0x19, 0x21a11010 }, /* dock mic */
4986 { }
4987 };
4988 struct alc_spec *spec = codec->spec;
4989
4990 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4991 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
71db96dd
TI
4992 snd_hda_apply_pincfgs(codec, pincfgs);
4993 } else if (action == HDA_FIXUP_ACT_INIT) {
61fcf8ec
KY
4994 /* Enable DOCK device */
4995 snd_hda_codec_write(codec, 0x17, 0,
4996 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
4997 /* Enable DOCK device */
4998 snd_hda_codec_write(codec, 0x19, 0,
4999 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
61fcf8ec
KY
5000 }
5001}
5002
9476d369 5003static void alc_shutup_dell_xps13(struct hda_codec *codec)
033b0a7c
GM
5004{
5005 struct alc_spec *spec = codec->spec;
9476d369 5006 int hp_pin = spec->gen.autocfg.hp_pins[0];
033b0a7c 5007
9476d369
GM
5008 /* Prevent pop noises when headphones are plugged in */
5009 snd_hda_codec_write(codec, hp_pin, 0,
5010 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5011 msleep(20);
033b0a7c
GM
5012}
5013
5014static void alc_fixup_dell_xps13(struct hda_codec *codec,
5015 const struct hda_fixup *fix, int action)
5016{
3e1b0c4a
TI
5017 struct alc_spec *spec = codec->spec;
5018 struct hda_input_mux *imux = &spec->gen.input_mux;
5019 int i;
f38663ab 5020
3e1b0c4a
TI
5021 switch (action) {
5022 case HDA_FIXUP_ACT_PRE_PROBE:
5023 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5024 * it causes a click noise at start up
5025 */
5026 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
efe55732 5027 spec->shutup = alc_shutup_dell_xps13;
3e1b0c4a
TI
5028 break;
5029 case HDA_FIXUP_ACT_PROBE:
f38663ab
GM
5030 /* Make the internal mic the default input source. */
5031 for (i = 0; i < imux->num_items; i++) {
5032 if (spec->gen.imux_pins[i] == 0x12) {
5033 spec->gen.cur_mux[0] = i;
5034 break;
5035 }
5036 }
3e1b0c4a 5037 break;
033b0a7c
GM
5038 }
5039}
5040
1f8b46cd
DH
5041static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5042 const struct hda_fixup *fix, int action)
5043{
5044 struct alc_spec *spec = codec->spec;
5045
5046 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5047 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5048 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
b40eda64
DH
5049
5050 /* Disable boost for mic-in permanently. (This code is only called
5051 from quirks that guarantee that the headphone is at NID 0x1b.) */
5052 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
5053 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
1f8b46cd
DH
5054 } else
5055 alc_fixup_headset_mode(codec, fix, action);
5056}
5057
73bdd597
DH
5058static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
5059 const struct hda_fixup *fix, int action)
5060{
5061 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
73bdd597 5062 alc_write_coef_idx(codec, 0xc4, 0x8000);
98b24883 5063 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
73bdd597
DH
5064 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
5065 }
5066 alc_fixup_headset_mode(codec, fix, action);
5067}
5068
bde7bc60
CCC
5069/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
5070static int find_ext_mic_pin(struct hda_codec *codec)
5071{
5072 struct alc_spec *spec = codec->spec;
5073 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5074 hda_nid_t nid;
5075 unsigned int defcfg;
5076 int i;
5077
5078 for (i = 0; i < cfg->num_inputs; i++) {
5079 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5080 continue;
5081 nid = cfg->inputs[i].pin;
5082 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5083 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
5084 continue;
5085 return nid;
5086 }
5087
5088 return 0;
5089}
5090
08a978db 5091static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 5092 const struct hda_fixup *fix,
08a978db
DR
5093 int action)
5094{
5095 struct alc_spec *spec = codec->spec;
5096
0db75790 5097 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60
CCC
5098 int mic_pin = find_ext_mic_pin(codec);
5099 int hp_pin = spec->gen.autocfg.hp_pins[0];
5100
5101 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 5102 return;
bde7bc60 5103 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 5104 }
08a978db 5105}
693b613d 5106
3e0d611b
DH
5107static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
5108 const struct hda_fixup *fix,
5109 int action)
5110{
5111 struct alc_spec *spec = codec->spec;
5112 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5113 int i;
5114
5115 /* The mic boosts on level 2 and 3 are too noisy
5116 on the internal mic input.
5117 Therefore limit the boost to 0 or 1. */
5118
5119 if (action != HDA_FIXUP_ACT_PROBE)
5120 return;
5121
5122 for (i = 0; i < cfg->num_inputs; i++) {
5123 hda_nid_t nid = cfg->inputs[i].pin;
5124 unsigned int defcfg;
5125 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5126 continue;
5127 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5128 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
5129 continue;
5130
5131 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
5132 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
5133 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5134 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
5135 (0 << AC_AMPCAP_MUTE_SHIFT));
5136 }
5137}
5138
cd217a63 5139static void alc283_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 5140 struct hda_jack_callback *jack)
cd217a63
KY
5141{
5142 struct alc_spec *spec = codec->spec;
5143 int vref;
5144
5145 msleep(200);
5146 snd_hda_gen_hp_automute(codec, jack);
5147
5148 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
5149
5150 msleep(600);
5151 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5152 vref);
5153}
5154
cd217a63
KY
5155static void alc283_fixup_chromebook(struct hda_codec *codec,
5156 const struct hda_fixup *fix, int action)
5157{
5158 struct alc_spec *spec = codec->spec;
cd217a63
KY
5159
5160 switch (action) {
5161 case HDA_FIXUP_ACT_PRE_PROBE:
0202e99c 5162 snd_hda_override_wcaps(codec, 0x03, 0);
d2e92709
TI
5163 /* Disable AA-loopback as it causes white noise */
5164 spec->gen.mixer_nid = 0;
38070219 5165 break;
0202e99c 5166 case HDA_FIXUP_ACT_INIT:
de9481cb
KY
5167 /* MIC2-VREF control */
5168 /* Set to manual mode */
98b24883 5169 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
0202e99c 5170 /* Enable Line1 input control by verb */
98b24883 5171 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
0202e99c
KY
5172 break;
5173 }
5174}
5175
5176static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
5177 const struct hda_fixup *fix, int action)
5178{
5179 struct alc_spec *spec = codec->spec;
0202e99c
KY
5180
5181 switch (action) {
5182 case HDA_FIXUP_ACT_PRE_PROBE:
cd217a63 5183 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
5184 break;
5185 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
5186 /* MIC2-VREF control */
5187 /* Set to manual mode */
98b24883 5188 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
cd217a63
KY
5189 break;
5190 }
5191}
5192
7bba2157
TI
5193/* mute tablet speaker pin (0x14) via dock plugging in addition */
5194static void asus_tx300_automute(struct hda_codec *codec)
5195{
5196 struct alc_spec *spec = codec->spec;
5197 snd_hda_gen_update_outputs(codec);
5198 if (snd_hda_jack_detect(codec, 0x1b))
5199 spec->gen.mute_bits |= (1ULL << 0x14);
5200}
5201
5202static void alc282_fixup_asus_tx300(struct hda_codec *codec,
5203 const struct hda_fixup *fix, int action)
5204{
5205 struct alc_spec *spec = codec->spec;
7bba2157
TI
5206 static const struct hda_pintbl dock_pins[] = {
5207 { 0x1b, 0x21114000 }, /* dock speaker pin */
5208 {}
5209 };
7bba2157
TI
5210
5211 switch (action) {
5212 case HDA_FIXUP_ACT_PRE_PROBE:
1c76aa5f 5213 spec->init_amp = ALC_INIT_DEFAULT;
ae065f1c
TI
5214 /* TX300 needs to set up GPIO2 for the speaker amp */
5215 alc_setup_gpio(codec, 0x04);
7bba2157
TI
5216 snd_hda_apply_pincfgs(codec, dock_pins);
5217 spec->gen.auto_mute_via_amp = 1;
5218 spec->gen.automute_hook = asus_tx300_automute;
5219 snd_hda_jack_detect_enable_callback(codec, 0x1b,
7bba2157
TI
5220 snd_hda_gen_hp_automute);
5221 break;
5579cd6f
TI
5222 case HDA_FIXUP_ACT_PROBE:
5223 spec->init_amp = ALC_INIT_DEFAULT;
5224 break;
7bba2157
TI
5225 case HDA_FIXUP_ACT_BUILD:
5226 /* this is a bit tricky; give more sane names for the main
5227 * (tablet) speaker and the dock speaker, respectively
5228 */
56798e6b
TI
5229 rename_ctl(codec, "Speaker Playback Switch",
5230 "Dock Speaker Playback Switch");
5231 rename_ctl(codec, "Bass Speaker Playback Switch",
5232 "Speaker Playback Switch");
7bba2157
TI
5233 break;
5234 }
5235}
5236
338cae56
DH
5237static void alc290_fixup_mono_speakers(struct hda_codec *codec,
5238 const struct hda_fixup *fix, int action)
5239{
0f4881dc
DH
5240 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5241 /* DAC node 0x03 is giving mono output. We therefore want to
5242 make sure 0x14 (front speaker) and 0x15 (headphones) use the
5243 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
5244 hda_nid_t conn1[2] = { 0x0c };
5245 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5246 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
5247 }
338cae56
DH
5248}
5249
dd9aa335
HW
5250static void alc298_fixup_speaker_volume(struct hda_codec *codec,
5251 const struct hda_fixup *fix, int action)
5252{
5253 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5254 /* The speaker is routed to the Node 0x06 by a mistake, as a result
5255 we can't adjust the speaker's volume since this node does not has
5256 Amp-out capability. we change the speaker's route to:
5257 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
5258 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
5259 speaker's volume now. */
5260
5261 hda_nid_t conn1[1] = { 0x0c };
5262 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
5263 }
5264}
5265
e312a869
TI
5266/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
5267static void alc295_fixup_disable_dac3(struct hda_codec *codec,
5268 const struct hda_fixup *fix, int action)
5269{
5270 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5271 hda_nid_t conn[2] = { 0x02, 0x03 };
5272 snd_hda_override_conn_list(codec, 0x17, 2, conn);
5273 }
5274}
5275
98973f2f
KP
5276/* Hook to update amp GPIO4 for automute */
5277static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
5278 struct hda_jack_callback *jack)
5279{
5280 struct alc_spec *spec = codec->spec;
5281
5282 snd_hda_gen_hp_automute(codec, jack);
5283 /* mute_led_polarity is set to 0, so we pass inverted value here */
5284 alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
5285}
5286
5287/* Manage GPIOs for HP EliteBook Folio 9480m.
5288 *
5289 * GPIO4 is the headphone amplifier power control
5290 * GPIO3 is the audio output mute indicator LED
5291 */
5292
5293static void alc280_fixup_hp_9480m(struct hda_codec *codec,
5294 const struct hda_fixup *fix,
5295 int action)
5296{
5297 struct alc_spec *spec = codec->spec;
98973f2f 5298
01e4a275 5299 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
98973f2f 5300 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
5301 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
5302 spec->gpio_mask |= 0x10;
5303 spec->gpio_dir |= 0x10;
98973f2f 5304 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
98973f2f
KP
5305 }
5306}
5307
ae065f1c
TI
5308static void alc275_fixup_gpio4_off(struct hda_codec *codec,
5309 const struct hda_fixup *fix,
5310 int action)
5311{
5312 struct alc_spec *spec = codec->spec;
5313
5314 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5315 spec->gpio_mask |= 0x04;
5316 spec->gpio_dir |= 0x04;
5317 /* set data bit low */
5318 }
5319}
5320
ca169cc2
KY
5321static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
5322 const struct hda_fixup *fix,
5323 int action)
5324{
5325 alc_fixup_dual_codecs(codec, fix, action);
5326 switch (action) {
5327 case HDA_FIXUP_ACT_PRE_PROBE:
5328 /* override card longname to provide a unique UCM profile */
5329 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
5330 break;
5331 case HDA_FIXUP_ACT_BUILD:
5332 /* rename Capture controls depending on the codec */
5333 rename_ctl(codec, "Capture Volume",
5334 codec->addr == 0 ?
5335 "Rear-Panel Capture Volume" :
5336 "Front-Panel Capture Volume");
5337 rename_ctl(codec, "Capture Switch",
5338 codec->addr == 0 ?
5339 "Rear-Panel Capture Switch" :
5340 "Front-Panel Capture Switch");
5341 break;
5342 }
5343}
5344
92266651
KY
5345/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
5346static void alc274_fixup_bind_dacs(struct hda_codec *codec,
5347 const struct hda_fixup *fix, int action)
5348{
5349 struct alc_spec *spec = codec->spec;
5350 static hda_nid_t preferred_pairs[] = {
5351 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
5352 0
5353 };
5354
5355 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5356 return;
5357
5358 spec->gen.preferred_dacs = preferred_pairs;
5359}
5360
b317b032
TI
5361/* for hda_fixup_thinkpad_acpi() */
5362#include "thinkpad_helper.c"
b67ae3f1 5363
d5a6cabf
TI
5364static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
5365 const struct hda_fixup *fix, int action)
5366{
5367 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
5368 hda_fixup_thinkpad_acpi(codec, fix, action);
5369}
5370
00ef9940
HW
5371/* for dell wmi mic mute led */
5372#include "dell_wmi_helper.c"
5373
bbf8ff6b
TB
5374/* for alc295_fixup_hp_top_speakers */
5375#include "hp_x360_helper.c"
5376
1d045db9
TI
5377enum {
5378 ALC269_FIXUP_SONY_VAIO,
5379 ALC275_FIXUP_SONY_VAIO_GPIO2,
5380 ALC269_FIXUP_DELL_M101Z,
5381 ALC269_FIXUP_SKU_IGNORE,
5382 ALC269_FIXUP_ASUS_G73JW,
5383 ALC269_FIXUP_LENOVO_EAPD,
5384 ALC275_FIXUP_SONY_HWEQ,
e9bd7d5c 5385 ALC275_FIXUP_SONY_DISABLE_AAMIX,
1d045db9 5386 ALC271_FIXUP_DMIC,
017f2a10 5387 ALC269_FIXUP_PCM_44K,
adabb3ec 5388 ALC269_FIXUP_STEREO_DMIC,
7c478f03 5389 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
5390 ALC269_FIXUP_QUANTA_MUTE,
5391 ALC269_FIXUP_LIFEBOOK,
2041d564 5392 ALC269_FIXUP_LIFEBOOK_EXTMIC,
cc7016ab 5393 ALC269_FIXUP_LIFEBOOK_HP_PIN,
4df3fd17 5394 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
fdcc968a 5395 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
a4297b5d
TI
5396 ALC269_FIXUP_AMIC,
5397 ALC269_FIXUP_DMIC,
5398 ALC269VB_FIXUP_AMIC,
5399 ALC269VB_FIXUP_DMIC,
08fb0d0e 5400 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 5401 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 5402 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7f783bd5 5403 ALC269_FIXUP_HP_MUTE_LED_MIC3,
9f5c6faf 5404 ALC269_FIXUP_HP_GPIO_LED,
9c5dc3bf
KY
5405 ALC269_FIXUP_HP_GPIO_MIC1_LED,
5406 ALC269_FIXUP_HP_LINE1_MIC1_LED,
693b613d 5407 ALC269_FIXUP_INV_DMIC,
108cc108 5408 ALC269_FIXUP_LENOVO_DOCK,
9b745ab8 5409 ALC269_FIXUP_NO_SHUTUP,
88cfcf86 5410 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 5411 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
5412 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5413 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 5414 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
fcc6c877 5415 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
73bdd597
DH
5416 ALC269_FIXUP_HEADSET_MODE,
5417 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7819717b 5418 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
d240d1dc
DH
5419 ALC269_FIXUP_ASUS_X101_FUNC,
5420 ALC269_FIXUP_ASUS_X101_VERB,
5421 ALC269_FIXUP_ASUS_X101,
08a978db
DR
5422 ALC271_FIXUP_AMIC_MIC2,
5423 ALC271_FIXUP_HP_GATE_MIC_JACK,
b1e8972e 5424 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
42397004 5425 ALC269_FIXUP_ACER_AC700,
3e0d611b 5426 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 5427 ALC269VB_FIXUP_ASUS_ZENBOOK,
23870831 5428 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
8e35cd4a 5429 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 5430 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 5431 ALC283_FIXUP_CHROME_BOOK,
0202e99c 5432 ALC283_FIXUP_SENSE_COMBO_JACK,
7bba2157 5433 ALC282_FIXUP_ASUS_TX300,
1bb3e062 5434 ALC283_FIXUP_INT_MIC,
338cae56 5435 ALC290_FIXUP_MONO_SPEAKERS,
0f4881dc
DH
5436 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5437 ALC290_FIXUP_SUBWOOFER,
5438 ALC290_FIXUP_SUBWOOFER_HSJACK,
b67ae3f1 5439 ALC269_FIXUP_THINKPAD_ACPI,
56f27013 5440 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5824ce8d 5441 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
615966ad 5442 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9a22a8f5 5443 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
31278997 5444 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9a22a8f5 5445 ALC255_FIXUP_HEADSET_MODE,
31278997 5446 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
a22aa26f 5447 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
1c37c223 5448 ALC292_FIXUP_TPT440_DOCK,
9a811230 5449 ALC292_FIXUP_TPT440,
abaa2274 5450 ALC283_FIXUP_HEADSET_MIC,
00ef9940 5451 ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
1a22e775 5452 ALC282_FIXUP_ASPIRE_V5_PINS,
7a5255f1 5453 ALC280_FIXUP_HP_GPIO4,
eaa8e5ef 5454 ALC286_FIXUP_HP_GPIO_LED,
33f4acd3 5455 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
b4b33f9d 5456 ALC280_FIXUP_HP_DOCK_PINS,
04d5466a 5457 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
98973f2f 5458 ALC280_FIXUP_HP_9480M,
e1e62b98
KY
5459 ALC288_FIXUP_DELL_HEADSET_MODE,
5460 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
831bfdf9
HW
5461 ALC288_FIXUP_DELL_XPS_13,
5462 ALC288_FIXUP_DISABLE_AAMIX,
8b99aba7
TI
5463 ALC292_FIXUP_DELL_E7X,
5464 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 5465 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
977e6276 5466 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 5467 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 5468 ALC275_FIXUP_DELL_XPS,
8c69729b 5469 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
23adc192 5470 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 5471 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 5472 ALC255_FIXUP_DELL_SPK_NOISE,
2ae95577 5473 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 5474 ALC295_FIXUP_DISABLE_DAC3,
f883982d 5475 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 5476 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 5477 ALC292_FIXUP_TPT460,
dd9aa335 5478 ALC298_FIXUP_SPK_VOLUME,
fd06c77e 5479 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 5480 ALC269_FIXUP_ATIV_BOOK_8,
9eb5d0e6 5481 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
5482 ALC256_FIXUP_ASUS_HEADSET_MODE,
5483 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 5484 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
5485 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5486 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 5487 ALC233_FIXUP_LENOVO_MULTI_CODECS,
f33f79f3 5488 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 5489 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
b84e8436 5490 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
5491 ALC274_FIXUP_DELL_BIND_DACS,
5492 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
61fcf8ec 5493 ALC298_FIXUP_TPT470_DOCK,
ae104a21 5494 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 5495 ALC255_FIXUP_DELL_HEADSET_MIC,
bbf8ff6b 5496 ALC295_FIXUP_HP_X360,
8a328ac1 5497 ALC221_FIXUP_HP_HEADSET_MIC,
f1d4e28b
KY
5498};
5499
1727a771 5500static const struct hda_fixup alc269_fixups[] = {
1d045db9 5501 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
5502 .type = HDA_FIXUP_PINCTLS,
5503 .v.pins = (const struct hda_pintbl[]) {
5504 {0x19, PIN_VREFGRD},
1d045db9
TI
5505 {}
5506 }
f1d4e28b 5507 },
1d045db9 5508 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
5509 .type = HDA_FIXUP_FUNC,
5510 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
5511 .chained = true,
5512 .chain_id = ALC269_FIXUP_SONY_VAIO
5513 },
5514 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 5515 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5516 .v.verbs = (const struct hda_verb[]) {
5517 /* Enables internal speaker */
5518 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5519 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5520 {}
5521 }
5522 },
5523 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 5524 .type = HDA_FIXUP_FUNC,
23d30f28 5525 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
5526 },
5527 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
5528 .type = HDA_FIXUP_PINS,
5529 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
5530 { 0x17, 0x99130111 }, /* subwoofer */
5531 { }
5532 }
5533 },
5534 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 5535 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5536 .v.verbs = (const struct hda_verb[]) {
5537 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5538 {}
5539 }
5540 },
5541 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 5542 .type = HDA_FIXUP_FUNC,
1d045db9
TI
5543 .v.func = alc269_fixup_hweq,
5544 .chained = true,
5545 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5546 },
e9bd7d5c
TI
5547 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5548 .type = HDA_FIXUP_FUNC,
5549 .v.func = alc_fixup_disable_aamix,
5550 .chained = true,
5551 .chain_id = ALC269_FIXUP_SONY_VAIO
5552 },
1d045db9 5553 [ALC271_FIXUP_DMIC] = {
1727a771 5554 .type = HDA_FIXUP_FUNC,
1d045db9 5555 .v.func = alc271_fixup_dmic,
f1d4e28b 5556 },
017f2a10 5557 [ALC269_FIXUP_PCM_44K] = {
1727a771 5558 .type = HDA_FIXUP_FUNC,
017f2a10 5559 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
5560 .chained = true,
5561 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 5562 },
adabb3ec 5563 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 5564 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
5565 .v.func = alc269_fixup_stereo_dmic,
5566 },
7c478f03
DH
5567 [ALC269_FIXUP_HEADSET_MIC] = {
5568 .type = HDA_FIXUP_FUNC,
5569 .v.func = alc269_fixup_headset_mic,
5570 },
24519911 5571 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 5572 .type = HDA_FIXUP_FUNC,
24519911
TI
5573 .v.func = alc269_fixup_quanta_mute,
5574 },
5575 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
5576 .type = HDA_FIXUP_PINS,
5577 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
5578 { 0x1a, 0x2101103f }, /* dock line-out */
5579 { 0x1b, 0x23a11040 }, /* dock mic-in */
5580 { }
5581 },
5582 .chained = true,
5583 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5584 },
2041d564
DH
5585 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
5586 .type = HDA_FIXUP_PINS,
5587 .v.pins = (const struct hda_pintbl[]) {
5588 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
5589 { }
5590 },
5591 },
cc7016ab
TI
5592 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
5593 .type = HDA_FIXUP_PINS,
5594 .v.pins = (const struct hda_pintbl[]) {
5595 { 0x21, 0x0221102f }, /* HP out */
5596 { }
5597 },
5598 },
4df3fd17
TI
5599 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
5600 .type = HDA_FIXUP_FUNC,
5601 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5602 },
fdcc968a
JMG
5603 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
5604 .type = HDA_FIXUP_FUNC,
5605 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
5606 },
a4297b5d 5607 [ALC269_FIXUP_AMIC] = {
1727a771
TI
5608 .type = HDA_FIXUP_PINS,
5609 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
5610 { 0x14, 0x99130110 }, /* speaker */
5611 { 0x15, 0x0121401f }, /* HP out */
5612 { 0x18, 0x01a19c20 }, /* mic */
5613 { 0x19, 0x99a3092f }, /* int-mic */
5614 { }
5615 },
5616 },
5617 [ALC269_FIXUP_DMIC] = {
1727a771
TI
5618 .type = HDA_FIXUP_PINS,
5619 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
5620 { 0x12, 0x99a3092f }, /* int-mic */
5621 { 0x14, 0x99130110 }, /* speaker */
5622 { 0x15, 0x0121401f }, /* HP out */
5623 { 0x18, 0x01a19c20 }, /* mic */
5624 { }
5625 },
5626 },
5627 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
5628 .type = HDA_FIXUP_PINS,
5629 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
5630 { 0x14, 0x99130110 }, /* speaker */
5631 { 0x18, 0x01a19c20 }, /* mic */
5632 { 0x19, 0x99a3092f }, /* int-mic */
5633 { 0x21, 0x0121401f }, /* HP out */
5634 { }
5635 },
5636 },
2267ea97 5637 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
5638 .type = HDA_FIXUP_PINS,
5639 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
5640 { 0x12, 0x99a3092f }, /* int-mic */
5641 { 0x14, 0x99130110 }, /* speaker */
5642 { 0x18, 0x01a19c20 }, /* mic */
5643 { 0x21, 0x0121401f }, /* HP out */
5644 { }
5645 },
5646 },
08fb0d0e 5647 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 5648 .type = HDA_FIXUP_FUNC,
08fb0d0e 5649 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 5650 },
d06ac143
DH
5651 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
5652 .type = HDA_FIXUP_FUNC,
5653 .v.func = alc269_fixup_hp_mute_led_mic1,
5654 },
08fb0d0e 5655 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 5656 .type = HDA_FIXUP_FUNC,
08fb0d0e 5657 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 5658 },
7f783bd5
TB
5659 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
5660 .type = HDA_FIXUP_FUNC,
5661 .v.func = alc269_fixup_hp_mute_led_mic3,
5662 },
9f5c6faf
TI
5663 [ALC269_FIXUP_HP_GPIO_LED] = {
5664 .type = HDA_FIXUP_FUNC,
5665 .v.func = alc269_fixup_hp_gpio_led,
5666 },
9c5dc3bf
KY
5667 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
5668 .type = HDA_FIXUP_FUNC,
5669 .v.func = alc269_fixup_hp_gpio_mic1_led,
5670 },
5671 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
5672 .type = HDA_FIXUP_FUNC,
5673 .v.func = alc269_fixup_hp_line1_mic1_led,
5674 },
693b613d 5675 [ALC269_FIXUP_INV_DMIC] = {
1727a771 5676 .type = HDA_FIXUP_FUNC,
9d36a7dc 5677 .v.func = alc_fixup_inv_dmic,
693b613d 5678 },
9b745ab8
TI
5679 [ALC269_FIXUP_NO_SHUTUP] = {
5680 .type = HDA_FIXUP_FUNC,
5681 .v.func = alc_fixup_no_shutup,
5682 },
108cc108 5683 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
5684 .type = HDA_FIXUP_PINS,
5685 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
5686 { 0x19, 0x23a11040 }, /* dock mic */
5687 { 0x1b, 0x2121103f }, /* dock headphone */
5688 { }
5689 },
5690 .chained = true,
5691 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
5692 },
5693 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 5694 .type = HDA_FIXUP_FUNC,
108cc108 5695 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
5696 .chained = true,
5697 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 5698 },
73bdd597
DH
5699 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5700 .type = HDA_FIXUP_PINS,
5701 .v.pins = (const struct hda_pintbl[]) {
5702 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5703 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5704 { }
5705 },
5706 .chained = true,
5707 .chain_id = ALC269_FIXUP_HEADSET_MODE
5708 },
5709 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
5710 .type = HDA_FIXUP_PINS,
5711 .v.pins = (const struct hda_pintbl[]) {
5712 { 0x16, 0x21014020 }, /* dock line out */
5713 { 0x19, 0x21a19030 }, /* dock mic */
5714 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5715 { }
5716 },
5717 .chained = true,
5718 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5719 },
338cae56
DH
5720 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
5721 .type = HDA_FIXUP_PINS,
5722 .v.pins = (const struct hda_pintbl[]) {
5723 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5724 { }
5725 },
5726 .chained = true,
5727 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5728 },
fcc6c877
KY
5729 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
5730 .type = HDA_FIXUP_PINS,
5731 .v.pins = (const struct hda_pintbl[]) {
5732 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5733 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5734 { }
5735 },
5736 .chained = true,
5737 .chain_id = ALC269_FIXUP_HEADSET_MODE
5738 },
73bdd597
DH
5739 [ALC269_FIXUP_HEADSET_MODE] = {
5740 .type = HDA_FIXUP_FUNC,
5741 .v.func = alc_fixup_headset_mode,
6676f308
HW
5742 .chained = true,
5743 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
73bdd597
DH
5744 },
5745 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
5746 .type = HDA_FIXUP_FUNC,
5747 .v.func = alc_fixup_headset_mode_no_hp_mic,
5748 },
7819717b
TI
5749 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
5750 .type = HDA_FIXUP_PINS,
5751 .v.pins = (const struct hda_pintbl[]) {
5752 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
5753 { }
5754 },
5755 .chained = true,
5756 .chain_id = ALC269_FIXUP_HEADSET_MODE,
5757 },
88cfcf86
DH
5758 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
5759 .type = HDA_FIXUP_PINS,
5760 .v.pins = (const struct hda_pintbl[]) {
5761 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5762 { }
5763 },
fbc78ad6
DH
5764 .chained = true,
5765 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 5766 },
d240d1dc
DH
5767 [ALC269_FIXUP_ASUS_X101_FUNC] = {
5768 .type = HDA_FIXUP_FUNC,
5769 .v.func = alc269_fixup_x101_headset_mic,
5770 },
5771 [ALC269_FIXUP_ASUS_X101_VERB] = {
5772 .type = HDA_FIXUP_VERBS,
5773 .v.verbs = (const struct hda_verb[]) {
5774 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
5775 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
5776 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
5777 { }
5778 },
5779 .chained = true,
5780 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
5781 },
5782 [ALC269_FIXUP_ASUS_X101] = {
5783 .type = HDA_FIXUP_PINS,
5784 .v.pins = (const struct hda_pintbl[]) {
5785 { 0x18, 0x04a1182c }, /* Headset mic */
5786 { }
5787 },
5788 .chained = true,
5789 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
5790 },
08a978db 5791 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
5792 .type = HDA_FIXUP_PINS,
5793 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
5794 { 0x14, 0x99130110 }, /* speaker */
5795 { 0x19, 0x01a19c20 }, /* mic */
5796 { 0x1b, 0x99a7012f }, /* int-mic */
5797 { 0x21, 0x0121401f }, /* HP out */
5798 { }
5799 },
5800 },
5801 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 5802 .type = HDA_FIXUP_FUNC,
08a978db
DR
5803 .v.func = alc271_hp_gate_mic_jack,
5804 .chained = true,
5805 .chain_id = ALC271_FIXUP_AMIC_MIC2,
5806 },
b1e8972e
OR
5807 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
5808 .type = HDA_FIXUP_FUNC,
5809 .v.func = alc269_fixup_limit_int_mic_boost,
5810 .chained = true,
5811 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
5812 },
42397004
DR
5813 [ALC269_FIXUP_ACER_AC700] = {
5814 .type = HDA_FIXUP_PINS,
5815 .v.pins = (const struct hda_pintbl[]) {
5816 { 0x12, 0x99a3092f }, /* int-mic */
5817 { 0x14, 0x99130110 }, /* speaker */
5818 { 0x18, 0x03a11c20 }, /* mic */
5819 { 0x1e, 0x0346101e }, /* SPDIF1 */
5820 { 0x21, 0x0321101f }, /* HP out */
5821 { }
5822 },
5823 .chained = true,
5824 .chain_id = ALC271_FIXUP_DMIC,
5825 },
3e0d611b
DH
5826 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
5827 .type = HDA_FIXUP_FUNC,
5828 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
5829 .chained = true,
5830 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 5831 },
2cede303
OR
5832 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
5833 .type = HDA_FIXUP_FUNC,
5834 .v.func = alc269_fixup_limit_int_mic_boost,
5835 .chained = true,
5836 .chain_id = ALC269VB_FIXUP_DMIC,
5837 },
23870831
TI
5838 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
5839 .type = HDA_FIXUP_VERBS,
5840 .v.verbs = (const struct hda_verb[]) {
5841 /* class-D output amp +5dB */
5842 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
5843 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
5844 {}
5845 },
5846 .chained = true,
5847 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
5848 },
8e35cd4a
DH
5849 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
5850 .type = HDA_FIXUP_FUNC,
5851 .v.func = alc269_fixup_limit_int_mic_boost,
5852 .chained = true,
5853 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
5854 },
02b504d9
AA
5855 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
5856 .type = HDA_FIXUP_PINS,
5857 .v.pins = (const struct hda_pintbl[]) {
5858 { 0x12, 0x99a3092f }, /* int-mic */
5859 { 0x18, 0x03a11d20 }, /* mic */
5860 { 0x19, 0x411111f0 }, /* Unused bogus pin */
5861 { }
5862 },
5863 },
cd217a63
KY
5864 [ALC283_FIXUP_CHROME_BOOK] = {
5865 .type = HDA_FIXUP_FUNC,
5866 .v.func = alc283_fixup_chromebook,
5867 },
0202e99c
KY
5868 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
5869 .type = HDA_FIXUP_FUNC,
5870 .v.func = alc283_fixup_sense_combo_jack,
5871 .chained = true,
5872 .chain_id = ALC283_FIXUP_CHROME_BOOK,
5873 },
7bba2157
TI
5874 [ALC282_FIXUP_ASUS_TX300] = {
5875 .type = HDA_FIXUP_FUNC,
5876 .v.func = alc282_fixup_asus_tx300,
5877 },
1bb3e062
KY
5878 [ALC283_FIXUP_INT_MIC] = {
5879 .type = HDA_FIXUP_VERBS,
5880 .v.verbs = (const struct hda_verb[]) {
5881 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
5882 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
5883 { }
5884 },
5885 .chained = true,
5886 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5887 },
0f4881dc
DH
5888 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
5889 .type = HDA_FIXUP_PINS,
5890 .v.pins = (const struct hda_pintbl[]) {
5891 { 0x17, 0x90170112 }, /* subwoofer */
5892 { }
5893 },
5894 .chained = true,
5895 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5896 },
5897 [ALC290_FIXUP_SUBWOOFER] = {
5898 .type = HDA_FIXUP_PINS,
5899 .v.pins = (const struct hda_pintbl[]) {
5900 { 0x17, 0x90170112 }, /* subwoofer */
5901 { }
5902 },
5903 .chained = true,
5904 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
5905 },
338cae56
DH
5906 [ALC290_FIXUP_MONO_SPEAKERS] = {
5907 .type = HDA_FIXUP_FUNC,
5908 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
5909 },
5910 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
5911 .type = HDA_FIXUP_FUNC,
5912 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
5913 .chained = true,
5914 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5915 },
b67ae3f1
DH
5916 [ALC269_FIXUP_THINKPAD_ACPI] = {
5917 .type = HDA_FIXUP_FUNC,
d5a6cabf 5918 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
5919 .chained = true,
5920 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 5921 },
56f27013
DH
5922 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
5923 .type = HDA_FIXUP_FUNC,
5924 .v.func = alc_fixup_inv_dmic,
5925 .chained = true,
5926 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
5927 },
5824ce8d
CC
5928 [ALC255_FIXUP_ACER_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
5936 },
615966ad
CC
5937 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
5938 .type = HDA_FIXUP_PINS,
5939 .v.pins = (const struct hda_pintbl[]) {
5940 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5941 { }
5942 },
5943 .chained = true,
5944 .chain_id = ALC255_FIXUP_HEADSET_MODE
5945 },
9a22a8f5
KY
5946 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5947 .type = HDA_FIXUP_PINS,
5948 .v.pins = (const struct hda_pintbl[]) {
5949 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5950 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5951 { }
5952 },
5953 .chained = true,
5954 .chain_id = ALC255_FIXUP_HEADSET_MODE
5955 },
31278997
KY
5956 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
5957 .type = HDA_FIXUP_PINS,
5958 .v.pins = (const struct hda_pintbl[]) {
5959 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5960 { }
5961 },
5962 .chained = true,
5963 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
5964 },
9a22a8f5
KY
5965 [ALC255_FIXUP_HEADSET_MODE] = {
5966 .type = HDA_FIXUP_FUNC,
5967 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a
HW
5968 .chained = true,
5969 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
9a22a8f5 5970 },
31278997
KY
5971 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
5972 .type = HDA_FIXUP_FUNC,
5973 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
5974 },
a22aa26f
KY
5975 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5976 .type = HDA_FIXUP_PINS,
5977 .v.pins = (const struct hda_pintbl[]) {
5978 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5979 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5980 { }
5981 },
5982 .chained = true,
5983 .chain_id = ALC269_FIXUP_HEADSET_MODE
5984 },
1c37c223 5985 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 5986 .type = HDA_FIXUP_FUNC,
7f57d803 5987 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
5988 .chained = true,
5989 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5990 },
9a811230
TI
5991 [ALC292_FIXUP_TPT440] = {
5992 .type = HDA_FIXUP_FUNC,
157f0b7f 5993 .v.func = alc_fixup_disable_aamix,
9a811230
TI
5994 .chained = true,
5995 .chain_id = ALC292_FIXUP_TPT440_DOCK,
5996 },
abaa2274 5997 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
5998 .type = HDA_FIXUP_PINS,
5999 .v.pins = (const struct hda_pintbl[]) {
6000 { 0x19, 0x04a110f0 },
6001 { },
6002 },
6003 },
00ef9940
HW
6004 [ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED] = {
6005 .type = HDA_FIXUP_FUNC,
6006 .v.func = alc_fixup_dell_wmi,
00ef9940 6007 },
1a22e775
TI
6008 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
6009 .type = HDA_FIXUP_PINS,
6010 .v.pins = (const struct hda_pintbl[]) {
6011 { 0x12, 0x90a60130 },
6012 { 0x14, 0x90170110 },
6013 { 0x17, 0x40000008 },
6014 { 0x18, 0x411111f0 },
0420694d 6015 { 0x19, 0x01a1913c },
1a22e775
TI
6016 { 0x1a, 0x411111f0 },
6017 { 0x1b, 0x411111f0 },
6018 { 0x1d, 0x40f89b2d },
6019 { 0x1e, 0x411111f0 },
6020 { 0x21, 0x0321101f },
6021 { },
6022 },
6023 },
7a5255f1
DH
6024 [ALC280_FIXUP_HP_GPIO4] = {
6025 .type = HDA_FIXUP_FUNC,
6026 .v.func = alc280_fixup_hp_gpio4,
6027 },
eaa8e5ef
KY
6028 [ALC286_FIXUP_HP_GPIO_LED] = {
6029 .type = HDA_FIXUP_FUNC,
6030 .v.func = alc286_fixup_hp_gpio_led,
6031 },
33f4acd3
DH
6032 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
6033 .type = HDA_FIXUP_FUNC,
6034 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
6035 },
b4b33f9d
TC
6036 [ALC280_FIXUP_HP_DOCK_PINS] = {
6037 .type = HDA_FIXUP_PINS,
6038 .v.pins = (const struct hda_pintbl[]) {
6039 { 0x1b, 0x21011020 }, /* line-out */
6040 { 0x1a, 0x01a1903c }, /* headset mic */
6041 { 0x18, 0x2181103f }, /* line-in */
6042 { },
6043 },
6044 .chained = true,
6045 .chain_id = ALC280_FIXUP_HP_GPIO4
6046 },
04d5466a
JK
6047 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
6048 .type = HDA_FIXUP_PINS,
6049 .v.pins = (const struct hda_pintbl[]) {
6050 { 0x1b, 0x21011020 }, /* line-out */
6051 { 0x18, 0x2181103f }, /* line-in */
6052 { },
6053 },
6054 .chained = true,
6055 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
6056 },
98973f2f
KP
6057 [ALC280_FIXUP_HP_9480M] = {
6058 .type = HDA_FIXUP_FUNC,
6059 .v.func = alc280_fixup_hp_9480m,
6060 },
e1e62b98
KY
6061 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
6062 .type = HDA_FIXUP_FUNC,
6063 .v.func = alc_fixup_headset_mode_dell_alc288,
6064 .chained = true,
6065 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
6066 },
6067 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6068 .type = HDA_FIXUP_PINS,
6069 .v.pins = (const struct hda_pintbl[]) {
6070 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6071 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6072 { }
6073 },
6074 .chained = true,
6075 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
6076 },
831bfdf9
HW
6077 [ALC288_FIXUP_DISABLE_AAMIX] = {
6078 .type = HDA_FIXUP_FUNC,
6079 .v.func = alc_fixup_disable_aamix,
6080 .chained = true,
d44a6864 6081 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
6082 },
6083 [ALC288_FIXUP_DELL_XPS_13] = {
6084 .type = HDA_FIXUP_FUNC,
6085 .v.func = alc_fixup_dell_xps13,
6086 .chained = true,
6087 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
6088 },
8b99aba7
TI
6089 [ALC292_FIXUP_DISABLE_AAMIX] = {
6090 .type = HDA_FIXUP_FUNC,
6091 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
6092 .chained = true,
6093 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 6094 },
c04017ea
DH
6095 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
6096 .type = HDA_FIXUP_FUNC,
6097 .v.func = alc_fixup_disable_aamix,
6098 .chained = true,
6099 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
6100 },
8b99aba7
TI
6101 [ALC292_FIXUP_DELL_E7X] = {
6102 .type = HDA_FIXUP_FUNC,
6103 .v.func = alc_fixup_dell_xps13,
6104 .chained = true,
6105 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
6106 },
977e6276
KY
6107 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6108 .type = HDA_FIXUP_PINS,
6109 .v.pins = (const struct hda_pintbl[]) {
6110 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6111 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6112 { }
6113 },
6114 .chained = true,
6115 .chain_id = ALC269_FIXUP_HEADSET_MODE
6116 },
2f726aec
HW
6117 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
6118 .type = HDA_FIXUP_PINS,
6119 .v.pins = (const struct hda_pintbl[]) {
6120 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6121 { }
6122 },
6123 .chained = true,
6124 .chain_id = ALC269_FIXUP_HEADSET_MODE
6125 },
6ed1131f
KY
6126 [ALC275_FIXUP_DELL_XPS] = {
6127 .type = HDA_FIXUP_VERBS,
6128 .v.verbs = (const struct hda_verb[]) {
6129 /* Enables internal speaker */
6130 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
6131 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
6132 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
6133 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
6134 {}
6135 }
6136 },
8c69729b
HW
6137 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
6138 .type = HDA_FIXUP_VERBS,
6139 .v.verbs = (const struct hda_verb[]) {
6140 /* Disable pass-through path for FRONT 14h */
6141 {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
6142 {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
6143 {}
6144 },
6145 .chained = true,
6146 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6147 },
23adc192
HW
6148 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
6149 .type = HDA_FIXUP_FUNC,
6150 .v.func = alc_fixup_disable_aamix,
6151 .chained = true,
6152 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6153 },
3694cb29
K
6154 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
6155 .type = HDA_FIXUP_FUNC,
6156 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
6157 },
3b43b71f
KHF
6158 [ALC255_FIXUP_DELL_SPK_NOISE] = {
6159 .type = HDA_FIXUP_FUNC,
6160 .v.func = alc_fixup_disable_aamix,
6161 .chained = true,
6162 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6163 },
2ae95577
DH
6164 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6165 .type = HDA_FIXUP_VERBS,
6166 .v.verbs = (const struct hda_verb[]) {
6167 /* Disable pass-through path for FRONT 14h */
6168 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6169 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6170 {}
6171 },
6172 .chained = true,
6173 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6174 },
f883982d
TI
6175 [ALC280_FIXUP_HP_HEADSET_MIC] = {
6176 .type = HDA_FIXUP_FUNC,
6177 .v.func = alc_fixup_disable_aamix,
6178 .chained = true,
6179 .chain_id = ALC269_FIXUP_HEADSET_MIC,
6180 },
e549d190
HW
6181 [ALC221_FIXUP_HP_FRONT_MIC] = {
6182 .type = HDA_FIXUP_PINS,
6183 .v.pins = (const struct hda_pintbl[]) {
6184 { 0x19, 0x02a19020 }, /* Front Mic */
6185 { }
6186 },
6187 },
c636b95e
SE
6188 [ALC292_FIXUP_TPT460] = {
6189 .type = HDA_FIXUP_FUNC,
6190 .v.func = alc_fixup_tpt440_dock,
6191 .chained = true,
6192 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6193 },
dd9aa335
HW
6194 [ALC298_FIXUP_SPK_VOLUME] = {
6195 .type = HDA_FIXUP_FUNC,
6196 .v.func = alc298_fixup_speaker_volume,
59ec4b57 6197 .chained = true,
2f726aec 6198 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 6199 },
e312a869
TI
6200 [ALC295_FIXUP_DISABLE_DAC3] = {
6201 .type = HDA_FIXUP_FUNC,
6202 .v.func = alc295_fixup_disable_dac3,
6203 },
fd06c77e
KHF
6204 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6205 .type = HDA_FIXUP_PINS,
6206 .v.pins = (const struct hda_pintbl[]) {
6207 { 0x1b, 0x90170151 },
6208 { }
6209 },
6210 .chained = true,
6211 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6212 },
823ff161
GM
6213 [ALC269_FIXUP_ATIV_BOOK_8] = {
6214 .type = HDA_FIXUP_FUNC,
6215 .v.func = alc_fixup_auto_mute_via_amp,
6216 .chained = true,
6217 .chain_id = ALC269_FIXUP_NO_SHUTUP
6218 },
9eb5d0e6
KY
6219 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6220 .type = HDA_FIXUP_PINS,
6221 .v.pins = (const struct hda_pintbl[]) {
6222 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6223 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6224 { }
6225 },
6226 .chained = true,
6227 .chain_id = ALC269_FIXUP_HEADSET_MODE
6228 },
c1732ede
CC
6229 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6230 .type = HDA_FIXUP_FUNC,
6231 .v.func = alc_fixup_headset_mode,
6232 },
6233 [ALC256_FIXUP_ASUS_MIC] = {
6234 .type = HDA_FIXUP_PINS,
6235 .v.pins = (const struct hda_pintbl[]) {
6236 { 0x13, 0x90a60160 }, /* use as internal mic */
6237 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6238 { }
6239 },
6240 .chained = true,
6241 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6242 },
eeed4cd1 6243 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
6244 .type = HDA_FIXUP_FUNC,
6245 /* Set up GPIO2 for the speaker amp */
6246 .v.func = alc_fixup_gpio4,
eeed4cd1 6247 },
216d7aeb
CC
6248 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6249 .type = HDA_FIXUP_PINS,
6250 .v.pins = (const struct hda_pintbl[]) {
6251 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6252 { }
6253 },
6254 .chained = true,
6255 .chain_id = ALC269_FIXUP_HEADSET_MIC
6256 },
6257 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6258 .type = HDA_FIXUP_VERBS,
6259 .v.verbs = (const struct hda_verb[]) {
6260 /* Enables internal speaker */
6261 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6262 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6263 {}
6264 },
6265 .chained = true,
6266 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6267 },
ca169cc2
KY
6268 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6269 .type = HDA_FIXUP_FUNC,
6270 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6271 },
f33f79f3
HW
6272 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6273 .type = HDA_FIXUP_PINS,
6274 .v.pins = (const struct hda_pintbl[]) {
6275 /* Change the mic location from front to right, otherwise there are
6276 two front mics with the same name, pulseaudio can't handle them.
6277 This is just a temporary workaround, after applying this fixup,
6278 there will be one "Front Mic" and one "Mic" in this machine.
6279 */
6280 { 0x1a, 0x04a19040 },
6281 { }
6282 },
6283 },
5f364135
KY
6284 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6285 .type = HDA_FIXUP_PINS,
6286 .v.pins = (const struct hda_pintbl[]) {
6287 { 0x16, 0x0101102f }, /* Rear Headset HP */
6288 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6289 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6290 { 0x1b, 0x02011020 },
6291 { }
6292 },
6293 .chained = true,
6294 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6295 },
b84e8436
PH
6296 [ALC700_FIXUP_INTEL_REFERENCE] = {
6297 .type = HDA_FIXUP_VERBS,
6298 .v.verbs = (const struct hda_verb[]) {
6299 /* Enables internal speaker */
6300 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
6301 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
6302 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
6303 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
6304 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
6305 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
6306 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
6307 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
6308 {}
6309 }
6310 },
92266651
KY
6311 [ALC274_FIXUP_DELL_BIND_DACS] = {
6312 .type = HDA_FIXUP_FUNC,
6313 .v.func = alc274_fixup_bind_dacs,
6314 .chained = true,
6315 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6316 },
6317 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6318 .type = HDA_FIXUP_PINS,
6319 .v.pins = (const struct hda_pintbl[]) {
6320 { 0x1b, 0x0401102f },
6321 { }
6322 },
6323 .chained = true,
6324 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6325 },
61fcf8ec
KY
6326 [ALC298_FIXUP_TPT470_DOCK] = {
6327 .type = HDA_FIXUP_FUNC,
6328 .v.func = alc_fixup_tpt470_dock,
6329 .chained = true,
6330 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
6331 },
ae104a21
KY
6332 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
6333 .type = HDA_FIXUP_PINS,
6334 .v.pins = (const struct hda_pintbl[]) {
6335 { 0x14, 0x0201101f },
6336 { }
6337 },
6338 .chained = true,
6339 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6340 },
f0ba9d69
KY
6341 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
6342 .type = HDA_FIXUP_PINS,
6343 .v.pins = (const struct hda_pintbl[]) {
6344 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6345 { }
6346 },
3ce0d5aa
HW
6347 .chained = true,
6348 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 6349 },
bbf8ff6b
TB
6350 [ALC295_FIXUP_HP_X360] = {
6351 .type = HDA_FIXUP_FUNC,
6352 .v.func = alc295_fixup_hp_top_speakers,
6353 .chained = true,
6354 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
6355 },
6356 [ALC221_FIXUP_HP_HEADSET_MIC] = {
6357 .type = HDA_FIXUP_PINS,
6358 .v.pins = (const struct hda_pintbl[]) {
6359 { 0x19, 0x0181313f},
6360 { }
6361 },
6362 .chained = true,
6363 .chain_id = ALC269_FIXUP_HEADSET_MIC
6364 },
f1d4e28b
KY
6365};
6366
1d045db9 6367static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 6368 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
6369 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6370 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 6371 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b
TI
6372 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6373 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
6374 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
6375 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 6376 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 6377 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 6378 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
b9c2fa52 6379 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
aaedfb47 6380 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6ed1131f 6381 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 6382 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 6383 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
6384 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
6385 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 6386 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
6387 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6388 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6389 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
6390 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6391 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 6392 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 6393 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 6394 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
6395 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6396 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 6397 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 6398 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 6399 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 6400 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
6401 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6402 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
6403 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6404 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6405 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6406 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6407 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
423cd785 6408 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
fd06c77e 6409 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 6410 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
423cd785 6411 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
709ae62e 6412 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 6413 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
e312a869 6414 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
493de342 6415 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
5f364135 6416 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
e4c9fd10 6417 SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
40e2c4e5
KY
6418 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
6419 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
6420 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
6421 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 6422 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
a22aa26f
KY
6423 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6424 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 6425 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 6426 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 6427 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
33f4acd3 6428 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 6429 /* ALC282 */
7976eb49 6430 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 6431 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 6432 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
6433 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6434 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6435 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6436 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 6437 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
c60666bd 6438 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
6439 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6440 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 6441 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
eaa8e5ef 6442 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
b4b33f9d 6443 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
3271cb22 6444 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
c60666bd 6445 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
6446 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6447 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6448 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 6449 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
98973f2f 6450 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9c5dc3bf
KY
6451 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6452 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 6453 /* ALC290 */
9c5dc3bf 6454 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 6455 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 6456 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
6457 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6458 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6459 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6460 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6461 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 6462 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 6463 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
c60666bd 6464 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
6465 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6466 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6467 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
6468 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6469 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 6470 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 6471 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 6472 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 6473 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
6474 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6475 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
6476 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6477 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 6478 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164
KY
6479 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6480 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6481 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6482 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
f883982d 6483 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
563785ed 6484 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
e549d190 6485 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 6486 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
9eb5d0e6
KY
6487 SND_PCI_QUIRK(0x103c, 0x82bf, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6488 SND_PCI_QUIRK(0x103c, 0x82c0, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 6489 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
c1732ede 6490 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 6491 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 6492 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
c1732ede 6493 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 6494 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3e0d611b 6495 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1
TI
6496 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6497 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
6498 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
c1732ede
CC
6499 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
6500 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
6501 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 6502 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
23870831 6503 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
3e0d611b 6504 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
017f2a10 6505 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 6506 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
693b613d 6507 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
615966ad 6508 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1 6509 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
c1732ede 6510 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
eeed4cd1 6511 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
adabb3ec
TI
6512 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6513 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6514 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6515 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 6516 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
f88abaa0 6517 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
88cfcf86 6518 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
1d045db9
TI
6519 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6520 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6521 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 6522 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
24519911 6523 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 6524 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 6525 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
88776f36 6526 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 6527 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
2041d564 6528 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 6529 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
0fca97a2 6530 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 6531 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
823ff161 6532 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
abaa2274
AA
6533 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
6534 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 6535 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
ca169cc2 6536 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
1d045db9
TI
6537 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6538 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6539 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6540 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6541 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
707fba3f 6542 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
c8415a48 6543 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
84f98fdf 6544 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 6545 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 6546 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 6547 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 6548 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 6549 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 6550 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 6551 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 6552 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 6553 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 6554 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 6555 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 6556 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 6557 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
6558 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6559 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 6560 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 6561 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
6562 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
6563 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6564 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 6565 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
6566 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6567 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6568 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 6569 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
3694cb29 6570 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 6571 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 6572 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 6573 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 6574 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 6575 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
56f27013 6576 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 6577 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
9b745ab8 6578 SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP),
a4a9e082 6579 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 6580 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 6581 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 6582 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 6583 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 6584 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 6585 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 6586 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 6587 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 6588 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 6589 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 6590 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
6591 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6592 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6593 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
cd5302c0 6594 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
6595 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
6596 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
012e7eb1 6597 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
1d045db9 6598 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
02b504d9 6599 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
a4297b5d 6600
a7f3eedc 6601#if 0
a4297b5d
TI
6602 /* Below is a quirk table taken from the old code.
6603 * Basically the device should work as is without the fixup table.
6604 * If BIOS doesn't give a proper info, enable the corresponding
6605 * fixup entry.
7d7eb9ea 6606 */
a4297b5d
TI
6607 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6608 ALC269_FIXUP_AMIC),
6609 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
6610 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6611 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6612 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6613 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6614 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6615 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6616 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6617 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6618 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6619 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6620 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6621 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6622 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6623 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6624 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6625 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6626 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6627 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6628 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6629 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6630 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6631 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6632 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6633 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6634 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6635 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6636 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6637 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6638 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6639 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6640 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6641 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6642 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6643 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6644 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6645 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6646 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6647 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6648#endif
6649 {}
6650};
6651
214eef76
DH
6652static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
6653 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
6654 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
6655 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6656 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
6657 {}
6658};
6659
1727a771 6660static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
6661 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6662 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
6663 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
6664 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
6665 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 6666 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
6667 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
6668 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 6669 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
9f5c6faf 6670 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 6671 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
6672 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
6673 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
6674 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
6675 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 6676 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 6677 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 6678 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 6679 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 6680 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
a26d96c7 6681 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 6682 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 6683 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
6684 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
6685 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
6686 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
6687 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
6688 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
6689 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
6690 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
6691 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
6692 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
6693 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
6694 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
6695 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
6696 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
6697 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
6698 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
6699 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
6700 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
6701 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
6702 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
6703 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
6704 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
6705 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
6706 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
6707 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
6708 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
6709 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
6710 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
6711 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
6712 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
6713 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
6714 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
6715 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
6716 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
6717 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
6718 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
6719 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
6720 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
6721 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
6722 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
6723 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
6724 {.id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED, .name = "alc255-dell-mute"},
6725 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
6726 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
6727 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
6728 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
6729 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
6730 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
6731 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
6732 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
6733 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
6734 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
6735 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
6736 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
6737 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
6738 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
6739 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
6740 {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"},
6741 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
6742 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
6743 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
6744 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
6745 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
6746 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
6747 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
6748 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
6749 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
6750 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
6751 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
6752 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
6753 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
6754 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
6755 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
6756 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
6757 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
6758 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
6759 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
6760 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
6761 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
6762 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
1d045db9 6763 {}
6dda9f4a 6764};
cfc5a845 6765#define ALC225_STANDARD_PINS \
cfc5a845 6766 {0x21, 0x04211020}
6dda9f4a 6767
e8191a8e
HW
6768#define ALC256_STANDARD_PINS \
6769 {0x12, 0x90a60140}, \
6770 {0x14, 0x90170110}, \
e8191a8e
HW
6771 {0x21, 0x02211020}
6772
fea185e2 6773#define ALC282_STANDARD_PINS \
11580297 6774 {0x14, 0x90170110}
e1e62b98 6775
fea185e2 6776#define ALC290_STANDARD_PINS \
11580297 6777 {0x12, 0x99a30130}
fea185e2
DH
6778
6779#define ALC292_STANDARD_PINS \
6780 {0x14, 0x90170110}, \
11580297 6781 {0x15, 0x0221401f}
977e6276 6782
3f640970
HW
6783#define ALC295_STANDARD_PINS \
6784 {0x12, 0xb7a60130}, \
6785 {0x14, 0x90170110}, \
3f640970
HW
6786 {0x21, 0x04211020}
6787
703867e2
WS
6788#define ALC298_STANDARD_PINS \
6789 {0x12, 0x90a60130}, \
6790 {0x21, 0x03211020}
6791
e1918938 6792static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
6793 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
6794 {0x14, 0x01014020},
6795 {0x17, 0x90170110},
6796 {0x18, 0x02a11030},
6797 {0x19, 0x0181303F},
6798 {0x21, 0x0221102f}),
5824ce8d
CC
6799 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
6800 {0x12, 0x90a601c0},
6801 {0x14, 0x90171120},
6802 {0x21, 0x02211030}),
615966ad
CC
6803 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
6804 {0x14, 0x90170110},
6805 {0x1b, 0x90a70130},
6806 {0x21, 0x03211020}),
6807 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
6808 {0x1a, 0x90a70130},
6809 {0x1b, 0x90170110},
6810 {0x21, 0x03211020}),
2ae95577 6811 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 6812 ALC225_STANDARD_PINS,
8a132099 6813 {0x12, 0xb7a60130},
cfc5a845 6814 {0x14, 0x901701a0}),
2ae95577 6815 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 6816 ALC225_STANDARD_PINS,
8a132099 6817 {0x12, 0xb7a60130},
cfc5a845 6818 {0x14, 0x901701b0}),
8a132099
HW
6819 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6820 ALC225_STANDARD_PINS,
6821 {0x12, 0xb7a60150},
6822 {0x14, 0x901701a0}),
6823 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6824 ALC225_STANDARD_PINS,
6825 {0x12, 0xb7a60150},
6826 {0x14, 0x901701b0}),
6827 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6828 ALC225_STANDARD_PINS,
6829 {0x12, 0xb7a60130},
6830 {0x1b, 0x90170110}),
0ce48e17
KHF
6831 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6832 {0x1b, 0x01111010},
6833 {0x1e, 0x01451130},
6834 {0x21, 0x02211020}),
986376b6
HW
6835 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
6836 {0x12, 0x90a60140},
6837 {0x14, 0x90170110},
6838 {0x19, 0x02a11030},
6839 {0x21, 0x02211020}),
e41fc8c5
HW
6840 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
6841 {0x14, 0x90170110},
6842 {0x19, 0x02a11030},
6843 {0x1a, 0x02a11040},
6844 {0x1b, 0x01014020},
6845 {0x21, 0x0221101f}),
d06fb562
HW
6846 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
6847 {0x14, 0x90170110},
6848 {0x19, 0x02a11030},
6849 {0x1a, 0x02a11040},
6850 {0x1b, 0x01011020},
6851 {0x21, 0x0221101f}),
c6b17f10
HW
6852 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
6853 {0x14, 0x90170110},
6854 {0x19, 0x02a11020},
6855 {0x1a, 0x02a11030},
6856 {0x21, 0x0221101f}),
f265788c
HW
6857 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6858 {0x12, 0x90a60140},
6859 {0x14, 0x90170110},
6860 {0x21, 0x02211020}),
6861 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6862 {0x12, 0x90a60140},
6863 {0x14, 0x90170150},
6864 {0x21, 0x02211020}),
c77900e6 6865 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 6866 {0x14, 0x90170110},
c77900e6 6867 {0x21, 0x02211020}),
86c72d1c
HW
6868 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6869 {0x14, 0x90170130},
6870 {0x21, 0x02211040}),
76c2132e
DH
6871 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6872 {0x12, 0x90a60140},
6873 {0x14, 0x90170110},
76c2132e
DH
6874 {0x21, 0x02211020}),
6875 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6876 {0x12, 0x90a60160},
6877 {0x14, 0x90170120},
76c2132e 6878 {0x21, 0x02211030}),
392c9da2
HW
6879 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6880 {0x14, 0x90170110},
6881 {0x1b, 0x02011020},
6882 {0x21, 0x0221101f}),
6aecd871
HW
6883 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6884 {0x14, 0x90170110},
6885 {0x1b, 0x01011020},
6886 {0x21, 0x0221101f}),
cba59972 6887 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 6888 {0x14, 0x90170130},
cba59972 6889 {0x1b, 0x01014020},
cba59972 6890 {0x21, 0x0221103f}),
6aecd871
HW
6891 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6892 {0x14, 0x90170130},
6893 {0x1b, 0x01011020},
6894 {0x21, 0x0221103f}),
59ec4b57
HW
6895 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6896 {0x14, 0x90170130},
6897 {0x1b, 0x02011020},
6898 {0x21, 0x0221103f}),
e9c28e16 6899 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 6900 {0x14, 0x90170150},
e9c28e16 6901 {0x1b, 0x02011020},
e9c28e16
WS
6902 {0x21, 0x0221105f}),
6903 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 6904 {0x14, 0x90170110},
e9c28e16 6905 {0x1b, 0x01014020},
e9c28e16 6906 {0x21, 0x0221101f}),
76c2132e
DH
6907 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6908 {0x12, 0x90a60160},
6909 {0x14, 0x90170120},
6910 {0x17, 0x90170140},
76c2132e
DH
6911 {0x21, 0x0321102f}),
6912 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6913 {0x12, 0x90a60160},
6914 {0x14, 0x90170130},
76c2132e
DH
6915 {0x21, 0x02211040}),
6916 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6917 {0x12, 0x90a60160},
6918 {0x14, 0x90170140},
76c2132e
DH
6919 {0x21, 0x02211050}),
6920 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6921 {0x12, 0x90a60170},
6922 {0x14, 0x90170120},
76c2132e
DH
6923 {0x21, 0x02211030}),
6924 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6925 {0x12, 0x90a60170},
6926 {0x14, 0x90170130},
76c2132e 6927 {0x21, 0x02211040}),
0a1f90a9
HW
6928 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6929 {0x12, 0x90a60170},
6930 {0x14, 0x90171130},
6931 {0x21, 0x02211040}),
70658b99 6932 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
6933 {0x12, 0x90a60170},
6934 {0x14, 0x90170140},
70658b99 6935 {0x21, 0x02211050}),
9b5a4e39 6936 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
6937 {0x12, 0x90a60180},
6938 {0x14, 0x90170130},
9b5a4e39 6939 {0x21, 0x02211040}),
f90d83b3
AK
6940 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6941 {0x12, 0x90a60180},
6942 {0x14, 0x90170120},
6943 {0x21, 0x02211030}),
989dbe4a
HW
6944 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6945 {0x1b, 0x01011020},
6946 {0x21, 0x02211010}),
285d5ddc
HW
6947 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6948 {0x12, 0x90a60130},
6949 {0x14, 0x90170110},
6950 {0x1b, 0x01011020},
6951 {0x21, 0x0221101f}),
81a1231b 6952 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
81a1231b
KY
6953 {0x12, 0x90a60160},
6954 {0x14, 0x90170120},
81a1231b 6955 {0x21, 0x02211030}),
f83c3292
WS
6956 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6957 {0x12, 0x90a60170},
6958 {0x14, 0x90170120},
6959 {0x21, 0x02211030}),
311042d1
SB
6960 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6961 {0x12, 0x90a60180},
6962 {0x14, 0x90170120},
6963 {0x21, 0x02211030}),
3f640970
HW
6964 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6965 {0x12, 0xb7a60130},
6966 {0x14, 0x90170110},
6967 {0x21, 0x02211020}),
3f2f7c55
HW
6968 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6969 {0x12, 0x90a60130},
6970 {0x14, 0x90170110},
6971 {0x14, 0x01011020},
6972 {0x21, 0x0221101f}),
7081adf3 6973 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11580297 6974 ALC256_STANDARD_PINS),
c1732ede
CC
6975 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
6976 {0x14, 0x90170110},
6977 {0x1b, 0x90a70130},
6978 {0x21, 0x04211020}),
6979 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
6980 {0x14, 0x90170110},
6981 {0x1b, 0x90a70130},
6982 {0x21, 0x03211020}),
92266651 6983 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
75ee94b2
HW
6984 {0x12, 0xb7a60130},
6985 {0x13, 0xb8a61140},
6986 {0x16, 0x90170110},
6987 {0x21, 0x04211020}),
cf51eb9d
DH
6988 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
6989 {0x12, 0x90a60130},
cf51eb9d
DH
6990 {0x14, 0x90170110},
6991 {0x15, 0x0421101f},
11580297 6992 {0x1a, 0x04a11020}),
0279661b
HW
6993 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
6994 {0x12, 0x90a60140},
0279661b
HW
6995 {0x14, 0x90170110},
6996 {0x15, 0x0421101f},
0279661b 6997 {0x18, 0x02811030},
0279661b 6998 {0x1a, 0x04a1103f},
11580297 6999 {0x1b, 0x02011020}),
42304474 7000 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7001 ALC282_STANDARD_PINS,
42304474 7002 {0x12, 0x99a30130},
42304474 7003 {0x19, 0x03a11020},
42304474 7004 {0x21, 0x0321101f}),
2c609999 7005 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7006 ALC282_STANDARD_PINS,
2c609999 7007 {0x12, 0x99a30130},
2c609999 7008 {0x19, 0x03a11020},
2c609999
HW
7009 {0x21, 0x03211040}),
7010 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7011 ALC282_STANDARD_PINS,
2c609999 7012 {0x12, 0x99a30130},
2c609999 7013 {0x19, 0x03a11030},
2c609999
HW
7014 {0x21, 0x03211020}),
7015 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7016 ALC282_STANDARD_PINS,
2c609999 7017 {0x12, 0x99a30130},
2c609999 7018 {0x19, 0x04a11020},
2c609999 7019 {0x21, 0x0421101f}),
200afc09 7020 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 7021 ALC282_STANDARD_PINS,
200afc09 7022 {0x12, 0x90a60140},
200afc09 7023 {0x19, 0x04a11030},
200afc09 7024 {0x21, 0x04211020}),
76c2132e 7025 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7026 ALC282_STANDARD_PINS,
76c2132e 7027 {0x12, 0x90a60130},
76c2132e
DH
7028 {0x21, 0x0321101f}),
7029 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7030 {0x12, 0x90a60160},
7031 {0x14, 0x90170120},
76c2132e 7032 {0x21, 0x02211030}),
bc262179 7033 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7034 ALC282_STANDARD_PINS,
bc262179 7035 {0x12, 0x90a60130},
bc262179 7036 {0x19, 0x03a11020},
bc262179 7037 {0x21, 0x0321101f}),
d44a6864 7038 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 7039 {0x12, 0x90a60120},
e1e62b98 7040 {0x14, 0x90170110},
e1e62b98 7041 {0x21, 0x0321101f}),
d5078193 7042 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
3f2f7c55
HW
7043 {0x12, 0xb7a60130},
7044 {0x14, 0x90170110},
7045 {0x21, 0x04211020}),
e4442bcf 7046 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7047 ALC290_STANDARD_PINS,
e4442bcf 7048 {0x15, 0x04211040},
e4442bcf 7049 {0x18, 0x90170112},
11580297 7050 {0x1a, 0x04a11020}),
e4442bcf 7051 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7052 ALC290_STANDARD_PINS,
e4442bcf 7053 {0x15, 0x04211040},
e4442bcf 7054 {0x18, 0x90170110},
11580297 7055 {0x1a, 0x04a11020}),
e4442bcf 7056 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7057 ALC290_STANDARD_PINS,
e4442bcf 7058 {0x15, 0x0421101f},
11580297 7059 {0x1a, 0x04a11020}),
e4442bcf 7060 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7061 ALC290_STANDARD_PINS,
e4442bcf 7062 {0x15, 0x04211020},
11580297 7063 {0x1a, 0x04a11040}),
e4442bcf 7064 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7065 ALC290_STANDARD_PINS,
e4442bcf
HW
7066 {0x14, 0x90170110},
7067 {0x15, 0x04211020},
11580297 7068 {0x1a, 0x04a11040}),
e4442bcf 7069 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7070 ALC290_STANDARD_PINS,
e4442bcf
HW
7071 {0x14, 0x90170110},
7072 {0x15, 0x04211020},
11580297 7073 {0x1a, 0x04a11020}),
e4442bcf 7074 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7075 ALC290_STANDARD_PINS,
e4442bcf
HW
7076 {0x14, 0x90170110},
7077 {0x15, 0x0421101f},
11580297 7078 {0x1a, 0x04a11020}),
e8818fa8 7079 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7080 ALC292_STANDARD_PINS,
e8818fa8 7081 {0x12, 0x90a60140},
e8818fa8 7082 {0x16, 0x01014020},
11580297 7083 {0x19, 0x01a19030}),
e8818fa8 7084 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7085 ALC292_STANDARD_PINS,
e8818fa8 7086 {0x12, 0x90a60140},
e8818fa8
HW
7087 {0x16, 0x01014020},
7088 {0x18, 0x02a19031},
11580297 7089 {0x19, 0x01a1903e}),
76c2132e 7090 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 7091 ALC292_STANDARD_PINS,
11580297 7092 {0x12, 0x90a60140}),
76c2132e 7093 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7094 ALC292_STANDARD_PINS,
76c2132e 7095 {0x13, 0x90a60140},
76c2132e 7096 {0x16, 0x21014020},
11580297 7097 {0x19, 0x21a19030}),
e03fdbde 7098 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7099 ALC292_STANDARD_PINS,
11580297 7100 {0x13, 0x90a60140}),
3f640970 7101 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
f771d5bb
HW
7102 ALC295_STANDARD_PINS,
7103 {0x17, 0x21014020},
7104 {0x18, 0x21a19030}),
7105 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7106 ALC295_STANDARD_PINS,
7107 {0x17, 0x21014040},
7108 {0x18, 0x21a19050}),
3f307834
HW
7109 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7110 ALC295_STANDARD_PINS),
9f502ff5
TI
7111 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7112 ALC298_STANDARD_PINS,
7113 {0x17, 0x90170110}),
977e6276 7114 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
7115 ALC298_STANDARD_PINS,
7116 {0x17, 0x90170140}),
7117 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7118 ALC298_STANDARD_PINS,
9f502ff5 7119 {0x17, 0x90170150}),
9f1bc2c4
KHF
7120 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
7121 {0x12, 0xb7a60140},
7122 {0x13, 0xb7a60150},
7123 {0x17, 0x90170110},
7124 {0x1a, 0x03011020},
7125 {0x21, 0x03211030}),
fcc6c877
KY
7126 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7127 ALC225_STANDARD_PINS,
7128 {0x12, 0xb7a60130},
fcc6c877 7129 {0x17, 0x90170110}),
e1918938
HW
7130 {}
7131};
6dda9f4a 7132
546bb678 7133static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 7134{
526af6eb 7135 struct alc_spec *spec = codec->spec;
1d045db9 7136 int val;
ebb83eeb 7137
526af6eb 7138 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 7139 return;
526af6eb 7140
1bb7e43e 7141 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
7142 alc_write_coef_idx(codec, 0xf, 0x960b);
7143 alc_write_coef_idx(codec, 0xe, 0x8817);
7144 }
ebb83eeb 7145
1bb7e43e 7146 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
7147 alc_write_coef_idx(codec, 0xf, 0x960b);
7148 alc_write_coef_idx(codec, 0xe, 0x8814);
7149 }
ebb83eeb 7150
1bb7e43e 7151 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 7152 /* Power up output pin */
98b24883 7153 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 7154 }
ebb83eeb 7155
1bb7e43e 7156 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 7157 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 7158 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
7159 /* Capless ramp up clock control */
7160 alc_write_coef_idx(codec, 0xd, val | (1<<10));
7161 }
7162 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 7163 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
7164 /* Class D power on reset */
7165 alc_write_coef_idx(codec, 0x17, val | (1<<7));
7166 }
7167 }
ebb83eeb 7168
98b24883
TI
7169 /* HP */
7170 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 7171}
a7f2371f 7172
1d045db9
TI
7173/*
7174 */
1d045db9
TI
7175static int patch_alc269(struct hda_codec *codec)
7176{
7177 struct alc_spec *spec;
3de95173 7178 int err;
f1d4e28b 7179
3de95173 7180 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 7181 if (err < 0)
3de95173
TI
7182 return err;
7183
7184 spec = codec->spec;
08c189f2 7185 spec->gen.shared_mic_vref_pin = 0x18;
8b99aba7 7186 codec->power_save_node = 1;
e16fb6d1 7187
225068ab
TI
7188#ifdef CONFIG_PM
7189 codec->patch_ops.suspend = alc269_suspend;
7190 codec->patch_ops.resume = alc269_resume;
7191#endif
c2d6af53
KY
7192 spec->shutup = alc_default_shutup;
7193 spec->init_hook = alc_default_init;
225068ab 7194
7639a06c 7195 switch (codec->core.vendor_id) {
065380f0 7196 case 0x10ec0269:
1d045db9 7197 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
7198 switch (alc_get_coef0(codec) & 0x00f0) {
7199 case 0x0010:
5100cd07
TI
7200 if (codec->bus->pci &&
7201 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 7202 spec->cdefine.platform_type == 1)
20ca0c35 7203 err = alc_codec_rename(codec, "ALC271X");
1d045db9 7204 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
7205 break;
7206 case 0x0020:
5100cd07
TI
7207 if (codec->bus->pci &&
7208 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 7209 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 7210 err = alc_codec_rename(codec, "ALC3202");
1d045db9 7211 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 7212 break;
adcc70b2
KY
7213 case 0x0030:
7214 spec->codec_variant = ALC269_TYPE_ALC269VD;
7215 break;
1bb7e43e 7216 default:
1d045db9 7217 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 7218 }
e16fb6d1
TI
7219 if (err < 0)
7220 goto error;
c2d6af53 7221 spec->shutup = alc269_shutup;
546bb678 7222 spec->init_hook = alc269_fill_coef;
1d045db9 7223 alc269_fill_coef(codec);
065380f0
KY
7224 break;
7225
7226 case 0x10ec0280:
7227 case 0x10ec0290:
7228 spec->codec_variant = ALC269_TYPE_ALC280;
7229 break;
7230 case 0x10ec0282:
065380f0 7231 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
7232 spec->shutup = alc282_shutup;
7233 spec->init_hook = alc282_init;
065380f0 7234 break;
2af02be7
KY
7235 case 0x10ec0233:
7236 case 0x10ec0283:
7237 spec->codec_variant = ALC269_TYPE_ALC283;
7238 spec->shutup = alc283_shutup;
7239 spec->init_hook = alc283_init;
7240 break;
065380f0
KY
7241 case 0x10ec0284:
7242 case 0x10ec0292:
7243 spec->codec_variant = ALC269_TYPE_ALC284;
7244 break;
161ebf29 7245 case 0x10ec0293:
4731d5de 7246 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 7247 break;
7fc7d047 7248 case 0x10ec0286:
7c665932 7249 case 0x10ec0288:
7fc7d047 7250 spec->codec_variant = ALC269_TYPE_ALC286;
f7ae9ba0 7251 spec->shutup = alc286_shutup;
7fc7d047 7252 break;
506b62c3
KY
7253 case 0x10ec0298:
7254 spec->codec_variant = ALC269_TYPE_ALC298;
7255 break;
ea04a1db 7256 case 0x10ec0235:
1d04c9de
KY
7257 case 0x10ec0255:
7258 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
7259 spec->shutup = alc256_shutup;
7260 spec->init_hook = alc256_init;
1d04c9de 7261 break;
736f20a7 7262 case 0x10ec0236:
4344aec8
KY
7263 case 0x10ec0256:
7264 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
7265 spec->shutup = alc256_shutup;
7266 spec->init_hook = alc256_init;
7d1b6e29 7267 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
d32b6666 7268 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
4344aec8 7269 break;
f429e7e4
KY
7270 case 0x10ec0257:
7271 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
7272 spec->shutup = alc256_shutup;
7273 spec->init_hook = alc256_init;
f429e7e4
KY
7274 spec->gen.mixer_nid = 0;
7275 break;
0a6f0600
KY
7276 case 0x10ec0215:
7277 case 0x10ec0285:
7278 case 0x10ec0289:
7279 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
7280 spec->shutup = alc225_shutup;
7281 spec->init_hook = alc225_init;
0a6f0600
KY
7282 spec->gen.mixer_nid = 0;
7283 break;
4231430d 7284 case 0x10ec0225:
7d727869 7285 case 0x10ec0295:
28f1f9b2 7286 case 0x10ec0299:
4231430d 7287 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
7288 spec->shutup = alc225_shutup;
7289 spec->init_hook = alc225_init;
c1350bff 7290 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 7291 break;
dcd4f0db
KY
7292 case 0x10ec0234:
7293 case 0x10ec0274:
7294 case 0x10ec0294:
7295 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 7296 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 7297 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
dcd4f0db 7298 break;
6fbae35a
KY
7299 case 0x10ec0700:
7300 case 0x10ec0701:
7301 case 0x10ec0703:
7302 spec->codec_variant = ALC269_TYPE_ALC700;
7303 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 7304 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
6fbae35a
KY
7305 break;
7306
1d045db9 7307 }
6dda9f4a 7308
ad60d502 7309 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 7310 spec->has_alc5505_dsp = 1;
ad60d502
KY
7311 spec->init_hook = alc5505_dsp_init;
7312 }
7313
efe55732
TI
7314 snd_hda_pick_fixup(codec, alc269_fixup_models,
7315 alc269_fixup_tbl, alc269_fixups);
7316 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups);
7317 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
7318 alc269_fixups);
7319 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
7320
7321 alc_auto_parse_customize_define(codec);
7322
7323 if (has_cdefine_beep(codec))
7324 spec->gen.beep_nid = 0x01;
7325
a4297b5d
TI
7326 /* automatic parse from the BIOS config */
7327 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
7328 if (err < 0)
7329 goto error;
6dda9f4a 7330
fea80fae
TI
7331 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
7332 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
7333 if (err < 0)
7334 goto error;
7335 }
f1d4e28b 7336
1727a771 7337 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 7338
1d045db9 7339 return 0;
e16fb6d1
TI
7340
7341 error:
7342 alc_free(codec);
7343 return err;
1d045db9 7344}
f1d4e28b 7345
1d045db9
TI
7346/*
7347 * ALC861
7348 */
622e84cd 7349
1d045db9 7350static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 7351{
1d045db9 7352 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
7353 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
7354 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
7355}
7356
1d045db9
TI
7357/* Pin config fixes */
7358enum {
e652f4c8
TI
7359 ALC861_FIXUP_FSC_AMILO_PI1505,
7360 ALC861_FIXUP_AMP_VREF_0F,
7361 ALC861_FIXUP_NO_JACK_DETECT,
7362 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 7363 ALC660_FIXUP_ASUS_W7J,
1d045db9 7364};
7085ec12 7365
31150f23
TI
7366/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
7367static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 7368 const struct hda_fixup *fix, int action)
31150f23
TI
7369{
7370 struct alc_spec *spec = codec->spec;
7371 unsigned int val;
7372
1727a771 7373 if (action != HDA_FIXUP_ACT_INIT)
31150f23 7374 return;
d3f02d60 7375 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
7376 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
7377 val |= AC_PINCTL_IN_EN;
7378 val |= AC_PINCTL_VREF_50;
cdd03ced 7379 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 7380 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
7381}
7382
e652f4c8
TI
7383/* suppress the jack-detection */
7384static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 7385 const struct hda_fixup *fix, int action)
e652f4c8 7386{
1727a771 7387 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 7388 codec->no_jack_detect = 1;
7d7eb9ea 7389}
e652f4c8 7390
1727a771 7391static const struct hda_fixup alc861_fixups[] = {
e652f4c8 7392 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
7393 .type = HDA_FIXUP_PINS,
7394 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
7395 { 0x0b, 0x0221101f }, /* HP */
7396 { 0x0f, 0x90170310 }, /* speaker */
7397 { }
7398 }
7399 },
e652f4c8 7400 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 7401 .type = HDA_FIXUP_FUNC,
31150f23 7402 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 7403 },
e652f4c8 7404 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 7405 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
7406 .v.func = alc_fixup_no_jack_detect,
7407 },
7408 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 7409 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
7410 .v.func = alc861_fixup_asus_amp_vref_0f,
7411 .chained = true,
7412 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
7413 },
7414 [ALC660_FIXUP_ASUS_W7J] = {
7415 .type = HDA_FIXUP_VERBS,
7416 .v.verbs = (const struct hda_verb[]) {
7417 /* ASUS W7J needs a magic pin setup on unused NID 0x10
7418 * for enabling outputs
7419 */
7420 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7421 { }
7422 },
e652f4c8 7423 }
1d045db9 7424};
7085ec12 7425
1d045db9 7426static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 7427 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 7428 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
7429 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
7430 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
7431 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
7432 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
7433 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
7434 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
7435 {}
7436};
3af9ee6b 7437
1d045db9
TI
7438/*
7439 */
1d045db9 7440static int patch_alc861(struct hda_codec *codec)
7085ec12 7441{
1d045db9 7442 struct alc_spec *spec;
1d045db9 7443 int err;
7085ec12 7444
3de95173
TI
7445 err = alc_alloc_spec(codec, 0x15);
7446 if (err < 0)
7447 return err;
1d045db9 7448
3de95173 7449 spec = codec->spec;
7504b6cd 7450 spec->gen.beep_nid = 0x23;
1d045db9 7451
225068ab
TI
7452#ifdef CONFIG_PM
7453 spec->power_hook = alc_power_eapd;
7454#endif
7455
1727a771
TI
7456 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
7457 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 7458
cb4e4824
TI
7459 /* automatic parse from the BIOS config */
7460 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
7461 if (err < 0)
7462 goto error;
3af9ee6b 7463
fea80fae
TI
7464 if (!spec->gen.no_analog) {
7465 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
7466 if (err < 0)
7467 goto error;
7468 }
7085ec12 7469
1727a771 7470 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 7471
1d045db9 7472 return 0;
e16fb6d1
TI
7473
7474 error:
7475 alc_free(codec);
7476 return err;
7085ec12
TI
7477}
7478
1d045db9
TI
7479/*
7480 * ALC861-VD support
7481 *
7482 * Based on ALC882
7483 *
7484 * In addition, an independent DAC
7485 */
1d045db9 7486static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 7487{
1d045db9 7488 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
7489 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7490 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
7491}
7492
1d045db9 7493enum {
8fdcb6fe
TI
7494 ALC660VD_FIX_ASUS_GPIO1,
7495 ALC861VD_FIX_DALLAS,
1d045db9 7496};
ce764ab2 7497
8fdcb6fe
TI
7498/* exclude VREF80 */
7499static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 7500 const struct hda_fixup *fix, int action)
8fdcb6fe 7501{
1727a771 7502 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
7503 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
7504 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
7505 }
7506}
7507
df73d83f
TI
7508/* reset GPIO1 */
7509static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
7510 const struct hda_fixup *fix, int action)
7511{
7512 struct alc_spec *spec = codec->spec;
7513
7514 if (action == HDA_FIXUP_ACT_PRE_PROBE)
7515 spec->gpio_mask |= 0x02;
7516 alc_fixup_gpio(codec, action, 0x01);
7517}
7518
1727a771 7519static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 7520 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
7521 .type = HDA_FIXUP_FUNC,
7522 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 7523 },
8fdcb6fe 7524 [ALC861VD_FIX_DALLAS] = {
1727a771 7525 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
7526 .v.func = alc861vd_fixup_dallas,
7527 },
1d045db9 7528};
ce764ab2 7529
1d045db9 7530static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 7531 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 7532 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 7533 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
7534 {}
7535};
ce764ab2 7536
1d045db9
TI
7537/*
7538 */
1d045db9 7539static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 7540{
1d045db9 7541 struct alc_spec *spec;
cb4e4824 7542 int err;
ce764ab2 7543
3de95173
TI
7544 err = alc_alloc_spec(codec, 0x0b);
7545 if (err < 0)
7546 return err;
1d045db9 7547
3de95173 7548 spec = codec->spec;
7504b6cd 7549 spec->gen.beep_nid = 0x23;
1d045db9 7550
225068ab
TI
7551 spec->shutup = alc_eapd_shutup;
7552
1727a771
TI
7553 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
7554 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 7555
cb4e4824
TI
7556 /* automatic parse from the BIOS config */
7557 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
7558 if (err < 0)
7559 goto error;
ce764ab2 7560
fea80fae
TI
7561 if (!spec->gen.no_analog) {
7562 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7563 if (err < 0)
7564 goto error;
7565 }
1d045db9 7566
1727a771 7567 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 7568
ce764ab2 7569 return 0;
e16fb6d1
TI
7570
7571 error:
7572 alc_free(codec);
7573 return err;
ce764ab2
TI
7574}
7575
1d045db9
TI
7576/*
7577 * ALC662 support
7578 *
7579 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
7580 * configuration. Each pin widget can choose any input DACs and a mixer.
7581 * Each ADC is connected from a mixer of all inputs. This makes possible
7582 * 6-channel independent captures.
7583 *
7584 * In addition, an independent DAC for the multi-playback (not used in this
7585 * driver yet).
7586 */
1d045db9
TI
7587
7588/*
7589 * BIOS auto configuration
7590 */
7591
bc9f98a9
KY
7592static int alc662_parse_auto_config(struct hda_codec *codec)
7593{
4c6d72d1 7594 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
7595 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
7596 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7597 const hda_nid_t *ssids;
ee979a14 7598
7639a06c
TI
7599 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
7600 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
7601 codec->core.vendor_id == 0x10ec0671)
3e6179b8 7602 ssids = alc663_ssids;
6227cdce 7603 else
3e6179b8
TI
7604 ssids = alc662_ssids;
7605 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
7606}
7607
6be7948f 7608static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 7609 const struct hda_fixup *fix, int action)
6fc398cb 7610{
9bb1f06f 7611 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 7612 return;
6be7948f
TB
7613 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
7614 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
7615 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
7616 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
7617 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 7618 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
7619}
7620
8e383953
TI
7621static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
7622 { .channels = 2,
7623 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
7624 { .channels = 4,
7625 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
7626 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
7627 { }
7628};
7629
7630/* override the 2.1 chmap */
eb9ca3ab 7631static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
7632 const struct hda_fixup *fix, int action)
7633{
7634 if (action == HDA_FIXUP_ACT_BUILD) {
7635 struct alc_spec *spec = codec->spec;
bbbc7e85 7636 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
7637 }
7638}
7639
bf68665d
TI
7640/* avoid D3 for keeping GPIO up */
7641static unsigned int gpio_led_power_filter(struct hda_codec *codec,
7642 hda_nid_t nid,
7643 unsigned int power_state)
7644{
7645 struct alc_spec *spec = codec->spec;
d261eec8 7646 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
7647 return AC_PWRST_D0;
7648 return power_state;
7649}
7650
3e887f37
TI
7651static void alc662_fixup_led_gpio1(struct hda_codec *codec,
7652 const struct hda_fixup *fix, int action)
7653{
7654 struct alc_spec *spec = codec->spec;
3e887f37 7655
01e4a275 7656 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 7657 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 7658 spec->mute_led_polarity = 1;
bf68665d 7659 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
7660 }
7661}
7662
c6790c8e
KY
7663static void alc662_usi_automute_hook(struct hda_codec *codec,
7664 struct hda_jack_callback *jack)
7665{
7666 struct alc_spec *spec = codec->spec;
7667 int vref;
7668 msleep(200);
7669 snd_hda_gen_hp_automute(codec, jack);
7670
7671 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
7672 msleep(100);
7673 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7674 vref);
7675}
7676
7677static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
7678 const struct hda_fixup *fix, int action)
7679{
7680 struct alc_spec *spec = codec->spec;
7681 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7682 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7683 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
7684 }
7685}
7686
f3f9185f
KY
7687static struct coef_fw alc668_coefs[] = {
7688 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
7689 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
7690 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
7691 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
7692 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
7693 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
7694 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
7695 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
7696 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
7697 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
7698 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
7699 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
7700 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
7701 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
7702 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
7703 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
7704 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
7705 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
7706 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
7707 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
7708 {}
7709};
7710
7711static void alc668_restore_default_value(struct hda_codec *codec)
7712{
7713 alc_process_coef_fw(codec, alc668_coefs);
7714}
7715
6cb3b707 7716enum {
2df03514 7717 ALC662_FIXUP_ASPIRE,
3e887f37 7718 ALC662_FIXUP_LED_GPIO1,
6cb3b707 7719 ALC662_FIXUP_IDEAPAD,
6be7948f 7720 ALC272_FIXUP_MARIO,
d2ebd479 7721 ALC662_FIXUP_CZC_P10T,
94024cd1 7722 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 7723 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
7724 ALC662_FIXUP_ASUS_MODE1,
7725 ALC662_FIXUP_ASUS_MODE2,
7726 ALC662_FIXUP_ASUS_MODE3,
7727 ALC662_FIXUP_ASUS_MODE4,
7728 ALC662_FIXUP_ASUS_MODE5,
7729 ALC662_FIXUP_ASUS_MODE6,
7730 ALC662_FIXUP_ASUS_MODE7,
7731 ALC662_FIXUP_ASUS_MODE8,
1565cc35 7732 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 7733 ALC662_FIXUP_ZOTAC_Z68,
125821ae 7734 ALC662_FIXUP_INV_DMIC,
1f8b46cd 7735 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 7736 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 7737 ALC662_FIXUP_HEADSET_MODE,
73bdd597 7738 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 7739 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 7740 ALC662_FIXUP_BASS_16,
a30c9aaa 7741 ALC662_FIXUP_BASS_1A,
8e54b4ac 7742 ALC662_FIXUP_BASS_CHMAP,
493a52a9 7743 ALC668_FIXUP_AUTO_MUTE,
5e6db669 7744 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 7745 ALC668_FIXUP_DELL_XPS13,
9d4dc584 7746 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 7747 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 7748 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 7749 ALC668_FIXUP_MIC_COEF,
11ba6111 7750 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
7751 ALC891_FIXUP_HEADSET_MODE,
7752 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 7753 ALC662_FIXUP_ACER_VERITON,
1a3f0991 7754 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
7755 ALC662_FIXUP_USI_FUNC,
7756 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 7757 ALC662_FIXUP_LENOVO_MULTI_CODECS,
6cb3b707
DH
7758};
7759
1727a771 7760static const struct hda_fixup alc662_fixups[] = {
2df03514 7761 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
7762 .type = HDA_FIXUP_PINS,
7763 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
7764 { 0x15, 0x99130112 }, /* subwoofer */
7765 { }
7766 }
7767 },
3e887f37
TI
7768 [ALC662_FIXUP_LED_GPIO1] = {
7769 .type = HDA_FIXUP_FUNC,
7770 .v.func = alc662_fixup_led_gpio1,
7771 },
6cb3b707 7772 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
7773 .type = HDA_FIXUP_PINS,
7774 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
7775 { 0x17, 0x99130112 }, /* subwoofer */
7776 { }
3e887f37
TI
7777 },
7778 .chained = true,
7779 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 7780 },
6be7948f 7781 [ALC272_FIXUP_MARIO] = {
1727a771 7782 .type = HDA_FIXUP_FUNC,
b5bfbc67 7783 .v.func = alc272_fixup_mario,
d2ebd479
AA
7784 },
7785 [ALC662_FIXUP_CZC_P10T] = {
1727a771 7786 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
7787 .v.verbs = (const struct hda_verb[]) {
7788 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7789 {}
7790 }
7791 },
94024cd1 7792 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 7793 .type = HDA_FIXUP_FUNC,
23d30f28 7794 .v.func = alc_fixup_sku_ignore,
c6b35874 7795 },
e59ea3ed 7796 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
7797 .type = HDA_FIXUP_PINS,
7798 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
7799 { 0x14, 0x0221201f }, /* HP out */
7800 { }
7801 },
7802 .chained = true,
7803 .chain_id = ALC662_FIXUP_SKU_IGNORE
7804 },
53c334ad 7805 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
7806 .type = HDA_FIXUP_PINS,
7807 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7808 { 0x14, 0x99130110 }, /* speaker */
7809 { 0x18, 0x01a19c20 }, /* mic */
7810 { 0x19, 0x99a3092f }, /* int-mic */
7811 { 0x21, 0x0121401f }, /* HP out */
7812 { }
7813 },
7814 .chained = true,
7815 .chain_id = ALC662_FIXUP_SKU_IGNORE
7816 },
7817 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
7818 .type = HDA_FIXUP_PINS,
7819 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
7820 { 0x14, 0x99130110 }, /* speaker */
7821 { 0x18, 0x01a19820 }, /* mic */
7822 { 0x19, 0x99a3092f }, /* int-mic */
7823 { 0x1b, 0x0121401f }, /* HP out */
7824 { }
7825 },
53c334ad
TI
7826 .chained = true,
7827 .chain_id = ALC662_FIXUP_SKU_IGNORE
7828 },
7829 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
7830 .type = HDA_FIXUP_PINS,
7831 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7832 { 0x14, 0x99130110 }, /* speaker */
7833 { 0x15, 0x0121441f }, /* HP */
7834 { 0x18, 0x01a19840 }, /* mic */
7835 { 0x19, 0x99a3094f }, /* int-mic */
7836 { 0x21, 0x01211420 }, /* HP2 */
7837 { }
7838 },
7839 .chained = true,
7840 .chain_id = ALC662_FIXUP_SKU_IGNORE
7841 },
7842 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
7843 .type = HDA_FIXUP_PINS,
7844 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7845 { 0x14, 0x99130110 }, /* speaker */
7846 { 0x16, 0x99130111 }, /* speaker */
7847 { 0x18, 0x01a19840 }, /* mic */
7848 { 0x19, 0x99a3094f }, /* int-mic */
7849 { 0x21, 0x0121441f }, /* HP */
7850 { }
7851 },
7852 .chained = true,
7853 .chain_id = ALC662_FIXUP_SKU_IGNORE
7854 },
7855 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
7856 .type = HDA_FIXUP_PINS,
7857 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7858 { 0x14, 0x99130110 }, /* speaker */
7859 { 0x15, 0x0121441f }, /* HP */
7860 { 0x16, 0x99130111 }, /* speaker */
7861 { 0x18, 0x01a19840 }, /* mic */
7862 { 0x19, 0x99a3094f }, /* int-mic */
7863 { }
7864 },
7865 .chained = true,
7866 .chain_id = ALC662_FIXUP_SKU_IGNORE
7867 },
7868 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
7869 .type = HDA_FIXUP_PINS,
7870 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7871 { 0x14, 0x99130110 }, /* speaker */
7872 { 0x15, 0x01211420 }, /* HP2 */
7873 { 0x18, 0x01a19840 }, /* mic */
7874 { 0x19, 0x99a3094f }, /* int-mic */
7875 { 0x1b, 0x0121441f }, /* HP */
7876 { }
7877 },
7878 .chained = true,
7879 .chain_id = ALC662_FIXUP_SKU_IGNORE
7880 },
7881 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
7882 .type = HDA_FIXUP_PINS,
7883 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7884 { 0x14, 0x99130110 }, /* speaker */
7885 { 0x17, 0x99130111 }, /* speaker */
7886 { 0x18, 0x01a19840 }, /* mic */
7887 { 0x19, 0x99a3094f }, /* int-mic */
7888 { 0x1b, 0x01214020 }, /* HP */
7889 { 0x21, 0x0121401f }, /* HP */
7890 { }
7891 },
7892 .chained = true,
7893 .chain_id = ALC662_FIXUP_SKU_IGNORE
7894 },
7895 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
7896 .type = HDA_FIXUP_PINS,
7897 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
7898 { 0x14, 0x99130110 }, /* speaker */
7899 { 0x12, 0x99a30970 }, /* int-mic */
7900 { 0x15, 0x01214020 }, /* HP */
7901 { 0x17, 0x99130111 }, /* speaker */
7902 { 0x18, 0x01a19840 }, /* mic */
7903 { 0x21, 0x0121401f }, /* HP */
7904 { }
7905 },
7906 .chained = true,
7907 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 7908 },
1565cc35 7909 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 7910 .type = HDA_FIXUP_FUNC,
1565cc35
TI
7911 .v.func = alc_fixup_no_jack_detect,
7912 },
edfe3bfc 7913 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
7914 .type = HDA_FIXUP_PINS,
7915 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
7916 { 0x1b, 0x02214020 }, /* Front HP */
7917 { }
7918 }
7919 },
125821ae 7920 [ALC662_FIXUP_INV_DMIC] = {
1727a771 7921 .type = HDA_FIXUP_FUNC,
9d36a7dc 7922 .v.func = alc_fixup_inv_dmic,
125821ae 7923 },
033b0a7c
GM
7924 [ALC668_FIXUP_DELL_XPS13] = {
7925 .type = HDA_FIXUP_FUNC,
7926 .v.func = alc_fixup_dell_xps13,
7927 .chained = true,
7928 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
7929 },
5e6db669
GM
7930 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
7931 .type = HDA_FIXUP_FUNC,
7932 .v.func = alc_fixup_disable_aamix,
7933 .chained = true,
7934 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
7935 },
493a52a9
HW
7936 [ALC668_FIXUP_AUTO_MUTE] = {
7937 .type = HDA_FIXUP_FUNC,
7938 .v.func = alc_fixup_auto_mute_via_amp,
7939 .chained = true,
7940 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
7941 },
1f8b46cd
DH
7942 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
7943 .type = HDA_FIXUP_PINS,
7944 .v.pins = (const struct hda_pintbl[]) {
7945 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7946 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
7947 { }
7948 },
7949 .chained = true,
7950 .chain_id = ALC662_FIXUP_HEADSET_MODE
7951 },
7952 [ALC662_FIXUP_HEADSET_MODE] = {
7953 .type = HDA_FIXUP_FUNC,
7954 .v.func = alc_fixup_headset_mode_alc662,
7955 },
73bdd597
DH
7956 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
7957 .type = HDA_FIXUP_PINS,
7958 .v.pins = (const struct hda_pintbl[]) {
7959 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
7960 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7961 { }
7962 },
7963 .chained = true,
7964 .chain_id = ALC668_FIXUP_HEADSET_MODE
7965 },
7966 [ALC668_FIXUP_HEADSET_MODE] = {
7967 .type = HDA_FIXUP_FUNC,
7968 .v.func = alc_fixup_headset_mode_alc668,
7969 },
8e54b4ac 7970 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 7971 .type = HDA_FIXUP_FUNC,
eb9ca3ab 7972 .v.func = alc_fixup_bass_chmap,
8e383953
TI
7973 .chained = true,
7974 .chain_id = ALC662_FIXUP_ASUS_MODE4
7975 },
61a75f13
DH
7976 [ALC662_FIXUP_BASS_16] = {
7977 .type = HDA_FIXUP_PINS,
7978 .v.pins = (const struct hda_pintbl[]) {
7979 {0x16, 0x80106111}, /* bass speaker */
7980 {}
7981 },
7982 .chained = true,
7983 .chain_id = ALC662_FIXUP_BASS_CHMAP,
7984 },
a30c9aaa
TI
7985 [ALC662_FIXUP_BASS_1A] = {
7986 .type = HDA_FIXUP_PINS,
7987 .v.pins = (const struct hda_pintbl[]) {
7988 {0x1a, 0x80106111}, /* bass speaker */
7989 {}
7990 },
8e54b4ac
DH
7991 .chained = true,
7992 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 7993 },
8e54b4ac 7994 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 7995 .type = HDA_FIXUP_FUNC,
eb9ca3ab 7996 .v.func = alc_fixup_bass_chmap,
a30c9aaa 7997 },
9d4dc584
BM
7998 [ALC662_FIXUP_ASUS_Nx50] = {
7999 .type = HDA_FIXUP_FUNC,
8000 .v.func = alc_fixup_auto_mute_via_amp,
8001 .chained = true,
8002 .chain_id = ALC662_FIXUP_BASS_1A
8003 },
fc7438b1
MP
8004 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
8005 .type = HDA_FIXUP_FUNC,
8006 .v.func = alc_fixup_headset_mode_alc668,
8007 .chain_id = ALC662_FIXUP_BASS_CHMAP
8008 },
3231e205
YP
8009 [ALC668_FIXUP_ASUS_Nx51] = {
8010 .type = HDA_FIXUP_PINS,
8011 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
8012 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8013 { 0x1a, 0x90170151 }, /* bass speaker */
8014 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
8015 {}
8016 },
8017 .chained = true,
fc7438b1 8018 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 8019 },
5b7c5e1f 8020 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
8021 .type = HDA_FIXUP_VERBS,
8022 .v.verbs = (const struct hda_verb[]) {
8023 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
8024 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
8025 {}
8026 },
8027 },
5b7c5e1f
TI
8028 [ALC668_FIXUP_ASUS_G751] = {
8029 .type = HDA_FIXUP_PINS,
8030 .v.pins = (const struct hda_pintbl[]) {
8031 { 0x16, 0x0421101f }, /* HP */
8032 {}
8033 },
8034 .chained = true,
8035 .chain_id = ALC668_FIXUP_MIC_COEF
8036 },
78f4f7c2
KY
8037 [ALC891_FIXUP_HEADSET_MODE] = {
8038 .type = HDA_FIXUP_FUNC,
8039 .v.func = alc_fixup_headset_mode,
8040 },
8041 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
8042 .type = HDA_FIXUP_PINS,
8043 .v.pins = (const struct hda_pintbl[]) {
8044 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8045 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8046 { }
8047 },
8048 .chained = true,
8049 .chain_id = ALC891_FIXUP_HEADSET_MODE
8050 },
9b51fe3e
SB
8051 [ALC662_FIXUP_ACER_VERITON] = {
8052 .type = HDA_FIXUP_PINS,
8053 .v.pins = (const struct hda_pintbl[]) {
8054 { 0x15, 0x50170120 }, /* no internal speaker */
8055 { }
8056 }
8057 },
1a3f0991
TI
8058 [ALC892_FIXUP_ASROCK_MOBO] = {
8059 .type = HDA_FIXUP_PINS,
8060 .v.pins = (const struct hda_pintbl[]) {
8061 { 0x15, 0x40f000f0 }, /* disabled */
8062 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
8063 { }
8064 }
8065 },
c6790c8e
KY
8066 [ALC662_FIXUP_USI_FUNC] = {
8067 .type = HDA_FIXUP_FUNC,
8068 .v.func = alc662_fixup_usi_headset_mic,
8069 },
8070 [ALC662_FIXUP_USI_HEADSET_MODE] = {
8071 .type = HDA_FIXUP_PINS,
8072 .v.pins = (const struct hda_pintbl[]) {
8073 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
8074 { 0x18, 0x01a1903d },
8075 { }
8076 },
8077 .chained = true,
8078 .chain_id = ALC662_FIXUP_USI_FUNC
8079 },
ca169cc2
KY
8080 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
8081 .type = HDA_FIXUP_FUNC,
8082 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8083 },
6cb3b707
DH
8084};
8085
a9111321 8086static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 8087 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 8088 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 8089 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 8090 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 8091 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 8092 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 8093 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 8094 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
73bdd597
DH
8095 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8096 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 8097 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 8098 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 8099 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 8100 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 8101 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
8102 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8103 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 8104 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 8105 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
2da2dc9e 8106 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 8107 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
db8948e6 8108 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
9d4dc584 8109 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 8110 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
8e54b4ac 8111 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 8112 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
8113 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
8114 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
c7efff92 8115 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 8116 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 8117 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 8118 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 8119 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 8120 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 8121 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 8122 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
d4118588 8123 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 8124 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 8125 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 8126 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 8127 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
d2ebd479 8128 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
53c334ad
TI
8129
8130#if 0
8131 /* Below is a quirk table taken from the old code.
8132 * Basically the device should work as is without the fixup table.
8133 * If BIOS doesn't give a proper info, enable the corresponding
8134 * fixup entry.
7d7eb9ea 8135 */
53c334ad
TI
8136 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
8137 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
8138 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
8139 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
8140 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8141 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8142 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8143 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
8144 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
8145 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8146 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
8147 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
8148 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
8149 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
8150 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
8151 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8152 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
8153 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
8154 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8155 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8156 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8157 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8158 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
8159 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
8160 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
8161 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8162 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
8163 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8164 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8165 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
8166 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8167 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8168 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
8169 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
8170 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
8171 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
8172 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
8173 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
8174 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
8175 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8176 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
8177 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
8178 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8179 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
8180 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
8181 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
8182 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
8183 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
8184 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8185 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
8186#endif
6cb3b707
DH
8187 {}
8188};
8189
1727a771 8190static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
8191 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
8192 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 8193 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 8194 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
8195 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
8196 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
8197 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
8198 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
8199 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
8200 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
8201 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
8202 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 8203 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 8204 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 8205 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 8206 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
8207 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
8208 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
8209 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
8210 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
8211 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
8212 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
8213 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
8214 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 8215 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
8216 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
8217 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
8218 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
8219 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
8220 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 8221 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
6be7948f
TB
8222 {}
8223};
6cb3b707 8224
532895c5 8225static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
8226 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
8227 {0x17, 0x02211010},
8228 {0x18, 0x01a19030},
8229 {0x1a, 0x01813040},
8230 {0x21, 0x01014020}),
1f8b46cd 8231 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 8232 {0x14, 0x01014010},
1f8b46cd 8233 {0x18, 0x01a19020},
1f8b46cd 8234 {0x1a, 0x0181302f},
11580297 8235 {0x1b, 0x0221401f}),
76c2132e
DH
8236 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8237 {0x12, 0x99a30130},
8238 {0x14, 0x90170110},
8239 {0x15, 0x0321101f},
11580297 8240 {0x16, 0x03011020}),
76c2132e
DH
8241 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8242 {0x12, 0x99a30140},
8243 {0x14, 0x90170110},
8244 {0x15, 0x0321101f},
11580297 8245 {0x16, 0x03011020}),
76c2132e
DH
8246 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
8247 {0x12, 0x99a30150},
8248 {0x14, 0x90170110},
8249 {0x15, 0x0321101f},
11580297 8250 {0x16, 0x03011020}),
76c2132e 8251 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
8252 {0x14, 0x90170110},
8253 {0x15, 0x0321101f},
11580297 8254 {0x16, 0x03011020}),
76c2132e
DH
8255 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
8256 {0x12, 0x90a60130},
8257 {0x14, 0x90170110},
11580297 8258 {0x15, 0x0321101f}),
532895c5
HW
8259 {}
8260};
8261
1d045db9
TI
8262/*
8263 */
bc9f98a9
KY
8264static int patch_alc662(struct hda_codec *codec)
8265{
8266 struct alc_spec *spec;
3de95173 8267 int err;
bc9f98a9 8268
3de95173
TI
8269 err = alc_alloc_spec(codec, 0x0b);
8270 if (err < 0)
8271 return err;
bc9f98a9 8272
3de95173 8273 spec = codec->spec;
1f0f4b80 8274
225068ab
TI
8275 spec->shutup = alc_eapd_shutup;
8276
53c334ad
TI
8277 /* handle multiple HPs as is */
8278 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
8279
2c3bf9ab
TI
8280 alc_fix_pll_init(codec, 0x20, 0x04, 15);
8281
7639a06c 8282 switch (codec->core.vendor_id) {
f3f9185f
KY
8283 case 0x10ec0668:
8284 spec->init_hook = alc668_restore_default_value;
8285 break;
f3f9185f 8286 }
8663ff75 8287
1727a771 8288 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 8289 alc662_fixup_tbl, alc662_fixups);
532895c5 8290 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups);
1727a771 8291 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
8292
8293 alc_auto_parse_customize_define(codec);
8294
7504b6cd
TI
8295 if (has_cdefine_beep(codec))
8296 spec->gen.beep_nid = 0x01;
8297
1bb7e43e 8298 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 8299 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 8300 spec->cdefine.platform_type == 1) {
6134b1a2
WY
8301 err = alc_codec_rename(codec, "ALC272X");
8302 if (err < 0)
e16fb6d1 8303 goto error;
20ca0c35 8304 }
274693f3 8305
b9c5106c
TI
8306 /* automatic parse from the BIOS config */
8307 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
8308 if (err < 0)
8309 goto error;
bc9f98a9 8310
7504b6cd 8311 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 8312 switch (codec->core.vendor_id) {
da00c244 8313 case 0x10ec0662:
fea80fae 8314 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
8315 break;
8316 case 0x10ec0272:
8317 case 0x10ec0663:
8318 case 0x10ec0665:
9ad54547 8319 case 0x10ec0668:
fea80fae 8320 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
8321 break;
8322 case 0x10ec0273:
fea80fae 8323 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
8324 break;
8325 }
fea80fae
TI
8326 if (err < 0)
8327 goto error;
cec27c89 8328 }
2134ea4f 8329
1727a771 8330 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8331
bc9f98a9 8332 return 0;
801f49d3 8333
e16fb6d1
TI
8334 error:
8335 alc_free(codec);
8336 return err;
b478b998
KY
8337}
8338
d1eb57f4
KY
8339/*
8340 * ALC680 support
8341 */
d1eb57f4 8342
d1eb57f4
KY
8343static int alc680_parse_auto_config(struct hda_codec *codec)
8344{
3e6179b8 8345 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
8346}
8347
d1eb57f4 8348/*
d1eb57f4 8349 */
d1eb57f4
KY
8350static int patch_alc680(struct hda_codec *codec)
8351{
d1eb57f4
KY
8352 int err;
8353
1f0f4b80 8354 /* ALC680 has no aa-loopback mixer */
3de95173
TI
8355 err = alc_alloc_spec(codec, 0);
8356 if (err < 0)
8357 return err;
1f0f4b80 8358
1ebec5f2
TI
8359 /* automatic parse from the BIOS config */
8360 err = alc680_parse_auto_config(codec);
8361 if (err < 0) {
8362 alc_free(codec);
8363 return err;
d1eb57f4
KY
8364 }
8365
d1eb57f4
KY
8366 return 0;
8367}
8368
1da177e4
LT
8369/*
8370 * patch entries
8371 */
b9a94a9c 8372static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 8373 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 8374 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
4231430d 8375 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
b9a94a9c
TI
8376 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
8377 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 8378 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 8379 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 8380 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
b9a94a9c
TI
8381 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
8382 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 8383 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
8384 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
8385 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
8386 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
8387 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
8388 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
8389 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
8390 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 8391 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
8392 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
8393 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
8394 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
8395 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
8396 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
8397 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 8398 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c
TI
8399 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
8400 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 8401 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
8402 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
8403 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
8404 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 8405 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 8406 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 8407 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 8408 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
b9a94a9c
TI
8409 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
8410 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
8411 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
8412 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
8413 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
8414 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
8415 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
8416 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
8417 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
8418 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
8419 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
8420 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
8421 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
8422 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
8423 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
8424 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
8425 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
78f4f7c2 8426 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
8427 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
8428 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
8429 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
8430 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
8431 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
8432 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
8433 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
8434 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
8435 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
8436 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
8437 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
8438 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
8439 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
65553b12 8440 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 8441 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
1da177e4
LT
8442 {} /* terminator */
8443};
b9a94a9c 8444MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
8445
8446MODULE_LICENSE("GPL");
8447MODULE_DESCRIPTION("Realtek HD-audio codec");
8448
d8a766a1 8449static struct hda_codec_driver realtek_driver = {
b9a94a9c 8450 .id = snd_hda_id_realtek,
1289e9e8
TI
8451};
8452
d8a766a1 8453module_hda_codec_driver(realtek_driver);