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