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