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