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