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