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