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