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