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