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