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