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