]> git.ipfire.org Git - thirdparty/linux.git/blame_incremental - sound/pci/hda/patch_realtek.c
ALSA: hda - Always do delayed probes for HD-audio devices
[thirdparty/linux.git] / sound / pci / hda / patch_realtek.c
... / ...
CommitLineData
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
4 * HD audio interface patch for Realtek ALC codecs
5 *
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@just42.net>
10 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
30#include <linux/dmi.h>
31#include <linux/module.h>
32#include <sound/core.h>
33#include <sound/jack.h>
34#include "hda_codec.h"
35#include "hda_local.h"
36#include "hda_auto_parser.h"
37#include "hda_jack.h"
38#include "hda_generic.h"
39
40/* keep halting ALC5505 DSP, for power saving */
41#define HALT_REALTEK_ALC5505
42
43/* unsol event tags */
44#define ALC_DCVOL_EVENT 0x08
45
46/* for GPIO Poll */
47#define GPIO_MASK 0x03
48
49/* extra amp-initialization sequence types */
50enum {
51 ALC_INIT_NONE,
52 ALC_INIT_DEFAULT,
53 ALC_INIT_GPIO1,
54 ALC_INIT_GPIO2,
55 ALC_INIT_GPIO3,
56};
57
58enum {
59 ALC_HEADSET_MODE_UNKNOWN,
60 ALC_HEADSET_MODE_UNPLUGGED,
61 ALC_HEADSET_MODE_HEADSET,
62 ALC_HEADSET_MODE_MIC,
63 ALC_HEADSET_MODE_HEADPHONE,
64};
65
66enum {
67 ALC_HEADSET_TYPE_UNKNOWN,
68 ALC_HEADSET_TYPE_CTIA,
69 ALC_HEADSET_TYPE_OMTP,
70};
71
72struct alc_customize_define {
73 unsigned int sku_cfg;
74 unsigned char port_connectivity;
75 unsigned char check_sum;
76 unsigned char customization;
77 unsigned char external_amp;
78 unsigned int enable_pcbeep:1;
79 unsigned int platform_type:1;
80 unsigned int swap:1;
81 unsigned int override:1;
82 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
83};
84
85struct alc_spec {
86 struct hda_gen_spec gen; /* must be at head */
87
88 /* codec parameterization */
89 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
90 unsigned int num_mixers;
91 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
92
93 struct alc_customize_define cdefine;
94 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
95
96 /* inverted dmic fix */
97 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
98 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
99 hda_nid_t inv_dmic_pin;
100
101 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
102 int mute_led_polarity;
103 hda_nid_t mute_led_nid;
104
105 unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
106
107 hda_nid_t headset_mic_pin;
108 hda_nid_t headphone_mic_pin;
109 int current_headset_mode;
110 int current_headset_type;
111
112 /* hooks */
113 void (*init_hook)(struct hda_codec *codec);
114#ifdef CONFIG_PM
115 void (*power_hook)(struct hda_codec *codec);
116#endif
117 void (*shutup)(struct hda_codec *codec);
118
119 int init_amp;
120 int codec_variant; /* flag for other variants */
121 unsigned int has_alc5505_dsp:1;
122 unsigned int no_depop_delay:1;
123
124 /* for PLL fix */
125 hda_nid_t pll_nid;
126 unsigned int pll_coef_idx, pll_coef_bit;
127 unsigned int coef0;
128};
129
130/*
131 * Append the given mixer and verb elements for the later use
132 * The mixer array is referred in build_controls(), and init_verbs are
133 * called in init().
134 */
135static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
136{
137 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
138 return;
139 spec->mixers[spec->num_mixers++] = mix;
140}
141
142/*
143 * GPIO setup tables, used in initialization
144 */
145/* Enable GPIO mask and set output */
146static const struct hda_verb alc_gpio1_init_verbs[] = {
147 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
148 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
149 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
150 { }
151};
152
153static const struct hda_verb alc_gpio2_init_verbs[] = {
154 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
155 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
156 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
157 { }
158};
159
160static const struct hda_verb alc_gpio3_init_verbs[] = {
161 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
162 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
163 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
164 { }
165};
166
167/*
168 * Fix hardware PLL issue
169 * On some codecs, the analog PLL gating control must be off while
170 * the default value is 1.
171 */
172static void alc_fix_pll(struct hda_codec *codec)
173{
174 struct alc_spec *spec = codec->spec;
175 unsigned int val;
176
177 if (!spec->pll_nid)
178 return;
179 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
180 spec->pll_coef_idx);
181 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
182 AC_VERB_GET_PROC_COEF, 0);
183 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
184 spec->pll_coef_idx);
185 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
186 val & ~(1 << spec->pll_coef_bit));
187}
188
189static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
190 unsigned int coef_idx, unsigned int coef_bit)
191{
192 struct alc_spec *spec = codec->spec;
193 spec->pll_nid = nid;
194 spec->pll_coef_idx = coef_idx;
195 spec->pll_coef_bit = coef_bit;
196 alc_fix_pll(codec);
197}
198
199/* update the master volume per volume-knob's unsol event */
200static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
201{
202 unsigned int val;
203 struct snd_kcontrol *kctl;
204 struct snd_ctl_elem_value *uctl;
205
206 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
207 if (!kctl)
208 return;
209 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
210 if (!uctl)
211 return;
212 val = snd_hda_codec_read(codec, jack->nid, 0,
213 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
214 val &= HDA_AMP_VOLMASK;
215 uctl->value.integer.value[0] = val;
216 uctl->value.integer.value[1] = val;
217 kctl->put(kctl, uctl);
218 kfree(uctl);
219}
220
221static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
222{
223 /* For some reason, the res given from ALC880 is broken.
224 Here we adjust it properly. */
225 snd_hda_jack_unsol_event(codec, res >> 2);
226}
227
228/* additional initialization for ALC888 variants */
229static void alc888_coef_init(struct hda_codec *codec)
230{
231 unsigned int tmp;
232
233 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
234 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
235 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
236 if ((tmp & 0xf0) == 0x20)
237 /* alc888S-VC */
238 snd_hda_codec_read(codec, 0x20, 0,
239 AC_VERB_SET_PROC_COEF, 0x830);
240 else
241 /* alc888-VB */
242 snd_hda_codec_read(codec, 0x20, 0,
243 AC_VERB_SET_PROC_COEF, 0x3030);
244}
245
246/* additional initialization for ALC889 variants */
247static void alc889_coef_init(struct hda_codec *codec)
248{
249 unsigned int tmp;
250
251 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
252 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
253 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
254 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
255}
256
257/* turn on/off EAPD control (only if available) */
258static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
259{
260 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
261 return;
262 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
263 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
264 on ? 2 : 0);
265}
266
267/* turn on/off EAPD controls of the codec */
268static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
269{
270 /* We currently only handle front, HP */
271 static hda_nid_t pins[] = {
272 0x0f, 0x10, 0x14, 0x15, 0
273 };
274 hda_nid_t *p;
275 for (p = pins; *p; p++)
276 set_eapd(codec, *p, on);
277}
278
279/* generic shutup callback;
280 * just turning off EPAD and a little pause for avoiding pop-noise
281 */
282static void alc_eapd_shutup(struct hda_codec *codec)
283{
284 struct alc_spec *spec = codec->spec;
285
286 alc_auto_setup_eapd(codec, false);
287 if (!spec->no_depop_delay)
288 msleep(200);
289 snd_hda_shutup_pins(codec);
290}
291
292/* generic EAPD initialization */
293static void alc_auto_init_amp(struct hda_codec *codec, int type)
294{
295 unsigned int tmp;
296
297 alc_auto_setup_eapd(codec, true);
298 switch (type) {
299 case ALC_INIT_GPIO1:
300 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
301 break;
302 case ALC_INIT_GPIO2:
303 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
304 break;
305 case ALC_INIT_GPIO3:
306 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
307 break;
308 case ALC_INIT_DEFAULT:
309 switch (codec->vendor_id) {
310 case 0x10ec0260:
311 snd_hda_codec_write(codec, 0x1a, 0,
312 AC_VERB_SET_COEF_INDEX, 7);
313 tmp = snd_hda_codec_read(codec, 0x1a, 0,
314 AC_VERB_GET_PROC_COEF, 0);
315 snd_hda_codec_write(codec, 0x1a, 0,
316 AC_VERB_SET_COEF_INDEX, 7);
317 snd_hda_codec_write(codec, 0x1a, 0,
318 AC_VERB_SET_PROC_COEF,
319 tmp | 0x2010);
320 break;
321 case 0x10ec0262:
322 case 0x10ec0880:
323 case 0x10ec0882:
324 case 0x10ec0883:
325 case 0x10ec0885:
326 case 0x10ec0887:
327 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
328 alc889_coef_init(codec);
329 break;
330 case 0x10ec0888:
331 alc888_coef_init(codec);
332 break;
333#if 0 /* XXX: This may cause the silent output on speaker on some machines */
334 case 0x10ec0267:
335 case 0x10ec0268:
336 snd_hda_codec_write(codec, 0x20, 0,
337 AC_VERB_SET_COEF_INDEX, 7);
338 tmp = snd_hda_codec_read(codec, 0x20, 0,
339 AC_VERB_GET_PROC_COEF, 0);
340 snd_hda_codec_write(codec, 0x20, 0,
341 AC_VERB_SET_COEF_INDEX, 7);
342 snd_hda_codec_write(codec, 0x20, 0,
343 AC_VERB_SET_PROC_COEF,
344 tmp | 0x3000);
345 break;
346#endif /* XXX */
347 }
348 break;
349 }
350}
351
352
353/*
354 * Realtek SSID verification
355 */
356
357/* Could be any non-zero and even value. When used as fixup, tells
358 * the driver to ignore any present sku defines.
359 */
360#define ALC_FIXUP_SKU_IGNORE (2)
361
362static void alc_fixup_sku_ignore(struct hda_codec *codec,
363 const struct hda_fixup *fix, int action)
364{
365 struct alc_spec *spec = codec->spec;
366 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
367 spec->cdefine.fixup = 1;
368 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
369 }
370}
371
372static void alc_fixup_no_depop_delay(struct hda_codec *codec,
373 const struct hda_fixup *fix, int action)
374{
375 struct alc_spec *spec = codec->spec;
376
377 if (action == HDA_FIXUP_ACT_PROBE)
378 spec->no_depop_delay = 1;
379}
380
381static 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;
424do_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 */
447static 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 */
456static 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 */
470static 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;
518do_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 */
580static 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
594static 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
609static 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 */
623static 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
634static 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
642static 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 */
695static 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
717static 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
723static 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
733static 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
747static 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
755static 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 */
769static 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 */
779static 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
786static 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
827static 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
844static 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
854static 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
861static void alc_power_eapd(struct hda_codec *codec)
862{
863 alc_auto_setup_eapd(codec, false);
864}
865
866static 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
877static 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 */
894static 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 */
910static 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 */
924struct 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
931struct 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
938static 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
957static 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
967static 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
1000static 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
1012static 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 */
1030static 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 */
1054static 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
1077static 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 */
1087enum {
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 */
1116static 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
1123static 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
1412static 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
1482static 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 */
1497static 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 */
1539static 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 */
1549enum {
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
1563static 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
1570static 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
1588static 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
1618static 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
1626static 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
1636static 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
1721static 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
1737static 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 */
1747static 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 */
1804enum {
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 ALC887_FIXUP_ASUS_BASS,
1831 ALC887_FIXUP_BASS_CHMAP,
1832};
1833
1834static void alc889_fixup_coef(struct hda_codec *codec,
1835 const struct hda_fixup *fix, int action)
1836{
1837 if (action != HDA_FIXUP_ACT_INIT)
1838 return;
1839 alc889_coef_init(codec);
1840}
1841
1842/* toggle speaker-output according to the hp-jack state */
1843static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1844{
1845 unsigned int gpiostate, gpiomask, gpiodir;
1846
1847 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1848 AC_VERB_GET_GPIO_DATA, 0);
1849
1850 if (!muted)
1851 gpiostate |= (1 << pin);
1852 else
1853 gpiostate &= ~(1 << pin);
1854
1855 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1856 AC_VERB_GET_GPIO_MASK, 0);
1857 gpiomask |= (1 << pin);
1858
1859 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1860 AC_VERB_GET_GPIO_DIRECTION, 0);
1861 gpiodir |= (1 << pin);
1862
1863
1864 snd_hda_codec_write(codec, codec->afg, 0,
1865 AC_VERB_SET_GPIO_MASK, gpiomask);
1866 snd_hda_codec_write(codec, codec->afg, 0,
1867 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1868
1869 msleep(1);
1870
1871 snd_hda_codec_write(codec, codec->afg, 0,
1872 AC_VERB_SET_GPIO_DATA, gpiostate);
1873}
1874
1875/* set up GPIO at initialization */
1876static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1877 const struct hda_fixup *fix, int action)
1878{
1879 if (action != HDA_FIXUP_ACT_INIT)
1880 return;
1881 alc882_gpio_mute(codec, 0, 0);
1882 alc882_gpio_mute(codec, 1, 0);
1883}
1884
1885/* Fix the connection of some pins for ALC889:
1886 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1887 * work correctly (bko#42740)
1888 */
1889static void alc889_fixup_dac_route(struct hda_codec *codec,
1890 const struct hda_fixup *fix, int action)
1891{
1892 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1893 /* fake the connections during parsing the tree */
1894 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1895 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1896 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1897 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1898 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1899 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1900 } else if (action == HDA_FIXUP_ACT_PROBE) {
1901 /* restore the connections */
1902 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1903 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1904 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1905 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1906 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
1907 }
1908}
1909
1910/* Set VREF on HP pin */
1911static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1912 const struct hda_fixup *fix, int action)
1913{
1914 struct alc_spec *spec = codec->spec;
1915 static hda_nid_t nids[2] = { 0x14, 0x15 };
1916 int i;
1917
1918 if (action != HDA_FIXUP_ACT_INIT)
1919 return;
1920 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1921 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1922 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1923 continue;
1924 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1925 val |= AC_PINCTL_VREF_80;
1926 snd_hda_set_pin_ctl(codec, nids[i], val);
1927 spec->gen.keep_vref_in_automute = 1;
1928 break;
1929 }
1930}
1931
1932/* Set VREF on speaker pins on imac91 */
1933static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1934 const struct hda_fixup *fix, int action)
1935{
1936 struct alc_spec *spec = codec->spec;
1937 static hda_nid_t nids[2] = { 0x18, 0x1a };
1938 int i;
1939
1940 if (action != HDA_FIXUP_ACT_INIT)
1941 return;
1942 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1943 unsigned int val;
1944 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1945 val |= AC_PINCTL_VREF_50;
1946 snd_hda_set_pin_ctl(codec, nids[i], val);
1947 }
1948 spec->gen.keep_vref_in_automute = 1;
1949}
1950
1951/* Don't take HP output as primary
1952 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1953 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
1954 */
1955static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1956 const struct hda_fixup *fix, int action)
1957{
1958 struct alc_spec *spec = codec->spec;
1959 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1960 spec->gen.no_primary_hp = 1;
1961 spec->gen.no_multi_io = 1;
1962 }
1963}
1964
1965static void alc_fixup_bass_chmap(struct hda_codec *codec,
1966 const struct hda_fixup *fix, int action);
1967
1968static const struct hda_fixup alc882_fixups[] = {
1969 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1970 .type = HDA_FIXUP_PINS,
1971 .v.pins = (const struct hda_pintbl[]) {
1972 { 0x15, 0x01080104 }, /* side */
1973 { 0x16, 0x01011012 }, /* rear */
1974 { 0x17, 0x01016011 }, /* clfe */
1975 { }
1976 }
1977 },
1978 [ALC882_FIXUP_LENOVO_Y530] = {
1979 .type = HDA_FIXUP_PINS,
1980 .v.pins = (const struct hda_pintbl[]) {
1981 { 0x15, 0x99130112 }, /* rear int speakers */
1982 { 0x16, 0x99130111 }, /* subwoofer */
1983 { }
1984 }
1985 },
1986 [ALC882_FIXUP_PB_M5210] = {
1987 .type = HDA_FIXUP_PINCTLS,
1988 .v.pins = (const struct hda_pintbl[]) {
1989 { 0x19, PIN_VREF50 },
1990 {}
1991 }
1992 },
1993 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1994 .type = HDA_FIXUP_FUNC,
1995 .v.func = alc_fixup_sku_ignore,
1996 },
1997 [ALC882_FIXUP_ASUS_W90V] = {
1998 .type = HDA_FIXUP_PINS,
1999 .v.pins = (const struct hda_pintbl[]) {
2000 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2001 { }
2002 }
2003 },
2004 [ALC889_FIXUP_CD] = {
2005 .type = HDA_FIXUP_PINS,
2006 .v.pins = (const struct hda_pintbl[]) {
2007 { 0x1c, 0x993301f0 }, /* CD */
2008 { }
2009 }
2010 },
2011 [ALC889_FIXUP_VAIO_TT] = {
2012 .type = HDA_FIXUP_PINS,
2013 .v.pins = (const struct hda_pintbl[]) {
2014 { 0x17, 0x90170111 }, /* hidden surround speaker */
2015 { }
2016 }
2017 },
2018 [ALC888_FIXUP_EEE1601] = {
2019 .type = HDA_FIXUP_VERBS,
2020 .v.verbs = (const struct hda_verb[]) {
2021 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2022 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2023 { }
2024 }
2025 },
2026 [ALC882_FIXUP_EAPD] = {
2027 .type = HDA_FIXUP_VERBS,
2028 .v.verbs = (const struct hda_verb[]) {
2029 /* change to EAPD mode */
2030 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2031 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2032 { }
2033 }
2034 },
2035 [ALC883_FIXUP_EAPD] = {
2036 .type = HDA_FIXUP_VERBS,
2037 .v.verbs = (const struct hda_verb[]) {
2038 /* change to EAPD mode */
2039 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2040 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2041 { }
2042 }
2043 },
2044 [ALC883_FIXUP_ACER_EAPD] = {
2045 .type = HDA_FIXUP_VERBS,
2046 .v.verbs = (const struct hda_verb[]) {
2047 /* eanable EAPD on Acer laptops */
2048 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2049 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2050 { }
2051 }
2052 },
2053 [ALC882_FIXUP_GPIO1] = {
2054 .type = HDA_FIXUP_VERBS,
2055 .v.verbs = alc_gpio1_init_verbs,
2056 },
2057 [ALC882_FIXUP_GPIO2] = {
2058 .type = HDA_FIXUP_VERBS,
2059 .v.verbs = alc_gpio2_init_verbs,
2060 },
2061 [ALC882_FIXUP_GPIO3] = {
2062 .type = HDA_FIXUP_VERBS,
2063 .v.verbs = alc_gpio3_init_verbs,
2064 },
2065 [ALC882_FIXUP_ASUS_W2JC] = {
2066 .type = HDA_FIXUP_VERBS,
2067 .v.verbs = alc_gpio1_init_verbs,
2068 .chained = true,
2069 .chain_id = ALC882_FIXUP_EAPD,
2070 },
2071 [ALC889_FIXUP_COEF] = {
2072 .type = HDA_FIXUP_FUNC,
2073 .v.func = alc889_fixup_coef,
2074 },
2075 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
2076 .type = HDA_FIXUP_PINS,
2077 .v.pins = (const struct hda_pintbl[]) {
2078 { 0x16, 0x99130111 }, /* CLFE speaker */
2079 { 0x17, 0x99130112 }, /* surround speaker */
2080 { }
2081 },
2082 .chained = true,
2083 .chain_id = ALC882_FIXUP_GPIO1,
2084 },
2085 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
2086 .type = HDA_FIXUP_PINS,
2087 .v.pins = (const struct hda_pintbl[]) {
2088 { 0x16, 0x99130111 }, /* CLFE speaker */
2089 { 0x1b, 0x99130112 }, /* surround speaker */
2090 { }
2091 },
2092 .chained = true,
2093 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2094 },
2095 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2096 /* additional init verbs for Acer Aspire 8930G */
2097 .type = HDA_FIXUP_VERBS,
2098 .v.verbs = (const struct hda_verb[]) {
2099 /* Enable all DACs */
2100 /* DAC DISABLE/MUTE 1? */
2101 /* setting bits 1-5 disables DAC nids 0x02-0x06
2102 * apparently. Init=0x38 */
2103 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2104 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2105 /* DAC DISABLE/MUTE 2? */
2106 /* some bit here disables the other DACs.
2107 * Init=0x4900 */
2108 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2109 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2110 /* DMIC fix
2111 * This laptop has a stereo digital microphone.
2112 * The mics are only 1cm apart which makes the stereo
2113 * useless. However, either the mic or the ALC889
2114 * makes the signal become a difference/sum signal
2115 * instead of standard stereo, which is annoying.
2116 * So instead we flip this bit which makes the
2117 * codec replicate the sum signal to both channels,
2118 * turning it into a normal mono mic.
2119 */
2120 /* DMIC_CONTROL? Init value = 0x0001 */
2121 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2122 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2123 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2124 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2125 { }
2126 },
2127 .chained = true,
2128 .chain_id = ALC882_FIXUP_GPIO1,
2129 },
2130 [ALC885_FIXUP_MACPRO_GPIO] = {
2131 .type = HDA_FIXUP_FUNC,
2132 .v.func = alc885_fixup_macpro_gpio,
2133 },
2134 [ALC889_FIXUP_DAC_ROUTE] = {
2135 .type = HDA_FIXUP_FUNC,
2136 .v.func = alc889_fixup_dac_route,
2137 },
2138 [ALC889_FIXUP_MBP_VREF] = {
2139 .type = HDA_FIXUP_FUNC,
2140 .v.func = alc889_fixup_mbp_vref,
2141 .chained = true,
2142 .chain_id = ALC882_FIXUP_GPIO1,
2143 },
2144 [ALC889_FIXUP_IMAC91_VREF] = {
2145 .type = HDA_FIXUP_FUNC,
2146 .v.func = alc889_fixup_imac91_vref,
2147 .chained = true,
2148 .chain_id = ALC882_FIXUP_GPIO1,
2149 },
2150 [ALC882_FIXUP_INV_DMIC] = {
2151 .type = HDA_FIXUP_FUNC,
2152 .v.func = alc_fixup_inv_dmic_0x12,
2153 },
2154 [ALC882_FIXUP_NO_PRIMARY_HP] = {
2155 .type = HDA_FIXUP_FUNC,
2156 .v.func = alc882_fixup_no_primary_hp,
2157 },
2158 [ALC887_FIXUP_ASUS_BASS] = {
2159 .type = HDA_FIXUP_PINS,
2160 .v.pins = (const struct hda_pintbl[]) {
2161 {0x16, 0x99130130}, /* bass speaker */
2162 {}
2163 },
2164 .chained = true,
2165 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2166 },
2167 [ALC887_FIXUP_BASS_CHMAP] = {
2168 .type = HDA_FIXUP_FUNC,
2169 .v.func = alc_fixup_bass_chmap,
2170 },
2171};
2172
2173static const struct snd_pci_quirk alc882_fixup_tbl[] = {
2174 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2175 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2176 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2177 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2178 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2179 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
2180 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2181 ALC882_FIXUP_ACER_ASPIRE_4930G),
2182 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2183 ALC882_FIXUP_ACER_ASPIRE_4930G),
2184 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2185 ALC882_FIXUP_ACER_ASPIRE_8930G),
2186 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2187 ALC882_FIXUP_ACER_ASPIRE_8930G),
2188 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2189 ALC882_FIXUP_ACER_ASPIRE_4930G),
2190 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2191 ALC882_FIXUP_ACER_ASPIRE_4930G),
2192 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2193 ALC882_FIXUP_ACER_ASPIRE_4930G),
2194 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
2195 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2196 ALC882_FIXUP_ACER_ASPIRE_4930G),
2197 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
2198 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
2199 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
2200 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
2201 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
2202 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
2203 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
2204 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
2205 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
2206 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
2207 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
2208
2209 /* All Apple entries are in codec SSIDs */
2210 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2211 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2212 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2213 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2214 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2215 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
2216 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2217 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
2218 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
2219 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2220 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2221 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2222 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
2223 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
2224 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2225 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2226 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
2227 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
2228 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
2229 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2230 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2231 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
2232
2233 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
2234 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
2235 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
2236 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
2237 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
2238 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2239 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
2240 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
2241 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
2242 {}
2243};
2244
2245static const struct hda_model_fixup alc882_fixup_models[] = {
2246 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2247 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2248 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
2249 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
2250 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
2251 {}
2252};
2253
2254/*
2255 * BIOS auto configuration
2256 */
2257/* almost identical with ALC880 parser... */
2258static int alc882_parse_auto_config(struct hda_codec *codec)
2259{
2260 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
2261 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2262 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
2263}
2264
2265/*
2266 */
2267static int patch_alc882(struct hda_codec *codec)
2268{
2269 struct alc_spec *spec;
2270 int err;
2271
2272 err = alc_alloc_spec(codec, 0x0b);
2273 if (err < 0)
2274 return err;
2275
2276 spec = codec->spec;
2277
2278 switch (codec->vendor_id) {
2279 case 0x10ec0882:
2280 case 0x10ec0885:
2281 break;
2282 default:
2283 /* ALC883 and variants */
2284 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2285 break;
2286 }
2287
2288 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
2289 alc882_fixups);
2290 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2291
2292 alc_auto_parse_customize_define(codec);
2293
2294 if (has_cdefine_beep(codec))
2295 spec->gen.beep_nid = 0x01;
2296
2297 /* automatic parse from the BIOS config */
2298 err = alc882_parse_auto_config(codec);
2299 if (err < 0)
2300 goto error;
2301
2302 if (!spec->gen.no_analog && spec->gen.beep_nid)
2303 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2304
2305 codec->patch_ops = alc_patch_ops;
2306
2307 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2308
2309 return 0;
2310
2311 error:
2312 alc_free(codec);
2313 return err;
2314}
2315
2316
2317/*
2318 * ALC262 support
2319 */
2320static int alc262_parse_auto_config(struct hda_codec *codec)
2321{
2322 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
2323 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2324 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
2325}
2326
2327/*
2328 * Pin config fixes
2329 */
2330enum {
2331 ALC262_FIXUP_FSC_H270,
2332 ALC262_FIXUP_FSC_S7110,
2333 ALC262_FIXUP_HP_Z200,
2334 ALC262_FIXUP_TYAN,
2335 ALC262_FIXUP_LENOVO_3000,
2336 ALC262_FIXUP_BENQ,
2337 ALC262_FIXUP_BENQ_T31,
2338 ALC262_FIXUP_INV_DMIC,
2339 ALC262_FIXUP_INTEL_BAYLEYBAY,
2340};
2341
2342static const struct hda_fixup alc262_fixups[] = {
2343 [ALC262_FIXUP_FSC_H270] = {
2344 .type = HDA_FIXUP_PINS,
2345 .v.pins = (const struct hda_pintbl[]) {
2346 { 0x14, 0x99130110 }, /* speaker */
2347 { 0x15, 0x0221142f }, /* front HP */
2348 { 0x1b, 0x0121141f }, /* rear HP */
2349 { }
2350 }
2351 },
2352 [ALC262_FIXUP_FSC_S7110] = {
2353 .type = HDA_FIXUP_PINS,
2354 .v.pins = (const struct hda_pintbl[]) {
2355 { 0x15, 0x90170110 }, /* speaker */
2356 { }
2357 },
2358 .chained = true,
2359 .chain_id = ALC262_FIXUP_BENQ,
2360 },
2361 [ALC262_FIXUP_HP_Z200] = {
2362 .type = HDA_FIXUP_PINS,
2363 .v.pins = (const struct hda_pintbl[]) {
2364 { 0x16, 0x99130120 }, /* internal speaker */
2365 { }
2366 }
2367 },
2368 [ALC262_FIXUP_TYAN] = {
2369 .type = HDA_FIXUP_PINS,
2370 .v.pins = (const struct hda_pintbl[]) {
2371 { 0x14, 0x1993e1f0 }, /* int AUX */
2372 { }
2373 }
2374 },
2375 [ALC262_FIXUP_LENOVO_3000] = {
2376 .type = HDA_FIXUP_PINCTLS,
2377 .v.pins = (const struct hda_pintbl[]) {
2378 { 0x19, PIN_VREF50 },
2379 {}
2380 },
2381 .chained = true,
2382 .chain_id = ALC262_FIXUP_BENQ,
2383 },
2384 [ALC262_FIXUP_BENQ] = {
2385 .type = HDA_FIXUP_VERBS,
2386 .v.verbs = (const struct hda_verb[]) {
2387 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2388 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2389 {}
2390 }
2391 },
2392 [ALC262_FIXUP_BENQ_T31] = {
2393 .type = HDA_FIXUP_VERBS,
2394 .v.verbs = (const struct hda_verb[]) {
2395 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2396 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2397 {}
2398 }
2399 },
2400 [ALC262_FIXUP_INV_DMIC] = {
2401 .type = HDA_FIXUP_FUNC,
2402 .v.func = alc_fixup_inv_dmic_0x12,
2403 },
2404 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2405 .type = HDA_FIXUP_FUNC,
2406 .v.func = alc_fixup_no_depop_delay,
2407 },
2408};
2409
2410static const struct snd_pci_quirk alc262_fixup_tbl[] = {
2411 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
2412 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
2413 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
2414 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2415 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
2416 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
2417 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2418 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
2419 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
2420 {}
2421};
2422
2423static const struct hda_model_fixup alc262_fixup_models[] = {
2424 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2425 {}
2426};
2427
2428/*
2429 */
2430static int patch_alc262(struct hda_codec *codec)
2431{
2432 struct alc_spec *spec;
2433 int err;
2434
2435 err = alc_alloc_spec(codec, 0x0b);
2436 if (err < 0)
2437 return err;
2438
2439 spec = codec->spec;
2440 spec->gen.shared_mic_vref_pin = 0x18;
2441
2442#if 0
2443 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2444 * under-run
2445 */
2446 {
2447 int tmp;
2448 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2449 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2450 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2451 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2452 }
2453#endif
2454 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2455
2456 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
2457 alc262_fixups);
2458 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2459
2460 alc_auto_parse_customize_define(codec);
2461
2462 if (has_cdefine_beep(codec))
2463 spec->gen.beep_nid = 0x01;
2464
2465 /* automatic parse from the BIOS config */
2466 err = alc262_parse_auto_config(codec);
2467 if (err < 0)
2468 goto error;
2469
2470 if (!spec->gen.no_analog && spec->gen.beep_nid)
2471 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2472
2473 codec->patch_ops = alc_patch_ops;
2474 spec->shutup = alc_eapd_shutup;
2475
2476 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2477
2478 return 0;
2479
2480 error:
2481 alc_free(codec);
2482 return err;
2483}
2484
2485/*
2486 * ALC268
2487 */
2488/* bind Beep switches of both NID 0x0f and 0x10 */
2489static const struct hda_bind_ctls alc268_bind_beep_sw = {
2490 .ops = &snd_hda_bind_sw,
2491 .values = {
2492 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2493 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2494 0
2495 },
2496};
2497
2498static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2499 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2500 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2501 { }
2502};
2503
2504/* set PCBEEP vol = 0, mute connections */
2505static const struct hda_verb alc268_beep_init_verbs[] = {
2506 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2507 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2508 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2509 { }
2510};
2511
2512enum {
2513 ALC268_FIXUP_INV_DMIC,
2514 ALC268_FIXUP_HP_EAPD,
2515 ALC268_FIXUP_SPDIF,
2516};
2517
2518static const struct hda_fixup alc268_fixups[] = {
2519 [ALC268_FIXUP_INV_DMIC] = {
2520 .type = HDA_FIXUP_FUNC,
2521 .v.func = alc_fixup_inv_dmic_0x12,
2522 },
2523 [ALC268_FIXUP_HP_EAPD] = {
2524 .type = HDA_FIXUP_VERBS,
2525 .v.verbs = (const struct hda_verb[]) {
2526 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2527 {}
2528 }
2529 },
2530 [ALC268_FIXUP_SPDIF] = {
2531 .type = HDA_FIXUP_PINS,
2532 .v.pins = (const struct hda_pintbl[]) {
2533 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2534 {}
2535 }
2536 },
2537};
2538
2539static const struct hda_model_fixup alc268_fixup_models[] = {
2540 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
2541 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2542 {}
2543};
2544
2545static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2546 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
2547 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
2548 /* below is codec SSID since multiple Toshiba laptops have the
2549 * same PCI SSID 1179:ff00
2550 */
2551 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
2552 {}
2553};
2554
2555/*
2556 * BIOS auto configuration
2557 */
2558static int alc268_parse_auto_config(struct hda_codec *codec)
2559{
2560 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2561 return alc_parse_auto_config(codec, NULL, alc268_ssids);
2562}
2563
2564/*
2565 */
2566static int patch_alc268(struct hda_codec *codec)
2567{
2568 struct alc_spec *spec;
2569 int err;
2570
2571 /* ALC268 has no aa-loopback mixer */
2572 err = alc_alloc_spec(codec, 0);
2573 if (err < 0)
2574 return err;
2575
2576 spec = codec->spec;
2577 spec->gen.beep_nid = 0x01;
2578
2579 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2580 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
2581
2582 /* automatic parse from the BIOS config */
2583 err = alc268_parse_auto_config(codec);
2584 if (err < 0)
2585 goto error;
2586
2587 if (err > 0 && !spec->gen.no_analog &&
2588 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2589 add_mixer(spec, alc268_beep_mixer);
2590 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
2591 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2592 /* override the amp caps for beep generator */
2593 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2594 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2595 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2596 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2597 (0 << AC_AMPCAP_MUTE_SHIFT));
2598 }
2599
2600 codec->patch_ops = alc_patch_ops;
2601 spec->shutup = alc_eapd_shutup;
2602
2603 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
2604
2605 return 0;
2606
2607 error:
2608 alc_free(codec);
2609 return err;
2610}
2611
2612/*
2613 * ALC269
2614 */
2615
2616static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2617 struct hda_codec *codec,
2618 struct snd_pcm_substream *substream)
2619{
2620 struct hda_gen_spec *spec = codec->spec;
2621 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2622 hinfo);
2623}
2624
2625static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2626 struct hda_codec *codec,
2627 unsigned int stream_tag,
2628 unsigned int format,
2629 struct snd_pcm_substream *substream)
2630{
2631 struct hda_gen_spec *spec = codec->spec;
2632 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2633 stream_tag, format, substream);
2634}
2635
2636static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2637 struct hda_codec *codec,
2638 struct snd_pcm_substream *substream)
2639{
2640 struct hda_gen_spec *spec = codec->spec;
2641 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2642}
2643
2644static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2645 .substreams = 1,
2646 .channels_min = 2,
2647 .channels_max = 8,
2648 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2649 /* NID is set in alc_build_pcms */
2650 .ops = {
2651 .open = playback_pcm_open,
2652 .prepare = playback_pcm_prepare,
2653 .cleanup = playback_pcm_cleanup
2654 },
2655};
2656
2657static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2658 .substreams = 1,
2659 .channels_min = 2,
2660 .channels_max = 2,
2661 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2662 /* NID is set in alc_build_pcms */
2663};
2664
2665/* different alc269-variants */
2666enum {
2667 ALC269_TYPE_ALC269VA,
2668 ALC269_TYPE_ALC269VB,
2669 ALC269_TYPE_ALC269VC,
2670 ALC269_TYPE_ALC269VD,
2671 ALC269_TYPE_ALC280,
2672 ALC269_TYPE_ALC282,
2673 ALC269_TYPE_ALC283,
2674 ALC269_TYPE_ALC284,
2675 ALC269_TYPE_ALC285,
2676 ALC269_TYPE_ALC286,
2677 ALC269_TYPE_ALC255,
2678};
2679
2680/*
2681 * BIOS auto configuration
2682 */
2683static int alc269_parse_auto_config(struct hda_codec *codec)
2684{
2685 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
2686 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2687 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2688 struct alc_spec *spec = codec->spec;
2689 const hda_nid_t *ssids;
2690
2691 switch (spec->codec_variant) {
2692 case ALC269_TYPE_ALC269VA:
2693 case ALC269_TYPE_ALC269VC:
2694 case ALC269_TYPE_ALC280:
2695 case ALC269_TYPE_ALC284:
2696 case ALC269_TYPE_ALC285:
2697 ssids = alc269va_ssids;
2698 break;
2699 case ALC269_TYPE_ALC269VB:
2700 case ALC269_TYPE_ALC269VD:
2701 case ALC269_TYPE_ALC282:
2702 case ALC269_TYPE_ALC283:
2703 case ALC269_TYPE_ALC286:
2704 case ALC269_TYPE_ALC255:
2705 ssids = alc269_ssids;
2706 break;
2707 default:
2708 ssids = alc269_ssids;
2709 break;
2710 }
2711
2712 return alc_parse_auto_config(codec, alc269_ignore, ssids);
2713}
2714
2715static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
2716{
2717 int val = alc_read_coef_idx(codec, 0x04);
2718 if (power_up)
2719 val |= 1 << 11;
2720 else
2721 val &= ~(1 << 11);
2722 alc_write_coef_idx(codec, 0x04, val);
2723}
2724
2725static void alc269_shutup(struct hda_codec *codec)
2726{
2727 struct alc_spec *spec = codec->spec;
2728
2729 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2730 alc269vb_toggle_power_output(codec, 0);
2731 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2732 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2733 msleep(150);
2734 }
2735 snd_hda_shutup_pins(codec);
2736}
2737
2738static void alc283_init(struct hda_codec *codec)
2739{
2740 struct alc_spec *spec = codec->spec;
2741 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2742 bool hp_pin_sense;
2743 int val;
2744
2745 if (!hp_pin)
2746 return;
2747 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2748
2749 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2750 /* Headphone capless set to high power mode */
2751 alc_write_coef_idx(codec, 0x43, 0x9004);
2752
2753 snd_hda_codec_write(codec, hp_pin, 0,
2754 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2755
2756 if (hp_pin_sense)
2757 msleep(85);
2758
2759 snd_hda_codec_write(codec, hp_pin, 0,
2760 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2761
2762 if (hp_pin_sense)
2763 msleep(85);
2764 /* Index 0x46 Combo jack auto switch control 2 */
2765 /* 3k pull low control for Headset jack. */
2766 val = alc_read_coef_idx(codec, 0x46);
2767 alc_write_coef_idx(codec, 0x46, val & ~(3 << 12));
2768 /* Headphone capless set to normal mode */
2769 alc_write_coef_idx(codec, 0x43, 0x9614);
2770}
2771
2772static void alc283_shutup(struct hda_codec *codec)
2773{
2774 struct alc_spec *spec = codec->spec;
2775 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2776 bool hp_pin_sense;
2777 int val;
2778
2779 if (!hp_pin) {
2780 alc269_shutup(codec);
2781 return;
2782 }
2783
2784 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2785
2786 alc_write_coef_idx(codec, 0x43, 0x9004);
2787
2788 snd_hda_codec_write(codec, hp_pin, 0,
2789 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2790
2791 if (hp_pin_sense)
2792 msleep(100);
2793
2794 snd_hda_codec_write(codec, hp_pin, 0,
2795 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2796
2797 val = alc_read_coef_idx(codec, 0x46);
2798 alc_write_coef_idx(codec, 0x46, val | (3 << 12));
2799
2800 if (hp_pin_sense)
2801 msleep(100);
2802 snd_hda_shutup_pins(codec);
2803 alc_write_coef_idx(codec, 0x43, 0x9614);
2804}
2805
2806static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
2807 unsigned int val)
2808{
2809 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2810 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
2811 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
2812}
2813
2814static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
2815{
2816 unsigned int val;
2817
2818 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2819 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2820 & 0xffff;
2821 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2822 << 16;
2823 return val;
2824}
2825
2826static void alc5505_dsp_halt(struct hda_codec *codec)
2827{
2828 unsigned int val;
2829
2830 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
2831 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
2832 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2833 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
2834 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2835 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
2836 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
2837 val = alc5505_coef_get(codec, 0x6220);
2838 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
2839}
2840
2841static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
2842{
2843 alc5505_coef_set(codec, 0x61b8, 0x04133302);
2844 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
2845 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
2846 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
2847 alc5505_coef_set(codec, 0x6220, 0x2002010f);
2848 alc5505_coef_set(codec, 0x880c, 0x00000004);
2849}
2850
2851static void alc5505_dsp_init(struct hda_codec *codec)
2852{
2853 unsigned int val;
2854
2855 alc5505_dsp_halt(codec);
2856 alc5505_dsp_back_from_halt(codec);
2857 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
2858 alc5505_coef_set(codec, 0x61b0, 0x5b16);
2859 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
2860 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
2861 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
2862 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
2863 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
2864 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
2865 alc5505_coef_set(codec, 0x61b8, 0x04173302);
2866 alc5505_coef_set(codec, 0x61b8, 0x04163302);
2867 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
2868 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
2869 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
2870
2871 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
2872 if (val <= 3)
2873 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
2874 else
2875 alc5505_coef_set(codec, 0x6220, 0x6002018f);
2876
2877 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
2878 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
2879 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
2880 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
2881 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
2882 alc5505_coef_set(codec, 0x880c, 0x00000003);
2883 alc5505_coef_set(codec, 0x880c, 0x00000010);
2884
2885#ifdef HALT_REALTEK_ALC5505
2886 alc5505_dsp_halt(codec);
2887#endif
2888}
2889
2890#ifdef HALT_REALTEK_ALC5505
2891#define alc5505_dsp_suspend(codec) /* NOP */
2892#define alc5505_dsp_resume(codec) /* NOP */
2893#else
2894#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
2895#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
2896#endif
2897
2898#ifdef CONFIG_PM
2899static int alc269_suspend(struct hda_codec *codec)
2900{
2901 struct alc_spec *spec = codec->spec;
2902
2903 if (spec->has_alc5505_dsp)
2904 alc5505_dsp_suspend(codec);
2905 return alc_suspend(codec);
2906}
2907
2908static int alc269_resume(struct hda_codec *codec)
2909{
2910 struct alc_spec *spec = codec->spec;
2911
2912 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2913 alc269vb_toggle_power_output(codec, 0);
2914 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2915 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
2916 msleep(150);
2917 }
2918
2919 codec->patch_ops.init(codec);
2920
2921 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2922 alc269vb_toggle_power_output(codec, 1);
2923 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2924 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
2925 msleep(200);
2926 }
2927
2928 snd_hda_codec_resume_amp(codec);
2929 snd_hda_codec_resume_cache(codec);
2930 alc_inv_dmic_sync(codec, true);
2931 hda_call_check_power_status(codec, 0x01);
2932 if (spec->has_alc5505_dsp)
2933 alc5505_dsp_resume(codec);
2934
2935 return 0;
2936}
2937#endif /* CONFIG_PM */
2938
2939static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
2940 const struct hda_fixup *fix, int action)
2941{
2942 struct alc_spec *spec = codec->spec;
2943
2944 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2945 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2946}
2947
2948static void alc269_fixup_hweq(struct hda_codec *codec,
2949 const struct hda_fixup *fix, int action)
2950{
2951 int coef;
2952
2953 if (action != HDA_FIXUP_ACT_INIT)
2954 return;
2955 coef = alc_read_coef_idx(codec, 0x1e);
2956 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2957}
2958
2959static void alc269_fixup_headset_mic(struct hda_codec *codec,
2960 const struct hda_fixup *fix, int action)
2961{
2962 struct alc_spec *spec = codec->spec;
2963
2964 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2965 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
2966}
2967
2968static void alc271_fixup_dmic(struct hda_codec *codec,
2969 const struct hda_fixup *fix, int action)
2970{
2971 static const struct hda_verb verbs[] = {
2972 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2973 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2974 {}
2975 };
2976 unsigned int cfg;
2977
2978 if (strcmp(codec->chip_name, "ALC271X") &&
2979 strcmp(codec->chip_name, "ALC269VB"))
2980 return;
2981 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2982 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2983 snd_hda_sequence_write(codec, verbs);
2984}
2985
2986static void alc269_fixup_pcm_44k(struct hda_codec *codec,
2987 const struct hda_fixup *fix, int action)
2988{
2989 struct alc_spec *spec = codec->spec;
2990
2991 if (action != HDA_FIXUP_ACT_PROBE)
2992 return;
2993
2994 /* Due to a hardware problem on Lenovo Ideadpad, we need to
2995 * fix the sample rate of analog I/O to 44.1kHz
2996 */
2997 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2998 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
2999}
3000
3001static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
3002 const struct hda_fixup *fix, int action)
3003{
3004 int coef;
3005
3006 if (action != HDA_FIXUP_ACT_INIT)
3007 return;
3008 /* The digital-mic unit sends PDM (differential signal) instead of
3009 * the standard PCM, thus you can't record a valid mono stream as is.
3010 * Below is a workaround specific to ALC269 to control the dmic
3011 * signal source as mono.
3012 */
3013 coef = alc_read_coef_idx(codec, 0x07);
3014 alc_write_coef_idx(codec, 0x07, coef | 0x80);
3015}
3016
3017static void alc269_quanta_automute(struct hda_codec *codec)
3018{
3019 snd_hda_gen_update_outputs(codec);
3020
3021 snd_hda_codec_write(codec, 0x20, 0,
3022 AC_VERB_SET_COEF_INDEX, 0x0c);
3023 snd_hda_codec_write(codec, 0x20, 0,
3024 AC_VERB_SET_PROC_COEF, 0x680);
3025
3026 snd_hda_codec_write(codec, 0x20, 0,
3027 AC_VERB_SET_COEF_INDEX, 0x0c);
3028 snd_hda_codec_write(codec, 0x20, 0,
3029 AC_VERB_SET_PROC_COEF, 0x480);
3030}
3031
3032static void alc269_fixup_quanta_mute(struct hda_codec *codec,
3033 const struct hda_fixup *fix, int action)
3034{
3035 struct alc_spec *spec = codec->spec;
3036 if (action != HDA_FIXUP_ACT_PROBE)
3037 return;
3038 spec->gen.automute_hook = alc269_quanta_automute;
3039}
3040
3041static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3042 struct hda_jack_tbl *jack)
3043{
3044 struct alc_spec *spec = codec->spec;
3045 int vref;
3046 msleep(200);
3047 snd_hda_gen_hp_automute(codec, jack);
3048
3049 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3050 msleep(100);
3051 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3052 vref);
3053 msleep(500);
3054 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3055 vref);
3056}
3057
3058static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3059 const struct hda_fixup *fix, int action)
3060{
3061 struct alc_spec *spec = codec->spec;
3062 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3063 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3064 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3065 }
3066}
3067
3068
3069/* update mute-LED according to the speaker mute state via mic VREF pin */
3070static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
3071{
3072 struct hda_codec *codec = private_data;
3073 struct alc_spec *spec = codec->spec;
3074 unsigned int pinval;
3075
3076 if (spec->mute_led_polarity)
3077 enabled = !enabled;
3078 pinval = AC_PINCTL_IN_EN |
3079 (enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
3080 if (spec->mute_led_nid)
3081 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
3082}
3083
3084/* Make sure the led works even in runtime suspend */
3085static unsigned int led_power_filter(struct hda_codec *codec,
3086 hda_nid_t nid,
3087 unsigned int power_state)
3088{
3089 struct alc_spec *spec = codec->spec;
3090
3091 if (power_state != AC_PWRST_D3 || nid != spec->mute_led_nid)
3092 return power_state;
3093
3094 /* Set pin ctl again, it might have just been set to 0 */
3095 snd_hda_set_pin_ctl(codec, nid,
3096 snd_hda_codec_get_pin_target(codec, nid));
3097
3098 return AC_PWRST_D0;
3099}
3100
3101static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3102 const struct hda_fixup *fix, int action)
3103{
3104 struct alc_spec *spec = codec->spec;
3105 const struct dmi_device *dev = NULL;
3106
3107 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3108 return;
3109
3110 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3111 int pol, pin;
3112 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3113 continue;
3114 if (pin < 0x0a || pin >= 0x10)
3115 break;
3116 spec->mute_led_polarity = pol;
3117 spec->mute_led_nid = pin - 0x0a + 0x18;
3118 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3119 spec->gen.vmaster_mute_enum = 1;
3120 codec->power_filter = led_power_filter;
3121 snd_printd("Detected mute LED for %x:%d\n", spec->mute_led_nid,
3122 spec->mute_led_polarity);
3123 break;
3124 }
3125}
3126
3127static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3128 const struct hda_fixup *fix, int action)
3129{
3130 struct alc_spec *spec = codec->spec;
3131 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3132 spec->mute_led_polarity = 0;
3133 spec->mute_led_nid = 0x18;
3134 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3135 spec->gen.vmaster_mute_enum = 1;
3136 codec->power_filter = led_power_filter;
3137 }
3138}
3139
3140static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3141 const struct hda_fixup *fix, int action)
3142{
3143 struct alc_spec *spec = codec->spec;
3144 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3145 spec->mute_led_polarity = 0;
3146 spec->mute_led_nid = 0x19;
3147 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3148 spec->gen.vmaster_mute_enum = 1;
3149 codec->power_filter = led_power_filter;
3150 }
3151}
3152
3153/* turn on/off mute LED per vmaster hook */
3154static void alc269_fixup_hp_gpio_mute_hook(void *private_data, int enabled)
3155{
3156 struct hda_codec *codec = private_data;
3157 struct alc_spec *spec = codec->spec;
3158 unsigned int oldval = spec->gpio_led;
3159
3160 if (enabled)
3161 spec->gpio_led &= ~0x08;
3162 else
3163 spec->gpio_led |= 0x08;
3164 if (spec->gpio_led != oldval)
3165 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3166 spec->gpio_led);
3167}
3168
3169/* turn on/off mic-mute LED per capture hook */
3170static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec *codec,
3171 struct snd_ctl_elem_value *ucontrol)
3172{
3173 struct alc_spec *spec = codec->spec;
3174 unsigned int oldval = spec->gpio_led;
3175
3176 if (!ucontrol)
3177 return;
3178
3179 if (ucontrol->value.integer.value[0] ||
3180 ucontrol->value.integer.value[1])
3181 spec->gpio_led &= ~0x10;
3182 else
3183 spec->gpio_led |= 0x10;
3184 if (spec->gpio_led != oldval)
3185 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3186 spec->gpio_led);
3187}
3188
3189static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3190 const struct hda_fixup *fix, int action)
3191{
3192 struct alc_spec *spec = codec->spec;
3193 static const struct hda_verb gpio_init[] = {
3194 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3195 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3196 {}
3197 };
3198
3199 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3200 spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
3201 spec->gen.cap_sync_hook = alc269_fixup_hp_gpio_mic_mute_hook;
3202 spec->gpio_led = 0;
3203 snd_hda_add_verbs(codec, gpio_init);
3204 }
3205}
3206
3207static void alc_headset_mode_unplugged(struct hda_codec *codec)
3208{
3209 int val;
3210
3211 switch (codec->vendor_id) {
3212 case 0x10ec0255:
3213 /* LDO and MISC control */
3214 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3215 /* UAJ function set to menual mode */
3216 alc_write_coef_idx(codec, 0x45, 0xd089);
3217 /* Direct Drive HP Amp control(Set to verb control)*/
3218 val = alc_read_coefex_idx(codec, 0x57, 0x05);
3219 alc_write_coefex_idx(codec, 0x57, 0x05, val & ~(1<<14));
3220 /* Set MIC2 Vref gate with HP */
3221 alc_write_coef_idx(codec, 0x06, 0x6104);
3222 /* Direct Drive HP Amp control */
3223 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3224 break;
3225 case 0x10ec0283:
3226 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3227 alc_write_coef_idx(codec, 0x45, 0xc429);
3228 val = alc_read_coef_idx(codec, 0x35);
3229 alc_write_coef_idx(codec, 0x35, val & 0xbfff);
3230 alc_write_coef_idx(codec, 0x06, 0x2104);
3231 alc_write_coef_idx(codec, 0x1a, 0x0001);
3232 alc_write_coef_idx(codec, 0x26, 0x0004);
3233 alc_write_coef_idx(codec, 0x32, 0x42a3);
3234 break;
3235 case 0x10ec0292:
3236 alc_write_coef_idx(codec, 0x76, 0x000e);
3237 alc_write_coef_idx(codec, 0x6c, 0x2400);
3238 alc_write_coef_idx(codec, 0x18, 0x7308);
3239 alc_write_coef_idx(codec, 0x6b, 0xc429);
3240 break;
3241 case 0x10ec0668:
3242 alc_write_coef_idx(codec, 0x15, 0x0d40);
3243 alc_write_coef_idx(codec, 0xb7, 0x802b);
3244 break;
3245 }
3246 snd_printdd("Headset jack set to unplugged mode.\n");
3247}
3248
3249
3250static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3251 hda_nid_t mic_pin)
3252{
3253 int val;
3254
3255 switch (codec->vendor_id) {
3256 case 0x10ec0255:
3257 alc_write_coef_idx(codec, 0x45, 0xc489);
3258 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3259 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3260 /* Set MIC2 Vref gate to normal */
3261 alc_write_coef_idx(codec, 0x06, 0x6100);
3262 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3263 break;
3264 case 0x10ec0283:
3265 alc_write_coef_idx(codec, 0x45, 0xc429);
3266 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3267 val = alc_read_coef_idx(codec, 0x35);
3268 alc_write_coef_idx(codec, 0x35, val | 1<<14);
3269 alc_write_coef_idx(codec, 0x06, 0x2100);
3270 alc_write_coef_idx(codec, 0x1a, 0x0021);
3271 alc_write_coef_idx(codec, 0x26, 0x008c);
3272 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3273 break;
3274 case 0x10ec0292:
3275 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3276 alc_write_coef_idx(codec, 0x19, 0xa208);
3277 alc_write_coef_idx(codec, 0x2e, 0xacf0);
3278 break;
3279 case 0x10ec0668:
3280 alc_write_coef_idx(codec, 0x11, 0x0001);
3281 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3282 alc_write_coef_idx(codec, 0xb7, 0x802b);
3283 alc_write_coef_idx(codec, 0xb5, 0x1040);
3284 val = alc_read_coef_idx(codec, 0xc3);
3285 alc_write_coef_idx(codec, 0xc3, val | 1<<12);
3286 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3287 break;
3288 }
3289 snd_printdd("Headset jack set to mic-in mode.\n");
3290}
3291
3292static void alc_headset_mode_default(struct hda_codec *codec)
3293{
3294 switch (codec->vendor_id) {
3295 case 0x10ec0255:
3296 alc_write_coef_idx(codec, 0x45, 0xc089);
3297 alc_write_coef_idx(codec, 0x45, 0xc489);
3298 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3299 alc_write_coef_idx(codec, 0x49, 0x0049);
3300 break;
3301 case 0x10ec0283:
3302 alc_write_coef_idx(codec, 0x06, 0x2100);
3303 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3304 break;
3305 case 0x10ec0292:
3306 alc_write_coef_idx(codec, 0x76, 0x000e);
3307 alc_write_coef_idx(codec, 0x6c, 0x2400);
3308 alc_write_coef_idx(codec, 0x6b, 0xc429);
3309 alc_write_coef_idx(codec, 0x18, 0x7308);
3310 break;
3311 case 0x10ec0668:
3312 alc_write_coef_idx(codec, 0x11, 0x0041);
3313 alc_write_coef_idx(codec, 0x15, 0x0d40);
3314 alc_write_coef_idx(codec, 0xb7, 0x802b);
3315 break;
3316 }
3317 snd_printdd("Headset jack set to headphone (default) mode.\n");
3318}
3319
3320/* Iphone type */
3321static void alc_headset_mode_ctia(struct hda_codec *codec)
3322{
3323 switch (codec->vendor_id) {
3324 case 0x10ec0255:
3325 /* Set to CTIA type */
3326 alc_write_coef_idx(codec, 0x45, 0xd489);
3327 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3328 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3329 break;
3330 case 0x10ec0283:
3331 alc_write_coef_idx(codec, 0x45, 0xd429);
3332 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3333 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3334 break;
3335 case 0x10ec0292:
3336 alc_write_coef_idx(codec, 0x6b, 0xd429);
3337 alc_write_coef_idx(codec, 0x76, 0x0008);
3338 alc_write_coef_idx(codec, 0x18, 0x7388);
3339 break;
3340 case 0x10ec0668:
3341 alc_write_coef_idx(codec, 0x15, 0x0d60);
3342 alc_write_coef_idx(codec, 0xc3, 0x0000);
3343 break;
3344 }
3345 snd_printdd("Headset jack set to iPhone-style headset mode.\n");
3346}
3347
3348/* Nokia type */
3349static void alc_headset_mode_omtp(struct hda_codec *codec)
3350{
3351 switch (codec->vendor_id) {
3352 case 0x10ec0255:
3353 /* Set to OMTP Type */
3354 alc_write_coef_idx(codec, 0x45, 0xe489);
3355 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3356 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3357 break;
3358 case 0x10ec0283:
3359 alc_write_coef_idx(codec, 0x45, 0xe429);
3360 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3361 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3362 break;
3363 case 0x10ec0292:
3364 alc_write_coef_idx(codec, 0x6b, 0xe429);
3365 alc_write_coef_idx(codec, 0x76, 0x0008);
3366 alc_write_coef_idx(codec, 0x18, 0x7388);
3367 break;
3368 case 0x10ec0668:
3369 alc_write_coef_idx(codec, 0x15, 0x0d50);
3370 alc_write_coef_idx(codec, 0xc3, 0x0000);
3371 break;
3372 }
3373 snd_printdd("Headset jack set to Nokia-style headset mode.\n");
3374}
3375
3376static void alc_determine_headset_type(struct hda_codec *codec)
3377{
3378 int val;
3379 bool is_ctia = false;
3380 struct alc_spec *spec = codec->spec;
3381
3382 switch (codec->vendor_id) {
3383 case 0x10ec0255:
3384 /* combo jack auto switch control(Check type)*/
3385 alc_write_coef_idx(codec, 0x45, 0xd089);
3386 /* combo jack auto switch control(Vref conteol) */
3387 alc_write_coef_idx(codec, 0x49, 0x0149);
3388 msleep(300);
3389 val = alc_read_coef_idx(codec, 0x46);
3390 is_ctia = (val & 0x0070) == 0x0070;
3391 break;
3392 case 0x10ec0283:
3393 alc_write_coef_idx(codec, 0x45, 0xd029);
3394 msleep(300);
3395 val = alc_read_coef_idx(codec, 0x46);
3396 is_ctia = (val & 0x0070) == 0x0070;
3397 break;
3398 case 0x10ec0292:
3399 alc_write_coef_idx(codec, 0x6b, 0xd429);
3400 msleep(300);
3401 val = alc_read_coef_idx(codec, 0x6c);
3402 is_ctia = (val & 0x001c) == 0x001c;
3403 break;
3404 case 0x10ec0668:
3405 alc_write_coef_idx(codec, 0x11, 0x0001);
3406 alc_write_coef_idx(codec, 0xb7, 0x802b);
3407 alc_write_coef_idx(codec, 0x15, 0x0d60);
3408 alc_write_coef_idx(codec, 0xc3, 0x0c00);
3409 msleep(300);
3410 val = alc_read_coef_idx(codec, 0xbe);
3411 is_ctia = (val & 0x1c02) == 0x1c02;
3412 break;
3413 }
3414
3415 snd_printdd("Headset jack detected iPhone-style headset: %s\n",
3416 is_ctia ? "yes" : "no");
3417 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
3418}
3419
3420static void alc_update_headset_mode(struct hda_codec *codec)
3421{
3422 struct alc_spec *spec = codec->spec;
3423
3424 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
3425 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3426
3427 int new_headset_mode;
3428
3429 if (!snd_hda_jack_detect(codec, hp_pin))
3430 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
3431 else if (mux_pin == spec->headset_mic_pin)
3432 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
3433 else if (mux_pin == spec->headphone_mic_pin)
3434 new_headset_mode = ALC_HEADSET_MODE_MIC;
3435 else
3436 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
3437
3438 if (new_headset_mode == spec->current_headset_mode) {
3439 snd_hda_gen_update_outputs(codec);
3440 return;
3441 }
3442
3443 switch (new_headset_mode) {
3444 case ALC_HEADSET_MODE_UNPLUGGED:
3445 alc_headset_mode_unplugged(codec);
3446 spec->gen.hp_jack_present = false;
3447 break;
3448 case ALC_HEADSET_MODE_HEADSET:
3449 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
3450 alc_determine_headset_type(codec);
3451 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
3452 alc_headset_mode_ctia(codec);
3453 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
3454 alc_headset_mode_omtp(codec);
3455 spec->gen.hp_jack_present = true;
3456 break;
3457 case ALC_HEADSET_MODE_MIC:
3458 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
3459 spec->gen.hp_jack_present = false;
3460 break;
3461 case ALC_HEADSET_MODE_HEADPHONE:
3462 alc_headset_mode_default(codec);
3463 spec->gen.hp_jack_present = true;
3464 break;
3465 }
3466 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
3467 snd_hda_set_pin_ctl_cache(codec, hp_pin,
3468 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3469 if (spec->headphone_mic_pin)
3470 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
3471 PIN_VREFHIZ);
3472 }
3473 spec->current_headset_mode = new_headset_mode;
3474
3475 snd_hda_gen_update_outputs(codec);
3476}
3477
3478static void alc_update_headset_mode_hook(struct hda_codec *codec,
3479 struct snd_ctl_elem_value *ucontrol)
3480{
3481 alc_update_headset_mode(codec);
3482}
3483
3484static void alc_update_headset_jack_cb(struct hda_codec *codec, struct hda_jack_tbl *jack)
3485{
3486 struct alc_spec *spec = codec->spec;
3487 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
3488 snd_hda_gen_hp_automute(codec, jack);
3489}
3490
3491static void alc_probe_headset_mode(struct hda_codec *codec)
3492{
3493 int i;
3494 struct alc_spec *spec = codec->spec;
3495 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3496
3497 /* Find mic pins */
3498 for (i = 0; i < cfg->num_inputs; i++) {
3499 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
3500 spec->headset_mic_pin = cfg->inputs[i].pin;
3501 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
3502 spec->headphone_mic_pin = cfg->inputs[i].pin;
3503 }
3504
3505 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
3506 spec->gen.automute_hook = alc_update_headset_mode;
3507 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
3508}
3509
3510static void alc_fixup_headset_mode(struct hda_codec *codec,
3511 const struct hda_fixup *fix, int action)
3512{
3513 struct alc_spec *spec = codec->spec;
3514
3515 switch (action) {
3516 case HDA_FIXUP_ACT_PRE_PROBE:
3517 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
3518 break;
3519 case HDA_FIXUP_ACT_PROBE:
3520 alc_probe_headset_mode(codec);
3521 break;
3522 case HDA_FIXUP_ACT_INIT:
3523 spec->current_headset_mode = 0;
3524 alc_update_headset_mode(codec);
3525 break;
3526 }
3527}
3528
3529static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
3530 const struct hda_fixup *fix, int action)
3531{
3532 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3533 struct alc_spec *spec = codec->spec;
3534 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3535 }
3536 else
3537 alc_fixup_headset_mode(codec, fix, action);
3538}
3539
3540static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
3541 const struct hda_fixup *fix, int action)
3542{
3543 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3544 /* Set to iphone type */
3545 alc_write_coef_idx(codec, 0x1b, 0x880b);
3546 alc_write_coef_idx(codec, 0x45, 0xd089);
3547 alc_write_coef_idx(codec, 0x1b, 0x080b);
3548 alc_write_coef_idx(codec, 0x46, 0x0004);
3549 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3550 msleep(30);
3551 }
3552 alc_fixup_headset_mode(codec, fix, action);
3553}
3554
3555static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
3556 const struct hda_fixup *fix, int action)
3557{
3558 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3559 int val;
3560 alc_write_coef_idx(codec, 0xc4, 0x8000);
3561 val = alc_read_coef_idx(codec, 0xc2);
3562 alc_write_coef_idx(codec, 0xc2, val & 0xfe);
3563 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
3564 }
3565 alc_fixup_headset_mode(codec, fix, action);
3566}
3567
3568/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
3569static int find_ext_mic_pin(struct hda_codec *codec)
3570{
3571 struct alc_spec *spec = codec->spec;
3572 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3573 hda_nid_t nid;
3574 unsigned int defcfg;
3575 int i;
3576
3577 for (i = 0; i < cfg->num_inputs; i++) {
3578 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3579 continue;
3580 nid = cfg->inputs[i].pin;
3581 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3582 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
3583 continue;
3584 return nid;
3585 }
3586
3587 return 0;
3588}
3589
3590static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
3591 const struct hda_fixup *fix,
3592 int action)
3593{
3594 struct alc_spec *spec = codec->spec;
3595
3596 if (action == HDA_FIXUP_ACT_PROBE) {
3597 int mic_pin = find_ext_mic_pin(codec);
3598 int hp_pin = spec->gen.autocfg.hp_pins[0];
3599
3600 if (snd_BUG_ON(!mic_pin || !hp_pin))
3601 return;
3602 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
3603 }
3604}
3605
3606static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
3607 const struct hda_fixup *fix,
3608 int action)
3609{
3610 struct alc_spec *spec = codec->spec;
3611 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3612 int i;
3613
3614 /* The mic boosts on level 2 and 3 are too noisy
3615 on the internal mic input.
3616 Therefore limit the boost to 0 or 1. */
3617
3618 if (action != HDA_FIXUP_ACT_PROBE)
3619 return;
3620
3621 for (i = 0; i < cfg->num_inputs; i++) {
3622 hda_nid_t nid = cfg->inputs[i].pin;
3623 unsigned int defcfg;
3624 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3625 continue;
3626 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3627 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
3628 continue;
3629
3630 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
3631 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
3632 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3633 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
3634 (0 << AC_AMPCAP_MUTE_SHIFT));
3635 }
3636}
3637
3638static void alc283_hp_automute_hook(struct hda_codec *codec,
3639 struct hda_jack_tbl *jack)
3640{
3641 struct alc_spec *spec = codec->spec;
3642 int vref;
3643
3644 msleep(200);
3645 snd_hda_gen_hp_automute(codec, jack);
3646
3647 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3648
3649 msleep(600);
3650 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3651 vref);
3652}
3653
3654static void alc283_chromebook_caps(struct hda_codec *codec)
3655{
3656 snd_hda_override_wcaps(codec, 0x03, 0);
3657}
3658
3659static void alc283_fixup_chromebook(struct hda_codec *codec,
3660 const struct hda_fixup *fix, int action)
3661{
3662 struct alc_spec *spec = codec->spec;
3663 int val;
3664
3665 switch (action) {
3666 case HDA_FIXUP_ACT_PRE_PROBE:
3667 alc283_chromebook_caps(codec);
3668 /* Disable AA-loopback as it causes white noise */
3669 spec->gen.mixer_nid = 0;
3670 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
3671 break;
3672 case HDA_FIXUP_ACT_INIT:
3673 /* MIC2-VREF control */
3674 /* Set to manual mode */
3675 val = alc_read_coef_idx(codec, 0x06);
3676 alc_write_coef_idx(codec, 0x06, val & ~0x000c);
3677 /* Enable Line1 input control by verb */
3678 val = alc_read_coef_idx(codec, 0x1a);
3679 alc_write_coef_idx(codec, 0x1a, val | (1 << 4));
3680 break;
3681 }
3682}
3683
3684/* mute tablet speaker pin (0x14) via dock plugging in addition */
3685static void asus_tx300_automute(struct hda_codec *codec)
3686{
3687 struct alc_spec *spec = codec->spec;
3688 snd_hda_gen_update_outputs(codec);
3689 if (snd_hda_jack_detect(codec, 0x1b))
3690 spec->gen.mute_bits |= (1ULL << 0x14);
3691}
3692
3693static void alc282_fixup_asus_tx300(struct hda_codec *codec,
3694 const struct hda_fixup *fix, int action)
3695{
3696 struct alc_spec *spec = codec->spec;
3697 /* TX300 needs to set up GPIO2 for the speaker amp */
3698 static const struct hda_verb gpio2_verbs[] = {
3699 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
3700 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
3701 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
3702 {}
3703 };
3704 static const struct hda_pintbl dock_pins[] = {
3705 { 0x1b, 0x21114000 }, /* dock speaker pin */
3706 {}
3707 };
3708 struct snd_kcontrol *kctl;
3709
3710 switch (action) {
3711 case HDA_FIXUP_ACT_PRE_PROBE:
3712 snd_hda_add_verbs(codec, gpio2_verbs);
3713 snd_hda_apply_pincfgs(codec, dock_pins);
3714 spec->gen.auto_mute_via_amp = 1;
3715 spec->gen.automute_hook = asus_tx300_automute;
3716 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3717 HDA_GEN_HP_EVENT,
3718 snd_hda_gen_hp_automute);
3719 break;
3720 case HDA_FIXUP_ACT_BUILD:
3721 /* this is a bit tricky; give more sane names for the main
3722 * (tablet) speaker and the dock speaker, respectively
3723 */
3724 kctl = snd_hda_find_mixer_ctl(codec, "Speaker Playback Switch");
3725 if (kctl)
3726 strcpy(kctl->id.name, "Dock Speaker Playback Switch");
3727 kctl = snd_hda_find_mixer_ctl(codec, "Bass Speaker Playback Switch");
3728 if (kctl)
3729 strcpy(kctl->id.name, "Speaker Playback Switch");
3730 break;
3731 }
3732}
3733
3734static void alc290_fixup_mono_speakers(struct hda_codec *codec,
3735 const struct hda_fixup *fix, int action)
3736{
3737 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3738 /* Remove DAC node 0x03, as it seems to be
3739 giving mono output */
3740 snd_hda_override_wcaps(codec, 0x03, 0);
3741}
3742
3743#if IS_ENABLED(CONFIG_THINKPAD_ACPI)
3744
3745#include <linux/thinkpad_acpi.h>
3746#include <acpi/acpi.h>
3747
3748static int (*led_set_func)(int, bool);
3749
3750static acpi_status acpi_check_cb(acpi_handle handle, u32 lvl, void *context,
3751 void **rv)
3752{
3753 bool *found = context;
3754 *found = true;
3755 return AE_OK;
3756}
3757
3758static bool is_thinkpad(struct hda_codec *codec)
3759{
3760 bool found = false;
3761 if (codec->subsystem_id >> 16 != 0x17aa)
3762 return false;
3763 if (ACPI_SUCCESS(acpi_get_devices("LEN0068", acpi_check_cb, &found, NULL)) && found)
3764 return true;
3765 found = false;
3766 return ACPI_SUCCESS(acpi_get_devices("IBM0068", acpi_check_cb, &found, NULL)) && found;
3767}
3768
3769static void update_tpacpi_mute_led(void *private_data, int enabled)
3770{
3771 if (led_set_func)
3772 led_set_func(TPACPI_LED_MUTE, !enabled);
3773}
3774
3775static void update_tpacpi_micmute_led(struct hda_codec *codec,
3776 struct snd_ctl_elem_value *ucontrol)
3777{
3778 if (!ucontrol || !led_set_func)
3779 return;
3780 if (strcmp("Capture Switch", ucontrol->id.name) == 0 && ucontrol->id.index == 0) {
3781 /* TODO: How do I verify if it's a mono or stereo here? */
3782 bool val = ucontrol->value.integer.value[0] || ucontrol->value.integer.value[1];
3783 led_set_func(TPACPI_LED_MICMUTE, !val);
3784 }
3785}
3786
3787static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3788 const struct hda_fixup *fix, int action)
3789{
3790 struct alc_spec *spec = codec->spec;
3791 bool removefunc = false;
3792
3793 if (action == HDA_FIXUP_ACT_PROBE) {
3794 if (!is_thinkpad(codec))
3795 return;
3796 if (!led_set_func)
3797 led_set_func = symbol_request(tpacpi_led_set);
3798 if (!led_set_func) {
3799 snd_printk(KERN_WARNING "Failed to find thinkpad-acpi symbol tpacpi_led_set\n");
3800 return;
3801 }
3802
3803 removefunc = true;
3804 if (led_set_func(TPACPI_LED_MUTE, false) >= 0) {
3805 spec->gen.vmaster_mute.hook = update_tpacpi_mute_led;
3806 removefunc = false;
3807 }
3808 if (led_set_func(TPACPI_LED_MICMUTE, false) >= 0) {
3809 if (spec->gen.num_adc_nids > 1)
3810 snd_printdd("Skipping micmute LED control due to several ADCs");
3811 else {
3812 spec->gen.cap_sync_hook = update_tpacpi_micmute_led;
3813 removefunc = false;
3814 }
3815 }
3816 }
3817
3818 if (led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) {
3819 symbol_put(tpacpi_led_set);
3820 led_set_func = NULL;
3821 }
3822}
3823
3824#else
3825
3826static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3827 const struct hda_fixup *fix, int action)
3828{
3829}
3830
3831#endif
3832
3833enum {
3834 ALC269_FIXUP_SONY_VAIO,
3835 ALC275_FIXUP_SONY_VAIO_GPIO2,
3836 ALC269_FIXUP_DELL_M101Z,
3837 ALC269_FIXUP_SKU_IGNORE,
3838 ALC269_FIXUP_ASUS_G73JW,
3839 ALC269_FIXUP_LENOVO_EAPD,
3840 ALC275_FIXUP_SONY_HWEQ,
3841 ALC271_FIXUP_DMIC,
3842 ALC269_FIXUP_PCM_44K,
3843 ALC269_FIXUP_STEREO_DMIC,
3844 ALC269_FIXUP_HEADSET_MIC,
3845 ALC269_FIXUP_QUANTA_MUTE,
3846 ALC269_FIXUP_LIFEBOOK,
3847 ALC269_FIXUP_AMIC,
3848 ALC269_FIXUP_DMIC,
3849 ALC269VB_FIXUP_AMIC,
3850 ALC269VB_FIXUP_DMIC,
3851 ALC269_FIXUP_HP_MUTE_LED,
3852 ALC269_FIXUP_HP_MUTE_LED_MIC1,
3853 ALC269_FIXUP_HP_MUTE_LED_MIC2,
3854 ALC269_FIXUP_HP_GPIO_LED,
3855 ALC269_FIXUP_INV_DMIC,
3856 ALC269_FIXUP_LENOVO_DOCK,
3857 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
3858 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
3859 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
3860 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
3861 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
3862 ALC269_FIXUP_HEADSET_MODE,
3863 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
3864 ALC269_FIXUP_ASUS_X101_FUNC,
3865 ALC269_FIXUP_ASUS_X101_VERB,
3866 ALC269_FIXUP_ASUS_X101,
3867 ALC271_FIXUP_AMIC_MIC2,
3868 ALC271_FIXUP_HP_GATE_MIC_JACK,
3869 ALC269_FIXUP_ACER_AC700,
3870 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
3871 ALC269VB_FIXUP_ASUS_ZENBOOK,
3872 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
3873 ALC269VB_FIXUP_ORDISSIMO_EVE2,
3874 ALC283_FIXUP_CHROME_BOOK,
3875 ALC282_FIXUP_ASUS_TX300,
3876 ALC283_FIXUP_INT_MIC,
3877 ALC290_FIXUP_MONO_SPEAKERS,
3878 ALC269_FIXUP_THINKPAD_ACPI,
3879 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
3880 ALC255_FIXUP_HEADSET_MODE,
3881};
3882
3883static const struct hda_fixup alc269_fixups[] = {
3884 [ALC269_FIXUP_SONY_VAIO] = {
3885 .type = HDA_FIXUP_PINCTLS,
3886 .v.pins = (const struct hda_pintbl[]) {
3887 {0x19, PIN_VREFGRD},
3888 {}
3889 }
3890 },
3891 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
3892 .type = HDA_FIXUP_VERBS,
3893 .v.verbs = (const struct hda_verb[]) {
3894 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
3895 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
3896 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3897 { }
3898 },
3899 .chained = true,
3900 .chain_id = ALC269_FIXUP_SONY_VAIO
3901 },
3902 [ALC269_FIXUP_DELL_M101Z] = {
3903 .type = HDA_FIXUP_VERBS,
3904 .v.verbs = (const struct hda_verb[]) {
3905 /* Enables internal speaker */
3906 {0x20, AC_VERB_SET_COEF_INDEX, 13},
3907 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
3908 {}
3909 }
3910 },
3911 [ALC269_FIXUP_SKU_IGNORE] = {
3912 .type = HDA_FIXUP_FUNC,
3913 .v.func = alc_fixup_sku_ignore,
3914 },
3915 [ALC269_FIXUP_ASUS_G73JW] = {
3916 .type = HDA_FIXUP_PINS,
3917 .v.pins = (const struct hda_pintbl[]) {
3918 { 0x17, 0x99130111 }, /* subwoofer */
3919 { }
3920 }
3921 },
3922 [ALC269_FIXUP_LENOVO_EAPD] = {
3923 .type = HDA_FIXUP_VERBS,
3924 .v.verbs = (const struct hda_verb[]) {
3925 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3926 {}
3927 }
3928 },
3929 [ALC275_FIXUP_SONY_HWEQ] = {
3930 .type = HDA_FIXUP_FUNC,
3931 .v.func = alc269_fixup_hweq,
3932 .chained = true,
3933 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
3934 },
3935 [ALC271_FIXUP_DMIC] = {
3936 .type = HDA_FIXUP_FUNC,
3937 .v.func = alc271_fixup_dmic,
3938 },
3939 [ALC269_FIXUP_PCM_44K] = {
3940 .type = HDA_FIXUP_FUNC,
3941 .v.func = alc269_fixup_pcm_44k,
3942 .chained = true,
3943 .chain_id = ALC269_FIXUP_QUANTA_MUTE
3944 },
3945 [ALC269_FIXUP_STEREO_DMIC] = {
3946 .type = HDA_FIXUP_FUNC,
3947 .v.func = alc269_fixup_stereo_dmic,
3948 },
3949 [ALC269_FIXUP_HEADSET_MIC] = {
3950 .type = HDA_FIXUP_FUNC,
3951 .v.func = alc269_fixup_headset_mic,
3952 },
3953 [ALC269_FIXUP_QUANTA_MUTE] = {
3954 .type = HDA_FIXUP_FUNC,
3955 .v.func = alc269_fixup_quanta_mute,
3956 },
3957 [ALC269_FIXUP_LIFEBOOK] = {
3958 .type = HDA_FIXUP_PINS,
3959 .v.pins = (const struct hda_pintbl[]) {
3960 { 0x1a, 0x2101103f }, /* dock line-out */
3961 { 0x1b, 0x23a11040 }, /* dock mic-in */
3962 { }
3963 },
3964 .chained = true,
3965 .chain_id = ALC269_FIXUP_QUANTA_MUTE
3966 },
3967 [ALC269_FIXUP_AMIC] = {
3968 .type = HDA_FIXUP_PINS,
3969 .v.pins = (const struct hda_pintbl[]) {
3970 { 0x14, 0x99130110 }, /* speaker */
3971 { 0x15, 0x0121401f }, /* HP out */
3972 { 0x18, 0x01a19c20 }, /* mic */
3973 { 0x19, 0x99a3092f }, /* int-mic */
3974 { }
3975 },
3976 },
3977 [ALC269_FIXUP_DMIC] = {
3978 .type = HDA_FIXUP_PINS,
3979 .v.pins = (const struct hda_pintbl[]) {
3980 { 0x12, 0x99a3092f }, /* int-mic */
3981 { 0x14, 0x99130110 }, /* speaker */
3982 { 0x15, 0x0121401f }, /* HP out */
3983 { 0x18, 0x01a19c20 }, /* mic */
3984 { }
3985 },
3986 },
3987 [ALC269VB_FIXUP_AMIC] = {
3988 .type = HDA_FIXUP_PINS,
3989 .v.pins = (const struct hda_pintbl[]) {
3990 { 0x14, 0x99130110 }, /* speaker */
3991 { 0x18, 0x01a19c20 }, /* mic */
3992 { 0x19, 0x99a3092f }, /* int-mic */
3993 { 0x21, 0x0121401f }, /* HP out */
3994 { }
3995 },
3996 },
3997 [ALC269VB_FIXUP_DMIC] = {
3998 .type = HDA_FIXUP_PINS,
3999 .v.pins = (const struct hda_pintbl[]) {
4000 { 0x12, 0x99a3092f }, /* int-mic */
4001 { 0x14, 0x99130110 }, /* speaker */
4002 { 0x18, 0x01a19c20 }, /* mic */
4003 { 0x21, 0x0121401f }, /* HP out */
4004 { }
4005 },
4006 },
4007 [ALC269_FIXUP_HP_MUTE_LED] = {
4008 .type = HDA_FIXUP_FUNC,
4009 .v.func = alc269_fixup_hp_mute_led,
4010 },
4011 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
4012 .type = HDA_FIXUP_FUNC,
4013 .v.func = alc269_fixup_hp_mute_led_mic1,
4014 },
4015 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
4016 .type = HDA_FIXUP_FUNC,
4017 .v.func = alc269_fixup_hp_mute_led_mic2,
4018 },
4019 [ALC269_FIXUP_HP_GPIO_LED] = {
4020 .type = HDA_FIXUP_FUNC,
4021 .v.func = alc269_fixup_hp_gpio_led,
4022 },
4023 [ALC269_FIXUP_INV_DMIC] = {
4024 .type = HDA_FIXUP_FUNC,
4025 .v.func = alc_fixup_inv_dmic_0x12,
4026 },
4027 [ALC269_FIXUP_LENOVO_DOCK] = {
4028 .type = HDA_FIXUP_PINS,
4029 .v.pins = (const struct hda_pintbl[]) {
4030 { 0x19, 0x23a11040 }, /* dock mic */
4031 { 0x1b, 0x2121103f }, /* dock headphone */
4032 { }
4033 },
4034 .chained = true,
4035 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4036 },
4037 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
4038 .type = HDA_FIXUP_FUNC,
4039 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
4040 .chained = true,
4041 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
4042 },
4043 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4044 .type = HDA_FIXUP_PINS,
4045 .v.pins = (const struct hda_pintbl[]) {
4046 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4047 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4048 { }
4049 },
4050 .chained = true,
4051 .chain_id = ALC269_FIXUP_HEADSET_MODE
4052 },
4053 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
4054 .type = HDA_FIXUP_PINS,
4055 .v.pins = (const struct hda_pintbl[]) {
4056 { 0x16, 0x21014020 }, /* dock line out */
4057 { 0x19, 0x21a19030 }, /* dock mic */
4058 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4059 { }
4060 },
4061 .chained = true,
4062 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4063 },
4064 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
4065 .type = HDA_FIXUP_PINS,
4066 .v.pins = (const struct hda_pintbl[]) {
4067 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4068 { }
4069 },
4070 .chained = true,
4071 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4072 },
4073 [ALC269_FIXUP_HEADSET_MODE] = {
4074 .type = HDA_FIXUP_FUNC,
4075 .v.func = alc_fixup_headset_mode,
4076 },
4077 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
4078 .type = HDA_FIXUP_FUNC,
4079 .v.func = alc_fixup_headset_mode_no_hp_mic,
4080 },
4081 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
4082 .type = HDA_FIXUP_PINS,
4083 .v.pins = (const struct hda_pintbl[]) {
4084 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4085 { }
4086 },
4087 .chained = true,
4088 .chain_id = ALC269_FIXUP_HEADSET_MIC
4089 },
4090 [ALC269_FIXUP_ASUS_X101_FUNC] = {
4091 .type = HDA_FIXUP_FUNC,
4092 .v.func = alc269_fixup_x101_headset_mic,
4093 },
4094 [ALC269_FIXUP_ASUS_X101_VERB] = {
4095 .type = HDA_FIXUP_VERBS,
4096 .v.verbs = (const struct hda_verb[]) {
4097 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4098 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
4099 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
4100 { }
4101 },
4102 .chained = true,
4103 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
4104 },
4105 [ALC269_FIXUP_ASUS_X101] = {
4106 .type = HDA_FIXUP_PINS,
4107 .v.pins = (const struct hda_pintbl[]) {
4108 { 0x18, 0x04a1182c }, /* Headset mic */
4109 { }
4110 },
4111 .chained = true,
4112 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
4113 },
4114 [ALC271_FIXUP_AMIC_MIC2] = {
4115 .type = HDA_FIXUP_PINS,
4116 .v.pins = (const struct hda_pintbl[]) {
4117 { 0x14, 0x99130110 }, /* speaker */
4118 { 0x19, 0x01a19c20 }, /* mic */
4119 { 0x1b, 0x99a7012f }, /* int-mic */
4120 { 0x21, 0x0121401f }, /* HP out */
4121 { }
4122 },
4123 },
4124 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
4125 .type = HDA_FIXUP_FUNC,
4126 .v.func = alc271_hp_gate_mic_jack,
4127 .chained = true,
4128 .chain_id = ALC271_FIXUP_AMIC_MIC2,
4129 },
4130 [ALC269_FIXUP_ACER_AC700] = {
4131 .type = HDA_FIXUP_PINS,
4132 .v.pins = (const struct hda_pintbl[]) {
4133 { 0x12, 0x99a3092f }, /* int-mic */
4134 { 0x14, 0x99130110 }, /* speaker */
4135 { 0x18, 0x03a11c20 }, /* mic */
4136 { 0x1e, 0x0346101e }, /* SPDIF1 */
4137 { 0x21, 0x0321101f }, /* HP out */
4138 { }
4139 },
4140 .chained = true,
4141 .chain_id = ALC271_FIXUP_DMIC,
4142 },
4143 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
4144 .type = HDA_FIXUP_FUNC,
4145 .v.func = alc269_fixup_limit_int_mic_boost,
4146 .chained = true,
4147 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
4148 },
4149 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
4150 .type = HDA_FIXUP_FUNC,
4151 .v.func = alc269_fixup_limit_int_mic_boost,
4152 .chained = true,
4153 .chain_id = ALC269VB_FIXUP_DMIC,
4154 },
4155 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
4156 .type = HDA_FIXUP_FUNC,
4157 .v.func = alc269_fixup_limit_int_mic_boost,
4158 .chained = true,
4159 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
4160 },
4161 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
4162 .type = HDA_FIXUP_PINS,
4163 .v.pins = (const struct hda_pintbl[]) {
4164 { 0x12, 0x99a3092f }, /* int-mic */
4165 { 0x18, 0x03a11d20 }, /* mic */
4166 { 0x19, 0x411111f0 }, /* Unused bogus pin */
4167 { }
4168 },
4169 },
4170 [ALC283_FIXUP_CHROME_BOOK] = {
4171 .type = HDA_FIXUP_FUNC,
4172 .v.func = alc283_fixup_chromebook,
4173 },
4174 [ALC282_FIXUP_ASUS_TX300] = {
4175 .type = HDA_FIXUP_FUNC,
4176 .v.func = alc282_fixup_asus_tx300,
4177 },
4178 [ALC283_FIXUP_INT_MIC] = {
4179 .type = HDA_FIXUP_VERBS,
4180 .v.verbs = (const struct hda_verb[]) {
4181 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
4182 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
4183 { }
4184 },
4185 .chained = true,
4186 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4187 },
4188 [ALC290_FIXUP_MONO_SPEAKERS] = {
4189 .type = HDA_FIXUP_FUNC,
4190 .v.func = alc290_fixup_mono_speakers,
4191 .chained = true,
4192 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
4193 },
4194 [ALC269_FIXUP_THINKPAD_ACPI] = {
4195 .type = HDA_FIXUP_FUNC,
4196 .v.func = alc_fixup_thinkpad_acpi,
4197 },
4198 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4199 .type = HDA_FIXUP_PINS,
4200 .v.pins = (const struct hda_pintbl[]) {
4201 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4202 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4203 { }
4204 },
4205 .chained = true,
4206 .chain_id = ALC255_FIXUP_HEADSET_MODE
4207 },
4208 [ALC255_FIXUP_HEADSET_MODE] = {
4209 .type = HDA_FIXUP_FUNC,
4210 .v.func = alc_fixup_headset_mode_alc255,
4211 },
4212};
4213
4214static const struct snd_pci_quirk alc269_fixup_tbl[] = {
4215 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
4216 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
4217 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
4218 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
4219 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
4220 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
4221 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4222 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4223 SND_PCI_QUIRK(0x1028, 0x05be, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4224 SND_PCI_QUIRK(0x1028, 0x05c4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4225 SND_PCI_QUIRK(0x1028, 0x05c5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4226 SND_PCI_QUIRK(0x1028, 0x05c6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4227 SND_PCI_QUIRK(0x1028, 0x05c7, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4228 SND_PCI_QUIRK(0x1028, 0x05c8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4229 SND_PCI_QUIRK(0x1028, 0x05c9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4230 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4231 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4232 SND_PCI_QUIRK(0x1028, 0x05cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4233 SND_PCI_QUIRK(0x1028, 0x05cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4234 SND_PCI_QUIRK(0x1028, 0x05de, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4235 SND_PCI_QUIRK(0x1028, 0x05e0, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4236 SND_PCI_QUIRK(0x1028, 0x05e9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4237 SND_PCI_QUIRK(0x1028, 0x05ea, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4238 SND_PCI_QUIRK(0x1028, 0x05eb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4239 SND_PCI_QUIRK(0x1028, 0x05ec, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4240 SND_PCI_QUIRK(0x1028, 0x05ed, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4241 SND_PCI_QUIRK(0x1028, 0x05ee, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4242 SND_PCI_QUIRK(0x1028, 0x05f3, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4243 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4244 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4245 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4246 SND_PCI_QUIRK(0x1028, 0x05f8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4247 SND_PCI_QUIRK(0x1028, 0x05f9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4248 SND_PCI_QUIRK(0x1028, 0x05fb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4249 SND_PCI_QUIRK(0x1028, 0x0606, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4250 SND_PCI_QUIRK(0x1028, 0x0608, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4251 SND_PCI_QUIRK(0x1028, 0x0609, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4252 SND_PCI_QUIRK(0x1028, 0x0613, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4253 SND_PCI_QUIRK(0x1028, 0x0614, "Dell Inspiron 3135", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4254 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_MONO_SPEAKERS),
4255 SND_PCI_QUIRK(0x1028, 0x061f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
4256 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS),
4257 SND_PCI_QUIRK(0x1028, 0x063f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
4258 SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4259 SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4260 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
4261 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
4262 SND_PCI_QUIRK(0x103c, 0x1973, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4263 SND_PCI_QUIRK(0x103c, 0x1983, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4264 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
4265 SND_PCI_QUIRK(0x103c, 0x21ed, "HP Falco Chromebook", ALC283_FIXUP_CHROME_BOOK),
4266 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
4267 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
4268 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4269 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4270 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
4271 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK),
4272 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4273 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
4274 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
4275 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4276 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4277 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4278 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4279 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4280 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
4281 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
4282 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4283 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4284 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4285 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4286 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4287 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4288 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4289 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4290 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4291 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
4292 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
4293 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
4294 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4295 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
4296 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
4297 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
4298 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4299 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4300 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4301 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4302 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4303 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
4304 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4305 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4306 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
4307 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
4308 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
4309 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
4310
4311#if 0
4312 /* Below is a quirk table taken from the old code.
4313 * Basically the device should work as is without the fixup table.
4314 * If BIOS doesn't give a proper info, enable the corresponding
4315 * fixup entry.
4316 */
4317 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4318 ALC269_FIXUP_AMIC),
4319 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
4320 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4321 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4322 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4323 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4324 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4325 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4326 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4327 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4328 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4329 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4330 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4331 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4332 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4333 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4334 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4335 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4336 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4337 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4338 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4339 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4340 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4341 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4342 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4343 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4344 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4345 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4346 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4347 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4348 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4349 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4350 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4351 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4352 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4353 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4354 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4355 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4356 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4357 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4358#endif
4359 {}
4360};
4361
4362static const struct hda_model_fixup alc269_fixup_models[] = {
4363 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4364 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
4365 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
4366 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
4367 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
4368 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
4369 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
4370 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
4371 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
4372 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
4373 {}
4374};
4375
4376
4377static void alc269_fill_coef(struct hda_codec *codec)
4378{
4379 struct alc_spec *spec = codec->spec;
4380 int val;
4381
4382 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
4383 return;
4384
4385 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
4386 alc_write_coef_idx(codec, 0xf, 0x960b);
4387 alc_write_coef_idx(codec, 0xe, 0x8817);
4388 }
4389
4390 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
4391 alc_write_coef_idx(codec, 0xf, 0x960b);
4392 alc_write_coef_idx(codec, 0xe, 0x8814);
4393 }
4394
4395 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
4396 val = alc_read_coef_idx(codec, 0x04);
4397 /* Power up output pin */
4398 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4399 }
4400
4401 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
4402 val = alc_read_coef_idx(codec, 0xd);
4403 if ((val & 0x0c00) >> 10 != 0x1) {
4404 /* Capless ramp up clock control */
4405 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4406 }
4407 val = alc_read_coef_idx(codec, 0x17);
4408 if ((val & 0x01c0) >> 6 != 0x4) {
4409 /* Class D power on reset */
4410 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4411 }
4412 }
4413
4414 val = alc_read_coef_idx(codec, 0xd); /* Class D */
4415 alc_write_coef_idx(codec, 0xd, val | (1<<14));
4416
4417 val = alc_read_coef_idx(codec, 0x4); /* HP */
4418 alc_write_coef_idx(codec, 0x4, val | (1<<11));
4419}
4420
4421/*
4422 */
4423static int patch_alc269(struct hda_codec *codec)
4424{
4425 struct alc_spec *spec;
4426 int err;
4427
4428 err = alc_alloc_spec(codec, 0x0b);
4429 if (err < 0)
4430 return err;
4431
4432 spec = codec->spec;
4433 spec->gen.shared_mic_vref_pin = 0x18;
4434
4435 snd_hda_pick_fixup(codec, alc269_fixup_models,
4436 alc269_fixup_tbl, alc269_fixups);
4437 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4438
4439 alc_auto_parse_customize_define(codec);
4440
4441 if (has_cdefine_beep(codec))
4442 spec->gen.beep_nid = 0x01;
4443
4444 switch (codec->vendor_id) {
4445 case 0x10ec0269:
4446 spec->codec_variant = ALC269_TYPE_ALC269VA;
4447 switch (alc_get_coef0(codec) & 0x00f0) {
4448 case 0x0010:
4449 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
4450 spec->cdefine.platform_type == 1)
4451 err = alc_codec_rename(codec, "ALC271X");
4452 spec->codec_variant = ALC269_TYPE_ALC269VB;
4453 break;
4454 case 0x0020:
4455 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4456 codec->bus->pci->subsystem_device == 0x21f3)
4457 err = alc_codec_rename(codec, "ALC3202");
4458 spec->codec_variant = ALC269_TYPE_ALC269VC;
4459 break;
4460 case 0x0030:
4461 spec->codec_variant = ALC269_TYPE_ALC269VD;
4462 break;
4463 default:
4464 alc_fix_pll_init(codec, 0x20, 0x04, 15);
4465 }
4466 if (err < 0)
4467 goto error;
4468 spec->init_hook = alc269_fill_coef;
4469 alc269_fill_coef(codec);
4470 break;
4471
4472 case 0x10ec0280:
4473 case 0x10ec0290:
4474 spec->codec_variant = ALC269_TYPE_ALC280;
4475 break;
4476 case 0x10ec0282:
4477 spec->codec_variant = ALC269_TYPE_ALC282;
4478 break;
4479 case 0x10ec0233:
4480 case 0x10ec0283:
4481 spec->codec_variant = ALC269_TYPE_ALC283;
4482 spec->shutup = alc283_shutup;
4483 spec->init_hook = alc283_init;
4484 break;
4485 case 0x10ec0284:
4486 case 0x10ec0292:
4487 spec->codec_variant = ALC269_TYPE_ALC284;
4488 break;
4489 case 0x10ec0285:
4490 case 0x10ec0293:
4491 spec->codec_variant = ALC269_TYPE_ALC285;
4492 break;
4493 case 0x10ec0286:
4494 spec->codec_variant = ALC269_TYPE_ALC286;
4495 break;
4496 case 0x10ec0255:
4497 spec->codec_variant = ALC269_TYPE_ALC255;
4498 break;
4499 }
4500
4501 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
4502 spec->has_alc5505_dsp = 1;
4503 spec->init_hook = alc5505_dsp_init;
4504 }
4505
4506 /* automatic parse from the BIOS config */
4507 err = alc269_parse_auto_config(codec);
4508 if (err < 0)
4509 goto error;
4510
4511 if (!spec->gen.no_analog && spec->gen.beep_nid)
4512 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
4513
4514 codec->patch_ops = alc_patch_ops;
4515#ifdef CONFIG_PM
4516 codec->patch_ops.suspend = alc269_suspend;
4517 codec->patch_ops.resume = alc269_resume;
4518#endif
4519 if (!spec->shutup)
4520 spec->shutup = alc269_shutup;
4521
4522 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4523
4524 return 0;
4525
4526 error:
4527 alc_free(codec);
4528 return err;
4529}
4530
4531/*
4532 * ALC861
4533 */
4534
4535static int alc861_parse_auto_config(struct hda_codec *codec)
4536{
4537 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
4538 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4539 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
4540}
4541
4542/* Pin config fixes */
4543enum {
4544 ALC861_FIXUP_FSC_AMILO_PI1505,
4545 ALC861_FIXUP_AMP_VREF_0F,
4546 ALC861_FIXUP_NO_JACK_DETECT,
4547 ALC861_FIXUP_ASUS_A6RP,
4548 ALC660_FIXUP_ASUS_W7J,
4549};
4550
4551/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
4552static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
4553 const struct hda_fixup *fix, int action)
4554{
4555 struct alc_spec *spec = codec->spec;
4556 unsigned int val;
4557
4558 if (action != HDA_FIXUP_ACT_INIT)
4559 return;
4560 val = snd_hda_codec_get_pin_target(codec, 0x0f);
4561 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
4562 val |= AC_PINCTL_IN_EN;
4563 val |= AC_PINCTL_VREF_50;
4564 snd_hda_set_pin_ctl(codec, 0x0f, val);
4565 spec->gen.keep_vref_in_automute = 1;
4566}
4567
4568/* suppress the jack-detection */
4569static void alc_fixup_no_jack_detect(struct hda_codec *codec,
4570 const struct hda_fixup *fix, int action)
4571{
4572 if (action == HDA_FIXUP_ACT_PRE_PROBE)
4573 codec->no_jack_detect = 1;
4574}
4575
4576static const struct hda_fixup alc861_fixups[] = {
4577 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
4578 .type = HDA_FIXUP_PINS,
4579 .v.pins = (const struct hda_pintbl[]) {
4580 { 0x0b, 0x0221101f }, /* HP */
4581 { 0x0f, 0x90170310 }, /* speaker */
4582 { }
4583 }
4584 },
4585 [ALC861_FIXUP_AMP_VREF_0F] = {
4586 .type = HDA_FIXUP_FUNC,
4587 .v.func = alc861_fixup_asus_amp_vref_0f,
4588 },
4589 [ALC861_FIXUP_NO_JACK_DETECT] = {
4590 .type = HDA_FIXUP_FUNC,
4591 .v.func = alc_fixup_no_jack_detect,
4592 },
4593 [ALC861_FIXUP_ASUS_A6RP] = {
4594 .type = HDA_FIXUP_FUNC,
4595 .v.func = alc861_fixup_asus_amp_vref_0f,
4596 .chained = true,
4597 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
4598 },
4599 [ALC660_FIXUP_ASUS_W7J] = {
4600 .type = HDA_FIXUP_VERBS,
4601 .v.verbs = (const struct hda_verb[]) {
4602 /* ASUS W7J needs a magic pin setup on unused NID 0x10
4603 * for enabling outputs
4604 */
4605 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4606 { }
4607 },
4608 }
4609};
4610
4611static const struct snd_pci_quirk alc861_fixup_tbl[] = {
4612 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
4613 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
4614 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
4615 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
4616 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
4617 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
4618 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
4619 {}
4620};
4621
4622/*
4623 */
4624static int patch_alc861(struct hda_codec *codec)
4625{
4626 struct alc_spec *spec;
4627 int err;
4628
4629 err = alc_alloc_spec(codec, 0x15);
4630 if (err < 0)
4631 return err;
4632
4633 spec = codec->spec;
4634 spec->gen.beep_nid = 0x23;
4635
4636 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4637 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4638
4639 /* automatic parse from the BIOS config */
4640 err = alc861_parse_auto_config(codec);
4641 if (err < 0)
4642 goto error;
4643
4644 if (!spec->gen.no_analog)
4645 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
4646
4647 codec->patch_ops = alc_patch_ops;
4648#ifdef CONFIG_PM
4649 spec->power_hook = alc_power_eapd;
4650#endif
4651
4652 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4653
4654 return 0;
4655
4656 error:
4657 alc_free(codec);
4658 return err;
4659}
4660
4661/*
4662 * ALC861-VD support
4663 *
4664 * Based on ALC882
4665 *
4666 * In addition, an independent DAC
4667 */
4668static int alc861vd_parse_auto_config(struct hda_codec *codec)
4669{
4670 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
4671 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4672 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
4673}
4674
4675enum {
4676 ALC660VD_FIX_ASUS_GPIO1,
4677 ALC861VD_FIX_DALLAS,
4678};
4679
4680/* exclude VREF80 */
4681static void alc861vd_fixup_dallas(struct hda_codec *codec,
4682 const struct hda_fixup *fix, int action)
4683{
4684 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
4685 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
4686 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
4687 }
4688}
4689
4690static const struct hda_fixup alc861vd_fixups[] = {
4691 [ALC660VD_FIX_ASUS_GPIO1] = {
4692 .type = HDA_FIXUP_VERBS,
4693 .v.verbs = (const struct hda_verb[]) {
4694 /* reset GPIO1 */
4695 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4696 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4697 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4698 { }
4699 }
4700 },
4701 [ALC861VD_FIX_DALLAS] = {
4702 .type = HDA_FIXUP_FUNC,
4703 .v.func = alc861vd_fixup_dallas,
4704 },
4705};
4706
4707static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
4708 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
4709 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
4710 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
4711 {}
4712};
4713
4714/*
4715 */
4716static int patch_alc861vd(struct hda_codec *codec)
4717{
4718 struct alc_spec *spec;
4719 int err;
4720
4721 err = alc_alloc_spec(codec, 0x0b);
4722 if (err < 0)
4723 return err;
4724
4725 spec = codec->spec;
4726 spec->gen.beep_nid = 0x23;
4727
4728 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
4729 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
4730
4731 /* automatic parse from the BIOS config */
4732 err = alc861vd_parse_auto_config(codec);
4733 if (err < 0)
4734 goto error;
4735
4736 if (!spec->gen.no_analog)
4737 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4738
4739 codec->patch_ops = alc_patch_ops;
4740
4741 spec->shutup = alc_eapd_shutup;
4742
4743 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
4744
4745 return 0;
4746
4747 error:
4748 alc_free(codec);
4749 return err;
4750}
4751
4752/*
4753 * ALC662 support
4754 *
4755 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
4756 * configuration. Each pin widget can choose any input DACs and a mixer.
4757 * Each ADC is connected from a mixer of all inputs. This makes possible
4758 * 6-channel independent captures.
4759 *
4760 * In addition, an independent DAC for the multi-playback (not used in this
4761 * driver yet).
4762 */
4763
4764/*
4765 * BIOS auto configuration
4766 */
4767
4768static int alc662_parse_auto_config(struct hda_codec *codec)
4769{
4770 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
4771 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
4772 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4773 const hda_nid_t *ssids;
4774
4775 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
4776 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670 ||
4777 codec->vendor_id == 0x10ec0671)
4778 ssids = alc663_ssids;
4779 else
4780 ssids = alc662_ssids;
4781 return alc_parse_auto_config(codec, alc662_ignore, ssids);
4782}
4783
4784static void alc272_fixup_mario(struct hda_codec *codec,
4785 const struct hda_fixup *fix, int action)
4786{
4787 if (action != HDA_FIXUP_ACT_PRE_PROBE)
4788 return;
4789 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
4790 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
4791 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
4792 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4793 (0 << AC_AMPCAP_MUTE_SHIFT)))
4794 printk(KERN_WARNING
4795 "hda_codec: failed to override amp caps for NID 0x2\n");
4796}
4797
4798static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
4799 { .channels = 2,
4800 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4801 { .channels = 4,
4802 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4803 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
4804 { }
4805};
4806
4807/* override the 2.1 chmap */
4808static void alc_fixup_bass_chmap(struct hda_codec *codec,
4809 const struct hda_fixup *fix, int action)
4810{
4811 if (action == HDA_FIXUP_ACT_BUILD) {
4812 struct alc_spec *spec = codec->spec;
4813 spec->gen.pcm_rec[0].stream[0].chmap = asus_pcm_2_1_chmaps;
4814 }
4815}
4816
4817enum {
4818 ALC662_FIXUP_ASPIRE,
4819 ALC662_FIXUP_IDEAPAD,
4820 ALC272_FIXUP_MARIO,
4821 ALC662_FIXUP_CZC_P10T,
4822 ALC662_FIXUP_SKU_IGNORE,
4823 ALC662_FIXUP_HP_RP5800,
4824 ALC662_FIXUP_ASUS_MODE1,
4825 ALC662_FIXUP_ASUS_MODE2,
4826 ALC662_FIXUP_ASUS_MODE3,
4827 ALC662_FIXUP_ASUS_MODE4,
4828 ALC662_FIXUP_ASUS_MODE5,
4829 ALC662_FIXUP_ASUS_MODE6,
4830 ALC662_FIXUP_ASUS_MODE7,
4831 ALC662_FIXUP_ASUS_MODE8,
4832 ALC662_FIXUP_NO_JACK_DETECT,
4833 ALC662_FIXUP_ZOTAC_Z68,
4834 ALC662_FIXUP_INV_DMIC,
4835 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
4836 ALC668_FIXUP_HEADSET_MODE,
4837 ALC662_FIXUP_BASS_CHMAP,
4838 ALC662_FIXUP_BASS_1A,
4839 ALC662_FIXUP_BASS_1A_CHMAP,
4840};
4841
4842static const struct hda_fixup alc662_fixups[] = {
4843 [ALC662_FIXUP_ASPIRE] = {
4844 .type = HDA_FIXUP_PINS,
4845 .v.pins = (const struct hda_pintbl[]) {
4846 { 0x15, 0x99130112 }, /* subwoofer */
4847 { }
4848 }
4849 },
4850 [ALC662_FIXUP_IDEAPAD] = {
4851 .type = HDA_FIXUP_PINS,
4852 .v.pins = (const struct hda_pintbl[]) {
4853 { 0x17, 0x99130112 }, /* subwoofer */
4854 { }
4855 }
4856 },
4857 [ALC272_FIXUP_MARIO] = {
4858 .type = HDA_FIXUP_FUNC,
4859 .v.func = alc272_fixup_mario,
4860 },
4861 [ALC662_FIXUP_CZC_P10T] = {
4862 .type = HDA_FIXUP_VERBS,
4863 .v.verbs = (const struct hda_verb[]) {
4864 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4865 {}
4866 }
4867 },
4868 [ALC662_FIXUP_SKU_IGNORE] = {
4869 .type = HDA_FIXUP_FUNC,
4870 .v.func = alc_fixup_sku_ignore,
4871 },
4872 [ALC662_FIXUP_HP_RP5800] = {
4873 .type = HDA_FIXUP_PINS,
4874 .v.pins = (const struct hda_pintbl[]) {
4875 { 0x14, 0x0221201f }, /* HP out */
4876 { }
4877 },
4878 .chained = true,
4879 .chain_id = ALC662_FIXUP_SKU_IGNORE
4880 },
4881 [ALC662_FIXUP_ASUS_MODE1] = {
4882 .type = HDA_FIXUP_PINS,
4883 .v.pins = (const struct hda_pintbl[]) {
4884 { 0x14, 0x99130110 }, /* speaker */
4885 { 0x18, 0x01a19c20 }, /* mic */
4886 { 0x19, 0x99a3092f }, /* int-mic */
4887 { 0x21, 0x0121401f }, /* HP out */
4888 { }
4889 },
4890 .chained = true,
4891 .chain_id = ALC662_FIXUP_SKU_IGNORE
4892 },
4893 [ALC662_FIXUP_ASUS_MODE2] = {
4894 .type = HDA_FIXUP_PINS,
4895 .v.pins = (const struct hda_pintbl[]) {
4896 { 0x14, 0x99130110 }, /* speaker */
4897 { 0x18, 0x01a19820 }, /* mic */
4898 { 0x19, 0x99a3092f }, /* int-mic */
4899 { 0x1b, 0x0121401f }, /* HP out */
4900 { }
4901 },
4902 .chained = true,
4903 .chain_id = ALC662_FIXUP_SKU_IGNORE
4904 },
4905 [ALC662_FIXUP_ASUS_MODE3] = {
4906 .type = HDA_FIXUP_PINS,
4907 .v.pins = (const struct hda_pintbl[]) {
4908 { 0x14, 0x99130110 }, /* speaker */
4909 { 0x15, 0x0121441f }, /* HP */
4910 { 0x18, 0x01a19840 }, /* mic */
4911 { 0x19, 0x99a3094f }, /* int-mic */
4912 { 0x21, 0x01211420 }, /* HP2 */
4913 { }
4914 },
4915 .chained = true,
4916 .chain_id = ALC662_FIXUP_SKU_IGNORE
4917 },
4918 [ALC662_FIXUP_ASUS_MODE4] = {
4919 .type = HDA_FIXUP_PINS,
4920 .v.pins = (const struct hda_pintbl[]) {
4921 { 0x14, 0x99130110 }, /* speaker */
4922 { 0x16, 0x99130111 }, /* speaker */
4923 { 0x18, 0x01a19840 }, /* mic */
4924 { 0x19, 0x99a3094f }, /* int-mic */
4925 { 0x21, 0x0121441f }, /* HP */
4926 { }
4927 },
4928 .chained = true,
4929 .chain_id = ALC662_FIXUP_SKU_IGNORE
4930 },
4931 [ALC662_FIXUP_ASUS_MODE5] = {
4932 .type = HDA_FIXUP_PINS,
4933 .v.pins = (const struct hda_pintbl[]) {
4934 { 0x14, 0x99130110 }, /* speaker */
4935 { 0x15, 0x0121441f }, /* HP */
4936 { 0x16, 0x99130111 }, /* speaker */
4937 { 0x18, 0x01a19840 }, /* mic */
4938 { 0x19, 0x99a3094f }, /* int-mic */
4939 { }
4940 },
4941 .chained = true,
4942 .chain_id = ALC662_FIXUP_SKU_IGNORE
4943 },
4944 [ALC662_FIXUP_ASUS_MODE6] = {
4945 .type = HDA_FIXUP_PINS,
4946 .v.pins = (const struct hda_pintbl[]) {
4947 { 0x14, 0x99130110 }, /* speaker */
4948 { 0x15, 0x01211420 }, /* HP2 */
4949 { 0x18, 0x01a19840 }, /* mic */
4950 { 0x19, 0x99a3094f }, /* int-mic */
4951 { 0x1b, 0x0121441f }, /* HP */
4952 { }
4953 },
4954 .chained = true,
4955 .chain_id = ALC662_FIXUP_SKU_IGNORE
4956 },
4957 [ALC662_FIXUP_ASUS_MODE7] = {
4958 .type = HDA_FIXUP_PINS,
4959 .v.pins = (const struct hda_pintbl[]) {
4960 { 0x14, 0x99130110 }, /* speaker */
4961 { 0x17, 0x99130111 }, /* speaker */
4962 { 0x18, 0x01a19840 }, /* mic */
4963 { 0x19, 0x99a3094f }, /* int-mic */
4964 { 0x1b, 0x01214020 }, /* HP */
4965 { 0x21, 0x0121401f }, /* HP */
4966 { }
4967 },
4968 .chained = true,
4969 .chain_id = ALC662_FIXUP_SKU_IGNORE
4970 },
4971 [ALC662_FIXUP_ASUS_MODE8] = {
4972 .type = HDA_FIXUP_PINS,
4973 .v.pins = (const struct hda_pintbl[]) {
4974 { 0x14, 0x99130110 }, /* speaker */
4975 { 0x12, 0x99a30970 }, /* int-mic */
4976 { 0x15, 0x01214020 }, /* HP */
4977 { 0x17, 0x99130111 }, /* speaker */
4978 { 0x18, 0x01a19840 }, /* mic */
4979 { 0x21, 0x0121401f }, /* HP */
4980 { }
4981 },
4982 .chained = true,
4983 .chain_id = ALC662_FIXUP_SKU_IGNORE
4984 },
4985 [ALC662_FIXUP_NO_JACK_DETECT] = {
4986 .type = HDA_FIXUP_FUNC,
4987 .v.func = alc_fixup_no_jack_detect,
4988 },
4989 [ALC662_FIXUP_ZOTAC_Z68] = {
4990 .type = HDA_FIXUP_PINS,
4991 .v.pins = (const struct hda_pintbl[]) {
4992 { 0x1b, 0x02214020 }, /* Front HP */
4993 { }
4994 }
4995 },
4996 [ALC662_FIXUP_INV_DMIC] = {
4997 .type = HDA_FIXUP_FUNC,
4998 .v.func = alc_fixup_inv_dmic_0x12,
4999 },
5000 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
5001 .type = HDA_FIXUP_PINS,
5002 .v.pins = (const struct hda_pintbl[]) {
5003 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
5004 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
5005 { }
5006 },
5007 .chained = true,
5008 .chain_id = ALC668_FIXUP_HEADSET_MODE
5009 },
5010 [ALC668_FIXUP_HEADSET_MODE] = {
5011 .type = HDA_FIXUP_FUNC,
5012 .v.func = alc_fixup_headset_mode_alc668,
5013 },
5014 [ALC662_FIXUP_BASS_CHMAP] = {
5015 .type = HDA_FIXUP_FUNC,
5016 .v.func = alc_fixup_bass_chmap,
5017 .chained = true,
5018 .chain_id = ALC662_FIXUP_ASUS_MODE4
5019 },
5020 [ALC662_FIXUP_BASS_1A] = {
5021 .type = HDA_FIXUP_PINS,
5022 .v.pins = (const struct hda_pintbl[]) {
5023 {0x1a, 0x80106111}, /* bass speaker */
5024 {}
5025 },
5026 },
5027 [ALC662_FIXUP_BASS_1A_CHMAP] = {
5028 .type = HDA_FIXUP_FUNC,
5029 .v.func = alc_fixup_bass_chmap,
5030 .chained = true,
5031 .chain_id = ALC662_FIXUP_BASS_1A,
5032 },
5033};
5034
5035static const struct snd_pci_quirk alc662_fixup_tbl[] = {
5036 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
5037 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
5038 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
5039 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
5040 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
5041 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
5042 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
5043 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5044 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5045 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5046 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5047 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
5048 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A_CHMAP),
5049 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_CHMAP),
5050 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_CHMAP),
5051 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
5052 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
5053 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
5054 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
5055 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
5056 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
5057 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
5058
5059#if 0
5060 /* Below is a quirk table taken from the old code.
5061 * Basically the device should work as is without the fixup table.
5062 * If BIOS doesn't give a proper info, enable the corresponding
5063 * fixup entry.
5064 */
5065 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5066 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5067 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5068 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5069 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5070 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5071 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5072 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5073 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5074 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5075 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5076 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5077 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5078 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5079 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5080 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5081 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5082 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5083 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5084 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5085 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5086 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5087 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5088 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5089 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5090 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5091 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5092 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5093 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5094 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5095 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5096 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5097 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5098 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5099 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5100 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5101 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5102 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5103 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5104 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5105 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5106 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5107 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5108 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5109 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5110 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5111 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5112 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5113 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5114 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5115#endif
5116 {}
5117};
5118
5119static const struct hda_model_fixup alc662_fixup_models[] = {
5120 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
5121 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5122 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5123 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5124 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5125 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5126 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5127 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5128 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
5129 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
5130 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
5131 {}
5132};
5133
5134static void alc662_fill_coef(struct hda_codec *codec)
5135{
5136 int val, coef;
5137
5138 coef = alc_get_coef0(codec);
5139
5140 switch (codec->vendor_id) {
5141 case 0x10ec0662:
5142 if ((coef & 0x00f0) == 0x0030) {
5143 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
5144 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
5145 }
5146 break;
5147 case 0x10ec0272:
5148 case 0x10ec0273:
5149 case 0x10ec0663:
5150 case 0x10ec0665:
5151 case 0x10ec0670:
5152 case 0x10ec0671:
5153 case 0x10ec0672:
5154 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
5155 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5156 break;
5157 }
5158}
5159
5160/*
5161 */
5162static int patch_alc662(struct hda_codec *codec)
5163{
5164 struct alc_spec *spec;
5165 int err;
5166
5167 err = alc_alloc_spec(codec, 0x0b);
5168 if (err < 0)
5169 return err;
5170
5171 spec = codec->spec;
5172
5173 /* handle multiple HPs as is */
5174 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5175
5176 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5177
5178 spec->init_hook = alc662_fill_coef;
5179 alc662_fill_coef(codec);
5180
5181 snd_hda_pick_fixup(codec, alc662_fixup_models,
5182 alc662_fixup_tbl, alc662_fixups);
5183 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
5184
5185 alc_auto_parse_customize_define(codec);
5186
5187 if (has_cdefine_beep(codec))
5188 spec->gen.beep_nid = 0x01;
5189
5190 if ((alc_get_coef0(codec) & (1 << 14)) &&
5191 codec->bus->pci->subsystem_vendor == 0x1025 &&
5192 spec->cdefine.platform_type == 1) {
5193 err = alc_codec_rename(codec, "ALC272X");
5194 if (err < 0)
5195 goto error;
5196 }
5197
5198 /* automatic parse from the BIOS config */
5199 err = alc662_parse_auto_config(codec);
5200 if (err < 0)
5201 goto error;
5202
5203 if (!spec->gen.no_analog && spec->gen.beep_nid) {
5204 switch (codec->vendor_id) {
5205 case 0x10ec0662:
5206 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5207 break;
5208 case 0x10ec0272:
5209 case 0x10ec0663:
5210 case 0x10ec0665:
5211 case 0x10ec0668:
5212 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5213 break;
5214 case 0x10ec0273:
5215 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5216 break;
5217 }
5218 }
5219
5220 codec->patch_ops = alc_patch_ops;
5221 spec->shutup = alc_eapd_shutup;
5222
5223 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
5224
5225 return 0;
5226
5227 error:
5228 alc_free(codec);
5229 return err;
5230}
5231
5232/*
5233 * ALC680 support
5234 */
5235
5236static int alc680_parse_auto_config(struct hda_codec *codec)
5237{
5238 return alc_parse_auto_config(codec, NULL, NULL);
5239}
5240
5241/*
5242 */
5243static int patch_alc680(struct hda_codec *codec)
5244{
5245 int err;
5246
5247 /* ALC680 has no aa-loopback mixer */
5248 err = alc_alloc_spec(codec, 0);
5249 if (err < 0)
5250 return err;
5251
5252 /* automatic parse from the BIOS config */
5253 err = alc680_parse_auto_config(codec);
5254 if (err < 0) {
5255 alc_free(codec);
5256 return err;
5257 }
5258
5259 codec->patch_ops = alc_patch_ops;
5260
5261 return 0;
5262}
5263
5264/*
5265 * patch entries
5266 */
5267static const struct hda_codec_preset snd_hda_preset_realtek[] = {
5268 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
5269 { .id = 0x10ec0231, .name = "ALC231", .patch = patch_alc269 },
5270 { .id = 0x10ec0233, .name = "ALC233", .patch = patch_alc269 },
5271 { .id = 0x10ec0255, .name = "ALC255", .patch = patch_alc269 },
5272 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5273 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5274 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
5275 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
5276 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
5277 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
5278 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
5279 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
5280 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
5281 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
5282 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
5283 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
5284 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
5285 { .id = 0x10ec0285, .name = "ALC285", .patch = patch_alc269 },
5286 { .id = 0x10ec0286, .name = "ALC286", .patch = patch_alc269 },
5287 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
5288 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
5289 { .id = 0x10ec0293, .name = "ALC293", .patch = patch_alc269 },
5290 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
5291 .patch = patch_alc861 },
5292 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5293 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5294 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
5295 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
5296 .patch = patch_alc882 },
5297 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5298 .patch = patch_alc662 },
5299 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5300 .patch = patch_alc662 },
5301 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
5302 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
5303 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
5304 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
5305 { .id = 0x10ec0671, .name = "ALC671", .patch = patch_alc662 },
5306 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
5307 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5308 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5309 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5310 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
5311 .patch = patch_alc882 },
5312 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
5313 .patch = patch_alc882 },
5314 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5315 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
5316 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
5317 .patch = patch_alc882 },
5318 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
5319 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
5320 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
5321 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
5322 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
5323 {} /* terminator */
5324};
5325
5326MODULE_ALIAS("snd-hda-codec-id:10ec*");
5327
5328MODULE_LICENSE("GPL");
5329MODULE_DESCRIPTION("Realtek HD-audio codec");
5330
5331static struct hda_codec_preset_list realtek_list = {
5332 .preset = snd_hda_preset_realtek,
5333 .owner = THIS_MODULE,
5334};
5335
5336static int __init patch_realtek_init(void)
5337{
5338 return snd_hda_add_codec_preset(&realtek_list);
5339}
5340
5341static void __exit patch_realtek_exit(void)
5342{
5343 snd_hda_delete_codec_preset(&realtek_list);
5344}
5345
5346module_init(patch_realtek_init)
5347module_exit(patch_realtek_exit)