]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blob - sound/pci/hda/patch_realtek.c
ALSA: hda - fix headset mic detection issue on a Dell machine
[mirror_ubuntu-artful-kernel.git] / sound / pci / hda / patch_realtek.c
1 /*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for Realtek ALC codecs
5 *
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@just42.net>
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
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <linux/dmi.h>
31 #include <linux/module.h>
32 #include <linux/input.h>
33 #include <sound/core.h>
34 #include <sound/jack.h>
35 #include "hda_codec.h"
36 #include "hda_local.h"
37 #include "hda_auto_parser.h"
38 #include "hda_jack.h"
39 #include "hda_generic.h"
40
41 /* keep halting ALC5505 DSP, for power saving */
42 #define HALT_REALTEK_ALC5505
43
44 /* extra amp-initialization sequence types */
45 enum {
46 ALC_INIT_NONE,
47 ALC_INIT_DEFAULT,
48 ALC_INIT_GPIO1,
49 ALC_INIT_GPIO2,
50 ALC_INIT_GPIO3,
51 };
52
53 enum {
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
61 enum {
62 ALC_HEADSET_TYPE_UNKNOWN,
63 ALC_HEADSET_TYPE_CTIA,
64 ALC_HEADSET_TYPE_OMTP,
65 };
66
67 enum {
68 ALC_KEY_MICMUTE_INDEX,
69 };
70
71 struct 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;
81 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
82 };
83
84 struct alc_spec {
85 struct hda_gen_spec gen; /* must be at head */
86
87 /* codec parameterization */
88 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
89 unsigned int num_mixers;
90 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
91
92 struct alc_customize_define cdefine;
93 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
94
95 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
96 int mute_led_polarity;
97 hda_nid_t mute_led_nid;
98 hda_nid_t cap_mute_led_nid;
99
100 unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
101 unsigned int gpio_mute_led_mask;
102 unsigned int gpio_mic_led_mask;
103
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
109 /* hooks */
110 void (*init_hook)(struct hda_codec *codec);
111 #ifdef CONFIG_PM
112 void (*power_hook)(struct hda_codec *codec);
113 #endif
114 void (*shutup)(struct hda_codec *codec);
115 void (*reboot_notify)(struct hda_codec *codec);
116
117 int init_amp;
118 int codec_variant; /* flag for other variants */
119 unsigned int has_alc5505_dsp:1;
120 unsigned int no_depop_delay:1;
121
122 /* for PLL fix */
123 hda_nid_t pll_nid;
124 unsigned int pll_coef_idx, pll_coef_bit;
125 unsigned int coef0;
126 struct input_dev *kb_dev;
127 u8 alc_mute_keycode_map[1];
128 };
129
130 /*
131 * COEF access helper functions
132 */
133
134 static 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
147 static 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
157 static 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
171 /* a special bypass for COEF 0; read the cached value at the second time */
172 static 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
181 /* coef writes/updates batch */
182 struct 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
195 static 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
207 /*
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().
211 */
212 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
213 {
214 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
215 return;
216 spec->mixers[spec->num_mixers++] = mix;
217 }
218
219 /*
220 * GPIO setup tables, used in initialization
221 */
222 /* Enable GPIO mask and set output */
223 static const struct hda_verb alc_gpio1_init_verbs[] = {
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
230 static const struct hda_verb alc_gpio2_init_verbs[] = {
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
237 static const struct hda_verb alc_gpio3_init_verbs[] = {
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
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 */
249 static void alc_fix_pll(struct hda_codec *codec)
250 {
251 struct alc_spec *spec = codec->spec;
252
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);
256 }
257
258 static 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
268 /* update the master volume per volume-knob's unsol event */
269 static void alc_update_knob_master(struct hda_codec *codec,
270 struct hda_jack_callback *jack)
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;
282 val = snd_hda_codec_read(codec, jack->nid, 0,
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
291 static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
292 {
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);
296 }
297
298 /* Change EAPD to verb control */
299 static void alc_fill_eapd_coef(struct hda_codec *codec)
300 {
301 int coef;
302
303 coef = alc_get_coef0(codec);
304
305 switch (codec->core.vendor_id) {
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;
327 case 0x10ec0215:
328 case 0x10ec0225:
329 case 0x10ec0233:
330 case 0x10ec0236:
331 case 0x10ec0255:
332 case 0x10ec0256:
333 case 0x10ec0257:
334 case 0x10ec0282:
335 case 0x10ec0283:
336 case 0x10ec0286:
337 case 0x10ec0288:
338 case 0x10ec0285:
339 case 0x10ec0295:
340 case 0x10ec0298:
341 case 0x10ec0289:
342 case 0x10ec0299:
343 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
344 break;
345 case 0x10ec0293:
346 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
347 break;
348 case 0x10ec0234:
349 case 0x10ec0274:
350 case 0x10ec0294:
351 case 0x10ec0700:
352 case 0x10ec0701:
353 case 0x10ec0703:
354 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
355 break;
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:
384 case 0x10ec1168:
385 case 0x10ec1220:
386 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
387 break;
388 }
389 }
390
391 /* additional initialization for ALC888 variants */
392 static void alc888_coef_init(struct hda_codec *codec)
393 {
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 }
402 }
403
404 /* turn on/off EAPD control (only if available) */
405 static 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
414 /* turn on/off EAPD controls of the codec */
415 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
416 {
417 /* We currently only handle front, HP */
418 static hda_nid_t pins[] = {
419 0x0f, 0x10, 0x14, 0x15, 0x17, 0
420 };
421 hda_nid_t *p;
422 for (p = pins; *p; p++)
423 set_eapd(codec, *p, on);
424 }
425
426 /* generic shutup callback;
427 * just turning off EAPD and a little pause for avoiding pop-noise
428 */
429 static void alc_eapd_shutup(struct hda_codec *codec)
430 {
431 struct alc_spec *spec = codec->spec;
432
433 alc_auto_setup_eapd(codec, false);
434 if (!spec->no_depop_delay)
435 msleep(200);
436 snd_hda_shutup_pins(codec);
437 }
438
439 /* generic EAPD initialization */
440 static void alc_auto_init_amp(struct hda_codec *codec, int type)
441 {
442 alc_fill_eapd_coef(codec);
443 alc_auto_setup_eapd(codec, true);
444 switch (type) {
445 case ALC_INIT_GPIO1:
446 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
447 break;
448 case ALC_INIT_GPIO2:
449 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
450 break;
451 case ALC_INIT_GPIO3:
452 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
453 break;
454 case ALC_INIT_DEFAULT:
455 switch (codec->core.vendor_id) {
456 case 0x10ec0260:
457 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
458 break;
459 case 0x10ec0880:
460 case 0x10ec0882:
461 case 0x10ec0883:
462 case 0x10ec0885:
463 alc_update_coef_idx(codec, 7, 0, 0x2030);
464 break;
465 case 0x10ec0888:
466 alc888_coef_init(codec);
467 break;
468 }
469 break;
470 }
471 }
472
473
474 /*
475 * Realtek SSID verification
476 */
477
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)
482
483 static void alc_fixup_sku_ignore(struct hda_codec *codec,
484 const struct hda_fixup *fix, int action)
485 {
486 struct alc_spec *spec = codec->spec;
487 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
488 spec->cdefine.fixup = 1;
489 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
490 }
491 }
492
493 static 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
498 if (action == HDA_FIXUP_ACT_PROBE) {
499 spec->no_depop_delay = 1;
500 codec->depop_delay = 0;
501 }
502 }
503
504 static int alc_auto_parse_customize_define(struct hda_codec *codec)
505 {
506 unsigned int ass, tmp, i;
507 unsigned nid = 0;
508 struct alc_spec *spec = codec->spec;
509
510 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
511
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;
517 }
518
519 if (!codec->bus->pci)
520 return -1;
521 ass = codec->core.subsystem_id & 0xffff;
522 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
523 goto do_sku;
524
525 nid = 0x1d;
526 if (codec->core.vendor_id == 0x10ec0260)
527 nid = 0x17;
528 ass = snd_hda_codec_get_pincfg(codec, nid);
529
530 if (!(ass & 1)) {
531 codec_info(codec, "%s: SKU not ready 0x%08x\n",
532 codec->core.chip_name, ass);
533 return -1;
534 }
535
536 /* check sum */
537 tmp = 0;
538 for (i = 1; i < 16; i++) {
539 if ((ass >> i) & 1)
540 tmp++;
541 }
542 if (((ass >> 16) & 0xf) != tmp)
543 return -1;
544
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;
549 do_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
556 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
557 nid, spec->cdefine.sku_cfg);
558 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
559 spec->cdefine.port_connectivity);
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);
567
568 return 0;
569 }
570
571 /* return the position of NID in the list, or -1 if not found */
572 static 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 }
580 /* return true if the given NID is found in the list */
581 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
582 {
583 return find_idx_in_nid_list(nid, list, nums) >= 0;
584 }
585
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 */
595 static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
596 {
597 unsigned int ass, tmp, i;
598 unsigned nid;
599 struct alc_spec *spec = codec->spec;
600
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
608 ass = codec->core.subsystem_id & 0xffff;
609 if (codec->bus->pci &&
610 ass != codec->bus->pci->subsystem_device && (ass & 1))
611 goto do_sku;
612
613 /* invalid SSID, check the special NID pin defcfg instead */
614 /*
615 * 31~30 : port connectivity
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;
623 if (codec->core.vendor_id == 0x10ec0260)
624 nid = 0x17;
625 ass = snd_hda_codec_get_pincfg(codec, nid);
626 codec_dbg(codec,
627 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
628 ass, nid);
629 if (!(ass & 1))
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;
642 do_sku:
643 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
644 ass & 0xffff, codec->core.vendor_id);
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:
664 default:
665 spec->init_amp = ALC_INIT_DEFAULT;
666 break;
667 }
668
669 /* is laptop or Desktop and enable the function "Mute internal speaker
670 * when the external headphone out jack is plugged"
671 */
672 if (!(ass & 0x8000))
673 return 1;
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 */
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)) {
684 hda_nid_t nid;
685 tmp = (ass >> 11) & 0x3; /* HP to chassis */
686 nid = ports[tmp];
687 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
688 spec->gen.autocfg.line_outs))
689 return 1;
690 spec->gen.autocfg.hp_pins[0] = nid;
691 }
692 return 1;
693 }
694
695 /* Check the validity of ALC subsystem-id
696 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
697 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
698 {
699 if (!alc_subsystem_id(codec, ports)) {
700 struct alc_spec *spec = codec->spec;
701 codec_dbg(codec,
702 "realtek: Enable default setup for auto mode as fallback\n");
703 spec->init_amp = ALC_INIT_DEFAULT;
704 }
705 }
706
707 /*
708 */
709
710 static void alc_fixup_inv_dmic(struct hda_codec *codec,
711 const struct hda_fixup *fix, int action)
712 {
713 struct alc_spec *spec = codec->spec;
714
715 spec->gen.inv_dmic_split = 1;
716 }
717
718
719 #ifdef CONFIG_SND_HDA_INPUT_BEEP
720 /* additional beep mixers; the actual parameters are overwritten at build */
721 static 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),
724 { } /* end */
725 };
726 #endif
727
728 static int alc_build_controls(struct hda_codec *codec)
729 {
730 struct alc_spec *spec = codec->spec;
731 int i, err;
732
733 err = snd_hda_gen_build_controls(codec);
734 if (err < 0)
735 return err;
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 }
742
743 #ifdef CONFIG_SND_HDA_INPUT_BEEP
744 /* create beep controls if needed */
745 if (spec->beep_amp) {
746 const struct snd_kcontrol_new *knew;
747 for (knew = alc_beep_mixer; knew->name; knew++) {
748 struct snd_kcontrol *kctl;
749 kctl = snd_ctl_new1(knew, codec);
750 if (!kctl)
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;
756 }
757 }
758 #endif
759
760 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
761 return 0;
762 }
763
764
765 /*
766 * Common callbacks
767 */
768
769 static int alc_init(struct hda_codec *codec)
770 {
771 struct alc_spec *spec = codec->spec;
772
773 if (spec->init_hook)
774 spec->init_hook(codec);
775
776 alc_fix_pll(codec);
777 alc_auto_init_amp(codec, spec->init_amp);
778
779 snd_hda_gen_init(codec);
780
781 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
782
783 return 0;
784 }
785
786 static inline void alc_shutup(struct hda_codec *codec)
787 {
788 struct alc_spec *spec = codec->spec;
789
790 if (spec && spec->shutup)
791 spec->shutup(codec);
792 else
793 snd_hda_shutup_pins(codec);
794 }
795
796 static 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 */
807 static 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
815 #define alc_free snd_hda_gen_free
816
817 #ifdef CONFIG_PM
818 static void alc_power_eapd(struct hda_codec *codec)
819 {
820 alc_auto_setup_eapd(codec, false);
821 }
822
823 static int alc_suspend(struct hda_codec *codec)
824 {
825 struct alc_spec *spec = codec->spec;
826 alc_shutup(codec);
827 if (spec && spec->power_hook)
828 spec->power_hook(codec);
829 return 0;
830 }
831 #endif
832
833 #ifdef CONFIG_PM
834 static int alc_resume(struct hda_codec *codec)
835 {
836 struct alc_spec *spec = codec->spec;
837
838 if (!spec->no_depop_delay)
839 msleep(150); /* to avoid pop noise */
840 codec->patch_ops.init(codec);
841 regcache_sync(codec->core.regmap);
842 hda_call_check_power_status(codec, 0x01);
843 return 0;
844 }
845 #endif
846
847 /*
848 */
849 static 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,
857 .suspend = alc_suspend,
858 .check_power_status = snd_hda_gen_check_power_status,
859 #endif
860 .reboot_notify = alc_reboot_notify,
861 };
862
863
864 #define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
865
866 /*
867 * Rename codecs appropriately from COEF value or subvendor id
868 */
869 struct alc_codec_rename_table {
870 unsigned int vendor_id;
871 unsigned short coef_mask;
872 unsigned short coef_bits;
873 const char *name;
874 };
875
876 struct 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
883 static struct alc_codec_rename_table rename_tbl[] = {
884 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
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" },
893 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
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 };
903
904 static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
905 { 0x10ec0280, 0x1028, 0, "ALC3220" },
906 { 0x10ec0282, 0x1028, 0, "ALC3221" },
907 { 0x10ec0283, 0x1028, 0, "ALC3223" },
908 { 0x10ec0288, 0x1028, 0, "ALC3263" },
909 { 0x10ec0292, 0x1028, 0, "ALC3226" },
910 { 0x10ec0293, 0x1028, 0, "ALC3235" },
911 { 0x10ec0255, 0x1028, 0, "ALC3234" },
912 { 0x10ec0668, 0x1028, 0, "ALC3661" },
913 { 0x10ec0275, 0x1028, 0, "ALC3260" },
914 { 0x10ec0899, 0x1028, 0, "ALC3861" },
915 { 0x10ec0298, 0x1028, 0, "ALC3266" },
916 { 0x10ec0236, 0x1028, 0, "ALC3204" },
917 { 0x10ec0256, 0x1028, 0, "ALC3246" },
918 { 0x10ec0225, 0x1028, 0, "ALC3253" },
919 { 0x10ec0295, 0x1028, 0, "ALC3254" },
920 { 0x10ec0299, 0x1028, 0, "ALC3271" },
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" },
932 { } /* terminator */
933 };
934
935 static int alc_codec_rename_from_preset(struct hda_codec *codec)
936 {
937 const struct alc_codec_rename_table *p;
938 const struct alc_codec_rename_pci_table *q;
939
940 for (p = rename_tbl; p->vendor_id; p++) {
941 if (p->vendor_id != codec->core.vendor_id)
942 continue;
943 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
944 return alc_codec_rename(codec, p->name);
945 }
946
947 if (!codec->bus->pci)
948 return 0;
949 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
950 if (q->codec_vendor_id != codec->core.vendor_id)
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
959 return 0;
960 }
961
962
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))
969
970 static const struct snd_pci_quirk beep_white_list[] = {
971 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
972 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
973 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
974 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
975 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
976 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
977 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
978 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
979 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
980 {}
981 };
982
983 static 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
996
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 */
1001 static int alc_parse_auto_config(struct hda_codec *codec,
1002 const hda_nid_t *ignore_nids,
1003 const hda_nid_t *ssid_nids)
1004 {
1005 struct alc_spec *spec = codec->spec;
1006 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1007 int err;
1008
1009 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1010 spec->parse_flags);
1011 if (err < 0)
1012 return err;
1013
1014 if (ssid_nids)
1015 alc_ssid_check(codec, ssid_nids);
1016
1017 err = snd_hda_gen_parse_auto_config(codec, cfg);
1018 if (err < 0)
1019 return err;
1020
1021 return 1;
1022 }
1023
1024 /* common preparation job for alc_spec */
1025 static 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;
1033 snd_hda_gen_spec_init(&spec->gen);
1034 spec->gen.mixer_nid = mixer_nid;
1035 spec->gen.own_eapd_ctl = 1;
1036 codec->single_adc_amp = 1;
1037 /* FIXME: do we need this for all Realtek codec models? */
1038 codec->spdif_status_reset = 1;
1039 codec->patch_ops = alc_patch_ops;
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
1049 static int alc880_parse_auto_config(struct hda_codec *codec)
1050 {
1051 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
1052 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
1053 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1054 }
1055
1056 /*
1057 * ALC880 fix-ups
1058 */
1059 enum {
1060 ALC880_FIXUP_GPIO1,
1061 ALC880_FIXUP_GPIO2,
1062 ALC880_FIXUP_MEDION_RIM,
1063 ALC880_FIXUP_LG,
1064 ALC880_FIXUP_LG_LW25,
1065 ALC880_FIXUP_W810,
1066 ALC880_FIXUP_EAPD_COEF,
1067 ALC880_FIXUP_TCL_S700,
1068 ALC880_FIXUP_VOL_KNOB,
1069 ALC880_FIXUP_FUJITSU,
1070 ALC880_FIXUP_F1734,
1071 ALC880_FIXUP_UNIWILL,
1072 ALC880_FIXUP_UNIWILL_DIG,
1073 ALC880_FIXUP_Z71V,
1074 ALC880_FIXUP_ASUS_W5A,
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,
1084 ALC880_FIXUP_6ST_AUTOMUTE,
1085 };
1086
1087 /* enable the volume-knob widget support on NID 0x21 */
1088 static void alc880_fixup_vol_knob(struct hda_codec *codec,
1089 const struct hda_fixup *fix, int action)
1090 {
1091 if (action == HDA_FIXUP_ACT_PROBE)
1092 snd_hda_jack_detect_enable_callback(codec, 0x21,
1093 alc_update_knob_master);
1094 }
1095
1096 static const struct hda_fixup alc880_fixups[] = {
1097 [ALC880_FIXUP_GPIO1] = {
1098 .type = HDA_FIXUP_VERBS,
1099 .v.verbs = alc_gpio1_init_verbs,
1100 },
1101 [ALC880_FIXUP_GPIO2] = {
1102 .type = HDA_FIXUP_VERBS,
1103 .v.verbs = alc_gpio2_init_verbs,
1104 },
1105 [ALC880_FIXUP_MEDION_RIM] = {
1106 .type = HDA_FIXUP_VERBS,
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 },
1115 [ALC880_FIXUP_LG] = {
1116 .type = HDA_FIXUP_PINS,
1117 .v.pins = (const struct hda_pintbl[]) {
1118 /* disable bogus unused pins */
1119 { 0x16, 0x411111f0 },
1120 { 0x18, 0x411111f0 },
1121 { 0x1a, 0x411111f0 },
1122 { }
1123 }
1124 },
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 },
1133 [ALC880_FIXUP_W810] = {
1134 .type = HDA_FIXUP_PINS,
1135 .v.pins = (const struct hda_pintbl[]) {
1136 /* disable bogus unused pins */
1137 { 0x17, 0x411111f0 },
1138 { }
1139 },
1140 .chained = true,
1141 .chain_id = ALC880_FIXUP_GPIO2,
1142 },
1143 [ALC880_FIXUP_EAPD_COEF] = {
1144 .type = HDA_FIXUP_VERBS,
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 },
1152 [ALC880_FIXUP_TCL_S700] = {
1153 .type = HDA_FIXUP_VERBS,
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 },
1163 [ALC880_FIXUP_VOL_KNOB] = {
1164 .type = HDA_FIXUP_FUNC,
1165 .v.func = alc880_fixup_vol_knob,
1166 },
1167 [ALC880_FIXUP_FUJITSU] = {
1168 /* override all pins as BIOS on old Amilo is broken */
1169 .type = HDA_FIXUP_PINS,
1170 .v.pins = (const struct hda_pintbl[]) {
1171 { 0x14, 0x0121401f }, /* HP */
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 },
1187 [ALC880_FIXUP_F1734] = {
1188 /* almost compatible with FUJITSU, but no bass and SPDIF */
1189 .type = HDA_FIXUP_PINS,
1190 .v.pins = (const struct hda_pintbl[]) {
1191 { 0x14, 0x0121401f }, /* HP */
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 },
1207 [ALC880_FIXUP_UNIWILL] = {
1208 /* need to fix HP and speaker pins to be parsed correctly */
1209 .type = HDA_FIXUP_PINS,
1210 .v.pins = (const struct hda_pintbl[]) {
1211 { 0x14, 0x0121411f }, /* HP */
1212 { 0x15, 0x99030120 }, /* speaker */
1213 { 0x16, 0x99030130 }, /* bass speaker */
1214 { }
1215 },
1216 },
1217 [ALC880_FIXUP_UNIWILL_DIG] = {
1218 .type = HDA_FIXUP_PINS,
1219 .v.pins = (const struct hda_pintbl[]) {
1220 /* disable bogus unused pins */
1221 { 0x17, 0x411111f0 },
1222 { 0x19, 0x411111f0 },
1223 { 0x1b, 0x411111f0 },
1224 { 0x1f, 0x411111f0 },
1225 { }
1226 }
1227 },
1228 [ALC880_FIXUP_Z71V] = {
1229 .type = HDA_FIXUP_PINS,
1230 .v.pins = (const struct hda_pintbl[]) {
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 },
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 },
1266 [ALC880_FIXUP_3ST_BASE] = {
1267 .type = HDA_FIXUP_PINS,
1268 .v.pins = (const struct hda_pintbl[]) {
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] = {
1285 .type = HDA_FIXUP_PINS,
1286 .v.pins = (const struct hda_pintbl[]) {
1287 { 0x1e, 0x411111f0 }, /* N/A */
1288 { }
1289 },
1290 .chained = true,
1291 .chain_id = ALC880_FIXUP_3ST_BASE,
1292 },
1293 [ALC880_FIXUP_3ST_DIG] = {
1294 .type = HDA_FIXUP_PINS,
1295 .v.pins = (const struct hda_pintbl[]) {
1296 { 0x1e, 0x0144111e }, /* SPDIF */
1297 { }
1298 },
1299 .chained = true,
1300 .chain_id = ALC880_FIXUP_3ST_BASE,
1301 },
1302 [ALC880_FIXUP_5ST_BASE] = {
1303 .type = HDA_FIXUP_PINS,
1304 .v.pins = (const struct hda_pintbl[]) {
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] = {
1321 .type = HDA_FIXUP_PINS,
1322 .v.pins = (const struct hda_pintbl[]) {
1323 { 0x1e, 0x411111f0 }, /* N/A */
1324 { }
1325 },
1326 .chained = true,
1327 .chain_id = ALC880_FIXUP_5ST_BASE,
1328 },
1329 [ALC880_FIXUP_5ST_DIG] = {
1330 .type = HDA_FIXUP_PINS,
1331 .v.pins = (const struct hda_pintbl[]) {
1332 { 0x1e, 0x0144111e }, /* SPDIF */
1333 { }
1334 },
1335 .chained = true,
1336 .chain_id = ALC880_FIXUP_5ST_BASE,
1337 },
1338 [ALC880_FIXUP_6ST_BASE] = {
1339 .type = HDA_FIXUP_PINS,
1340 .v.pins = (const struct hda_pintbl[]) {
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] = {
1357 .type = HDA_FIXUP_PINS,
1358 .v.pins = (const struct hda_pintbl[]) {
1359 { 0x1e, 0x411111f0 }, /* N/A */
1360 { }
1361 },
1362 .chained = true,
1363 .chain_id = ALC880_FIXUP_6ST_BASE,
1364 },
1365 [ALC880_FIXUP_6ST_DIG] = {
1366 .type = HDA_FIXUP_PINS,
1367 .v.pins = (const struct hda_pintbl[]) {
1368 { 0x1e, 0x0144111e }, /* SPDIF */
1369 { }
1370 },
1371 .chained = true,
1372 .chain_id = ALC880_FIXUP_6ST_BASE,
1373 },
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 },
1383 };
1384
1385 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
1386 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
1387 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
1388 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
1389 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1390 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
1391 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
1392 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
1393 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
1394 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
1395 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
1396 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
1397 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
1398 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
1399 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
1400 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
1401 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
1402 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
1403 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
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),
1407 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
1408 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
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
1456 static const struct hda_model_fixup alc880_fixup_models[] = {
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"},
1463 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
1464 {}
1465 };
1466
1467
1468 /*
1469 * OK, here we have finally the patch for ALC880
1470 */
1471 static int patch_alc880(struct hda_codec *codec)
1472 {
1473 struct alc_spec *spec;
1474 int err;
1475
1476 err = alc_alloc_spec(codec, 0x0b);
1477 if (err < 0)
1478 return err;
1479
1480 spec = codec->spec;
1481 spec->gen.need_dac_fix = 1;
1482 spec->gen.beep_nid = 0x01;
1483
1484 codec->patch_ops.unsol_event = alc880_unsol_event;
1485
1486 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
1487 alc880_fixups);
1488 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1489
1490 /* automatic parse from the BIOS config */
1491 err = alc880_parse_auto_config(codec);
1492 if (err < 0)
1493 goto error;
1494
1495 if (!spec->gen.no_analog)
1496 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1497
1498 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1499
1500 return 0;
1501
1502 error:
1503 alc_free(codec);
1504 return err;
1505 }
1506
1507
1508 /*
1509 * ALC260 support
1510 */
1511 static int alc260_parse_auto_config(struct hda_codec *codec)
1512 {
1513 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
1514 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1515 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
1516 }
1517
1518 /*
1519 * Pin config fixes
1520 */
1521 enum {
1522 ALC260_FIXUP_HP_DC5750,
1523 ALC260_FIXUP_HP_PIN_0F,
1524 ALC260_FIXUP_COEF,
1525 ALC260_FIXUP_GPIO1,
1526 ALC260_FIXUP_GPIO1_TOGGLE,
1527 ALC260_FIXUP_REPLACER,
1528 ALC260_FIXUP_HP_B1900,
1529 ALC260_FIXUP_KN1,
1530 ALC260_FIXUP_FSC_S7020,
1531 ALC260_FIXUP_FSC_S7020_JWSE,
1532 ALC260_FIXUP_VAIO_PINS,
1533 };
1534
1535 static 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,
1539 spec->gen.hp_jack_present);
1540 }
1541
1542 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1543 const struct hda_fixup *fix, int action)
1544 {
1545 struct alc_spec *spec = codec->spec;
1546 if (action == HDA_FIXUP_ACT_PROBE) {
1547 /* although the machine has only one output pin, we need to
1548 * toggle GPIO1 according to the jack state
1549 */
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 */
1554 snd_hda_jack_detect_enable_callback(codec, 0x0f,
1555 snd_hda_gen_hp_automute);
1556 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
1557 }
1558 }
1559
1560 static void alc260_fixup_kn1(struct hda_codec *codec,
1561 const struct hda_fixup *fix, int action)
1562 {
1563 struct alc_spec *spec = codec->spec;
1564 static const struct hda_pintbl pincfgs[] = {
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) {
1581 case HDA_FIXUP_ACT_PRE_PROBE:
1582 snd_hda_apply_pincfgs(codec, pincfgs);
1583 break;
1584 case HDA_FIXUP_ACT_PROBE:
1585 spec->init_amp = ALC_INIT_NONE;
1586 break;
1587 }
1588 }
1589
1590 static 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;
1594 if (action == HDA_FIXUP_ACT_PROBE)
1595 spec->init_amp = ALC_INIT_NONE;
1596 }
1597
1598 static 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) {
1603 spec->gen.add_jack_modes = 1;
1604 spec->gen.hp_mic = 1;
1605 }
1606 }
1607
1608 static const struct hda_fixup alc260_fixups[] = {
1609 [ALC260_FIXUP_HP_DC5750] = {
1610 .type = HDA_FIXUP_PINS,
1611 .v.pins = (const struct hda_pintbl[]) {
1612 { 0x11, 0x90130110 }, /* speaker */
1613 { }
1614 }
1615 },
1616 [ALC260_FIXUP_HP_PIN_0F] = {
1617 .type = HDA_FIXUP_PINS,
1618 .v.pins = (const struct hda_pintbl[]) {
1619 { 0x0f, 0x01214000 }, /* HP */
1620 { }
1621 }
1622 },
1623 [ALC260_FIXUP_COEF] = {
1624 .type = HDA_FIXUP_VERBS,
1625 .v.verbs = (const struct hda_verb[]) {
1626 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1627 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
1628 { }
1629 },
1630 },
1631 [ALC260_FIXUP_GPIO1] = {
1632 .type = HDA_FIXUP_VERBS,
1633 .v.verbs = alc_gpio1_init_verbs,
1634 },
1635 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1636 .type = HDA_FIXUP_FUNC,
1637 .v.func = alc260_fixup_gpio1_toggle,
1638 .chained = true,
1639 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1640 },
1641 [ALC260_FIXUP_REPLACER] = {
1642 .type = HDA_FIXUP_VERBS,
1643 .v.verbs = (const struct hda_verb[]) {
1644 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1645 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
1646 { }
1647 },
1648 .chained = true,
1649 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1650 },
1651 [ALC260_FIXUP_HP_B1900] = {
1652 .type = HDA_FIXUP_FUNC,
1653 .v.func = alc260_fixup_gpio1_toggle,
1654 .chained = true,
1655 .chain_id = ALC260_FIXUP_COEF,
1656 },
1657 [ALC260_FIXUP_KN1] = {
1658 .type = HDA_FIXUP_FUNC,
1659 .v.func = alc260_fixup_kn1,
1660 },
1661 [ALC260_FIXUP_FSC_S7020] = {
1662 .type = HDA_FIXUP_FUNC,
1663 .v.func = alc260_fixup_fsc_s7020,
1664 },
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 },
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 },
1689 };
1690
1691 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
1692 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
1693 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
1694 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
1695 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
1696 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
1697 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
1698 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
1699 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
1700 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
1701 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
1702 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
1703 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1704 {}
1705 };
1706
1707 static 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
1715 /*
1716 */
1717 static int patch_alc260(struct hda_codec *codec)
1718 {
1719 struct alc_spec *spec;
1720 int err;
1721
1722 err = alc_alloc_spec(codec, 0x07);
1723 if (err < 0)
1724 return err;
1725
1726 spec = codec->spec;
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;
1732 spec->gen.beep_nid = 0x01;
1733
1734 spec->shutup = alc_eapd_shutup;
1735
1736 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1737 alc260_fixups);
1738 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1739
1740 /* automatic parse from the BIOS config */
1741 err = alc260_parse_auto_config(codec);
1742 if (err < 0)
1743 goto error;
1744
1745 if (!spec->gen.no_analog)
1746 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1747
1748 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
1749
1750 return 0;
1751
1752 error:
1753 alc_free(codec);
1754 return err;
1755 }
1756
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 */
1769
1770 /*
1771 * Pin config fixes
1772 */
1773 enum {
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,
1779 ALC889_FIXUP_CD,
1780 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
1781 ALC889_FIXUP_VAIO_TT,
1782 ALC888_FIXUP_EEE1601,
1783 ALC882_FIXUP_EAPD,
1784 ALC883_FIXUP_EAPD,
1785 ALC883_FIXUP_ACER_EAPD,
1786 ALC882_FIXUP_GPIO1,
1787 ALC882_FIXUP_GPIO2,
1788 ALC882_FIXUP_GPIO3,
1789 ALC889_FIXUP_COEF,
1790 ALC882_FIXUP_ASUS_W2JC,
1791 ALC882_FIXUP_ACER_ASPIRE_4930G,
1792 ALC882_FIXUP_ACER_ASPIRE_8930G,
1793 ALC882_FIXUP_ASPIRE_8930G_VERBS,
1794 ALC885_FIXUP_MACPRO_GPIO,
1795 ALC889_FIXUP_DAC_ROUTE,
1796 ALC889_FIXUP_MBP_VREF,
1797 ALC889_FIXUP_IMAC91_VREF,
1798 ALC889_FIXUP_MBA11_VREF,
1799 ALC889_FIXUP_MBA21_VREF,
1800 ALC889_FIXUP_MP11_VREF,
1801 ALC889_FIXUP_MP41_VREF,
1802 ALC882_FIXUP_INV_DMIC,
1803 ALC882_FIXUP_NO_PRIMARY_HP,
1804 ALC887_FIXUP_ASUS_BASS,
1805 ALC887_FIXUP_BASS_CHMAP,
1806 ALC1220_FIXUP_GB_DUAL_CODECS,
1807 };
1808
1809 static void alc889_fixup_coef(struct hda_codec *codec,
1810 const struct hda_fixup *fix, int action)
1811 {
1812 if (action != HDA_FIXUP_ACT_INIT)
1813 return;
1814 alc_update_coef_idx(codec, 7, 0, 0x2030);
1815 }
1816
1817 /* toggle speaker-output according to the hp-jack state */
1818 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1819 {
1820 unsigned int gpiostate, gpiomask, gpiodir;
1821
1822 gpiostate = snd_hda_codec_read(codec, codec->core.afg, 0,
1823 AC_VERB_GET_GPIO_DATA, 0);
1824
1825 if (!muted)
1826 gpiostate |= (1 << pin);
1827 else
1828 gpiostate &= ~(1 << pin);
1829
1830 gpiomask = snd_hda_codec_read(codec, codec->core.afg, 0,
1831 AC_VERB_GET_GPIO_MASK, 0);
1832 gpiomask |= (1 << pin);
1833
1834 gpiodir = snd_hda_codec_read(codec, codec->core.afg, 0,
1835 AC_VERB_GET_GPIO_DIRECTION, 0);
1836 gpiodir |= (1 << pin);
1837
1838
1839 snd_hda_codec_write(codec, codec->core.afg, 0,
1840 AC_VERB_SET_GPIO_MASK, gpiomask);
1841 snd_hda_codec_write(codec, codec->core.afg, 0,
1842 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1843
1844 msleep(1);
1845
1846 snd_hda_codec_write(codec, codec->core.afg, 0,
1847 AC_VERB_SET_GPIO_DATA, gpiostate);
1848 }
1849
1850 /* set up GPIO at initialization */
1851 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1852 const struct hda_fixup *fix, int action)
1853 {
1854 if (action != HDA_FIXUP_ACT_INIT)
1855 return;
1856 alc882_gpio_mute(codec, 0, 0);
1857 alc882_gpio_mute(codec, 1, 0);
1858 }
1859
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 */
1864 static void alc889_fixup_dac_route(struct hda_codec *codec,
1865 const struct hda_fixup *fix, int action)
1866 {
1867 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1868 /* fake the connections during parsing the tree */
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);
1875 } else if (action == HDA_FIXUP_ACT_PROBE) {
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);
1882 }
1883 }
1884
1885 /* Set VREF on HP pin */
1886 static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1887 const struct hda_fixup *fix, int action)
1888 {
1889 struct alc_spec *spec = codec->spec;
1890 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
1891 int i;
1892
1893 if (action != HDA_FIXUP_ACT_INIT)
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;
1899 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1900 val |= AC_PINCTL_VREF_80;
1901 snd_hda_set_pin_ctl(codec, nids[i], val);
1902 spec->gen.keep_vref_in_automute = 1;
1903 break;
1904 }
1905 }
1906
1907 static void alc889_fixup_mac_pins(struct hda_codec *codec,
1908 const hda_nid_t *nids, int num_nids)
1909 {
1910 struct alc_spec *spec = codec->spec;
1911 int i;
1912
1913 for (i = 0; i < num_nids; i++) {
1914 unsigned int val;
1915 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1916 val |= AC_PINCTL_VREF_50;
1917 snd_hda_set_pin_ctl(codec, nids[i], val);
1918 }
1919 spec->gen.keep_vref_in_automute = 1;
1920 }
1921
1922 /* Set VREF on speaker pins on imac91 */
1923 static 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
1932 /* Set VREF on speaker pins on mba11 */
1933 static 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
1942 /* Set VREF on speaker pins on mba21 */
1943 static 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
1952 /* Don't take HP output as primary
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
1955 */
1956 static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1957 const struct hda_fixup *fix, int action)
1958 {
1959 struct alc_spec *spec = codec->spec;
1960 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1961 spec->gen.no_primary_hp = 1;
1962 spec->gen.no_multi_io = 1;
1963 }
1964 }
1965
1966 static void alc_fixup_bass_chmap(struct hda_codec *codec,
1967 const struct hda_fixup *fix, int action);
1968
1969 /* For dual-codec configuration, we need to disable some features to avoid
1970 * conflicts of kctls and PCM streams
1971 */
1972 static 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
1990 static 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
2000 static 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
2024 static const struct hda_fixup alc882_fixups[] = {
2025 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
2026 .type = HDA_FIXUP_PINS,
2027 .v.pins = (const struct hda_pintbl[]) {
2028 { 0x15, 0x01080104 }, /* side */
2029 { 0x16, 0x01011012 }, /* rear */
2030 { 0x17, 0x01016011 }, /* clfe */
2031 { }
2032 }
2033 },
2034 [ALC882_FIXUP_LENOVO_Y530] = {
2035 .type = HDA_FIXUP_PINS,
2036 .v.pins = (const struct hda_pintbl[]) {
2037 { 0x15, 0x99130112 }, /* rear int speakers */
2038 { 0x16, 0x99130111 }, /* subwoofer */
2039 { }
2040 }
2041 },
2042 [ALC882_FIXUP_PB_M5210] = {
2043 .type = HDA_FIXUP_PINCTLS,
2044 .v.pins = (const struct hda_pintbl[]) {
2045 { 0x19, PIN_VREF50 },
2046 {}
2047 }
2048 },
2049 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
2050 .type = HDA_FIXUP_FUNC,
2051 .v.func = alc_fixup_sku_ignore,
2052 },
2053 [ALC882_FIXUP_ASUS_W90V] = {
2054 .type = HDA_FIXUP_PINS,
2055 .v.pins = (const struct hda_pintbl[]) {
2056 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2057 { }
2058 }
2059 },
2060 [ALC889_FIXUP_CD] = {
2061 .type = HDA_FIXUP_PINS,
2062 .v.pins = (const struct hda_pintbl[]) {
2063 { 0x1c, 0x993301f0 }, /* CD */
2064 { }
2065 }
2066 },
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 },
2076 [ALC889_FIXUP_VAIO_TT] = {
2077 .type = HDA_FIXUP_PINS,
2078 .v.pins = (const struct hda_pintbl[]) {
2079 { 0x17, 0x90170111 }, /* hidden surround speaker */
2080 { }
2081 }
2082 },
2083 [ALC888_FIXUP_EEE1601] = {
2084 .type = HDA_FIXUP_VERBS,
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 }
2090 },
2091 [ALC882_FIXUP_EAPD] = {
2092 .type = HDA_FIXUP_VERBS,
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 },
2100 [ALC883_FIXUP_EAPD] = {
2101 .type = HDA_FIXUP_VERBS,
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 },
2109 [ALC883_FIXUP_ACER_EAPD] = {
2110 .type = HDA_FIXUP_VERBS,
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 },
2118 [ALC882_FIXUP_GPIO1] = {
2119 .type = HDA_FIXUP_VERBS,
2120 .v.verbs = alc_gpio1_init_verbs,
2121 },
2122 [ALC882_FIXUP_GPIO2] = {
2123 .type = HDA_FIXUP_VERBS,
2124 .v.verbs = alc_gpio2_init_verbs,
2125 },
2126 [ALC882_FIXUP_GPIO3] = {
2127 .type = HDA_FIXUP_VERBS,
2128 .v.verbs = alc_gpio3_init_verbs,
2129 },
2130 [ALC882_FIXUP_ASUS_W2JC] = {
2131 .type = HDA_FIXUP_VERBS,
2132 .v.verbs = alc_gpio1_init_verbs,
2133 .chained = true,
2134 .chain_id = ALC882_FIXUP_EAPD,
2135 },
2136 [ALC889_FIXUP_COEF] = {
2137 .type = HDA_FIXUP_FUNC,
2138 .v.func = alc889_fixup_coef,
2139 },
2140 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2141 .type = HDA_FIXUP_PINS,
2142 .v.pins = (const struct hda_pintbl[]) {
2143 { 0x16, 0x99130111 }, /* CLFE speaker */
2144 { 0x17, 0x99130112 }, /* surround speaker */
2145 { }
2146 },
2147 .chained = true,
2148 .chain_id = ALC882_FIXUP_GPIO1,
2149 },
2150 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2151 .type = HDA_FIXUP_PINS,
2152 .v.pins = (const struct hda_pintbl[]) {
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 */
2162 .type = HDA_FIXUP_VERBS,
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 { }
2191 },
2192 .chained = true,
2193 .chain_id = ALC882_FIXUP_GPIO1,
2194 },
2195 [ALC885_FIXUP_MACPRO_GPIO] = {
2196 .type = HDA_FIXUP_FUNC,
2197 .v.func = alc885_fixup_macpro_gpio,
2198 },
2199 [ALC889_FIXUP_DAC_ROUTE] = {
2200 .type = HDA_FIXUP_FUNC,
2201 .v.func = alc889_fixup_dac_route,
2202 },
2203 [ALC889_FIXUP_MBP_VREF] = {
2204 .type = HDA_FIXUP_FUNC,
2205 .v.func = alc889_fixup_mbp_vref,
2206 .chained = true,
2207 .chain_id = ALC882_FIXUP_GPIO1,
2208 },
2209 [ALC889_FIXUP_IMAC91_VREF] = {
2210 .type = HDA_FIXUP_FUNC,
2211 .v.func = alc889_fixup_imac91_vref,
2212 .chained = true,
2213 .chain_id = ALC882_FIXUP_GPIO1,
2214 },
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 },
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 },
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 },
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 },
2239 [ALC882_FIXUP_INV_DMIC] = {
2240 .type = HDA_FIXUP_FUNC,
2241 .v.func = alc_fixup_inv_dmic,
2242 },
2243 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2244 .type = HDA_FIXUP_FUNC,
2245 .v.func = alc882_fixup_no_primary_hp,
2246 },
2247 [ALC887_FIXUP_ASUS_BASS] = {
2248 .type = HDA_FIXUP_PINS,
2249 .v.pins = (const struct hda_pintbl[]) {
2250 {0x16, 0x99130130}, /* bass speaker */
2251 {}
2252 },
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,
2259 },
2260 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2261 .type = HDA_FIXUP_FUNC,
2262 .v.func = alc1220_fixup_gb_dual_codecs,
2263 },
2264 };
2265
2266 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
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),
2269 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
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),
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),
2288 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2289 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2290 ALC882_FIXUP_ACER_ASPIRE_4930G),
2291 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2292 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2293 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2294 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2295 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2296 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2297 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2298 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2299 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
2300 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2301 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2302 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
2303 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2304 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
2305
2306 /* All Apple entries are in codec SSIDs */
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),
2310 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
2311 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2312 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2313 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2314 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2315 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2316 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
2317 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
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),
2320 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
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),
2324 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
2325 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
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),
2328 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
2329
2330 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2331 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
2332 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2333 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2334 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
2335 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2336 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2337 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2338 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2339 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2340 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2341 {}
2342 };
2343
2344 static const struct hda_model_fixup alc882_fixup_models[] = {
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"},
2348 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2349 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2350 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
2351 {}
2352 };
2353
2354 /*
2355 * BIOS auto configuration
2356 */
2357 /* almost identical with ALC880 parser... */
2358 static int alc882_parse_auto_config(struct hda_codec *codec)
2359 {
2360 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2361 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2362 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2363 }
2364
2365 /*
2366 */
2367 static int patch_alc882(struct hda_codec *codec)
2368 {
2369 struct alc_spec *spec;
2370 int err;
2371
2372 err = alc_alloc_spec(codec, 0x0b);
2373 if (err < 0)
2374 return err;
2375
2376 spec = codec->spec;
2377
2378 switch (codec->core.vendor_id) {
2379 case 0x10ec0882:
2380 case 0x10ec0885:
2381 case 0x10ec0900:
2382 case 0x10ec1220:
2383 break;
2384 default:
2385 /* ALC883 and variants */
2386 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2387 break;
2388 }
2389
2390 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2391 alc882_fixups);
2392 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2393
2394 alc_auto_parse_customize_define(codec);
2395
2396 if (has_cdefine_beep(codec))
2397 spec->gen.beep_nid = 0x01;
2398
2399 /* automatic parse from the BIOS config */
2400 err = alc882_parse_auto_config(codec);
2401 if (err < 0)
2402 goto error;
2403
2404 if (!spec->gen.no_analog && spec->gen.beep_nid)
2405 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2406
2407 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2408
2409 return 0;
2410
2411 error:
2412 alc_free(codec);
2413 return err;
2414 }
2415
2416
2417 /*
2418 * ALC262 support
2419 */
2420 static int alc262_parse_auto_config(struct hda_codec *codec)
2421 {
2422 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2423 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2424 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2425 }
2426
2427 /*
2428 * Pin config fixes
2429 */
2430 enum {
2431 ALC262_FIXUP_FSC_H270,
2432 ALC262_FIXUP_FSC_S7110,
2433 ALC262_FIXUP_HP_Z200,
2434 ALC262_FIXUP_TYAN,
2435 ALC262_FIXUP_LENOVO_3000,
2436 ALC262_FIXUP_BENQ,
2437 ALC262_FIXUP_BENQ_T31,
2438 ALC262_FIXUP_INV_DMIC,
2439 ALC262_FIXUP_INTEL_BAYLEYBAY,
2440 };
2441
2442 static const struct hda_fixup alc262_fixups[] = {
2443 [ALC262_FIXUP_FSC_H270] = {
2444 .type = HDA_FIXUP_PINS,
2445 .v.pins = (const struct hda_pintbl[]) {
2446 { 0x14, 0x99130110 }, /* speaker */
2447 { 0x15, 0x0221142f }, /* front HP */
2448 { 0x1b, 0x0121141f }, /* rear HP */
2449 { }
2450 }
2451 },
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 },
2461 [ALC262_FIXUP_HP_Z200] = {
2462 .type = HDA_FIXUP_PINS,
2463 .v.pins = (const struct hda_pintbl[]) {
2464 { 0x16, 0x99130120 }, /* internal speaker */
2465 { }
2466 }
2467 },
2468 [ALC262_FIXUP_TYAN] = {
2469 .type = HDA_FIXUP_PINS,
2470 .v.pins = (const struct hda_pintbl[]) {
2471 { 0x14, 0x1993e1f0 }, /* int AUX */
2472 { }
2473 }
2474 },
2475 [ALC262_FIXUP_LENOVO_3000] = {
2476 .type = HDA_FIXUP_PINCTLS,
2477 .v.pins = (const struct hda_pintbl[]) {
2478 { 0x19, PIN_VREF50 },
2479 {}
2480 },
2481 .chained = true,
2482 .chain_id = ALC262_FIXUP_BENQ,
2483 },
2484 [ALC262_FIXUP_BENQ] = {
2485 .type = HDA_FIXUP_VERBS,
2486 .v.verbs = (const struct hda_verb[]) {
2487 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2488 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2489 {}
2490 }
2491 },
2492 [ALC262_FIXUP_BENQ_T31] = {
2493 .type = HDA_FIXUP_VERBS,
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 },
2500 [ALC262_FIXUP_INV_DMIC] = {
2501 .type = HDA_FIXUP_FUNC,
2502 .v.func = alc_fixup_inv_dmic,
2503 },
2504 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2505 .type = HDA_FIXUP_FUNC,
2506 .v.func = alc_fixup_no_depop_delay,
2507 },
2508 };
2509
2510 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2511 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2512 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2513 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
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),
2516 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2517 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2518 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2519 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2520 {}
2521 };
2522
2523 static const struct hda_model_fixup alc262_fixup_models[] = {
2524 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2525 {}
2526 };
2527
2528 /*
2529 */
2530 static int patch_alc262(struct hda_codec *codec)
2531 {
2532 struct alc_spec *spec;
2533 int err;
2534
2535 err = alc_alloc_spec(codec, 0x0b);
2536 if (err < 0)
2537 return err;
2538
2539 spec = codec->spec;
2540 spec->gen.shared_mic_vref_pin = 0x18;
2541
2542 spec->shutup = alc_eapd_shutup;
2543
2544 #if 0
2545 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2546 * under-run
2547 */
2548 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
2549 #endif
2550 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2551
2552 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2553 alc262_fixups);
2554 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2555
2556 alc_auto_parse_customize_define(codec);
2557
2558 if (has_cdefine_beep(codec))
2559 spec->gen.beep_nid = 0x01;
2560
2561 /* automatic parse from the BIOS config */
2562 err = alc262_parse_auto_config(codec);
2563 if (err < 0)
2564 goto error;
2565
2566 if (!spec->gen.no_analog && spec->gen.beep_nid)
2567 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2568
2569 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2570
2571 return 0;
2572
2573 error:
2574 alc_free(codec);
2575 return err;
2576 }
2577
2578 /*
2579 * ALC268
2580 */
2581 /* bind Beep switches of both NID 0x0f and 0x10 */
2582 static 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 }
2601
2602 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2603 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
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 },
2613 { }
2614 };
2615
2616 /* set PCBEEP vol = 0, mute connections */
2617 static 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 { }
2622 };
2623
2624 enum {
2625 ALC268_FIXUP_INV_DMIC,
2626 ALC268_FIXUP_HP_EAPD,
2627 ALC268_FIXUP_SPDIF,
2628 };
2629
2630 static const struct hda_fixup alc268_fixups[] = {
2631 [ALC268_FIXUP_INV_DMIC] = {
2632 .type = HDA_FIXUP_FUNC,
2633 .v.func = alc_fixup_inv_dmic,
2634 },
2635 [ALC268_FIXUP_HP_EAPD] = {
2636 .type = HDA_FIXUP_VERBS,
2637 .v.verbs = (const struct hda_verb[]) {
2638 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2639 {}
2640 }
2641 },
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 },
2649 };
2650
2651 static const struct hda_model_fixup alc268_fixup_models[] = {
2652 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2653 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2654 {}
2655 };
2656
2657 static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2658 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2659 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
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),
2664 {}
2665 };
2666
2667 /*
2668 * BIOS auto configuration
2669 */
2670 static int alc268_parse_auto_config(struct hda_codec *codec)
2671 {
2672 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2673 return alc_parse_auto_config(codec, NULL, alc268_ssids);
2674 }
2675
2676 /*
2677 */
2678 static int patch_alc268(struct hda_codec *codec)
2679 {
2680 struct alc_spec *spec;
2681 int err;
2682
2683 /* ALC268 has no aa-loopback mixer */
2684 err = alc_alloc_spec(codec, 0);
2685 if (err < 0)
2686 return err;
2687
2688 spec = codec->spec;
2689 spec->gen.beep_nid = 0x01;
2690
2691 spec->shutup = alc_eapd_shutup;
2692
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);
2695
2696 /* automatic parse from the BIOS config */
2697 err = alc268_parse_auto_config(codec);
2698 if (err < 0)
2699 goto error;
2700
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);
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));
2712 }
2713
2714 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2715
2716 return 0;
2717
2718 error:
2719 alc_free(codec);
2720 return err;
2721 }
2722
2723 /*
2724 * ALC269
2725 */
2726
2727 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2728 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2729 };
2730
2731 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2732 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2733 };
2734
2735 /* different alc269-variants */
2736 enum {
2737 ALC269_TYPE_ALC269VA,
2738 ALC269_TYPE_ALC269VB,
2739 ALC269_TYPE_ALC269VC,
2740 ALC269_TYPE_ALC269VD,
2741 ALC269_TYPE_ALC280,
2742 ALC269_TYPE_ALC282,
2743 ALC269_TYPE_ALC283,
2744 ALC269_TYPE_ALC284,
2745 ALC269_TYPE_ALC293,
2746 ALC269_TYPE_ALC286,
2747 ALC269_TYPE_ALC298,
2748 ALC269_TYPE_ALC255,
2749 ALC269_TYPE_ALC256,
2750 ALC269_TYPE_ALC257,
2751 ALC269_TYPE_ALC215,
2752 ALC269_TYPE_ALC225,
2753 ALC269_TYPE_ALC294,
2754 ALC269_TYPE_ALC700,
2755 };
2756
2757 /*
2758 * BIOS auto configuration
2759 */
2760 static int alc269_parse_auto_config(struct hda_codec *codec)
2761 {
2762 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
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;
2766 const hda_nid_t *ssids;
2767
2768 switch (spec->codec_variant) {
2769 case ALC269_TYPE_ALC269VA:
2770 case ALC269_TYPE_ALC269VC:
2771 case ALC269_TYPE_ALC280:
2772 case ALC269_TYPE_ALC284:
2773 case ALC269_TYPE_ALC293:
2774 ssids = alc269va_ssids;
2775 break;
2776 case ALC269_TYPE_ALC269VB:
2777 case ALC269_TYPE_ALC269VD:
2778 case ALC269_TYPE_ALC282:
2779 case ALC269_TYPE_ALC283:
2780 case ALC269_TYPE_ALC286:
2781 case ALC269_TYPE_ALC298:
2782 case ALC269_TYPE_ALC255:
2783 case ALC269_TYPE_ALC256:
2784 case ALC269_TYPE_ALC257:
2785 case ALC269_TYPE_ALC215:
2786 case ALC269_TYPE_ALC225:
2787 case ALC269_TYPE_ALC294:
2788 case ALC269_TYPE_ALC700:
2789 ssids = alc269_ssids;
2790 break;
2791 default:
2792 ssids = alc269_ssids;
2793 break;
2794 }
2795
2796 return alc_parse_auto_config(codec, alc269_ignore, ssids);
2797 }
2798
2799 static int find_ext_mic_pin(struct hda_codec *codec);
2800
2801 static 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
2820 static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2821 {
2822 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
2823 }
2824
2825 static void alc269_shutup(struct hda_codec *codec)
2826 {
2827 struct alc_spec *spec = codec->spec;
2828
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) {
2833 msleep(150);
2834 }
2835 snd_hda_shutup_pins(codec);
2836 }
2837
2838 static struct coef_fw alc282_coefs[] = {
2839 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2840 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
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
2871 static void alc282_restore_default_value(struct hda_codec *codec)
2872 {
2873 alc_process_coef_fw(codec, alc282_coefs);
2874 }
2875
2876 static 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
2883 alc282_restore_default_value(codec);
2884
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
2913 static 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
2949 static struct coef_fw alc283_coefs[] = {
2950 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
2951 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
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 */
2982 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
2983 {}
2984 };
2985
2986 static void alc283_restore_default_value(struct hda_codec *codec)
2987 {
2988 alc_process_coef_fw(codec, alc283_coefs);
2989 }
2990
2991 static 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;
2996
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
3002 alc283_restore_default_value(codec);
3003
3004 if (!hp_pin)
3005 return;
3006
3007 msleep(30);
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. */
3027 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3028 /* Headphone capless set to normal mode */
3029 alc_write_coef_idx(codec, 0x43, 0x9614);
3030 }
3031
3032 static 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;
3037
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
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
3052 /*depop hp during suspend*/
3053 alc_write_coef_idx(codec, 0x06, 0x2100);
3054
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)
3059 msleep(100);
3060
3061 snd_hda_codec_write(codec, hp_pin, 0,
3062 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3063
3064 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3065
3066 if (hp_pin_sense)
3067 msleep(100);
3068 alc_auto_setup_eapd(codec, false);
3069 snd_hda_shutup_pins(codec);
3070 alc_write_coef_idx(codec, 0x43, 0x9614);
3071 }
3072
3073 static 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
3107 static 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
3141 static void alc_default_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 hp_pin_sense;
3146
3147 if (!hp_pin)
3148 return;
3149
3150 msleep(30);
3151
3152 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3153
3154 if (hp_pin_sense)
3155 msleep(2);
3156
3157 snd_hda_codec_write(codec, hp_pin, 0,
3158 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3159
3160 if (hp_pin_sense)
3161 msleep(85);
3162
3163 snd_hda_codec_write(codec, hp_pin, 0,
3164 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3165
3166 if (hp_pin_sense)
3167 msleep(100);
3168 }
3169
3170 static void alc_default_shutup(struct hda_codec *codec)
3171 {
3172 struct alc_spec *spec = codec->spec;
3173 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3174 bool hp_pin_sense;
3175
3176 if (!hp_pin) {
3177 alc269_shutup(codec);
3178 return;
3179 }
3180
3181 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3182
3183 if (hp_pin_sense)
3184 msleep(2);
3185
3186 snd_hda_codec_write(codec, hp_pin, 0,
3187 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3188
3189 if (hp_pin_sense)
3190 msleep(85);
3191
3192 snd_hda_codec_write(codec, hp_pin, 0,
3193 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3194
3195 if (hp_pin_sense)
3196 msleep(100);
3197
3198 alc_auto_setup_eapd(codec, false);
3199 snd_hda_shutup_pins(codec);
3200 }
3201
3202 static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3203 unsigned int val)
3204 {
3205 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3206 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3207 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3208 }
3209
3210 static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3211 {
3212 unsigned int val;
3213
3214 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3215 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3216 & 0xffff;
3217 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3218 << 16;
3219 return val;
3220 }
3221
3222 static void alc5505_dsp_halt(struct hda_codec *codec)
3223 {
3224 unsigned int val;
3225
3226 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3227 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3228 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3229 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3230 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3231 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3232 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3233 val = alc5505_coef_get(codec, 0x6220);
3234 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3235 }
3236
3237 static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3238 {
3239 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3240 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3241 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3242 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3243 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3244 alc5505_coef_set(codec, 0x880c, 0x00000004);
3245 }
3246
3247 static void alc5505_dsp_init(struct hda_codec *codec)
3248 {
3249 unsigned int val;
3250
3251 alc5505_dsp_halt(codec);
3252 alc5505_dsp_back_from_halt(codec);
3253 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3254 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3255 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3256 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3257 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3258 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3259 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3260 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3261 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3262 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3263 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3264 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3265 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3266
3267 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3268 if (val <= 3)
3269 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3270 else
3271 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3272
3273 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3274 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3275 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3276 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3277 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3278 alc5505_coef_set(codec, 0x880c, 0x00000003);
3279 alc5505_coef_set(codec, 0x880c, 0x00000010);
3280
3281 #ifdef HALT_REALTEK_ALC5505
3282 alc5505_dsp_halt(codec);
3283 #endif
3284 }
3285
3286 #ifdef HALT_REALTEK_ALC5505
3287 #define alc5505_dsp_suspend(codec) /* NOP */
3288 #define alc5505_dsp_resume(codec) /* NOP */
3289 #else
3290 #define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3291 #define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3292 #endif
3293
3294 #ifdef CONFIG_PM
3295 static int alc269_suspend(struct hda_codec *codec)
3296 {
3297 struct alc_spec *spec = codec->spec;
3298
3299 if (spec->has_alc5505_dsp)
3300 alc5505_dsp_suspend(codec);
3301 return alc_suspend(codec);
3302 }
3303
3304 static int alc269_resume(struct hda_codec *codec)
3305 {
3306 struct alc_spec *spec = codec->spec;
3307
3308 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3309 alc269vb_toggle_power_output(codec, 0);
3310 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3311 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
3312 msleep(150);
3313 }
3314
3315 codec->patch_ops.init(codec);
3316
3317 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3318 alc269vb_toggle_power_output(codec, 1);
3319 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
3320 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
3321 msleep(200);
3322 }
3323
3324 regcache_sync(codec->core.regmap);
3325 hda_call_check_power_status(codec, 0x01);
3326
3327 /* on some machine, the BIOS will clear the codec gpio data when enter
3328 * suspend, and won't restore the data after resume, so we restore it
3329 * in the driver.
3330 */
3331 if (spec->gpio_led)
3332 snd_hda_codec_write(codec, codec->core.afg, 0, AC_VERB_SET_GPIO_DATA,
3333 spec->gpio_led);
3334
3335 if (spec->has_alc5505_dsp)
3336 alc5505_dsp_resume(codec);
3337
3338 return 0;
3339 }
3340 #endif /* CONFIG_PM */
3341
3342 static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
3343 const struct hda_fixup *fix, int action)
3344 {
3345 struct alc_spec *spec = codec->spec;
3346
3347 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3348 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3349 }
3350
3351 static void alc269_fixup_hweq(struct hda_codec *codec,
3352 const struct hda_fixup *fix, int action)
3353 {
3354 if (action == HDA_FIXUP_ACT_INIT)
3355 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
3356 }
3357
3358 static void alc269_fixup_headset_mic(struct hda_codec *codec,
3359 const struct hda_fixup *fix, int action)
3360 {
3361 struct alc_spec *spec = codec->spec;
3362
3363 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3364 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3365 }
3366
3367 static void alc271_fixup_dmic(struct hda_codec *codec,
3368 const struct hda_fixup *fix, int action)
3369 {
3370 static const struct hda_verb verbs[] = {
3371 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3372 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3373 {}
3374 };
3375 unsigned int cfg;
3376
3377 if (strcmp(codec->core.chip_name, "ALC271X") &&
3378 strcmp(codec->core.chip_name, "ALC269VB"))
3379 return;
3380 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3381 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3382 snd_hda_sequence_write(codec, verbs);
3383 }
3384
3385 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
3386 const struct hda_fixup *fix, int action)
3387 {
3388 struct alc_spec *spec = codec->spec;
3389
3390 if (action != HDA_FIXUP_ACT_PROBE)
3391 return;
3392
3393 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3394 * fix the sample rate of analog I/O to 44.1kHz
3395 */
3396 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3397 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
3398 }
3399
3400 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3401 const struct hda_fixup *fix, int action)
3402 {
3403 /* The digital-mic unit sends PDM (differential signal) instead of
3404 * the standard PCM, thus you can't record a valid mono stream as is.
3405 * Below is a workaround specific to ALC269 to control the dmic
3406 * signal source as mono.
3407 */
3408 if (action == HDA_FIXUP_ACT_INIT)
3409 alc_update_coef_idx(codec, 0x07, 0, 0x80);
3410 }
3411
3412 static void alc269_quanta_automute(struct hda_codec *codec)
3413 {
3414 snd_hda_gen_update_outputs(codec);
3415
3416 alc_write_coef_idx(codec, 0x0c, 0x680);
3417 alc_write_coef_idx(codec, 0x0c, 0x480);
3418 }
3419
3420 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3421 const struct hda_fixup *fix, int action)
3422 {
3423 struct alc_spec *spec = codec->spec;
3424 if (action != HDA_FIXUP_ACT_PROBE)
3425 return;
3426 spec->gen.automute_hook = alc269_quanta_automute;
3427 }
3428
3429 static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3430 struct hda_jack_callback *jack)
3431 {
3432 struct alc_spec *spec = codec->spec;
3433 int vref;
3434 msleep(200);
3435 snd_hda_gen_hp_automute(codec, jack);
3436
3437 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3438 msleep(100);
3439 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3440 vref);
3441 msleep(500);
3442 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3443 vref);
3444 }
3445
3446 static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3447 const struct hda_fixup *fix, int action)
3448 {
3449 struct alc_spec *spec = codec->spec;
3450 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3451 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3452 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3453 }
3454 }
3455
3456
3457 /* update mute-LED according to the speaker mute state via mic VREF pin */
3458 static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3459 {
3460 struct hda_codec *codec = private_data;
3461 struct alc_spec *spec = codec->spec;
3462 unsigned int pinval;
3463
3464 if (spec->mute_led_polarity)
3465 enabled = !enabled;
3466 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3467 pinval &= ~AC_PINCTL_VREFEN;
3468 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
3469 if (spec->mute_led_nid)
3470 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3471 }
3472
3473 /* Make sure the led works even in runtime suspend */
3474 static unsigned int led_power_filter(struct hda_codec *codec,
3475 hda_nid_t nid,
3476 unsigned int power_state)
3477 {
3478 struct alc_spec *spec = codec->spec;
3479
3480 if (power_state != AC_PWRST_D3 || nid == 0 ||
3481 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
3482 return power_state;
3483
3484 /* Set pin ctl again, it might have just been set to 0 */
3485 snd_hda_set_pin_ctl(codec, nid,
3486 snd_hda_codec_get_pin_target(codec, nid));
3487
3488 return snd_hda_gen_path_power_filter(codec, nid, power_state);
3489 }
3490
3491 static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3492 const struct hda_fixup *fix, int action)
3493 {
3494 struct alc_spec *spec = codec->spec;
3495 const struct dmi_device *dev = NULL;
3496
3497 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3498 return;
3499
3500 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3501 int pol, pin;
3502 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3503 continue;
3504 if (pin < 0x0a || pin >= 0x10)
3505 break;
3506 spec->mute_led_polarity = pol;
3507 spec->mute_led_nid = pin - 0x0a + 0x18;
3508 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3509 spec->gen.vmaster_mute_enum = 1;
3510 codec->power_filter = led_power_filter;
3511 codec_dbg(codec,
3512 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
3513 spec->mute_led_polarity);
3514 break;
3515 }
3516 }
3517
3518 static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3519 const struct hda_fixup *fix, int action)
3520 {
3521 struct alc_spec *spec = codec->spec;
3522 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3523 spec->mute_led_polarity = 0;
3524 spec->mute_led_nid = 0x18;
3525 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3526 spec->gen.vmaster_mute_enum = 1;
3527 codec->power_filter = led_power_filter;
3528 }
3529 }
3530
3531 static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3532 const struct hda_fixup *fix, int action)
3533 {
3534 struct alc_spec *spec = codec->spec;
3535 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3536 spec->mute_led_polarity = 0;
3537 spec->mute_led_nid = 0x19;
3538 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3539 spec->gen.vmaster_mute_enum = 1;
3540 codec->power_filter = led_power_filter;
3541 }
3542 }
3543
3544 /* update LED status via GPIO */
3545 static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3546 bool enabled)
3547 {
3548 struct alc_spec *spec = codec->spec;
3549 unsigned int oldval = spec->gpio_led;
3550
3551 if (spec->mute_led_polarity)
3552 enabled = !enabled;
3553
3554 if (enabled)
3555 spec->gpio_led &= ~mask;
3556 else
3557 spec->gpio_led |= mask;
3558 if (spec->gpio_led != oldval)
3559 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3560 spec->gpio_led);
3561 }
3562
3563 /* turn on/off mute LED via GPIO per vmaster hook */
3564 static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
3565 {
3566 struct hda_codec *codec = private_data;
3567 struct alc_spec *spec = codec->spec;
3568
3569 alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3570 }
3571
3572 /* turn on/off mic-mute LED via GPIO per capture hook */
3573 static void alc_fixup_gpio_mic_mute_hook(struct hda_codec *codec,
3574 struct snd_kcontrol *kcontrol,
3575 struct snd_ctl_elem_value *ucontrol)
3576 {
3577 struct alc_spec *spec = codec->spec;
3578
3579 if (ucontrol)
3580 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3581 ucontrol->value.integer.value[0] ||
3582 ucontrol->value.integer.value[1]);
3583 }
3584
3585 static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3586 const struct hda_fixup *fix, int action)
3587 {
3588 struct alc_spec *spec = codec->spec;
3589 static const struct hda_verb gpio_init[] = {
3590 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3591 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3592 {}
3593 };
3594
3595 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3596 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3597 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3598 spec->gpio_led = 0;
3599 spec->mute_led_polarity = 0;
3600 spec->gpio_mute_led_mask = 0x08;
3601 spec->gpio_mic_led_mask = 0x10;
3602 snd_hda_add_verbs(codec, gpio_init);
3603 }
3604 }
3605
3606 static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
3607 const struct hda_fixup *fix, int action)
3608 {
3609 struct alc_spec *spec = codec->spec;
3610 static const struct hda_verb gpio_init[] = {
3611 { 0x01, AC_VERB_SET_GPIO_MASK, 0x22 },
3612 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x22 },
3613 {}
3614 };
3615
3616 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3617 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3618 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3619 spec->gpio_led = 0;
3620 spec->mute_led_polarity = 0;
3621 spec->gpio_mute_led_mask = 0x02;
3622 spec->gpio_mic_led_mask = 0x20;
3623 snd_hda_add_verbs(codec, gpio_init);
3624 }
3625 }
3626
3627 /* turn on/off mic-mute LED per capture hook */
3628 static void alc269_fixup_hp_cap_mic_mute_hook(struct hda_codec *codec,
3629 struct snd_kcontrol *kcontrol,
3630 struct snd_ctl_elem_value *ucontrol)
3631 {
3632 struct alc_spec *spec = codec->spec;
3633 unsigned int pinval, enable, disable;
3634
3635 pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
3636 pinval &= ~AC_PINCTL_VREFEN;
3637 enable = pinval | AC_PINCTL_VREF_80;
3638 disable = pinval | AC_PINCTL_VREF_HIZ;
3639
3640 if (!ucontrol)
3641 return;
3642
3643 if (ucontrol->value.integer.value[0] ||
3644 ucontrol->value.integer.value[1])
3645 pinval = disable;
3646 else
3647 pinval = enable;
3648
3649 if (spec->cap_mute_led_nid)
3650 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
3651 }
3652
3653 static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
3654 const struct hda_fixup *fix, int action)
3655 {
3656 struct alc_spec *spec = codec->spec;
3657 static const struct hda_verb gpio_init[] = {
3658 { 0x01, AC_VERB_SET_GPIO_MASK, 0x08 },
3659 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x08 },
3660 {}
3661 };
3662
3663 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3664 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3665 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3666 spec->gpio_led = 0;
3667 spec->mute_led_polarity = 0;
3668 spec->gpio_mute_led_mask = 0x08;
3669 spec->cap_mute_led_nid = 0x18;
3670 snd_hda_add_verbs(codec, gpio_init);
3671 codec->power_filter = led_power_filter;
3672 }
3673 }
3674
3675 static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
3676 const struct hda_fixup *fix, int action)
3677 {
3678 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to enable headphone amp */
3679 struct alc_spec *spec = codec->spec;
3680 static const struct hda_verb gpio_init[] = {
3681 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3682 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3683 {}
3684 };
3685
3686 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3687 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3688 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3689 spec->gpio_led = 0;
3690 spec->mute_led_polarity = 0;
3691 spec->gpio_mute_led_mask = 0x08;
3692 spec->cap_mute_led_nid = 0x18;
3693 snd_hda_add_verbs(codec, gpio_init);
3694 codec->power_filter = led_power_filter;
3695 }
3696 }
3697
3698 static void gpio2_mic_hotkey_event(struct hda_codec *codec,
3699 struct hda_jack_callback *event)
3700 {
3701 struct alc_spec *spec = codec->spec;
3702
3703 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
3704 send both key on and key off event for every interrupt. */
3705 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
3706 input_sync(spec->kb_dev);
3707 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
3708 input_sync(spec->kb_dev);
3709 }
3710
3711 static int alc_register_micmute_input_device(struct hda_codec *codec)
3712 {
3713 struct alc_spec *spec = codec->spec;
3714 int i;
3715
3716 spec->kb_dev = input_allocate_device();
3717 if (!spec->kb_dev) {
3718 codec_err(codec, "Out of memory (input_allocate_device)\n");
3719 return -ENOMEM;
3720 }
3721
3722 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
3723
3724 spec->kb_dev->name = "Microphone Mute Button";
3725 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
3726 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
3727 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
3728 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
3729 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
3730 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3731
3732 if (input_register_device(spec->kb_dev)) {
3733 codec_err(codec, "input_register_device failed\n");
3734 input_free_device(spec->kb_dev);
3735 spec->kb_dev = NULL;
3736 return -ENOMEM;
3737 }
3738
3739 return 0;
3740 }
3741
3742 static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
3743 const struct hda_fixup *fix, int action)
3744 {
3745 /* GPIO1 = set according to SKU external amp
3746 GPIO2 = mic mute hotkey
3747 GPIO3 = mute LED
3748 GPIO4 = mic mute LED */
3749 static const struct hda_verb gpio_init[] = {
3750 { 0x01, AC_VERB_SET_GPIO_MASK, 0x1e },
3751 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x1a },
3752 { 0x01, AC_VERB_SET_GPIO_DATA, 0x02 },
3753 {}
3754 };
3755
3756 struct alc_spec *spec = codec->spec;
3757
3758 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3759 if (alc_register_micmute_input_device(codec) != 0)
3760 return;
3761
3762 snd_hda_add_verbs(codec, gpio_init);
3763 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
3764 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
3765 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
3766 gpio2_mic_hotkey_event);
3767
3768 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
3769 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3770 spec->gpio_led = 0;
3771 spec->mute_led_polarity = 0;
3772 spec->gpio_mute_led_mask = 0x08;
3773 spec->gpio_mic_led_mask = 0x10;
3774 return;
3775 }
3776
3777 if (!spec->kb_dev)
3778 return;
3779
3780 switch (action) {
3781 case HDA_FIXUP_ACT_PROBE:
3782 spec->init_amp = ALC_INIT_DEFAULT;
3783 break;
3784 case HDA_FIXUP_ACT_FREE:
3785 input_unregister_device(spec->kb_dev);
3786 spec->kb_dev = NULL;
3787 }
3788 }
3789
3790 static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
3791 const struct hda_fixup *fix, int action)
3792 {
3793 /* Line2 = mic mute hotkey
3794 GPIO2 = mic mute LED */
3795 static const struct hda_verb gpio_init[] = {
3796 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
3797 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
3798 {}
3799 };
3800
3801 struct alc_spec *spec = codec->spec;
3802
3803 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3804 if (alc_register_micmute_input_device(codec) != 0)
3805 return;
3806
3807 snd_hda_add_verbs(codec, gpio_init);
3808 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3809 gpio2_mic_hotkey_event);
3810
3811 spec->gen.cap_sync_hook = alc_fixup_gpio_mic_mute_hook;
3812 spec->gpio_led = 0;
3813 spec->mute_led_polarity = 0;
3814 spec->gpio_mic_led_mask = 0x04;
3815 return;
3816 }
3817
3818 if (!spec->kb_dev)
3819 return;
3820
3821 switch (action) {
3822 case HDA_FIXUP_ACT_PROBE:
3823 spec->init_amp = ALC_INIT_DEFAULT;
3824 break;
3825 case HDA_FIXUP_ACT_FREE:
3826 input_unregister_device(spec->kb_dev);
3827 spec->kb_dev = NULL;
3828 }
3829 }
3830
3831 static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
3832 const struct hda_fixup *fix, int action)
3833 {
3834 struct alc_spec *spec = codec->spec;
3835
3836 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3837 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3838 spec->gen.cap_sync_hook = alc269_fixup_hp_cap_mic_mute_hook;
3839 spec->mute_led_polarity = 0;
3840 spec->mute_led_nid = 0x1a;
3841 spec->cap_mute_led_nid = 0x18;
3842 spec->gen.vmaster_mute_enum = 1;
3843 codec->power_filter = led_power_filter;
3844 }
3845 }
3846
3847 static struct coef_fw alc225_pre_hsmode[] = {
3848 UPDATE_COEF(0x4a, 1<<8, 0),
3849 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
3850 UPDATE_COEF(0x63, 3<<14, 3<<14),
3851 UPDATE_COEF(0x4a, 3<<4, 2<<4),
3852 UPDATE_COEF(0x4a, 3<<10, 3<<10),
3853 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
3854 UPDATE_COEF(0x4a, 3<<10, 0),
3855 {}
3856 };
3857
3858 static void alc_headset_mode_unplugged(struct hda_codec *codec)
3859 {
3860 static struct coef_fw coef0255[] = {
3861 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
3862 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
3863 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
3864 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
3865 {}
3866 };
3867 static struct coef_fw coef0255_1[] = {
3868 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
3869 {}
3870 };
3871 static struct coef_fw coef0256[] = {
3872 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
3873 {}
3874 };
3875 static struct coef_fw coef0233[] = {
3876 WRITE_COEF(0x1b, 0x0c0b),
3877 WRITE_COEF(0x45, 0xc429),
3878 UPDATE_COEF(0x35, 0x4000, 0),
3879 WRITE_COEF(0x06, 0x2104),
3880 WRITE_COEF(0x1a, 0x0001),
3881 WRITE_COEF(0x26, 0x0004),
3882 WRITE_COEF(0x32, 0x42a3),
3883 {}
3884 };
3885 static struct coef_fw coef0288[] = {
3886 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
3887 UPDATE_COEF(0x50, 0x2000, 0x2000),
3888 UPDATE_COEF(0x56, 0x0006, 0x0006),
3889 UPDATE_COEF(0x66, 0x0008, 0),
3890 UPDATE_COEF(0x67, 0x2000, 0),
3891 {}
3892 };
3893 static struct coef_fw coef0298[] = {
3894 UPDATE_COEF(0x19, 0x1300, 0x0300),
3895 {}
3896 };
3897 static struct coef_fw coef0292[] = {
3898 WRITE_COEF(0x76, 0x000e),
3899 WRITE_COEF(0x6c, 0x2400),
3900 WRITE_COEF(0x18, 0x7308),
3901 WRITE_COEF(0x6b, 0xc429),
3902 {}
3903 };
3904 static struct coef_fw coef0293[] = {
3905 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
3906 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
3907 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
3908 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
3909 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
3910 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
3911 {}
3912 };
3913 static struct coef_fw coef0668[] = {
3914 WRITE_COEF(0x15, 0x0d40),
3915 WRITE_COEF(0xb7, 0x802b),
3916 {}
3917 };
3918 static struct coef_fw coef0225[] = {
3919 UPDATE_COEF(0x63, 3<<14, 0),
3920 {}
3921 };
3922 static struct coef_fw coef0274[] = {
3923 UPDATE_COEF(0x4a, 0x0100, 0),
3924 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
3925 UPDATE_COEF(0x6b, 0xf000, 0x5000),
3926 UPDATE_COEF(0x4a, 0x0010, 0),
3927 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
3928 WRITE_COEF(0x45, 0x5289),
3929 UPDATE_COEF(0x4a, 0x0c00, 0),
3930 {}
3931 };
3932
3933 switch (codec->core.vendor_id) {
3934 case 0x10ec0255:
3935 alc_process_coef_fw(codec, coef0255_1);
3936 alc_process_coef_fw(codec, coef0255);
3937 break;
3938 case 0x10ec0236:
3939 case 0x10ec0256:
3940 alc_process_coef_fw(codec, coef0256);
3941 alc_process_coef_fw(codec, coef0255);
3942 break;
3943 case 0x10ec0234:
3944 case 0x10ec0274:
3945 case 0x10ec0294:
3946 alc_process_coef_fw(codec, coef0274);
3947 break;
3948 case 0x10ec0233:
3949 case 0x10ec0283:
3950 alc_process_coef_fw(codec, coef0233);
3951 break;
3952 case 0x10ec0286:
3953 case 0x10ec0288:
3954 alc_process_coef_fw(codec, coef0288);
3955 break;
3956 case 0x10ec0298:
3957 alc_process_coef_fw(codec, coef0298);
3958 alc_process_coef_fw(codec, coef0288);
3959 break;
3960 case 0x10ec0292:
3961 alc_process_coef_fw(codec, coef0292);
3962 break;
3963 case 0x10ec0293:
3964 alc_process_coef_fw(codec, coef0293);
3965 break;
3966 case 0x10ec0668:
3967 alc_process_coef_fw(codec, coef0668);
3968 break;
3969 case 0x10ec0225:
3970 case 0x10ec0295:
3971 case 0x10ec0299:
3972 alc_process_coef_fw(codec, coef0225);
3973 break;
3974 case 0x10ec0867:
3975 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
3976 break;
3977 }
3978 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
3979 }
3980
3981
3982 static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3983 hda_nid_t mic_pin)
3984 {
3985 static struct coef_fw coef0255[] = {
3986 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
3987 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
3988 {}
3989 };
3990 static struct coef_fw coef0233[] = {
3991 UPDATE_COEF(0x35, 0, 1<<14),
3992 WRITE_COEF(0x06, 0x2100),
3993 WRITE_COEF(0x1a, 0x0021),
3994 WRITE_COEF(0x26, 0x008c),
3995 {}
3996 };
3997 static struct coef_fw coef0288[] = {
3998 UPDATE_COEF(0x4f, 0x00c0, 0),
3999 UPDATE_COEF(0x50, 0x2000, 0),
4000 UPDATE_COEF(0x56, 0x0006, 0),
4001 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4002 UPDATE_COEF(0x66, 0x0008, 0x0008),
4003 UPDATE_COEF(0x67, 0x2000, 0x2000),
4004 {}
4005 };
4006 static struct coef_fw coef0292[] = {
4007 WRITE_COEF(0x19, 0xa208),
4008 WRITE_COEF(0x2e, 0xacf0),
4009 {}
4010 };
4011 static struct coef_fw coef0293[] = {
4012 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4013 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4014 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4015 {}
4016 };
4017 static struct coef_fw coef0688[] = {
4018 WRITE_COEF(0xb7, 0x802b),
4019 WRITE_COEF(0xb5, 0x1040),
4020 UPDATE_COEF(0xc3, 0, 1<<12),
4021 {}
4022 };
4023 static struct coef_fw coef0225[] = {
4024 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4025 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4026 UPDATE_COEF(0x63, 3<<14, 0),
4027 {}
4028 };
4029 static struct coef_fw coef0274[] = {
4030 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
4031 UPDATE_COEF(0x4a, 0x0010, 0),
4032 UPDATE_COEF(0x6b, 0xf000, 0),
4033 {}
4034 };
4035
4036 switch (codec->core.vendor_id) {
4037 case 0x10ec0236:
4038 case 0x10ec0255:
4039 case 0x10ec0256:
4040 alc_write_coef_idx(codec, 0x45, 0xc489);
4041 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4042 alc_process_coef_fw(codec, coef0255);
4043 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4044 break;
4045 case 0x10ec0234:
4046 case 0x10ec0274:
4047 case 0x10ec0294:
4048 alc_write_coef_idx(codec, 0x45, 0x4689);
4049 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4050 alc_process_coef_fw(codec, coef0274);
4051 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4052 break;
4053 case 0x10ec0233:
4054 case 0x10ec0283:
4055 alc_write_coef_idx(codec, 0x45, 0xc429);
4056 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4057 alc_process_coef_fw(codec, coef0233);
4058 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4059 break;
4060 case 0x10ec0286:
4061 case 0x10ec0288:
4062 case 0x10ec0298:
4063 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4064 alc_process_coef_fw(codec, coef0288);
4065 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4066 break;
4067 case 0x10ec0292:
4068 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4069 alc_process_coef_fw(codec, coef0292);
4070 break;
4071 case 0x10ec0293:
4072 /* Set to TRS mode */
4073 alc_write_coef_idx(codec, 0x45, 0xc429);
4074 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4075 alc_process_coef_fw(codec, coef0293);
4076 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4077 break;
4078 case 0x10ec0867:
4079 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
4080 /* fallthru */
4081 case 0x10ec0221:
4082 case 0x10ec0662:
4083 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4084 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4085 break;
4086 case 0x10ec0668:
4087 alc_write_coef_idx(codec, 0x11, 0x0001);
4088 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4089 alc_process_coef_fw(codec, coef0688);
4090 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4091 break;
4092 case 0x10ec0225:
4093 case 0x10ec0295:
4094 case 0x10ec0299:
4095 alc_process_coef_fw(codec, alc225_pre_hsmode);
4096 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
4097 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4098 alc_process_coef_fw(codec, coef0225);
4099 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4100 break;
4101 }
4102 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
4103 }
4104
4105 static void alc_headset_mode_default(struct hda_codec *codec)
4106 {
4107 static struct coef_fw coef0225[] = {
4108 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
4109 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
4110 UPDATE_COEF(0x49, 3<<8, 0<<8),
4111 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4112 UPDATE_COEF(0x63, 3<<14, 0),
4113 UPDATE_COEF(0x67, 0xf000, 0x3000),
4114 {}
4115 };
4116 static struct coef_fw coef0255[] = {
4117 WRITE_COEF(0x45, 0xc089),
4118 WRITE_COEF(0x45, 0xc489),
4119 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4120 WRITE_COEF(0x49, 0x0049),
4121 {}
4122 };
4123 static struct coef_fw coef0233[] = {
4124 WRITE_COEF(0x06, 0x2100),
4125 WRITE_COEF(0x32, 0x4ea3),
4126 {}
4127 };
4128 static struct coef_fw coef0288[] = {
4129 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
4130 UPDATE_COEF(0x50, 0x2000, 0x2000),
4131 UPDATE_COEF(0x56, 0x0006, 0x0006),
4132 UPDATE_COEF(0x66, 0x0008, 0),
4133 UPDATE_COEF(0x67, 0x2000, 0),
4134 {}
4135 };
4136 static struct coef_fw coef0292[] = {
4137 WRITE_COEF(0x76, 0x000e),
4138 WRITE_COEF(0x6c, 0x2400),
4139 WRITE_COEF(0x6b, 0xc429),
4140 WRITE_COEF(0x18, 0x7308),
4141 {}
4142 };
4143 static struct coef_fw coef0293[] = {
4144 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4145 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
4146 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4147 {}
4148 };
4149 static struct coef_fw coef0688[] = {
4150 WRITE_COEF(0x11, 0x0041),
4151 WRITE_COEF(0x15, 0x0d40),
4152 WRITE_COEF(0xb7, 0x802b),
4153 {}
4154 };
4155 static struct coef_fw coef0274[] = {
4156 WRITE_COEF(0x45, 0x4289),
4157 UPDATE_COEF(0x4a, 0x0010, 0x0010),
4158 UPDATE_COEF(0x6b, 0x0f00, 0),
4159 UPDATE_COEF(0x49, 0x0300, 0x0300),
4160 {}
4161 };
4162
4163 switch (codec->core.vendor_id) {
4164 case 0x10ec0225:
4165 case 0x10ec0295:
4166 case 0x10ec0299:
4167 alc_process_coef_fw(codec, alc225_pre_hsmode);
4168 alc_process_coef_fw(codec, coef0225);
4169 break;
4170 case 0x10ec0236:
4171 case 0x10ec0255:
4172 case 0x10ec0256:
4173 alc_process_coef_fw(codec, coef0255);
4174 break;
4175 case 0x10ec0234:
4176 case 0x10ec0274:
4177 case 0x10ec0294:
4178 alc_process_coef_fw(codec, coef0274);
4179 break;
4180 case 0x10ec0233:
4181 case 0x10ec0283:
4182 alc_process_coef_fw(codec, coef0233);
4183 break;
4184 case 0x10ec0286:
4185 case 0x10ec0288:
4186 case 0x10ec0298:
4187 alc_process_coef_fw(codec, coef0288);
4188 break;
4189 case 0x10ec0292:
4190 alc_process_coef_fw(codec, coef0292);
4191 break;
4192 case 0x10ec0293:
4193 alc_process_coef_fw(codec, coef0293);
4194 break;
4195 case 0x10ec0668:
4196 alc_process_coef_fw(codec, coef0688);
4197 break;
4198 case 0x10ec0867:
4199 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4200 break;
4201 }
4202 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
4203 }
4204
4205 /* Iphone type */
4206 static void alc_headset_mode_ctia(struct hda_codec *codec)
4207 {
4208 int val;
4209
4210 static struct coef_fw coef0255[] = {
4211 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4212 WRITE_COEF(0x1b, 0x0c2b),
4213 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4214 {}
4215 };
4216 static struct coef_fw coef0256[] = {
4217 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4218 WRITE_COEF(0x1b, 0x0c6b),
4219 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4220 {}
4221 };
4222 static struct coef_fw coef0233[] = {
4223 WRITE_COEF(0x45, 0xd429),
4224 WRITE_COEF(0x1b, 0x0c2b),
4225 WRITE_COEF(0x32, 0x4ea3),
4226 {}
4227 };
4228 static struct coef_fw coef0288[] = {
4229 UPDATE_COEF(0x50, 0x2000, 0x2000),
4230 UPDATE_COEF(0x56, 0x0006, 0x0006),
4231 UPDATE_COEF(0x66, 0x0008, 0),
4232 UPDATE_COEF(0x67, 0x2000, 0),
4233 {}
4234 };
4235 static struct coef_fw coef0292[] = {
4236 WRITE_COEF(0x6b, 0xd429),
4237 WRITE_COEF(0x76, 0x0008),
4238 WRITE_COEF(0x18, 0x7388),
4239 {}
4240 };
4241 static struct coef_fw coef0293[] = {
4242 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
4243 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4244 {}
4245 };
4246 static struct coef_fw coef0688[] = {
4247 WRITE_COEF(0x11, 0x0001),
4248 WRITE_COEF(0x15, 0x0d60),
4249 WRITE_COEF(0xc3, 0x0000),
4250 {}
4251 };
4252 static struct coef_fw coef0225_1[] = {
4253 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4254 UPDATE_COEF(0x63, 3<<14, 2<<14),
4255 {}
4256 };
4257 static struct coef_fw coef0225_2[] = {
4258 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4259 UPDATE_COEF(0x63, 3<<14, 1<<14),
4260 {}
4261 };
4262
4263 switch (codec->core.vendor_id) {
4264 case 0x10ec0255:
4265 alc_process_coef_fw(codec, coef0255);
4266 break;
4267 case 0x10ec0236:
4268 case 0x10ec0256:
4269 alc_process_coef_fw(codec, coef0256);
4270 break;
4271 case 0x10ec0234:
4272 case 0x10ec0274:
4273 case 0x10ec0294:
4274 alc_write_coef_idx(codec, 0x45, 0xd689);
4275 break;
4276 case 0x10ec0233:
4277 case 0x10ec0283:
4278 alc_process_coef_fw(codec, coef0233);
4279 break;
4280 case 0x10ec0298:
4281 val = alc_read_coef_idx(codec, 0x50);
4282 if (val & (1 << 12)) {
4283 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4284 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4285 msleep(300);
4286 } else {
4287 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4288 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4289 msleep(300);
4290 }
4291 break;
4292 case 0x10ec0286:
4293 case 0x10ec0288:
4294 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4295 msleep(300);
4296 alc_process_coef_fw(codec, coef0288);
4297 break;
4298 case 0x10ec0292:
4299 alc_process_coef_fw(codec, coef0292);
4300 break;
4301 case 0x10ec0293:
4302 alc_process_coef_fw(codec, coef0293);
4303 break;
4304 case 0x10ec0668:
4305 alc_process_coef_fw(codec, coef0688);
4306 break;
4307 case 0x10ec0225:
4308 case 0x10ec0295:
4309 case 0x10ec0299:
4310 val = alc_read_coef_idx(codec, 0x45);
4311 if (val & (1 << 9))
4312 alc_process_coef_fw(codec, coef0225_2);
4313 else
4314 alc_process_coef_fw(codec, coef0225_1);
4315 break;
4316 case 0x10ec0867:
4317 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4318 break;
4319 }
4320 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
4321 }
4322
4323 /* Nokia type */
4324 static void alc_headset_mode_omtp(struct hda_codec *codec)
4325 {
4326 static struct coef_fw coef0255[] = {
4327 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4328 WRITE_COEF(0x1b, 0x0c2b),
4329 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4330 {}
4331 };
4332 static struct coef_fw coef0256[] = {
4333 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4334 WRITE_COEF(0x1b, 0x0c6b),
4335 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4336 {}
4337 };
4338 static struct coef_fw coef0233[] = {
4339 WRITE_COEF(0x45, 0xe429),
4340 WRITE_COEF(0x1b, 0x0c2b),
4341 WRITE_COEF(0x32, 0x4ea3),
4342 {}
4343 };
4344 static struct coef_fw coef0288[] = {
4345 UPDATE_COEF(0x50, 0x2000, 0x2000),
4346 UPDATE_COEF(0x56, 0x0006, 0x0006),
4347 UPDATE_COEF(0x66, 0x0008, 0),
4348 UPDATE_COEF(0x67, 0x2000, 0),
4349 {}
4350 };
4351 static struct coef_fw coef0292[] = {
4352 WRITE_COEF(0x6b, 0xe429),
4353 WRITE_COEF(0x76, 0x0008),
4354 WRITE_COEF(0x18, 0x7388),
4355 {}
4356 };
4357 static struct coef_fw coef0293[] = {
4358 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4359 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4360 {}
4361 };
4362 static struct coef_fw coef0688[] = {
4363 WRITE_COEF(0x11, 0x0001),
4364 WRITE_COEF(0x15, 0x0d50),
4365 WRITE_COEF(0xc3, 0x0000),
4366 {}
4367 };
4368 static struct coef_fw coef0225[] = {
4369 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
4370 UPDATE_COEF(0x63, 3<<14, 2<<14),
4371 {}
4372 };
4373
4374 switch (codec->core.vendor_id) {
4375 case 0x10ec0255:
4376 alc_process_coef_fw(codec, coef0255);
4377 break;
4378 case 0x10ec0236:
4379 case 0x10ec0256:
4380 alc_process_coef_fw(codec, coef0256);
4381 break;
4382 case 0x10ec0234:
4383 case 0x10ec0274:
4384 case 0x10ec0294:
4385 alc_write_coef_idx(codec, 0x45, 0xe689);
4386 break;
4387 case 0x10ec0233:
4388 case 0x10ec0283:
4389 alc_process_coef_fw(codec, coef0233);
4390 break;
4391 case 0x10ec0298:
4392 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
4393 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4394 msleep(300);
4395 break;
4396 case 0x10ec0286:
4397 case 0x10ec0288:
4398 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4399 msleep(300);
4400 alc_process_coef_fw(codec, coef0288);
4401 break;
4402 case 0x10ec0292:
4403 alc_process_coef_fw(codec, coef0292);
4404 break;
4405 case 0x10ec0293:
4406 alc_process_coef_fw(codec, coef0293);
4407 break;
4408 case 0x10ec0668:
4409 alc_process_coef_fw(codec, coef0688);
4410 break;
4411 case 0x10ec0225:
4412 case 0x10ec0295:
4413 case 0x10ec0299:
4414 alc_process_coef_fw(codec, coef0225);
4415 break;
4416 }
4417 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
4418 }
4419
4420 static void alc_determine_headset_type(struct hda_codec *codec)
4421 {
4422 int val;
4423 bool is_ctia = false;
4424 struct alc_spec *spec = codec->spec;
4425 static struct coef_fw coef0255[] = {
4426 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4427 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4428 conteol) */
4429 {}
4430 };
4431 static struct coef_fw coef0288[] = {
4432 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4433 {}
4434 };
4435 static struct coef_fw coef0298[] = {
4436 UPDATE_COEF(0x50, 0x2000, 0x2000),
4437 UPDATE_COEF(0x56, 0x0006, 0x0006),
4438 UPDATE_COEF(0x66, 0x0008, 0),
4439 UPDATE_COEF(0x67, 0x2000, 0),
4440 UPDATE_COEF(0x19, 0x1300, 0x1300),
4441 {}
4442 };
4443 static struct coef_fw coef0293[] = {
4444 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4445 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4446 {}
4447 };
4448 static struct coef_fw coef0688[] = {
4449 WRITE_COEF(0x11, 0x0001),
4450 WRITE_COEF(0xb7, 0x802b),
4451 WRITE_COEF(0x15, 0x0d60),
4452 WRITE_COEF(0xc3, 0x0c00),
4453 {}
4454 };
4455 static struct coef_fw coef0274[] = {
4456 UPDATE_COEF(0x4a, 0x0010, 0),
4457 UPDATE_COEF(0x4a, 0x8000, 0),
4458 WRITE_COEF(0x45, 0xd289),
4459 UPDATE_COEF(0x49, 0x0300, 0x0300),
4460 {}
4461 };
4462
4463 switch (codec->core.vendor_id) {
4464 case 0x10ec0236:
4465 case 0x10ec0255:
4466 case 0x10ec0256:
4467 alc_process_coef_fw(codec, coef0255);
4468 msleep(300);
4469 val = alc_read_coef_idx(codec, 0x46);
4470 is_ctia = (val & 0x0070) == 0x0070;
4471 break;
4472 case 0x10ec0234:
4473 case 0x10ec0274:
4474 case 0x10ec0294:
4475 alc_process_coef_fw(codec, coef0274);
4476 msleep(80);
4477 val = alc_read_coef_idx(codec, 0x46);
4478 is_ctia = (val & 0x00f0) == 0x00f0;
4479 break;
4480 case 0x10ec0233:
4481 case 0x10ec0283:
4482 alc_write_coef_idx(codec, 0x45, 0xd029);
4483 msleep(300);
4484 val = alc_read_coef_idx(codec, 0x46);
4485 is_ctia = (val & 0x0070) == 0x0070;
4486 break;
4487 case 0x10ec0298:
4488 snd_hda_codec_write(codec, 0x21, 0,
4489 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4490 msleep(100);
4491 snd_hda_codec_write(codec, 0x21, 0,
4492 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4493 msleep(200);
4494
4495 val = alc_read_coef_idx(codec, 0x50);
4496 if (val & (1 << 12)) {
4497 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4498 alc_process_coef_fw(codec, coef0288);
4499 msleep(350);
4500 val = alc_read_coef_idx(codec, 0x50);
4501 is_ctia = (val & 0x0070) == 0x0070;
4502 } else {
4503 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4504 alc_process_coef_fw(codec, coef0288);
4505 msleep(350);
4506 val = alc_read_coef_idx(codec, 0x50);
4507 is_ctia = (val & 0x0070) == 0x0070;
4508 }
4509 alc_process_coef_fw(codec, coef0298);
4510 snd_hda_codec_write(codec, 0x21, 0,
4511 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4512 msleep(75);
4513 snd_hda_codec_write(codec, 0x21, 0,
4514 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4515 break;
4516 case 0x10ec0286:
4517 case 0x10ec0288:
4518 alc_process_coef_fw(codec, coef0288);
4519 msleep(350);
4520 val = alc_read_coef_idx(codec, 0x50);
4521 is_ctia = (val & 0x0070) == 0x0070;
4522 break;
4523 case 0x10ec0292:
4524 alc_write_coef_idx(codec, 0x6b, 0xd429);
4525 msleep(300);
4526 val = alc_read_coef_idx(codec, 0x6c);
4527 is_ctia = (val & 0x001c) == 0x001c;
4528 break;
4529 case 0x10ec0293:
4530 alc_process_coef_fw(codec, coef0293);
4531 msleep(300);
4532 val = alc_read_coef_idx(codec, 0x46);
4533 is_ctia = (val & 0x0070) == 0x0070;
4534 break;
4535 case 0x10ec0668:
4536 alc_process_coef_fw(codec, coef0688);
4537 msleep(300);
4538 val = alc_read_coef_idx(codec, 0xbe);
4539 is_ctia = (val & 0x1c02) == 0x1c02;
4540 break;
4541 case 0x10ec0225:
4542 case 0x10ec0295:
4543 case 0x10ec0299:
4544 alc_process_coef_fw(codec, alc225_pre_hsmode);
4545 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
4546 val = alc_read_coef_idx(codec, 0x45);
4547 if (val & (1 << 9)) {
4548 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4549 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
4550 msleep(800);
4551 val = alc_read_coef_idx(codec, 0x46);
4552 is_ctia = (val & 0x00f0) == 0x00f0;
4553 } else {
4554 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4555 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
4556 msleep(800);
4557 val = alc_read_coef_idx(codec, 0x46);
4558 is_ctia = (val & 0x00f0) == 0x00f0;
4559 }
4560 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
4561 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
4562 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
4563 break;
4564 case 0x10ec0867:
4565 is_ctia = true;
4566 break;
4567 }
4568
4569 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
4570 is_ctia ? "yes" : "no");
4571 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
4572 }
4573
4574 static void alc_update_headset_mode(struct hda_codec *codec)
4575 {
4576 struct alc_spec *spec = codec->spec;
4577
4578 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
4579 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
4580
4581 int new_headset_mode;
4582
4583 if (!snd_hda_jack_detect(codec, hp_pin))
4584 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
4585 else if (mux_pin == spec->headset_mic_pin)
4586 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
4587 else if (mux_pin == spec->headphone_mic_pin)
4588 new_headset_mode = ALC_HEADSET_MODE_MIC;
4589 else
4590 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
4591
4592 if (new_headset_mode == spec->current_headset_mode) {
4593 snd_hda_gen_update_outputs(codec);
4594 return;
4595 }
4596
4597 switch (new_headset_mode) {
4598 case ALC_HEADSET_MODE_UNPLUGGED:
4599 alc_headset_mode_unplugged(codec);
4600 spec->gen.hp_jack_present = false;
4601 break;
4602 case ALC_HEADSET_MODE_HEADSET:
4603 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
4604 alc_determine_headset_type(codec);
4605 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
4606 alc_headset_mode_ctia(codec);
4607 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
4608 alc_headset_mode_omtp(codec);
4609 spec->gen.hp_jack_present = true;
4610 break;
4611 case ALC_HEADSET_MODE_MIC:
4612 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
4613 spec->gen.hp_jack_present = false;
4614 break;
4615 case ALC_HEADSET_MODE_HEADPHONE:
4616 alc_headset_mode_default(codec);
4617 spec->gen.hp_jack_present = true;
4618 break;
4619 }
4620 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
4621 snd_hda_set_pin_ctl_cache(codec, hp_pin,
4622 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
4623 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
4624 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
4625 PIN_VREFHIZ);
4626 }
4627 spec->current_headset_mode = new_headset_mode;
4628
4629 snd_hda_gen_update_outputs(codec);
4630 }
4631
4632 static void alc_update_headset_mode_hook(struct hda_codec *codec,
4633 struct snd_kcontrol *kcontrol,
4634 struct snd_ctl_elem_value *ucontrol)
4635 {
4636 alc_update_headset_mode(codec);
4637 }
4638
4639 static void alc_update_headset_jack_cb(struct hda_codec *codec,
4640 struct hda_jack_callback *jack)
4641 {
4642 struct alc_spec *spec = codec->spec;
4643 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
4644 snd_hda_gen_hp_automute(codec, jack);
4645 }
4646
4647 static void alc_probe_headset_mode(struct hda_codec *codec)
4648 {
4649 int i;
4650 struct alc_spec *spec = codec->spec;
4651 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4652
4653 /* Find mic pins */
4654 for (i = 0; i < cfg->num_inputs; i++) {
4655 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
4656 spec->headset_mic_pin = cfg->inputs[i].pin;
4657 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
4658 spec->headphone_mic_pin = cfg->inputs[i].pin;
4659 }
4660
4661 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
4662 spec->gen.automute_hook = alc_update_headset_mode;
4663 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
4664 }
4665
4666 static void alc_fixup_headset_mode(struct hda_codec *codec,
4667 const struct hda_fixup *fix, int action)
4668 {
4669 struct alc_spec *spec = codec->spec;
4670
4671 switch (action) {
4672 case HDA_FIXUP_ACT_PRE_PROBE:
4673 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
4674 break;
4675 case HDA_FIXUP_ACT_PROBE:
4676 alc_probe_headset_mode(codec);
4677 break;
4678 case HDA_FIXUP_ACT_INIT:
4679 spec->current_headset_mode = 0;
4680 alc_update_headset_mode(codec);
4681 break;
4682 }
4683 }
4684
4685 static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
4686 const struct hda_fixup *fix, int action)
4687 {
4688 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4689 struct alc_spec *spec = codec->spec;
4690 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4691 }
4692 else
4693 alc_fixup_headset_mode(codec, fix, action);
4694 }
4695
4696 static void alc255_set_default_jack_type(struct hda_codec *codec)
4697 {
4698 /* Set to iphone type */
4699 static struct coef_fw alc255fw[] = {
4700 WRITE_COEF(0x1b, 0x880b),
4701 WRITE_COEF(0x45, 0xd089),
4702 WRITE_COEF(0x1b, 0x080b),
4703 WRITE_COEF(0x46, 0x0004),
4704 WRITE_COEF(0x1b, 0x0c0b),
4705 {}
4706 };
4707 static struct coef_fw alc256fw[] = {
4708 WRITE_COEF(0x1b, 0x884b),
4709 WRITE_COEF(0x45, 0xd089),
4710 WRITE_COEF(0x1b, 0x084b),
4711 WRITE_COEF(0x46, 0x0004),
4712 WRITE_COEF(0x1b, 0x0c4b),
4713 {}
4714 };
4715 switch (codec->core.vendor_id) {
4716 case 0x10ec0255:
4717 alc_process_coef_fw(codec, alc255fw);
4718 break;
4719 case 0x10ec0236:
4720 case 0x10ec0256:
4721 alc_process_coef_fw(codec, alc256fw);
4722 break;
4723 }
4724 msleep(30);
4725 }
4726
4727 static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
4728 const struct hda_fixup *fix, int action)
4729 {
4730 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4731 alc255_set_default_jack_type(codec);
4732 }
4733 alc_fixup_headset_mode(codec, fix, action);
4734 }
4735
4736 static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
4737 const struct hda_fixup *fix, int action)
4738 {
4739 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4740 struct alc_spec *spec = codec->spec;
4741 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4742 alc255_set_default_jack_type(codec);
4743 }
4744 else
4745 alc_fixup_headset_mode(codec, fix, action);
4746 }
4747
4748 static void alc288_update_headset_jack_cb(struct hda_codec *codec,
4749 struct hda_jack_callback *jack)
4750 {
4751 struct alc_spec *spec = codec->spec;
4752 int present;
4753
4754 alc_update_headset_jack_cb(codec, jack);
4755 /* Headset Mic enable or disable, only for Dell Dino */
4756 present = spec->gen.hp_jack_present ? 0x40 : 0;
4757 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4758 present);
4759 }
4760
4761 static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
4762 const struct hda_fixup *fix, int action)
4763 {
4764 alc_fixup_headset_mode(codec, fix, action);
4765 if (action == HDA_FIXUP_ACT_PROBE) {
4766 struct alc_spec *spec = codec->spec;
4767 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
4768 }
4769 }
4770
4771 static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
4772 const struct hda_fixup *fix, int action)
4773 {
4774 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4775 struct alc_spec *spec = codec->spec;
4776 spec->gen.auto_mute_via_amp = 1;
4777 }
4778 }
4779
4780 static void alc_no_shutup(struct hda_codec *codec)
4781 {
4782 }
4783
4784 static void alc_fixup_no_shutup(struct hda_codec *codec,
4785 const struct hda_fixup *fix, int action)
4786 {
4787 if (action == HDA_FIXUP_ACT_PROBE) {
4788 struct alc_spec *spec = codec->spec;
4789 spec->shutup = alc_no_shutup;
4790 }
4791 }
4792
4793 static void alc_fixup_disable_aamix(struct hda_codec *codec,
4794 const struct hda_fixup *fix, int action)
4795 {
4796 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4797 struct alc_spec *spec = codec->spec;
4798 /* Disable AA-loopback as it causes white noise */
4799 spec->gen.mixer_nid = 0;
4800 }
4801 }
4802
4803 /* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
4804 static void alc_fixup_tpt440_dock(struct hda_codec *codec,
4805 const struct hda_fixup *fix, int action)
4806 {
4807 static const struct hda_pintbl pincfgs[] = {
4808 { 0x16, 0x21211010 }, /* dock headphone */
4809 { 0x19, 0x21a11010 }, /* dock mic */
4810 { }
4811 };
4812 struct alc_spec *spec = codec->spec;
4813
4814 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4815 spec->shutup = alc_no_shutup; /* reduce click noise */
4816 spec->reboot_notify = alc_d3_at_reboot; /* reduce noise */
4817 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
4818 codec->power_save_node = 0; /* avoid click noises */
4819 snd_hda_apply_pincfgs(codec, pincfgs);
4820 }
4821 }
4822
4823 static void alc_shutup_dell_xps13(struct hda_codec *codec)
4824 {
4825 struct alc_spec *spec = codec->spec;
4826 int hp_pin = spec->gen.autocfg.hp_pins[0];
4827
4828 /* Prevent pop noises when headphones are plugged in */
4829 snd_hda_codec_write(codec, hp_pin, 0,
4830 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4831 msleep(20);
4832 }
4833
4834 static void alc_fixup_dell_xps13(struct hda_codec *codec,
4835 const struct hda_fixup *fix, int action)
4836 {
4837 struct alc_spec *spec = codec->spec;
4838 struct hda_input_mux *imux = &spec->gen.input_mux;
4839 int i;
4840
4841 switch (action) {
4842 case HDA_FIXUP_ACT_PRE_PROBE:
4843 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
4844 * it causes a click noise at start up
4845 */
4846 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
4847 break;
4848 case HDA_FIXUP_ACT_PROBE:
4849 spec->shutup = alc_shutup_dell_xps13;
4850
4851 /* Make the internal mic the default input source. */
4852 for (i = 0; i < imux->num_items; i++) {
4853 if (spec->gen.imux_pins[i] == 0x12) {
4854 spec->gen.cur_mux[0] = i;
4855 break;
4856 }
4857 }
4858 break;
4859 }
4860 }
4861
4862 static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
4863 const struct hda_fixup *fix, int action)
4864 {
4865 struct alc_spec *spec = codec->spec;
4866
4867 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4868 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
4869 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
4870
4871 /* Disable boost for mic-in permanently. (This code is only called
4872 from quirks that guarantee that the headphone is at NID 0x1b.) */
4873 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
4874 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
4875 } else
4876 alc_fixup_headset_mode(codec, fix, action);
4877 }
4878
4879 static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
4880 const struct hda_fixup *fix, int action)
4881 {
4882 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4883 alc_write_coef_idx(codec, 0xc4, 0x8000);
4884 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
4885 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
4886 }
4887 alc_fixup_headset_mode(codec, fix, action);
4888 }
4889
4890 /* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
4891 static int find_ext_mic_pin(struct hda_codec *codec)
4892 {
4893 struct alc_spec *spec = codec->spec;
4894 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4895 hda_nid_t nid;
4896 unsigned int defcfg;
4897 int i;
4898
4899 for (i = 0; i < cfg->num_inputs; i++) {
4900 if (cfg->inputs[i].type != AUTO_PIN_MIC)
4901 continue;
4902 nid = cfg->inputs[i].pin;
4903 defcfg = snd_hda_codec_get_pincfg(codec, nid);
4904 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
4905 continue;
4906 return nid;
4907 }
4908
4909 return 0;
4910 }
4911
4912 static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
4913 const struct hda_fixup *fix,
4914 int action)
4915 {
4916 struct alc_spec *spec = codec->spec;
4917
4918 if (action == HDA_FIXUP_ACT_PROBE) {
4919 int mic_pin = find_ext_mic_pin(codec);
4920 int hp_pin = spec->gen.autocfg.hp_pins[0];
4921
4922 if (snd_BUG_ON(!mic_pin || !hp_pin))
4923 return;
4924 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
4925 }
4926 }
4927
4928 static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
4929 const struct hda_fixup *fix,
4930 int action)
4931 {
4932 struct alc_spec *spec = codec->spec;
4933 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
4934 int i;
4935
4936 /* The mic boosts on level 2 and 3 are too noisy
4937 on the internal mic input.
4938 Therefore limit the boost to 0 or 1. */
4939
4940 if (action != HDA_FIXUP_ACT_PROBE)
4941 return;
4942
4943 for (i = 0; i < cfg->num_inputs; i++) {
4944 hda_nid_t nid = cfg->inputs[i].pin;
4945 unsigned int defcfg;
4946 if (cfg->inputs[i].type != AUTO_PIN_MIC)
4947 continue;
4948 defcfg = snd_hda_codec_get_pincfg(codec, nid);
4949 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
4950 continue;
4951
4952 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
4953 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
4954 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
4955 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
4956 (0 << AC_AMPCAP_MUTE_SHIFT));
4957 }
4958 }
4959
4960 static void alc283_hp_automute_hook(struct hda_codec *codec,
4961 struct hda_jack_callback *jack)
4962 {
4963 struct alc_spec *spec = codec->spec;
4964 int vref;
4965
4966 msleep(200);
4967 snd_hda_gen_hp_automute(codec, jack);
4968
4969 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
4970
4971 msleep(600);
4972 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4973 vref);
4974 }
4975
4976 static void alc283_fixup_chromebook(struct hda_codec *codec,
4977 const struct hda_fixup *fix, int action)
4978 {
4979 struct alc_spec *spec = codec->spec;
4980
4981 switch (action) {
4982 case HDA_FIXUP_ACT_PRE_PROBE:
4983 snd_hda_override_wcaps(codec, 0x03, 0);
4984 /* Disable AA-loopback as it causes white noise */
4985 spec->gen.mixer_nid = 0;
4986 break;
4987 case HDA_FIXUP_ACT_INIT:
4988 /* MIC2-VREF control */
4989 /* Set to manual mode */
4990 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
4991 /* Enable Line1 input control by verb */
4992 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
4993 break;
4994 }
4995 }
4996
4997 static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
4998 const struct hda_fixup *fix, int action)
4999 {
5000 struct alc_spec *spec = codec->spec;
5001
5002 switch (action) {
5003 case HDA_FIXUP_ACT_PRE_PROBE:
5004 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
5005 break;
5006 case HDA_FIXUP_ACT_INIT:
5007 /* MIC2-VREF control */
5008 /* Set to manual mode */
5009 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
5010 break;
5011 }
5012 }
5013
5014 /* mute tablet speaker pin (0x14) via dock plugging in addition */
5015 static void asus_tx300_automute(struct hda_codec *codec)
5016 {
5017 struct alc_spec *spec = codec->spec;
5018 snd_hda_gen_update_outputs(codec);
5019 if (snd_hda_jack_detect(codec, 0x1b))
5020 spec->gen.mute_bits |= (1ULL << 0x14);
5021 }
5022
5023 static void alc282_fixup_asus_tx300(struct hda_codec *codec,
5024 const struct hda_fixup *fix, int action)
5025 {
5026 struct alc_spec *spec = codec->spec;
5027 /* TX300 needs to set up GPIO2 for the speaker amp */
5028 static const struct hda_verb gpio2_verbs[] = {
5029 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
5030 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
5031 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
5032 {}
5033 };
5034 static const struct hda_pintbl dock_pins[] = {
5035 { 0x1b, 0x21114000 }, /* dock speaker pin */
5036 {}
5037 };
5038
5039 switch (action) {
5040 case HDA_FIXUP_ACT_PRE_PROBE:
5041 snd_hda_add_verbs(codec, gpio2_verbs);
5042 snd_hda_apply_pincfgs(codec, dock_pins);
5043 spec->gen.auto_mute_via_amp = 1;
5044 spec->gen.automute_hook = asus_tx300_automute;
5045 snd_hda_jack_detect_enable_callback(codec, 0x1b,
5046 snd_hda_gen_hp_automute);
5047 break;
5048 case HDA_FIXUP_ACT_BUILD:
5049 /* this is a bit tricky; give more sane names for the main
5050 * (tablet) speaker and the dock speaker, respectively
5051 */
5052 rename_ctl(codec, "Speaker Playback Switch",
5053 "Dock Speaker Playback Switch");
5054 rename_ctl(codec, "Bass Speaker Playback Switch",
5055 "Speaker Playback Switch");
5056 break;
5057 }
5058 }
5059
5060 static void alc290_fixup_mono_speakers(struct hda_codec *codec,
5061 const struct hda_fixup *fix, int action)
5062 {
5063 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5064 /* DAC node 0x03 is giving mono output. We therefore want to
5065 make sure 0x14 (front speaker) and 0x15 (headphones) use the
5066 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
5067 hda_nid_t conn1[2] = { 0x0c };
5068 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5069 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
5070 }
5071 }
5072
5073 static void alc298_fixup_speaker_volume(struct hda_codec *codec,
5074 const struct hda_fixup *fix, int action)
5075 {
5076 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5077 /* The speaker is routed to the Node 0x06 by a mistake, as a result
5078 we can't adjust the speaker's volume since this node does not has
5079 Amp-out capability. we change the speaker's route to:
5080 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
5081 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
5082 speaker's volume now. */
5083
5084 hda_nid_t conn1[1] = { 0x0c };
5085 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
5086 }
5087 }
5088
5089 /* Hook to update amp GPIO4 for automute */
5090 static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
5091 struct hda_jack_callback *jack)
5092 {
5093 struct alc_spec *spec = codec->spec;
5094
5095 snd_hda_gen_hp_automute(codec, jack);
5096 /* mute_led_polarity is set to 0, so we pass inverted value here */
5097 alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
5098 }
5099
5100 /* Manage GPIOs for HP EliteBook Folio 9480m.
5101 *
5102 * GPIO4 is the headphone amplifier power control
5103 * GPIO3 is the audio output mute indicator LED
5104 */
5105
5106 static void alc280_fixup_hp_9480m(struct hda_codec *codec,
5107 const struct hda_fixup *fix,
5108 int action)
5109 {
5110 struct alc_spec *spec = codec->spec;
5111 static const struct hda_verb gpio_init[] = {
5112 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
5113 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
5114 {}
5115 };
5116
5117 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5118 /* Set the hooks to turn the headphone amp on/off
5119 * as needed
5120 */
5121 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
5122 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
5123
5124 /* The GPIOs are currently off */
5125 spec->gpio_led = 0;
5126
5127 /* GPIO3 is connected to the output mute LED,
5128 * high is on, low is off
5129 */
5130 spec->mute_led_polarity = 0;
5131 spec->gpio_mute_led_mask = 0x08;
5132
5133 /* Initialize GPIO configuration */
5134 snd_hda_add_verbs(codec, gpio_init);
5135 }
5136 }
5137
5138 static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
5139 const struct hda_fixup *fix,
5140 int action)
5141 {
5142 alc_fixup_dual_codecs(codec, fix, action);
5143 switch (action) {
5144 case HDA_FIXUP_ACT_PRE_PROBE:
5145 /* override card longname to provide a unique UCM profile */
5146 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
5147 break;
5148 case HDA_FIXUP_ACT_BUILD:
5149 /* rename Capture controls depending on the codec */
5150 rename_ctl(codec, "Capture Volume",
5151 codec->addr == 0 ?
5152 "Rear-Panel Capture Volume" :
5153 "Front-Panel Capture Volume");
5154 rename_ctl(codec, "Capture Switch",
5155 codec->addr == 0 ?
5156 "Rear-Panel Capture Switch" :
5157 "Front-Panel Capture Switch");
5158 break;
5159 }
5160 }
5161
5162 /* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
5163 static void alc274_fixup_bind_dacs(struct hda_codec *codec,
5164 const struct hda_fixup *fix, int action)
5165 {
5166 struct alc_spec *spec = codec->spec;
5167 static hda_nid_t preferred_pairs[] = {
5168 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
5169 0
5170 };
5171
5172 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5173 return;
5174
5175 spec->gen.preferred_dacs = preferred_pairs;
5176 }
5177
5178 /* for hda_fixup_thinkpad_acpi() */
5179 #include "thinkpad_helper.c"
5180
5181 /* for dell wmi mic mute led */
5182 #include "dell_wmi_helper.c"
5183
5184 enum {
5185 ALC269_FIXUP_SONY_VAIO,
5186 ALC275_FIXUP_SONY_VAIO_GPIO2,
5187 ALC269_FIXUP_DELL_M101Z,
5188 ALC269_FIXUP_SKU_IGNORE,
5189 ALC269_FIXUP_ASUS_G73JW,
5190 ALC269_FIXUP_LENOVO_EAPD,
5191 ALC275_FIXUP_SONY_HWEQ,
5192 ALC275_FIXUP_SONY_DISABLE_AAMIX,
5193 ALC271_FIXUP_DMIC,
5194 ALC269_FIXUP_PCM_44K,
5195 ALC269_FIXUP_STEREO_DMIC,
5196 ALC269_FIXUP_HEADSET_MIC,
5197 ALC269_FIXUP_QUANTA_MUTE,
5198 ALC269_FIXUP_LIFEBOOK,
5199 ALC269_FIXUP_LIFEBOOK_EXTMIC,
5200 ALC269_FIXUP_LIFEBOOK_HP_PIN,
5201 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
5202 ALC269_FIXUP_AMIC,
5203 ALC269_FIXUP_DMIC,
5204 ALC269VB_FIXUP_AMIC,
5205 ALC269VB_FIXUP_DMIC,
5206 ALC269_FIXUP_HP_MUTE_LED,
5207 ALC269_FIXUP_HP_MUTE_LED_MIC1,
5208 ALC269_FIXUP_HP_MUTE_LED_MIC2,
5209 ALC269_FIXUP_HP_GPIO_LED,
5210 ALC269_FIXUP_HP_GPIO_MIC1_LED,
5211 ALC269_FIXUP_HP_LINE1_MIC1_LED,
5212 ALC269_FIXUP_INV_DMIC,
5213 ALC269_FIXUP_LENOVO_DOCK,
5214 ALC269_FIXUP_NO_SHUTUP,
5215 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
5216 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
5217 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5218 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
5219 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5220 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
5221 ALC269_FIXUP_HEADSET_MODE,
5222 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
5223 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
5224 ALC269_FIXUP_ASUS_X101_FUNC,
5225 ALC269_FIXUP_ASUS_X101_VERB,
5226 ALC269_FIXUP_ASUS_X101,
5227 ALC271_FIXUP_AMIC_MIC2,
5228 ALC271_FIXUP_HP_GATE_MIC_JACK,
5229 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
5230 ALC269_FIXUP_ACER_AC700,
5231 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
5232 ALC269VB_FIXUP_ASUS_ZENBOOK,
5233 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
5234 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
5235 ALC269VB_FIXUP_ORDISSIMO_EVE2,
5236 ALC283_FIXUP_CHROME_BOOK,
5237 ALC283_FIXUP_SENSE_COMBO_JACK,
5238 ALC282_FIXUP_ASUS_TX300,
5239 ALC283_FIXUP_INT_MIC,
5240 ALC290_FIXUP_MONO_SPEAKERS,
5241 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5242 ALC290_FIXUP_SUBWOOFER,
5243 ALC290_FIXUP_SUBWOOFER_HSJACK,
5244 ALC269_FIXUP_THINKPAD_ACPI,
5245 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5246 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
5247 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
5248 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
5249 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
5250 ALC255_FIXUP_HEADSET_MODE,
5251 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
5252 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
5253 ALC292_FIXUP_TPT440_DOCK,
5254 ALC292_FIXUP_TPT440,
5255 ALC283_FIXUP_HEADSET_MIC,
5256 ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED,
5257 ALC282_FIXUP_ASPIRE_V5_PINS,
5258 ALC280_FIXUP_HP_GPIO4,
5259 ALC286_FIXUP_HP_GPIO_LED,
5260 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
5261 ALC280_FIXUP_HP_DOCK_PINS,
5262 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
5263 ALC280_FIXUP_HP_9480M,
5264 ALC288_FIXUP_DELL_HEADSET_MODE,
5265 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
5266 ALC288_FIXUP_DELL_XPS_13_GPIO6,
5267 ALC288_FIXUP_DELL_XPS_13,
5268 ALC288_FIXUP_DISABLE_AAMIX,
5269 ALC292_FIXUP_DELL_E7X,
5270 ALC292_FIXUP_DISABLE_AAMIX,
5271 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
5272 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
5273 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
5274 ALC275_FIXUP_DELL_XPS,
5275 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
5276 ALC293_FIXUP_LENOVO_SPK_NOISE,
5277 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
5278 ALC255_FIXUP_DELL_SPK_NOISE,
5279 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
5280 ALC280_FIXUP_HP_HEADSET_MIC,
5281 ALC221_FIXUP_HP_FRONT_MIC,
5282 ALC292_FIXUP_TPT460,
5283 ALC298_FIXUP_SPK_VOLUME,
5284 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
5285 ALC269_FIXUP_ATIV_BOOK_8,
5286 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
5287 ALC256_FIXUP_ASUS_HEADSET_MODE,
5288 ALC256_FIXUP_ASUS_MIC,
5289 ALC256_FIXUP_ASUS_AIO_GPIO2,
5290 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5291 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
5292 ALC233_FIXUP_LENOVO_MULTI_CODECS,
5293 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5294 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
5295 ALC274_FIXUP_DELL_BIND_DACS,
5296 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
5297 };
5298
5299 static const struct hda_fixup alc269_fixups[] = {
5300 [ALC269_FIXUP_SONY_VAIO] = {
5301 .type = HDA_FIXUP_PINCTLS,
5302 .v.pins = (const struct hda_pintbl[]) {
5303 {0x19, PIN_VREFGRD},
5304 {}
5305 }
5306 },
5307 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5308 .type = HDA_FIXUP_VERBS,
5309 .v.verbs = (const struct hda_verb[]) {
5310 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
5311 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
5312 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5313 { }
5314 },
5315 .chained = true,
5316 .chain_id = ALC269_FIXUP_SONY_VAIO
5317 },
5318 [ALC269_FIXUP_DELL_M101Z] = {
5319 .type = HDA_FIXUP_VERBS,
5320 .v.verbs = (const struct hda_verb[]) {
5321 /* Enables internal speaker */
5322 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5323 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5324 {}
5325 }
5326 },
5327 [ALC269_FIXUP_SKU_IGNORE] = {
5328 .type = HDA_FIXUP_FUNC,
5329 .v.func = alc_fixup_sku_ignore,
5330 },
5331 [ALC269_FIXUP_ASUS_G73JW] = {
5332 .type = HDA_FIXUP_PINS,
5333 .v.pins = (const struct hda_pintbl[]) {
5334 { 0x17, 0x99130111 }, /* subwoofer */
5335 { }
5336 }
5337 },
5338 [ALC269_FIXUP_LENOVO_EAPD] = {
5339 .type = HDA_FIXUP_VERBS,
5340 .v.verbs = (const struct hda_verb[]) {
5341 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5342 {}
5343 }
5344 },
5345 [ALC275_FIXUP_SONY_HWEQ] = {
5346 .type = HDA_FIXUP_FUNC,
5347 .v.func = alc269_fixup_hweq,
5348 .chained = true,
5349 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5350 },
5351 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5352 .type = HDA_FIXUP_FUNC,
5353 .v.func = alc_fixup_disable_aamix,
5354 .chained = true,
5355 .chain_id = ALC269_FIXUP_SONY_VAIO
5356 },
5357 [ALC271_FIXUP_DMIC] = {
5358 .type = HDA_FIXUP_FUNC,
5359 .v.func = alc271_fixup_dmic,
5360 },
5361 [ALC269_FIXUP_PCM_44K] = {
5362 .type = HDA_FIXUP_FUNC,
5363 .v.func = alc269_fixup_pcm_44k,
5364 .chained = true,
5365 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5366 },
5367 [ALC269_FIXUP_STEREO_DMIC] = {
5368 .type = HDA_FIXUP_FUNC,
5369 .v.func = alc269_fixup_stereo_dmic,
5370 },
5371 [ALC269_FIXUP_HEADSET_MIC] = {
5372 .type = HDA_FIXUP_FUNC,
5373 .v.func = alc269_fixup_headset_mic,
5374 },
5375 [ALC269_FIXUP_QUANTA_MUTE] = {
5376 .type = HDA_FIXUP_FUNC,
5377 .v.func = alc269_fixup_quanta_mute,
5378 },
5379 [ALC269_FIXUP_LIFEBOOK] = {
5380 .type = HDA_FIXUP_PINS,
5381 .v.pins = (const struct hda_pintbl[]) {
5382 { 0x1a, 0x2101103f }, /* dock line-out */
5383 { 0x1b, 0x23a11040 }, /* dock mic-in */
5384 { }
5385 },
5386 .chained = true,
5387 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5388 },
5389 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
5390 .type = HDA_FIXUP_PINS,
5391 .v.pins = (const struct hda_pintbl[]) {
5392 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
5393 { }
5394 },
5395 },
5396 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
5397 .type = HDA_FIXUP_PINS,
5398 .v.pins = (const struct hda_pintbl[]) {
5399 { 0x21, 0x0221102f }, /* HP out */
5400 { }
5401 },
5402 },
5403 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
5404 .type = HDA_FIXUP_FUNC,
5405 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5406 },
5407 [ALC269_FIXUP_AMIC] = {
5408 .type = HDA_FIXUP_PINS,
5409 .v.pins = (const struct hda_pintbl[]) {
5410 { 0x14, 0x99130110 }, /* speaker */
5411 { 0x15, 0x0121401f }, /* HP out */
5412 { 0x18, 0x01a19c20 }, /* mic */
5413 { 0x19, 0x99a3092f }, /* int-mic */
5414 { }
5415 },
5416 },
5417 [ALC269_FIXUP_DMIC] = {
5418 .type = HDA_FIXUP_PINS,
5419 .v.pins = (const struct hda_pintbl[]) {
5420 { 0x12, 0x99a3092f }, /* int-mic */
5421 { 0x14, 0x99130110 }, /* speaker */
5422 { 0x15, 0x0121401f }, /* HP out */
5423 { 0x18, 0x01a19c20 }, /* mic */
5424 { }
5425 },
5426 },
5427 [ALC269VB_FIXUP_AMIC] = {
5428 .type = HDA_FIXUP_PINS,
5429 .v.pins = (const struct hda_pintbl[]) {
5430 { 0x14, 0x99130110 }, /* speaker */
5431 { 0x18, 0x01a19c20 }, /* mic */
5432 { 0x19, 0x99a3092f }, /* int-mic */
5433 { 0x21, 0x0121401f }, /* HP out */
5434 { }
5435 },
5436 },
5437 [ALC269VB_FIXUP_DMIC] = {
5438 .type = HDA_FIXUP_PINS,
5439 .v.pins = (const struct hda_pintbl[]) {
5440 { 0x12, 0x99a3092f }, /* int-mic */
5441 { 0x14, 0x99130110 }, /* speaker */
5442 { 0x18, 0x01a19c20 }, /* mic */
5443 { 0x21, 0x0121401f }, /* HP out */
5444 { }
5445 },
5446 },
5447 [ALC269_FIXUP_HP_MUTE_LED] = {
5448 .type = HDA_FIXUP_FUNC,
5449 .v.func = alc269_fixup_hp_mute_led,
5450 },
5451 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
5452 .type = HDA_FIXUP_FUNC,
5453 .v.func = alc269_fixup_hp_mute_led_mic1,
5454 },
5455 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
5456 .type = HDA_FIXUP_FUNC,
5457 .v.func = alc269_fixup_hp_mute_led_mic2,
5458 },
5459 [ALC269_FIXUP_HP_GPIO_LED] = {
5460 .type = HDA_FIXUP_FUNC,
5461 .v.func = alc269_fixup_hp_gpio_led,
5462 },
5463 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
5464 .type = HDA_FIXUP_FUNC,
5465 .v.func = alc269_fixup_hp_gpio_mic1_led,
5466 },
5467 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
5468 .type = HDA_FIXUP_FUNC,
5469 .v.func = alc269_fixup_hp_line1_mic1_led,
5470 },
5471 [ALC269_FIXUP_INV_DMIC] = {
5472 .type = HDA_FIXUP_FUNC,
5473 .v.func = alc_fixup_inv_dmic,
5474 },
5475 [ALC269_FIXUP_NO_SHUTUP] = {
5476 .type = HDA_FIXUP_FUNC,
5477 .v.func = alc_fixup_no_shutup,
5478 },
5479 [ALC269_FIXUP_LENOVO_DOCK] = {
5480 .type = HDA_FIXUP_PINS,
5481 .v.pins = (const struct hda_pintbl[]) {
5482 { 0x19, 0x23a11040 }, /* dock mic */
5483 { 0x1b, 0x2121103f }, /* dock headphone */
5484 { }
5485 },
5486 .chained = true,
5487 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
5488 },
5489 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
5490 .type = HDA_FIXUP_FUNC,
5491 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5492 .chained = true,
5493 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
5494 },
5495 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5496 .type = HDA_FIXUP_PINS,
5497 .v.pins = (const struct hda_pintbl[]) {
5498 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5499 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5500 { }
5501 },
5502 .chained = true,
5503 .chain_id = ALC269_FIXUP_HEADSET_MODE
5504 },
5505 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
5506 .type = HDA_FIXUP_PINS,
5507 .v.pins = (const struct hda_pintbl[]) {
5508 { 0x16, 0x21014020 }, /* dock line out */
5509 { 0x19, 0x21a19030 }, /* dock mic */
5510 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5511 { }
5512 },
5513 .chained = true,
5514 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5515 },
5516 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
5517 .type = HDA_FIXUP_PINS,
5518 .v.pins = (const struct hda_pintbl[]) {
5519 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5520 { }
5521 },
5522 .chained = true,
5523 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
5524 },
5525 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
5526 .type = HDA_FIXUP_PINS,
5527 .v.pins = (const struct hda_pintbl[]) {
5528 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5529 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5530 { }
5531 },
5532 .chained = true,
5533 .chain_id = ALC269_FIXUP_HEADSET_MODE
5534 },
5535 [ALC269_FIXUP_HEADSET_MODE] = {
5536 .type = HDA_FIXUP_FUNC,
5537 .v.func = alc_fixup_headset_mode,
5538 .chained = true,
5539 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5540 },
5541 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
5542 .type = HDA_FIXUP_FUNC,
5543 .v.func = alc_fixup_headset_mode_no_hp_mic,
5544 },
5545 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
5546 .type = HDA_FIXUP_PINS,
5547 .v.pins = (const struct hda_pintbl[]) {
5548 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
5549 { }
5550 },
5551 .chained = true,
5552 .chain_id = ALC269_FIXUP_HEADSET_MODE,
5553 },
5554 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
5555 .type = HDA_FIXUP_PINS,
5556 .v.pins = (const struct hda_pintbl[]) {
5557 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5558 { }
5559 },
5560 .chained = true,
5561 .chain_id = ALC269_FIXUP_HEADSET_MIC
5562 },
5563 [ALC269_FIXUP_ASUS_X101_FUNC] = {
5564 .type = HDA_FIXUP_FUNC,
5565 .v.func = alc269_fixup_x101_headset_mic,
5566 },
5567 [ALC269_FIXUP_ASUS_X101_VERB] = {
5568 .type = HDA_FIXUP_VERBS,
5569 .v.verbs = (const struct hda_verb[]) {
5570 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
5571 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
5572 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
5573 { }
5574 },
5575 .chained = true,
5576 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
5577 },
5578 [ALC269_FIXUP_ASUS_X101] = {
5579 .type = HDA_FIXUP_PINS,
5580 .v.pins = (const struct hda_pintbl[]) {
5581 { 0x18, 0x04a1182c }, /* Headset mic */
5582 { }
5583 },
5584 .chained = true,
5585 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
5586 },
5587 [ALC271_FIXUP_AMIC_MIC2] = {
5588 .type = HDA_FIXUP_PINS,
5589 .v.pins = (const struct hda_pintbl[]) {
5590 { 0x14, 0x99130110 }, /* speaker */
5591 { 0x19, 0x01a19c20 }, /* mic */
5592 { 0x1b, 0x99a7012f }, /* int-mic */
5593 { 0x21, 0x0121401f }, /* HP out */
5594 { }
5595 },
5596 },
5597 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
5598 .type = HDA_FIXUP_FUNC,
5599 .v.func = alc271_hp_gate_mic_jack,
5600 .chained = true,
5601 .chain_id = ALC271_FIXUP_AMIC_MIC2,
5602 },
5603 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
5604 .type = HDA_FIXUP_FUNC,
5605 .v.func = alc269_fixup_limit_int_mic_boost,
5606 .chained = true,
5607 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
5608 },
5609 [ALC269_FIXUP_ACER_AC700] = {
5610 .type = HDA_FIXUP_PINS,
5611 .v.pins = (const struct hda_pintbl[]) {
5612 { 0x12, 0x99a3092f }, /* int-mic */
5613 { 0x14, 0x99130110 }, /* speaker */
5614 { 0x18, 0x03a11c20 }, /* mic */
5615 { 0x1e, 0x0346101e }, /* SPDIF1 */
5616 { 0x21, 0x0321101f }, /* HP out */
5617 { }
5618 },
5619 .chained = true,
5620 .chain_id = ALC271_FIXUP_DMIC,
5621 },
5622 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
5623 .type = HDA_FIXUP_FUNC,
5624 .v.func = alc269_fixup_limit_int_mic_boost,
5625 .chained = true,
5626 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
5627 },
5628 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
5629 .type = HDA_FIXUP_FUNC,
5630 .v.func = alc269_fixup_limit_int_mic_boost,
5631 .chained = true,
5632 .chain_id = ALC269VB_FIXUP_DMIC,
5633 },
5634 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
5635 .type = HDA_FIXUP_VERBS,
5636 .v.verbs = (const struct hda_verb[]) {
5637 /* class-D output amp +5dB */
5638 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
5639 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
5640 {}
5641 },
5642 .chained = true,
5643 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
5644 },
5645 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
5646 .type = HDA_FIXUP_FUNC,
5647 .v.func = alc269_fixup_limit_int_mic_boost,
5648 .chained = true,
5649 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
5650 },
5651 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
5652 .type = HDA_FIXUP_PINS,
5653 .v.pins = (const struct hda_pintbl[]) {
5654 { 0x12, 0x99a3092f }, /* int-mic */
5655 { 0x18, 0x03a11d20 }, /* mic */
5656 { 0x19, 0x411111f0 }, /* Unused bogus pin */
5657 { }
5658 },
5659 },
5660 [ALC283_FIXUP_CHROME_BOOK] = {
5661 .type = HDA_FIXUP_FUNC,
5662 .v.func = alc283_fixup_chromebook,
5663 },
5664 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
5665 .type = HDA_FIXUP_FUNC,
5666 .v.func = alc283_fixup_sense_combo_jack,
5667 .chained = true,
5668 .chain_id = ALC283_FIXUP_CHROME_BOOK,
5669 },
5670 [ALC282_FIXUP_ASUS_TX300] = {
5671 .type = HDA_FIXUP_FUNC,
5672 .v.func = alc282_fixup_asus_tx300,
5673 },
5674 [ALC283_FIXUP_INT_MIC] = {
5675 .type = HDA_FIXUP_VERBS,
5676 .v.verbs = (const struct hda_verb[]) {
5677 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
5678 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
5679 { }
5680 },
5681 .chained = true,
5682 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5683 },
5684 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
5685 .type = HDA_FIXUP_PINS,
5686 .v.pins = (const struct hda_pintbl[]) {
5687 { 0x17, 0x90170112 }, /* subwoofer */
5688 { }
5689 },
5690 .chained = true,
5691 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5692 },
5693 [ALC290_FIXUP_SUBWOOFER] = {
5694 .type = HDA_FIXUP_PINS,
5695 .v.pins = (const struct hda_pintbl[]) {
5696 { 0x17, 0x90170112 }, /* subwoofer */
5697 { }
5698 },
5699 .chained = true,
5700 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
5701 },
5702 [ALC290_FIXUP_MONO_SPEAKERS] = {
5703 .type = HDA_FIXUP_FUNC,
5704 .v.func = alc290_fixup_mono_speakers,
5705 },
5706 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
5707 .type = HDA_FIXUP_FUNC,
5708 .v.func = alc290_fixup_mono_speakers,
5709 .chained = true,
5710 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
5711 },
5712 [ALC269_FIXUP_THINKPAD_ACPI] = {
5713 .type = HDA_FIXUP_FUNC,
5714 .v.func = hda_fixup_thinkpad_acpi,
5715 .chained = true,
5716 .chain_id = ALC269_FIXUP_SKU_IGNORE,
5717 },
5718 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
5719 .type = HDA_FIXUP_FUNC,
5720 .v.func = alc_fixup_inv_dmic,
5721 .chained = true,
5722 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
5723 },
5724 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
5725 .type = HDA_FIXUP_PINS,
5726 .v.pins = (const struct hda_pintbl[]) {
5727 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5728 { }
5729 },
5730 .chained = true,
5731 .chain_id = ALC255_FIXUP_HEADSET_MODE
5732 },
5733 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
5734 .type = HDA_FIXUP_PINS,
5735 .v.pins = (const struct hda_pintbl[]) {
5736 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5737 { }
5738 },
5739 .chained = true,
5740 .chain_id = ALC255_FIXUP_HEADSET_MODE
5741 },
5742 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5743 .type = HDA_FIXUP_PINS,
5744 .v.pins = (const struct hda_pintbl[]) {
5745 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5746 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5747 { }
5748 },
5749 .chained = true,
5750 .chain_id = ALC255_FIXUP_HEADSET_MODE
5751 },
5752 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
5753 .type = HDA_FIXUP_PINS,
5754 .v.pins = (const struct hda_pintbl[]) {
5755 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5756 { }
5757 },
5758 .chained = true,
5759 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
5760 },
5761 [ALC255_FIXUP_HEADSET_MODE] = {
5762 .type = HDA_FIXUP_FUNC,
5763 .v.func = alc_fixup_headset_mode_alc255,
5764 .chained = true,
5765 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5766 },
5767 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
5768 .type = HDA_FIXUP_FUNC,
5769 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
5770 },
5771 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5772 .type = HDA_FIXUP_PINS,
5773 .v.pins = (const struct hda_pintbl[]) {
5774 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5775 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5776 { }
5777 },
5778 .chained = true,
5779 .chain_id = ALC269_FIXUP_HEADSET_MODE
5780 },
5781 [ALC292_FIXUP_TPT440_DOCK] = {
5782 .type = HDA_FIXUP_FUNC,
5783 .v.func = alc_fixup_tpt440_dock,
5784 .chained = true,
5785 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
5786 },
5787 [ALC292_FIXUP_TPT440] = {
5788 .type = HDA_FIXUP_FUNC,
5789 .v.func = alc_fixup_disable_aamix,
5790 .chained = true,
5791 .chain_id = ALC292_FIXUP_TPT440_DOCK,
5792 },
5793 [ALC283_FIXUP_HEADSET_MIC] = {
5794 .type = HDA_FIXUP_PINS,
5795 .v.pins = (const struct hda_pintbl[]) {
5796 { 0x19, 0x04a110f0 },
5797 { },
5798 },
5799 },
5800 [ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED] = {
5801 .type = HDA_FIXUP_FUNC,
5802 .v.func = alc_fixup_dell_wmi,
5803 },
5804 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
5805 .type = HDA_FIXUP_PINS,
5806 .v.pins = (const struct hda_pintbl[]) {
5807 { 0x12, 0x90a60130 },
5808 { 0x14, 0x90170110 },
5809 { 0x17, 0x40000008 },
5810 { 0x18, 0x411111f0 },
5811 { 0x19, 0x01a1913c },
5812 { 0x1a, 0x411111f0 },
5813 { 0x1b, 0x411111f0 },
5814 { 0x1d, 0x40f89b2d },
5815 { 0x1e, 0x411111f0 },
5816 { 0x21, 0x0321101f },
5817 { },
5818 },
5819 },
5820 [ALC280_FIXUP_HP_GPIO4] = {
5821 .type = HDA_FIXUP_FUNC,
5822 .v.func = alc280_fixup_hp_gpio4,
5823 },
5824 [ALC286_FIXUP_HP_GPIO_LED] = {
5825 .type = HDA_FIXUP_FUNC,
5826 .v.func = alc286_fixup_hp_gpio_led,
5827 },
5828 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
5829 .type = HDA_FIXUP_FUNC,
5830 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
5831 },
5832 [ALC280_FIXUP_HP_DOCK_PINS] = {
5833 .type = HDA_FIXUP_PINS,
5834 .v.pins = (const struct hda_pintbl[]) {
5835 { 0x1b, 0x21011020 }, /* line-out */
5836 { 0x1a, 0x01a1903c }, /* headset mic */
5837 { 0x18, 0x2181103f }, /* line-in */
5838 { },
5839 },
5840 .chained = true,
5841 .chain_id = ALC280_FIXUP_HP_GPIO4
5842 },
5843 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
5844 .type = HDA_FIXUP_PINS,
5845 .v.pins = (const struct hda_pintbl[]) {
5846 { 0x1b, 0x21011020 }, /* line-out */
5847 { 0x18, 0x2181103f }, /* line-in */
5848 { },
5849 },
5850 .chained = true,
5851 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
5852 },
5853 [ALC280_FIXUP_HP_9480M] = {
5854 .type = HDA_FIXUP_FUNC,
5855 .v.func = alc280_fixup_hp_9480m,
5856 },
5857 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
5858 .type = HDA_FIXUP_FUNC,
5859 .v.func = alc_fixup_headset_mode_dell_alc288,
5860 .chained = true,
5861 .chain_id = ALC255_FIXUP_DELL_WMI_MIC_MUTE_LED
5862 },
5863 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5864 .type = HDA_FIXUP_PINS,
5865 .v.pins = (const struct hda_pintbl[]) {
5866 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5867 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5868 { }
5869 },
5870 .chained = true,
5871 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
5872 },
5873 [ALC288_FIXUP_DELL_XPS_13_GPIO6] = {
5874 .type = HDA_FIXUP_VERBS,
5875 .v.verbs = (const struct hda_verb[]) {
5876 {0x01, AC_VERB_SET_GPIO_MASK, 0x40},
5877 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x40},
5878 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5879 { }
5880 },
5881 .chained = true,
5882 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
5883 },
5884 [ALC288_FIXUP_DISABLE_AAMIX] = {
5885 .type = HDA_FIXUP_FUNC,
5886 .v.func = alc_fixup_disable_aamix,
5887 .chained = true,
5888 .chain_id = ALC288_FIXUP_DELL_XPS_13_GPIO6
5889 },
5890 [ALC288_FIXUP_DELL_XPS_13] = {
5891 .type = HDA_FIXUP_FUNC,
5892 .v.func = alc_fixup_dell_xps13,
5893 .chained = true,
5894 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
5895 },
5896 [ALC292_FIXUP_DISABLE_AAMIX] = {
5897 .type = HDA_FIXUP_FUNC,
5898 .v.func = alc_fixup_disable_aamix,
5899 .chained = true,
5900 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
5901 },
5902 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
5903 .type = HDA_FIXUP_FUNC,
5904 .v.func = alc_fixup_disable_aamix,
5905 .chained = true,
5906 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
5907 },
5908 [ALC292_FIXUP_DELL_E7X] = {
5909 .type = HDA_FIXUP_FUNC,
5910 .v.func = alc_fixup_dell_xps13,
5911 .chained = true,
5912 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
5913 },
5914 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5915 .type = HDA_FIXUP_PINS,
5916 .v.pins = (const struct hda_pintbl[]) {
5917 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5918 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
5919 { }
5920 },
5921 .chained = true,
5922 .chain_id = ALC269_FIXUP_HEADSET_MODE
5923 },
5924 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
5925 .type = HDA_FIXUP_PINS,
5926 .v.pins = (const struct hda_pintbl[]) {
5927 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
5928 { }
5929 },
5930 .chained = true,
5931 .chain_id = ALC269_FIXUP_HEADSET_MODE
5932 },
5933 [ALC275_FIXUP_DELL_XPS] = {
5934 .type = HDA_FIXUP_VERBS,
5935 .v.verbs = (const struct hda_verb[]) {
5936 /* Enables internal speaker */
5937 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
5938 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
5939 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
5940 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
5941 {}
5942 }
5943 },
5944 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
5945 .type = HDA_FIXUP_VERBS,
5946 .v.verbs = (const struct hda_verb[]) {
5947 /* Disable pass-through path for FRONT 14h */
5948 {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
5949 {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
5950 {}
5951 },
5952 .chained = true,
5953 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5954 },
5955 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
5956 .type = HDA_FIXUP_FUNC,
5957 .v.func = alc_fixup_disable_aamix,
5958 .chained = true,
5959 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
5960 },
5961 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
5962 .type = HDA_FIXUP_FUNC,
5963 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
5964 },
5965 [ALC255_FIXUP_DELL_SPK_NOISE] = {
5966 .type = HDA_FIXUP_FUNC,
5967 .v.func = alc_fixup_disable_aamix,
5968 .chained = true,
5969 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
5970 },
5971 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
5972 .type = HDA_FIXUP_VERBS,
5973 .v.verbs = (const struct hda_verb[]) {
5974 /* Disable pass-through path for FRONT 14h */
5975 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
5976 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
5977 {}
5978 },
5979 .chained = true,
5980 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
5981 },
5982 [ALC280_FIXUP_HP_HEADSET_MIC] = {
5983 .type = HDA_FIXUP_FUNC,
5984 .v.func = alc_fixup_disable_aamix,
5985 .chained = true,
5986 .chain_id = ALC269_FIXUP_HEADSET_MIC,
5987 },
5988 [ALC221_FIXUP_HP_FRONT_MIC] = {
5989 .type = HDA_FIXUP_PINS,
5990 .v.pins = (const struct hda_pintbl[]) {
5991 { 0x19, 0x02a19020 }, /* Front Mic */
5992 { }
5993 },
5994 },
5995 [ALC292_FIXUP_TPT460] = {
5996 .type = HDA_FIXUP_FUNC,
5997 .v.func = alc_fixup_tpt440_dock,
5998 .chained = true,
5999 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6000 },
6001 [ALC298_FIXUP_SPK_VOLUME] = {
6002 .type = HDA_FIXUP_FUNC,
6003 .v.func = alc298_fixup_speaker_volume,
6004 .chained = true,
6005 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6006 },
6007 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6008 .type = HDA_FIXUP_PINS,
6009 .v.pins = (const struct hda_pintbl[]) {
6010 { 0x1b, 0x90170151 },
6011 { }
6012 },
6013 .chained = true,
6014 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6015 },
6016 [ALC269_FIXUP_ATIV_BOOK_8] = {
6017 .type = HDA_FIXUP_FUNC,
6018 .v.func = alc_fixup_auto_mute_via_amp,
6019 .chained = true,
6020 .chain_id = ALC269_FIXUP_NO_SHUTUP
6021 },
6022 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6023 .type = HDA_FIXUP_PINS,
6024 .v.pins = (const struct hda_pintbl[]) {
6025 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6026 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6027 { }
6028 },
6029 .chained = true,
6030 .chain_id = ALC269_FIXUP_HEADSET_MODE
6031 },
6032 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6033 .type = HDA_FIXUP_FUNC,
6034 .v.func = alc_fixup_headset_mode,
6035 },
6036 [ALC256_FIXUP_ASUS_MIC] = {
6037 .type = HDA_FIXUP_PINS,
6038 .v.pins = (const struct hda_pintbl[]) {
6039 { 0x13, 0x90a60160 }, /* use as internal mic */
6040 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6041 { }
6042 },
6043 .chained = true,
6044 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6045 },
6046 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
6047 .type = HDA_FIXUP_VERBS,
6048 .v.verbs = (const struct hda_verb[]) {
6049 /* Set up GPIO2 for the speaker amp */
6050 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
6051 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
6052 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
6053 {}
6054 },
6055 },
6056 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6057 .type = HDA_FIXUP_PINS,
6058 .v.pins = (const struct hda_pintbl[]) {
6059 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6060 { }
6061 },
6062 .chained = true,
6063 .chain_id = ALC269_FIXUP_HEADSET_MIC
6064 },
6065 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6066 .type = HDA_FIXUP_VERBS,
6067 .v.verbs = (const struct hda_verb[]) {
6068 /* Enables internal speaker */
6069 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6070 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6071 {}
6072 },
6073 .chained = true,
6074 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6075 },
6076 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6077 .type = HDA_FIXUP_FUNC,
6078 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6079 },
6080 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6081 .type = HDA_FIXUP_PINS,
6082 .v.pins = (const struct hda_pintbl[]) {
6083 /* Change the mic location from front to right, otherwise there are
6084 two front mics with the same name, pulseaudio can't handle them.
6085 This is just a temporary workaround, after applying this fixup,
6086 there will be one "Front Mic" and one "Mic" in this machine.
6087 */
6088 { 0x1a, 0x04a19040 },
6089 { }
6090 },
6091 },
6092 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6093 .type = HDA_FIXUP_PINS,
6094 .v.pins = (const struct hda_pintbl[]) {
6095 { 0x16, 0x0101102f }, /* Rear Headset HP */
6096 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6097 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6098 { }
6099 },
6100 .chained = true,
6101 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6102 },
6103 [ALC274_FIXUP_DELL_BIND_DACS] = {
6104 .type = HDA_FIXUP_FUNC,
6105 .v.func = alc274_fixup_bind_dacs,
6106 .chained = true,
6107 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6108 },
6109 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6110 .type = HDA_FIXUP_PINS,
6111 .v.pins = (const struct hda_pintbl[]) {
6112 { 0x1b, 0x0401102f },
6113 { }
6114 },
6115 .chained = true,
6116 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6117 },
6118 };
6119
6120 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
6121 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
6122 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6123 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
6124 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
6125 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6126 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6127 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
6128 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
6129 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6130 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
6131 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
6132 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
6133 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6134 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
6135 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
6136 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
6137 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
6138 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
6139 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
6140 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6141 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6142 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6143 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6144 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
6145 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
6146 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
6147 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
6148 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6149 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6150 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
6151 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
6152 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
6153 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
6154 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6155 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6156 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6157 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6158 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6159 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6160 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
6161 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
6162 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
6163 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
6164 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE),
6165 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
6166 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
6167 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
6168 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6169 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
6170 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
6171 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
6172 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
6173 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
6174 /* ALC282 */
6175 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6176 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6177 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6178 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6179 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6180 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6181 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6182 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
6183 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6184 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6185 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6186 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6187 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
6188 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
6189 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
6190 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6191 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6192 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6193 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6194 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6195 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
6196 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6197 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6198 /* ALC290 */
6199 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6200 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6201 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6202 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6203 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6204 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6205 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6206 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6207 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6208 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
6209 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6210 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6211 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6212 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6213 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6214 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6215 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
6216 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6217 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6218 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6219 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6220 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6221 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6222 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6223 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6224 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6225 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6226 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6227 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
6228 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
6229 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
6230 SND_PCI_QUIRK(0x103c, 0x82bf, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6231 SND_PCI_QUIRK(0x103c, 0x82c0, "HP", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
6232 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
6233 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
6234 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6235 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
6236 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6237 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6238 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6239 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
6240 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
6241 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
6242 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
6243 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
6244 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
6245 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
6246 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6247 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
6248 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
6249 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
6250 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
6251 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6252 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
6253 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
6254 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6255 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6256 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6257 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6258 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
6259 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
6260 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
6261 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6262 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6263 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6264 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
6265 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
6266 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
6267 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
6268 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
6269 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
6270 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
6271 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
6272 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
6273 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
6274 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
6275 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6276 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6277 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6278 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6279 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
6280 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
6281 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
6282 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
6283 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
6284 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
6285 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
6286 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
6287 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
6288 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
6289 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6290 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
6291 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
6292 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6293 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
6294 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
6295 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
6296 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
6297 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
6298 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6299 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6300 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
6301 SND_PCI_QUIRK(0x17aa, 0x3112, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6302 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
6303 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
6304 SND_PCI_QUIRK(0x17aa, 0x3978, "IdeaPad Y410P", ALC269_FIXUP_NO_SHUTUP),
6305 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6306 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
6307 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
6308 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6309 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
6310 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
6311 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
6312 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
6313 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
6314 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
6315 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
6316 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
6317 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
6318 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
6319 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
6320 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
6321
6322 #if 0
6323 /* Below is a quirk table taken from the old code.
6324 * Basically the device should work as is without the fixup table.
6325 * If BIOS doesn't give a proper info, enable the corresponding
6326 * fixup entry.
6327 */
6328 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6329 ALC269_FIXUP_AMIC),
6330 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
6331 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6332 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6333 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6334 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6335 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6336 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6337 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6338 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6339 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6340 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6341 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6342 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6343 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6344 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6345 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6346 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6347 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6348 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6349 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6350 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6351 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6352 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6353 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6354 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6355 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6356 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6357 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6358 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6359 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6360 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6361 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6362 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6363 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6364 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6365 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6366 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6367 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6368 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6369 #endif
6370 {}
6371 };
6372
6373 static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
6374 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
6375 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
6376 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6377 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
6378 {}
6379 };
6380
6381 static const struct hda_model_fixup alc269_fixup_models[] = {
6382 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6383 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6384 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
6385 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
6386 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
6387 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
6388 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
6389 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
6390 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
6391 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
6392 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
6393 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
6394 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
6395 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
6396 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
6397 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
6398 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
6399 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
6400 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
6401 {}
6402 };
6403 #define ALC225_STANDARD_PINS \
6404 {0x21, 0x04211020}
6405
6406 #define ALC256_STANDARD_PINS \
6407 {0x12, 0x90a60140}, \
6408 {0x14, 0x90170110}, \
6409 {0x21, 0x02211020}
6410
6411 #define ALC282_STANDARD_PINS \
6412 {0x14, 0x90170110}
6413
6414 #define ALC290_STANDARD_PINS \
6415 {0x12, 0x99a30130}
6416
6417 #define ALC292_STANDARD_PINS \
6418 {0x14, 0x90170110}, \
6419 {0x15, 0x0221401f}
6420
6421 #define ALC295_STANDARD_PINS \
6422 {0x12, 0xb7a60130}, \
6423 {0x14, 0x90170110}, \
6424 {0x21, 0x04211020}
6425
6426 #define ALC298_STANDARD_PINS \
6427 {0x12, 0x90a60130}, \
6428 {0x21, 0x03211020}
6429
6430 static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
6431 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
6432 {0x12, 0x90a601c0},
6433 {0x14, 0x90171120},
6434 {0x21, 0x02211030}),
6435 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
6436 {0x14, 0x90170110},
6437 {0x1b, 0x90a70130},
6438 {0x21, 0x03211020}),
6439 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
6440 {0x1a, 0x90a70130},
6441 {0x1b, 0x90170110},
6442 {0x21, 0x03211020}),
6443 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6444 ALC225_STANDARD_PINS,
6445 {0x12, 0xb7a60130},
6446 {0x14, 0x901701a0}),
6447 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6448 ALC225_STANDARD_PINS,
6449 {0x12, 0xb7a60130},
6450 {0x14, 0x901701b0}),
6451 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6452 ALC225_STANDARD_PINS,
6453 {0x12, 0xb7a60150},
6454 {0x14, 0x901701a0}),
6455 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6456 ALC225_STANDARD_PINS,
6457 {0x12, 0xb7a60150},
6458 {0x14, 0x901701b0}),
6459 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
6460 ALC225_STANDARD_PINS,
6461 {0x12, 0xb7a60130},
6462 {0x1b, 0x90170110}),
6463 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6464 {0x12, 0x90a60140},
6465 {0x14, 0x90170110},
6466 {0x21, 0x02211020}),
6467 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6468 {0x12, 0x90a60140},
6469 {0x14, 0x90170150},
6470 {0x21, 0x02211020}),
6471 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
6472 {0x14, 0x90170110},
6473 {0x21, 0x02211020}),
6474 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6475 {0x14, 0x90170130},
6476 {0x21, 0x02211040}),
6477 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6478 {0x12, 0x90a60140},
6479 {0x14, 0x90170110},
6480 {0x21, 0x02211020}),
6481 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6482 {0x12, 0x90a60160},
6483 {0x14, 0x90170120},
6484 {0x21, 0x02211030}),
6485 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6486 {0x14, 0x90170110},
6487 {0x1b, 0x02011020},
6488 {0x21, 0x0221101f}),
6489 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6490 {0x14, 0x90170110},
6491 {0x1b, 0x01011020},
6492 {0x21, 0x0221101f}),
6493 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6494 {0x14, 0x90170130},
6495 {0x1b, 0x01014020},
6496 {0x21, 0x0221103f}),
6497 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6498 {0x14, 0x90170130},
6499 {0x1b, 0x01011020},
6500 {0x21, 0x0221103f}),
6501 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6502 {0x14, 0x90170130},
6503 {0x1b, 0x02011020},
6504 {0x21, 0x0221103f}),
6505 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6506 {0x14, 0x90170150},
6507 {0x1b, 0x02011020},
6508 {0x21, 0x0221105f}),
6509 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6510 {0x14, 0x90170110},
6511 {0x1b, 0x01014020},
6512 {0x21, 0x0221101f}),
6513 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6514 {0x12, 0x90a60160},
6515 {0x14, 0x90170120},
6516 {0x17, 0x90170140},
6517 {0x21, 0x0321102f}),
6518 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6519 {0x12, 0x90a60160},
6520 {0x14, 0x90170130},
6521 {0x21, 0x02211040}),
6522 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6523 {0x12, 0x90a60160},
6524 {0x14, 0x90170140},
6525 {0x21, 0x02211050}),
6526 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6527 {0x12, 0x90a60170},
6528 {0x14, 0x90170120},
6529 {0x21, 0x02211030}),
6530 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6531 {0x12, 0x90a60170},
6532 {0x14, 0x90170130},
6533 {0x21, 0x02211040}),
6534 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6535 {0x12, 0x90a60170},
6536 {0x14, 0x90171130},
6537 {0x21, 0x02211040}),
6538 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6539 {0x12, 0x90a60170},
6540 {0x14, 0x90170140},
6541 {0x21, 0x02211050}),
6542 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6543 {0x12, 0x90a60180},
6544 {0x14, 0x90170130},
6545 {0x21, 0x02211040}),
6546 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6547 {0x12, 0x90a60180},
6548 {0x14, 0x90170120},
6549 {0x21, 0x02211030}),
6550 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6551 {0x1b, 0x01011020},
6552 {0x21, 0x02211010}),
6553 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6554 {0x12, 0x90a60130},
6555 {0x14, 0x90170110},
6556 {0x1b, 0x01011020},
6557 {0x21, 0x0221101f}),
6558 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6559 {0x12, 0x90a60160},
6560 {0x14, 0x90170120},
6561 {0x21, 0x02211030}),
6562 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6563 {0x12, 0x90a60170},
6564 {0x14, 0x90170120},
6565 {0x21, 0x02211030}),
6566 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6567 {0x12, 0x90a60180},
6568 {0x14, 0x90170120},
6569 {0x21, 0x02211030}),
6570 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6571 {0x12, 0xb7a60130},
6572 {0x14, 0x90170110},
6573 {0x21, 0x02211020}),
6574 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
6575 ALC256_STANDARD_PINS),
6576 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
6577 {0x14, 0x90170110},
6578 {0x1b, 0x90a70130},
6579 {0x21, 0x04211020}),
6580 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
6581 {0x14, 0x90170110},
6582 {0x1b, 0x90a70130},
6583 {0x21, 0x03211020}),
6584 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
6585 {0x12, 0xb7a60130},
6586 {0x13, 0xb8a61140},
6587 {0x16, 0x90170110},
6588 {0x21, 0x04211020}),
6589 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
6590 {0x12, 0x90a60130},
6591 {0x14, 0x90170110},
6592 {0x15, 0x0421101f},
6593 {0x1a, 0x04a11020}),
6594 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
6595 {0x12, 0x90a60140},
6596 {0x14, 0x90170110},
6597 {0x15, 0x0421101f},
6598 {0x18, 0x02811030},
6599 {0x1a, 0x04a1103f},
6600 {0x1b, 0x02011020}),
6601 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6602 ALC282_STANDARD_PINS,
6603 {0x12, 0x99a30130},
6604 {0x19, 0x03a11020},
6605 {0x21, 0x0321101f}),
6606 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6607 ALC282_STANDARD_PINS,
6608 {0x12, 0x99a30130},
6609 {0x19, 0x03a11020},
6610 {0x21, 0x03211040}),
6611 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6612 ALC282_STANDARD_PINS,
6613 {0x12, 0x99a30130},
6614 {0x19, 0x03a11030},
6615 {0x21, 0x03211020}),
6616 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6617 ALC282_STANDARD_PINS,
6618 {0x12, 0x99a30130},
6619 {0x19, 0x04a11020},
6620 {0x21, 0x0421101f}),
6621 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
6622 ALC282_STANDARD_PINS,
6623 {0x12, 0x90a60140},
6624 {0x19, 0x04a11030},
6625 {0x21, 0x04211020}),
6626 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6627 ALC282_STANDARD_PINS,
6628 {0x12, 0x90a60130},
6629 {0x21, 0x0321101f}),
6630 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6631 {0x12, 0x90a60160},
6632 {0x14, 0x90170120},
6633 {0x21, 0x02211030}),
6634 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6635 ALC282_STANDARD_PINS,
6636 {0x12, 0x90a60130},
6637 {0x19, 0x03a11020},
6638 {0x21, 0x0321101f}),
6639 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL_XPS_13_GPIO6,
6640 {0x12, 0x90a60120},
6641 {0x14, 0x90170110},
6642 {0x21, 0x0321101f}),
6643 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6644 ALC290_STANDARD_PINS,
6645 {0x15, 0x04211040},
6646 {0x18, 0x90170112},
6647 {0x1a, 0x04a11020}),
6648 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6649 ALC290_STANDARD_PINS,
6650 {0x15, 0x04211040},
6651 {0x18, 0x90170110},
6652 {0x1a, 0x04a11020}),
6653 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6654 ALC290_STANDARD_PINS,
6655 {0x15, 0x0421101f},
6656 {0x1a, 0x04a11020}),
6657 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6658 ALC290_STANDARD_PINS,
6659 {0x15, 0x04211020},
6660 {0x1a, 0x04a11040}),
6661 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6662 ALC290_STANDARD_PINS,
6663 {0x14, 0x90170110},
6664 {0x15, 0x04211020},
6665 {0x1a, 0x04a11040}),
6666 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6667 ALC290_STANDARD_PINS,
6668 {0x14, 0x90170110},
6669 {0x15, 0x04211020},
6670 {0x1a, 0x04a11020}),
6671 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
6672 ALC290_STANDARD_PINS,
6673 {0x14, 0x90170110},
6674 {0x15, 0x0421101f},
6675 {0x1a, 0x04a11020}),
6676 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
6677 ALC292_STANDARD_PINS,
6678 {0x12, 0x90a60140},
6679 {0x16, 0x01014020},
6680 {0x19, 0x01a19030}),
6681 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
6682 ALC292_STANDARD_PINS,
6683 {0x12, 0x90a60140},
6684 {0x16, 0x01014020},
6685 {0x18, 0x02a19031},
6686 {0x19, 0x01a1903e}),
6687 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6688 ALC292_STANDARD_PINS,
6689 {0x12, 0x90a60140}),
6690 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
6691 ALC292_STANDARD_PINS,
6692 {0x13, 0x90a60140},
6693 {0x16, 0x21014020},
6694 {0x19, 0x21a19030}),
6695 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
6696 ALC292_STANDARD_PINS,
6697 {0x13, 0x90a60140}),
6698 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6699 ALC295_STANDARD_PINS,
6700 {0x17, 0x21014020},
6701 {0x18, 0x21a19030}),
6702 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6703 ALC295_STANDARD_PINS,
6704 {0x17, 0x21014040},
6705 {0x18, 0x21a19050}),
6706 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
6707 ALC295_STANDARD_PINS),
6708 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
6709 ALC298_STANDARD_PINS,
6710 {0x17, 0x90170110}),
6711 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
6712 ALC298_STANDARD_PINS,
6713 {0x17, 0x90170140}),
6714 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
6715 ALC298_STANDARD_PINS,
6716 {0x17, 0x90170150}),
6717 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
6718 {0x12, 0xb7a60140},
6719 {0x13, 0xb7a60150},
6720 {0x17, 0x90170110},
6721 {0x1a, 0x03011020},
6722 {0x21, 0x03211030}),
6723 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
6724 ALC225_STANDARD_PINS,
6725 {0x12, 0xb7a60130},
6726 {0x17, 0x90170110}),
6727 {}
6728 };
6729
6730 static void alc269_fill_coef(struct hda_codec *codec)
6731 {
6732 struct alc_spec *spec = codec->spec;
6733 int val;
6734
6735 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
6736 return;
6737
6738 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
6739 alc_write_coef_idx(codec, 0xf, 0x960b);
6740 alc_write_coef_idx(codec, 0xe, 0x8817);
6741 }
6742
6743 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
6744 alc_write_coef_idx(codec, 0xf, 0x960b);
6745 alc_write_coef_idx(codec, 0xe, 0x8814);
6746 }
6747
6748 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
6749 /* Power up output pin */
6750 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
6751 }
6752
6753 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
6754 val = alc_read_coef_idx(codec, 0xd);
6755 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
6756 /* Capless ramp up clock control */
6757 alc_write_coef_idx(codec, 0xd, val | (1<<10));
6758 }
6759 val = alc_read_coef_idx(codec, 0x17);
6760 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
6761 /* Class D power on reset */
6762 alc_write_coef_idx(codec, 0x17, val | (1<<7));
6763 }
6764 }
6765
6766 /* HP */
6767 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
6768 }
6769
6770 /*
6771 */
6772 static int patch_alc269(struct hda_codec *codec)
6773 {
6774 struct alc_spec *spec;
6775 int err;
6776
6777 err = alc_alloc_spec(codec, 0x0b);
6778 if (err < 0)
6779 return err;
6780
6781 spec = codec->spec;
6782 spec->gen.shared_mic_vref_pin = 0x18;
6783 codec->power_save_node = 1;
6784
6785 #ifdef CONFIG_PM
6786 codec->patch_ops.suspend = alc269_suspend;
6787 codec->patch_ops.resume = alc269_resume;
6788 #endif
6789 spec->shutup = alc_default_shutup;
6790 spec->init_hook = alc_default_init;
6791
6792 snd_hda_pick_fixup(codec, alc269_fixup_models,
6793 alc269_fixup_tbl, alc269_fixups);
6794 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups);
6795 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
6796 alc269_fixups);
6797 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6798
6799 alc_auto_parse_customize_define(codec);
6800
6801 if (has_cdefine_beep(codec))
6802 spec->gen.beep_nid = 0x01;
6803
6804 switch (codec->core.vendor_id) {
6805 case 0x10ec0269:
6806 spec->codec_variant = ALC269_TYPE_ALC269VA;
6807 switch (alc_get_coef0(codec) & 0x00f0) {
6808 case 0x0010:
6809 if (codec->bus->pci &&
6810 codec->bus->pci->subsystem_vendor == 0x1025 &&
6811 spec->cdefine.platform_type == 1)
6812 err = alc_codec_rename(codec, "ALC271X");
6813 spec->codec_variant = ALC269_TYPE_ALC269VB;
6814 break;
6815 case 0x0020:
6816 if (codec->bus->pci &&
6817 codec->bus->pci->subsystem_vendor == 0x17aa &&
6818 codec->bus->pci->subsystem_device == 0x21f3)
6819 err = alc_codec_rename(codec, "ALC3202");
6820 spec->codec_variant = ALC269_TYPE_ALC269VC;
6821 break;
6822 case 0x0030:
6823 spec->codec_variant = ALC269_TYPE_ALC269VD;
6824 break;
6825 default:
6826 alc_fix_pll_init(codec, 0x20, 0x04, 15);
6827 }
6828 if (err < 0)
6829 goto error;
6830 spec->shutup = alc269_shutup;
6831 spec->init_hook = alc269_fill_coef;
6832 alc269_fill_coef(codec);
6833 break;
6834
6835 case 0x10ec0280:
6836 case 0x10ec0290:
6837 spec->codec_variant = ALC269_TYPE_ALC280;
6838 break;
6839 case 0x10ec0282:
6840 spec->codec_variant = ALC269_TYPE_ALC282;
6841 spec->shutup = alc282_shutup;
6842 spec->init_hook = alc282_init;
6843 break;
6844 case 0x10ec0233:
6845 case 0x10ec0283:
6846 spec->codec_variant = ALC269_TYPE_ALC283;
6847 spec->shutup = alc283_shutup;
6848 spec->init_hook = alc283_init;
6849 break;
6850 case 0x10ec0284:
6851 case 0x10ec0292:
6852 spec->codec_variant = ALC269_TYPE_ALC284;
6853 break;
6854 case 0x10ec0293:
6855 spec->codec_variant = ALC269_TYPE_ALC293;
6856 break;
6857 case 0x10ec0286:
6858 case 0x10ec0288:
6859 spec->codec_variant = ALC269_TYPE_ALC286;
6860 spec->shutup = alc286_shutup;
6861 break;
6862 case 0x10ec0298:
6863 spec->codec_variant = ALC269_TYPE_ALC298;
6864 break;
6865 case 0x10ec0255:
6866 spec->codec_variant = ALC269_TYPE_ALC255;
6867 break;
6868 case 0x10ec0236:
6869 case 0x10ec0256:
6870 spec->codec_variant = ALC269_TYPE_ALC256;
6871 spec->shutup = alc256_shutup;
6872 spec->init_hook = alc256_init;
6873 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
6874 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
6875 break;
6876 case 0x10ec0257:
6877 spec->codec_variant = ALC269_TYPE_ALC257;
6878 spec->gen.mixer_nid = 0;
6879 break;
6880 case 0x10ec0215:
6881 case 0x10ec0285:
6882 case 0x10ec0289:
6883 spec->codec_variant = ALC269_TYPE_ALC215;
6884 spec->gen.mixer_nid = 0;
6885 break;
6886 case 0x10ec0225:
6887 case 0x10ec0295:
6888 spec->codec_variant = ALC269_TYPE_ALC225;
6889 spec->gen.mixer_nid = 0; /* no loopback on ALC225 ALC295 */
6890 break;
6891 case 0x10ec0299:
6892 spec->codec_variant = ALC269_TYPE_ALC225;
6893 spec->gen.mixer_nid = 0; /* no loopback on ALC299 */
6894 break;
6895 case 0x10ec0234:
6896 case 0x10ec0274:
6897 case 0x10ec0294:
6898 spec->codec_variant = ALC269_TYPE_ALC294;
6899 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
6900 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
6901 break;
6902 case 0x10ec0700:
6903 case 0x10ec0701:
6904 case 0x10ec0703:
6905 spec->codec_variant = ALC269_TYPE_ALC700;
6906 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
6907 alc_update_coef_idx(codec, 0x4a, 0, 1 << 15); /* Combo jack auto trigger control */
6908 break;
6909
6910 }
6911
6912 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
6913 spec->has_alc5505_dsp = 1;
6914 spec->init_hook = alc5505_dsp_init;
6915 }
6916
6917 /* automatic parse from the BIOS config */
6918 err = alc269_parse_auto_config(codec);
6919 if (err < 0)
6920 goto error;
6921
6922 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid)
6923 set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
6924
6925 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6926
6927 return 0;
6928
6929 error:
6930 alc_free(codec);
6931 return err;
6932 }
6933
6934 /*
6935 * ALC861
6936 */
6937
6938 static int alc861_parse_auto_config(struct hda_codec *codec)
6939 {
6940 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
6941 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6942 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
6943 }
6944
6945 /* Pin config fixes */
6946 enum {
6947 ALC861_FIXUP_FSC_AMILO_PI1505,
6948 ALC861_FIXUP_AMP_VREF_0F,
6949 ALC861_FIXUP_NO_JACK_DETECT,
6950 ALC861_FIXUP_ASUS_A6RP,
6951 ALC660_FIXUP_ASUS_W7J,
6952 };
6953
6954 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6955 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6956 const struct hda_fixup *fix, int action)
6957 {
6958 struct alc_spec *spec = codec->spec;
6959 unsigned int val;
6960
6961 if (action != HDA_FIXUP_ACT_INIT)
6962 return;
6963 val = snd_hda_codec_get_pin_target(codec, 0x0f);
6964 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6965 val |= AC_PINCTL_IN_EN;
6966 val |= AC_PINCTL_VREF_50;
6967 snd_hda_set_pin_ctl(codec, 0x0f, val);
6968 spec->gen.keep_vref_in_automute = 1;
6969 }
6970
6971 /* suppress the jack-detection */
6972 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6973 const struct hda_fixup *fix, int action)
6974 {
6975 if (action == HDA_FIXUP_ACT_PRE_PROBE)
6976 codec->no_jack_detect = 1;
6977 }
6978
6979 static const struct hda_fixup alc861_fixups[] = {
6980 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
6981 .type = HDA_FIXUP_PINS,
6982 .v.pins = (const struct hda_pintbl[]) {
6983 { 0x0b, 0x0221101f }, /* HP */
6984 { 0x0f, 0x90170310 }, /* speaker */
6985 { }
6986 }
6987 },
6988 [ALC861_FIXUP_AMP_VREF_0F] = {
6989 .type = HDA_FIXUP_FUNC,
6990 .v.func = alc861_fixup_asus_amp_vref_0f,
6991 },
6992 [ALC861_FIXUP_NO_JACK_DETECT] = {
6993 .type = HDA_FIXUP_FUNC,
6994 .v.func = alc_fixup_no_jack_detect,
6995 },
6996 [ALC861_FIXUP_ASUS_A6RP] = {
6997 .type = HDA_FIXUP_FUNC,
6998 .v.func = alc861_fixup_asus_amp_vref_0f,
6999 .chained = true,
7000 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
7001 },
7002 [ALC660_FIXUP_ASUS_W7J] = {
7003 .type = HDA_FIXUP_VERBS,
7004 .v.verbs = (const struct hda_verb[]) {
7005 /* ASUS W7J needs a magic pin setup on unused NID 0x10
7006 * for enabling outputs
7007 */
7008 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7009 { }
7010 },
7011 }
7012 };
7013
7014 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
7015 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
7016 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
7017 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
7018 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
7019 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
7020 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
7021 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
7022 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
7023 {}
7024 };
7025
7026 /*
7027 */
7028 static int patch_alc861(struct hda_codec *codec)
7029 {
7030 struct alc_spec *spec;
7031 int err;
7032
7033 err = alc_alloc_spec(codec, 0x15);
7034 if (err < 0)
7035 return err;
7036
7037 spec = codec->spec;
7038 spec->gen.beep_nid = 0x23;
7039
7040 #ifdef CONFIG_PM
7041 spec->power_hook = alc_power_eapd;
7042 #endif
7043
7044 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
7045 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
7046
7047 /* automatic parse from the BIOS config */
7048 err = alc861_parse_auto_config(codec);
7049 if (err < 0)
7050 goto error;
7051
7052 if (!spec->gen.no_analog)
7053 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
7054
7055 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
7056
7057 return 0;
7058
7059 error:
7060 alc_free(codec);
7061 return err;
7062 }
7063
7064 /*
7065 * ALC861-VD support
7066 *
7067 * Based on ALC882
7068 *
7069 * In addition, an independent DAC
7070 */
7071 static int alc861vd_parse_auto_config(struct hda_codec *codec)
7072 {
7073 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
7074 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7075 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
7076 }
7077
7078 enum {
7079 ALC660VD_FIX_ASUS_GPIO1,
7080 ALC861VD_FIX_DALLAS,
7081 };
7082
7083 /* exclude VREF80 */
7084 static void alc861vd_fixup_dallas(struct hda_codec *codec,
7085 const struct hda_fixup *fix, int action)
7086 {
7087 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7088 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
7089 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
7090 }
7091 }
7092
7093 static const struct hda_fixup alc861vd_fixups[] = {
7094 [ALC660VD_FIX_ASUS_GPIO1] = {
7095 .type = HDA_FIXUP_VERBS,
7096 .v.verbs = (const struct hda_verb[]) {
7097 /* reset GPIO1 */
7098 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
7099 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
7100 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
7101 { }
7102 }
7103 },
7104 [ALC861VD_FIX_DALLAS] = {
7105 .type = HDA_FIXUP_FUNC,
7106 .v.func = alc861vd_fixup_dallas,
7107 },
7108 };
7109
7110 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
7111 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
7112 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
7113 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
7114 {}
7115 };
7116
7117 /*
7118 */
7119 static int patch_alc861vd(struct hda_codec *codec)
7120 {
7121 struct alc_spec *spec;
7122 int err;
7123
7124 err = alc_alloc_spec(codec, 0x0b);
7125 if (err < 0)
7126 return err;
7127
7128 spec = codec->spec;
7129 spec->gen.beep_nid = 0x23;
7130
7131 spec->shutup = alc_eapd_shutup;
7132
7133 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
7134 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
7135
7136 /* automatic parse from the BIOS config */
7137 err = alc861vd_parse_auto_config(codec);
7138 if (err < 0)
7139 goto error;
7140
7141 if (!spec->gen.no_analog)
7142 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7143
7144 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
7145
7146 return 0;
7147
7148 error:
7149 alc_free(codec);
7150 return err;
7151 }
7152
7153 /*
7154 * ALC662 support
7155 *
7156 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
7157 * configuration. Each pin widget can choose any input DACs and a mixer.
7158 * Each ADC is connected from a mixer of all inputs. This makes possible
7159 * 6-channel independent captures.
7160 *
7161 * In addition, an independent DAC for the multi-playback (not used in this
7162 * driver yet).
7163 */
7164
7165 /*
7166 * BIOS auto configuration
7167 */
7168
7169 static int alc662_parse_auto_config(struct hda_codec *codec)
7170 {
7171 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
7172 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
7173 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7174 const hda_nid_t *ssids;
7175
7176 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
7177 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
7178 codec->core.vendor_id == 0x10ec0671)
7179 ssids = alc663_ssids;
7180 else
7181 ssids = alc662_ssids;
7182 return alc_parse_auto_config(codec, alc662_ignore, ssids);
7183 }
7184
7185 static void alc272_fixup_mario(struct hda_codec *codec,
7186 const struct hda_fixup *fix, int action)
7187 {
7188 if (action != HDA_FIXUP_ACT_PRE_PROBE)
7189 return;
7190 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
7191 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
7192 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
7193 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
7194 (0 << AC_AMPCAP_MUTE_SHIFT)))
7195 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
7196 }
7197
7198 static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
7199 { .channels = 2,
7200 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
7201 { .channels = 4,
7202 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
7203 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
7204 { }
7205 };
7206
7207 /* override the 2.1 chmap */
7208 static void alc_fixup_bass_chmap(struct hda_codec *codec,
7209 const struct hda_fixup *fix, int action)
7210 {
7211 if (action == HDA_FIXUP_ACT_BUILD) {
7212 struct alc_spec *spec = codec->spec;
7213 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
7214 }
7215 }
7216
7217 /* avoid D3 for keeping GPIO up */
7218 static unsigned int gpio_led_power_filter(struct hda_codec *codec,
7219 hda_nid_t nid,
7220 unsigned int power_state)
7221 {
7222 struct alc_spec *spec = codec->spec;
7223 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_led)
7224 return AC_PWRST_D0;
7225 return power_state;
7226 }
7227
7228 static void alc662_fixup_led_gpio1(struct hda_codec *codec,
7229 const struct hda_fixup *fix, int action)
7230 {
7231 struct alc_spec *spec = codec->spec;
7232 static const struct hda_verb gpio_init[] = {
7233 { 0x01, AC_VERB_SET_GPIO_MASK, 0x01 },
7234 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01 },
7235 {}
7236 };
7237
7238 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7239 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
7240 spec->gpio_led = 0;
7241 spec->mute_led_polarity = 1;
7242 spec->gpio_mute_led_mask = 0x01;
7243 snd_hda_add_verbs(codec, gpio_init);
7244 codec->power_filter = gpio_led_power_filter;
7245 }
7246 }
7247
7248 static void alc662_usi_automute_hook(struct hda_codec *codec,
7249 struct hda_jack_callback *jack)
7250 {
7251 struct alc_spec *spec = codec->spec;
7252 int vref;
7253 msleep(200);
7254 snd_hda_gen_hp_automute(codec, jack);
7255
7256 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
7257 msleep(100);
7258 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7259 vref);
7260 }
7261
7262 static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
7263 const struct hda_fixup *fix, int action)
7264 {
7265 struct alc_spec *spec = codec->spec;
7266 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7267 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
7268 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
7269 }
7270 }
7271
7272 static struct coef_fw alc668_coefs[] = {
7273 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
7274 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
7275 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
7276 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
7277 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
7278 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
7279 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
7280 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
7281 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
7282 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
7283 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
7284 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
7285 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
7286 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
7287 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
7288 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
7289 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
7290 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
7291 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
7292 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
7293 {}
7294 };
7295
7296 static void alc668_restore_default_value(struct hda_codec *codec)
7297 {
7298 alc_process_coef_fw(codec, alc668_coefs);
7299 }
7300
7301 enum {
7302 ALC662_FIXUP_ASPIRE,
7303 ALC662_FIXUP_LED_GPIO1,
7304 ALC662_FIXUP_IDEAPAD,
7305 ALC272_FIXUP_MARIO,
7306 ALC662_FIXUP_CZC_P10T,
7307 ALC662_FIXUP_SKU_IGNORE,
7308 ALC662_FIXUP_HP_RP5800,
7309 ALC662_FIXUP_ASUS_MODE1,
7310 ALC662_FIXUP_ASUS_MODE2,
7311 ALC662_FIXUP_ASUS_MODE3,
7312 ALC662_FIXUP_ASUS_MODE4,
7313 ALC662_FIXUP_ASUS_MODE5,
7314 ALC662_FIXUP_ASUS_MODE6,
7315 ALC662_FIXUP_ASUS_MODE7,
7316 ALC662_FIXUP_ASUS_MODE8,
7317 ALC662_FIXUP_NO_JACK_DETECT,
7318 ALC662_FIXUP_ZOTAC_Z68,
7319 ALC662_FIXUP_INV_DMIC,
7320 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
7321 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
7322 ALC662_FIXUP_HEADSET_MODE,
7323 ALC668_FIXUP_HEADSET_MODE,
7324 ALC662_FIXUP_BASS_MODE4_CHMAP,
7325 ALC662_FIXUP_BASS_16,
7326 ALC662_FIXUP_BASS_1A,
7327 ALC662_FIXUP_BASS_CHMAP,
7328 ALC668_FIXUP_AUTO_MUTE,
7329 ALC668_FIXUP_DELL_DISABLE_AAMIX,
7330 ALC668_FIXUP_DELL_XPS13,
7331 ALC662_FIXUP_ASUS_Nx50,
7332 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
7333 ALC668_FIXUP_ASUS_Nx51,
7334 ALC891_FIXUP_HEADSET_MODE,
7335 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
7336 ALC662_FIXUP_ACER_VERITON,
7337 ALC892_FIXUP_ASROCK_MOBO,
7338 ALC662_FIXUP_USI_FUNC,
7339 ALC662_FIXUP_USI_HEADSET_MODE,
7340 ALC662_FIXUP_LENOVO_MULTI_CODECS,
7341 };
7342
7343 static const struct hda_fixup alc662_fixups[] = {
7344 [ALC662_FIXUP_ASPIRE] = {
7345 .type = HDA_FIXUP_PINS,
7346 .v.pins = (const struct hda_pintbl[]) {
7347 { 0x15, 0x99130112 }, /* subwoofer */
7348 { }
7349 }
7350 },
7351 [ALC662_FIXUP_LED_GPIO1] = {
7352 .type = HDA_FIXUP_FUNC,
7353 .v.func = alc662_fixup_led_gpio1,
7354 },
7355 [ALC662_FIXUP_IDEAPAD] = {
7356 .type = HDA_FIXUP_PINS,
7357 .v.pins = (const struct hda_pintbl[]) {
7358 { 0x17, 0x99130112 }, /* subwoofer */
7359 { }
7360 },
7361 .chained = true,
7362 .chain_id = ALC662_FIXUP_LED_GPIO1,
7363 },
7364 [ALC272_FIXUP_MARIO] = {
7365 .type = HDA_FIXUP_FUNC,
7366 .v.func = alc272_fixup_mario,
7367 },
7368 [ALC662_FIXUP_CZC_P10T] = {
7369 .type = HDA_FIXUP_VERBS,
7370 .v.verbs = (const struct hda_verb[]) {
7371 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
7372 {}
7373 }
7374 },
7375 [ALC662_FIXUP_SKU_IGNORE] = {
7376 .type = HDA_FIXUP_FUNC,
7377 .v.func = alc_fixup_sku_ignore,
7378 },
7379 [ALC662_FIXUP_HP_RP5800] = {
7380 .type = HDA_FIXUP_PINS,
7381 .v.pins = (const struct hda_pintbl[]) {
7382 { 0x14, 0x0221201f }, /* HP out */
7383 { }
7384 },
7385 .chained = true,
7386 .chain_id = ALC662_FIXUP_SKU_IGNORE
7387 },
7388 [ALC662_FIXUP_ASUS_MODE1] = {
7389 .type = HDA_FIXUP_PINS,
7390 .v.pins = (const struct hda_pintbl[]) {
7391 { 0x14, 0x99130110 }, /* speaker */
7392 { 0x18, 0x01a19c20 }, /* mic */
7393 { 0x19, 0x99a3092f }, /* int-mic */
7394 { 0x21, 0x0121401f }, /* HP out */
7395 { }
7396 },
7397 .chained = true,
7398 .chain_id = ALC662_FIXUP_SKU_IGNORE
7399 },
7400 [ALC662_FIXUP_ASUS_MODE2] = {
7401 .type = HDA_FIXUP_PINS,
7402 .v.pins = (const struct hda_pintbl[]) {
7403 { 0x14, 0x99130110 }, /* speaker */
7404 { 0x18, 0x01a19820 }, /* mic */
7405 { 0x19, 0x99a3092f }, /* int-mic */
7406 { 0x1b, 0x0121401f }, /* HP out */
7407 { }
7408 },
7409 .chained = true,
7410 .chain_id = ALC662_FIXUP_SKU_IGNORE
7411 },
7412 [ALC662_FIXUP_ASUS_MODE3] = {
7413 .type = HDA_FIXUP_PINS,
7414 .v.pins = (const struct hda_pintbl[]) {
7415 { 0x14, 0x99130110 }, /* speaker */
7416 { 0x15, 0x0121441f }, /* HP */
7417 { 0x18, 0x01a19840 }, /* mic */
7418 { 0x19, 0x99a3094f }, /* int-mic */
7419 { 0x21, 0x01211420 }, /* HP2 */
7420 { }
7421 },
7422 .chained = true,
7423 .chain_id = ALC662_FIXUP_SKU_IGNORE
7424 },
7425 [ALC662_FIXUP_ASUS_MODE4] = {
7426 .type = HDA_FIXUP_PINS,
7427 .v.pins = (const struct hda_pintbl[]) {
7428 { 0x14, 0x99130110 }, /* speaker */
7429 { 0x16, 0x99130111 }, /* speaker */
7430 { 0x18, 0x01a19840 }, /* mic */
7431 { 0x19, 0x99a3094f }, /* int-mic */
7432 { 0x21, 0x0121441f }, /* HP */
7433 { }
7434 },
7435 .chained = true,
7436 .chain_id = ALC662_FIXUP_SKU_IGNORE
7437 },
7438 [ALC662_FIXUP_ASUS_MODE5] = {
7439 .type = HDA_FIXUP_PINS,
7440 .v.pins = (const struct hda_pintbl[]) {
7441 { 0x14, 0x99130110 }, /* speaker */
7442 { 0x15, 0x0121441f }, /* HP */
7443 { 0x16, 0x99130111 }, /* speaker */
7444 { 0x18, 0x01a19840 }, /* mic */
7445 { 0x19, 0x99a3094f }, /* int-mic */
7446 { }
7447 },
7448 .chained = true,
7449 .chain_id = ALC662_FIXUP_SKU_IGNORE
7450 },
7451 [ALC662_FIXUP_ASUS_MODE6] = {
7452 .type = HDA_FIXUP_PINS,
7453 .v.pins = (const struct hda_pintbl[]) {
7454 { 0x14, 0x99130110 }, /* speaker */
7455 { 0x15, 0x01211420 }, /* HP2 */
7456 { 0x18, 0x01a19840 }, /* mic */
7457 { 0x19, 0x99a3094f }, /* int-mic */
7458 { 0x1b, 0x0121441f }, /* HP */
7459 { }
7460 },
7461 .chained = true,
7462 .chain_id = ALC662_FIXUP_SKU_IGNORE
7463 },
7464 [ALC662_FIXUP_ASUS_MODE7] = {
7465 .type = HDA_FIXUP_PINS,
7466 .v.pins = (const struct hda_pintbl[]) {
7467 { 0x14, 0x99130110 }, /* speaker */
7468 { 0x17, 0x99130111 }, /* speaker */
7469 { 0x18, 0x01a19840 }, /* mic */
7470 { 0x19, 0x99a3094f }, /* int-mic */
7471 { 0x1b, 0x01214020 }, /* HP */
7472 { 0x21, 0x0121401f }, /* HP */
7473 { }
7474 },
7475 .chained = true,
7476 .chain_id = ALC662_FIXUP_SKU_IGNORE
7477 },
7478 [ALC662_FIXUP_ASUS_MODE8] = {
7479 .type = HDA_FIXUP_PINS,
7480 .v.pins = (const struct hda_pintbl[]) {
7481 { 0x14, 0x99130110 }, /* speaker */
7482 { 0x12, 0x99a30970 }, /* int-mic */
7483 { 0x15, 0x01214020 }, /* HP */
7484 { 0x17, 0x99130111 }, /* speaker */
7485 { 0x18, 0x01a19840 }, /* mic */
7486 { 0x21, 0x0121401f }, /* HP */
7487 { }
7488 },
7489 .chained = true,
7490 .chain_id = ALC662_FIXUP_SKU_IGNORE
7491 },
7492 [ALC662_FIXUP_NO_JACK_DETECT] = {
7493 .type = HDA_FIXUP_FUNC,
7494 .v.func = alc_fixup_no_jack_detect,
7495 },
7496 [ALC662_FIXUP_ZOTAC_Z68] = {
7497 .type = HDA_FIXUP_PINS,
7498 .v.pins = (const struct hda_pintbl[]) {
7499 { 0x1b, 0x02214020 }, /* Front HP */
7500 { }
7501 }
7502 },
7503 [ALC662_FIXUP_INV_DMIC] = {
7504 .type = HDA_FIXUP_FUNC,
7505 .v.func = alc_fixup_inv_dmic,
7506 },
7507 [ALC668_FIXUP_DELL_XPS13] = {
7508 .type = HDA_FIXUP_FUNC,
7509 .v.func = alc_fixup_dell_xps13,
7510 .chained = true,
7511 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
7512 },
7513 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
7514 .type = HDA_FIXUP_FUNC,
7515 .v.func = alc_fixup_disable_aamix,
7516 .chained = true,
7517 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
7518 },
7519 [ALC668_FIXUP_AUTO_MUTE] = {
7520 .type = HDA_FIXUP_FUNC,
7521 .v.func = alc_fixup_auto_mute_via_amp,
7522 .chained = true,
7523 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
7524 },
7525 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
7526 .type = HDA_FIXUP_PINS,
7527 .v.pins = (const struct hda_pintbl[]) {
7528 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7529 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
7530 { }
7531 },
7532 .chained = true,
7533 .chain_id = ALC662_FIXUP_HEADSET_MODE
7534 },
7535 [ALC662_FIXUP_HEADSET_MODE] = {
7536 .type = HDA_FIXUP_FUNC,
7537 .v.func = alc_fixup_headset_mode_alc662,
7538 },
7539 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
7540 .type = HDA_FIXUP_PINS,
7541 .v.pins = (const struct hda_pintbl[]) {
7542 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
7543 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7544 { }
7545 },
7546 .chained = true,
7547 .chain_id = ALC668_FIXUP_HEADSET_MODE
7548 },
7549 [ALC668_FIXUP_HEADSET_MODE] = {
7550 .type = HDA_FIXUP_FUNC,
7551 .v.func = alc_fixup_headset_mode_alc668,
7552 },
7553 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
7554 .type = HDA_FIXUP_FUNC,
7555 .v.func = alc_fixup_bass_chmap,
7556 .chained = true,
7557 .chain_id = ALC662_FIXUP_ASUS_MODE4
7558 },
7559 [ALC662_FIXUP_BASS_16] = {
7560 .type = HDA_FIXUP_PINS,
7561 .v.pins = (const struct hda_pintbl[]) {
7562 {0x16, 0x80106111}, /* bass speaker */
7563 {}
7564 },
7565 .chained = true,
7566 .chain_id = ALC662_FIXUP_BASS_CHMAP,
7567 },
7568 [ALC662_FIXUP_BASS_1A] = {
7569 .type = HDA_FIXUP_PINS,
7570 .v.pins = (const struct hda_pintbl[]) {
7571 {0x1a, 0x80106111}, /* bass speaker */
7572 {}
7573 },
7574 .chained = true,
7575 .chain_id = ALC662_FIXUP_BASS_CHMAP,
7576 },
7577 [ALC662_FIXUP_BASS_CHMAP] = {
7578 .type = HDA_FIXUP_FUNC,
7579 .v.func = alc_fixup_bass_chmap,
7580 },
7581 [ALC662_FIXUP_ASUS_Nx50] = {
7582 .type = HDA_FIXUP_FUNC,
7583 .v.func = alc_fixup_auto_mute_via_amp,
7584 .chained = true,
7585 .chain_id = ALC662_FIXUP_BASS_1A
7586 },
7587 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
7588 .type = HDA_FIXUP_FUNC,
7589 .v.func = alc_fixup_headset_mode_alc668,
7590 .chain_id = ALC662_FIXUP_BASS_CHMAP
7591 },
7592 [ALC668_FIXUP_ASUS_Nx51] = {
7593 .type = HDA_FIXUP_PINS,
7594 .v.pins = (const struct hda_pintbl[]) {
7595 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
7596 { 0x1a, 0x90170151 }, /* bass speaker */
7597 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7598 {}
7599 },
7600 .chained = true,
7601 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
7602 },
7603 [ALC891_FIXUP_HEADSET_MODE] = {
7604 .type = HDA_FIXUP_FUNC,
7605 .v.func = alc_fixup_headset_mode,
7606 },
7607 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
7608 .type = HDA_FIXUP_PINS,
7609 .v.pins = (const struct hda_pintbl[]) {
7610 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
7611 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
7612 { }
7613 },
7614 .chained = true,
7615 .chain_id = ALC891_FIXUP_HEADSET_MODE
7616 },
7617 [ALC662_FIXUP_ACER_VERITON] = {
7618 .type = HDA_FIXUP_PINS,
7619 .v.pins = (const struct hda_pintbl[]) {
7620 { 0x15, 0x50170120 }, /* no internal speaker */
7621 { }
7622 }
7623 },
7624 [ALC892_FIXUP_ASROCK_MOBO] = {
7625 .type = HDA_FIXUP_PINS,
7626 .v.pins = (const struct hda_pintbl[]) {
7627 { 0x15, 0x40f000f0 }, /* disabled */
7628 { 0x16, 0x40f000f0 }, /* disabled */
7629 { }
7630 }
7631 },
7632 [ALC662_FIXUP_USI_FUNC] = {
7633 .type = HDA_FIXUP_FUNC,
7634 .v.func = alc662_fixup_usi_headset_mic,
7635 },
7636 [ALC662_FIXUP_USI_HEADSET_MODE] = {
7637 .type = HDA_FIXUP_PINS,
7638 .v.pins = (const struct hda_pintbl[]) {
7639 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
7640 { 0x18, 0x01a1903d },
7641 { }
7642 },
7643 .chained = true,
7644 .chain_id = ALC662_FIXUP_USI_FUNC
7645 },
7646 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
7647 .type = HDA_FIXUP_FUNC,
7648 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
7649 },
7650 };
7651
7652 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
7653 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
7654 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
7655 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
7656 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
7657 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
7658 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
7659 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
7660 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
7661 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7662 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7663 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
7664 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
7665 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
7666 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7667 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7668 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7669 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7670 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
7671 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
7672 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
7673 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
7674 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
7675 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
7676 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
7677 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
7678 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
7679 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
7680 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
7681 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
7682 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
7683 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
7684 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
7685 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
7686 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
7687 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
7688 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
7689 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
7690 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
7691 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
7692 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
7693 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
7694
7695 #if 0
7696 /* Below is a quirk table taken from the old code.
7697 * Basically the device should work as is without the fixup table.
7698 * If BIOS doesn't give a proper info, enable the corresponding
7699 * fixup entry.
7700 */
7701 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
7702 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
7703 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
7704 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
7705 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7706 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7707 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7708 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
7709 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
7710 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7711 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
7712 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
7713 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
7714 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
7715 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
7716 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7717 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
7718 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
7719 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7720 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7721 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7722 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7723 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
7724 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
7725 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
7726 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7727 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
7728 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
7729 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7730 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
7731 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7732 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7733 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
7734 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
7735 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
7736 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
7737 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
7738 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
7739 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
7740 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
7741 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
7742 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
7743 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7744 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
7745 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
7746 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
7747 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
7748 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
7749 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
7750 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
7751 #endif
7752 {}
7753 };
7754
7755 static const struct hda_model_fixup alc662_fixup_models[] = {
7756 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
7757 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
7758 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
7759 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
7760 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
7761 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
7762 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
7763 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
7764 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
7765 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
7766 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
7767 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
7768 {}
7769 };
7770
7771 static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
7772 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
7773 {0x17, 0x02211010},
7774 {0x18, 0x01a19030},
7775 {0x1a, 0x01813040},
7776 {0x21, 0x01014020}),
7777 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
7778 {0x14, 0x01014010},
7779 {0x18, 0x01a19020},
7780 {0x1a, 0x0181302f},
7781 {0x1b, 0x0221401f}),
7782 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
7783 {0x12, 0x99a30130},
7784 {0x14, 0x90170110},
7785 {0x15, 0x0321101f},
7786 {0x16, 0x03011020}),
7787 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
7788 {0x12, 0x99a30140},
7789 {0x14, 0x90170110},
7790 {0x15, 0x0321101f},
7791 {0x16, 0x03011020}),
7792 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
7793 {0x12, 0x99a30150},
7794 {0x14, 0x90170110},
7795 {0x15, 0x0321101f},
7796 {0x16, 0x03011020}),
7797 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
7798 {0x14, 0x90170110},
7799 {0x15, 0x0321101f},
7800 {0x16, 0x03011020}),
7801 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
7802 {0x12, 0x90a60130},
7803 {0x14, 0x90170110},
7804 {0x15, 0x0321101f}),
7805 {}
7806 };
7807
7808 /*
7809 */
7810 static int patch_alc662(struct hda_codec *codec)
7811 {
7812 struct alc_spec *spec;
7813 int err;
7814
7815 err = alc_alloc_spec(codec, 0x0b);
7816 if (err < 0)
7817 return err;
7818
7819 spec = codec->spec;
7820
7821 spec->shutup = alc_eapd_shutup;
7822
7823 /* handle multiple HPs as is */
7824 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
7825
7826 alc_fix_pll_init(codec, 0x20, 0x04, 15);
7827
7828 switch (codec->core.vendor_id) {
7829 case 0x10ec0668:
7830 spec->init_hook = alc668_restore_default_value;
7831 break;
7832 }
7833
7834 snd_hda_pick_fixup(codec, alc662_fixup_models,
7835 alc662_fixup_tbl, alc662_fixups);
7836 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups);
7837 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
7838
7839 alc_auto_parse_customize_define(codec);
7840
7841 if (has_cdefine_beep(codec))
7842 spec->gen.beep_nid = 0x01;
7843
7844 if ((alc_get_coef0(codec) & (1 << 14)) &&
7845 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
7846 spec->cdefine.platform_type == 1) {
7847 err = alc_codec_rename(codec, "ALC272X");
7848 if (err < 0)
7849 goto error;
7850 }
7851
7852 /* automatic parse from the BIOS config */
7853 err = alc662_parse_auto_config(codec);
7854 if (err < 0)
7855 goto error;
7856
7857 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7858 switch (codec->core.vendor_id) {
7859 case 0x10ec0662:
7860 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
7861 break;
7862 case 0x10ec0272:
7863 case 0x10ec0663:
7864 case 0x10ec0665:
7865 case 0x10ec0668:
7866 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
7867 break;
7868 case 0x10ec0273:
7869 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
7870 break;
7871 }
7872 }
7873
7874 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
7875
7876 return 0;
7877
7878 error:
7879 alc_free(codec);
7880 return err;
7881 }
7882
7883 /*
7884 * ALC680 support
7885 */
7886
7887 static int alc680_parse_auto_config(struct hda_codec *codec)
7888 {
7889 return alc_parse_auto_config(codec, NULL, NULL);
7890 }
7891
7892 /*
7893 */
7894 static int patch_alc680(struct hda_codec *codec)
7895 {
7896 int err;
7897
7898 /* ALC680 has no aa-loopback mixer */
7899 err = alc_alloc_spec(codec, 0);
7900 if (err < 0)
7901 return err;
7902
7903 /* automatic parse from the BIOS config */
7904 err = alc680_parse_auto_config(codec);
7905 if (err < 0) {
7906 alc_free(codec);
7907 return err;
7908 }
7909
7910 return 0;
7911 }
7912
7913 /*
7914 * patch entries
7915 */
7916 static const struct hda_device_id snd_hda_id_realtek[] = {
7917 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
7918 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
7919 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
7920 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
7921 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
7922 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
7923 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
7924 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
7925 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
7926 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
7927 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
7928 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
7929 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
7930 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
7931 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
7932 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
7933 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
7934 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
7935 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
7936 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
7937 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
7938 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
7939 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
7940 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
7941 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
7942 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
7943 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
7944 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
7945 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
7946 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
7947 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
7948 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
7949 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7950 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
7951 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
7952 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
7953 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
7954 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
7955 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
7956 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
7957 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
7958 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
7959 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
7960 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
7961 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
7962 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
7963 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
7964 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
7965 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
7966 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
7967 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
7968 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
7969 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
7970 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
7971 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
7972 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
7973 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
7974 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
7975 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
7976 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
7977 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
7978 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
7979 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
7980 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
7981 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
7982 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
7983 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
7984 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
7985 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
7986 {} /* terminator */
7987 };
7988 MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
7989
7990 MODULE_LICENSE("GPL");
7991 MODULE_DESCRIPTION("Realtek HD-audio codec");
7992
7993 static struct hda_codec_driver realtek_driver = {
7994 .id = snd_hda_id_realtek,
7995 };
7996
7997 module_hda_codec_driver(realtek_driver);