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