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