ALSA: hda/realtek - Read the cached pinctl value in fixups
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / sound / pci / hda / patch_realtek.c
CommitLineData
1da177e4
LT
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
1d045db9 4 * HD audio interface patch for Realtek ALC codecs
1da177e4 5 *
df694daa
KY
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 8 * Takashi Iwai <tiwai@suse.de>
409a3e98 9 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
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
1da177e4
LT
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
da155d5b 30#include <linux/module.h>
ab16c6dd 31#include <linux/sort.h>
1da177e4 32#include <sound/core.h>
9ad0e496 33#include <sound/jack.h>
1da177e4
LT
34#include "hda_codec.h"
35#include "hda_local.h"
23d30f28 36#include "hda_auto_parser.h"
680cd536 37#include "hda_beep.h"
1835a0f9 38#include "hda_jack.h"
08c189f2 39#include "hda_generic.h"
1da177e4 40
1d045db9 41/* unsol event tags */
08c189f2 42#define ALC_DCVOL_EVENT 0x08
d4a86d81 43
df694daa
KY
44/* for GPIO Poll */
45#define GPIO_MASK 0x03
46
4a79ba34
TI
47/* extra amp-initialization sequence types */
48enum {
49 ALC_INIT_NONE,
50 ALC_INIT_DEFAULT,
51 ALC_INIT_GPIO1,
52 ALC_INIT_GPIO2,
53 ALC_INIT_GPIO3,
54};
55
da00c244
KY
56struct alc_customize_define {
57 unsigned int sku_cfg;
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
64 unsigned int swap:1;
65 unsigned int override:1;
90622917 66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
67};
68
1da177e4 69struct alc_spec {
08c189f2
TI
70 struct hda_gen_spec gen; /* must be at head */
71
1da177e4 72 /* codec parameterization */
a9111321 73 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
1da177e4 74 unsigned int num_mixers;
45bdd1c1 75 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
1da177e4 76
da00c244 77 struct alc_customize_define cdefine;
08c189f2 78 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 79
08c189f2
TI
80 /* inverted dmic fix */
81 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
82 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
83 hda_nid_t inv_dmic_pin;
ab16c6dd 84
ae6b813a
TI
85 /* hooks */
86 void (*init_hook)(struct hda_codec *codec);
83012a7c 87#ifdef CONFIG_PM
c97259df 88 void (*power_hook)(struct hda_codec *codec);
f5de24b0 89#endif
1c716153 90 void (*shutup)(struct hda_codec *codec);
d922b51d 91
4a79ba34 92 int init_amp;
d433a678 93 int codec_variant; /* flag for other variants */
e64f14f4 94
2c3bf9ab
TI
95 /* for PLL fix */
96 hda_nid_t pll_nid;
97 unsigned int pll_coef_idx, pll_coef_bit;
1bb7e43e 98 unsigned int coef0;
df694daa
KY
99};
100
d88897ea 101/*
1d045db9
TI
102 * Append the given mixer and verb elements for the later use
103 * The mixer array is referred in build_controls(), and init_verbs are
104 * called in init().
d88897ea 105 */
a9111321 106static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
d88897ea
TI
107{
108 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
109 return;
110 spec->mixers[spec->num_mixers++] = mix;
111}
112
df694daa 113/*
1d045db9 114 * GPIO setup tables, used in initialization
df694daa 115 */
bc9f98a9 116/* Enable GPIO mask and set output */
a9111321 117static const struct hda_verb alc_gpio1_init_verbs[] = {
bc9f98a9
KY
118 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
119 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
120 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
121 { }
122};
123
a9111321 124static const struct hda_verb alc_gpio2_init_verbs[] = {
bc9f98a9
KY
125 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
126 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
127 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
128 { }
129};
130
a9111321 131static const struct hda_verb alc_gpio3_init_verbs[] = {
bdd148a3
KY
132 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
133 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
134 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
135 { }
136};
137
2c3bf9ab
TI
138/*
139 * Fix hardware PLL issue
140 * On some codecs, the analog PLL gating control must be off while
141 * the default value is 1.
142 */
143static void alc_fix_pll(struct hda_codec *codec)
144{
145 struct alc_spec *spec = codec->spec;
146 unsigned int val;
147
148 if (!spec->pll_nid)
149 return;
150 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
151 spec->pll_coef_idx);
152 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
153 AC_VERB_GET_PROC_COEF, 0);
154 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
155 spec->pll_coef_idx);
156 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
157 val & ~(1 << spec->pll_coef_bit));
158}
159
160static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
161 unsigned int coef_idx, unsigned int coef_bit)
162{
163 struct alc_spec *spec = codec->spec;
164 spec->pll_nid = nid;
165 spec->pll_coef_idx = coef_idx;
166 spec->pll_coef_bit = coef_bit;
167 alc_fix_pll(codec);
168}
169
cf5a2279 170/* update the master volume per volume-knob's unsol event */
29adc4b9 171static void alc_update_knob_master(struct hda_codec *codec, struct hda_jack_tbl *jack)
cf5a2279
TI
172{
173 unsigned int val;
174 struct snd_kcontrol *kctl;
175 struct snd_ctl_elem_value *uctl;
176
177 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
178 if (!kctl)
179 return;
180 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
181 if (!uctl)
182 return;
29adc4b9 183 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
184 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
185 val &= HDA_AMP_VOLMASK;
186 uctl->value.integer.value[0] = val;
187 uctl->value.integer.value[1] = val;
188 kctl->put(kctl, uctl);
189 kfree(uctl);
190}
191
29adc4b9 192static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 193{
29adc4b9
DH
194 /* For some reason, the res given from ALC880 is broken.
195 Here we adjust it properly. */
196 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
197}
198
f9423e7a
KY
199/* additional initialization for ALC888 variants */
200static void alc888_coef_init(struct hda_codec *codec)
201{
202 unsigned int tmp;
203
204 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
205 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
206 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
37db623a 207 if ((tmp & 0xf0) == 0x20)
f9423e7a
KY
208 /* alc888S-VC */
209 snd_hda_codec_read(codec, 0x20, 0,
210 AC_VERB_SET_PROC_COEF, 0x830);
211 else
212 /* alc888-VB */
213 snd_hda_codec_read(codec, 0x20, 0,
214 AC_VERB_SET_PROC_COEF, 0x3030);
215}
216
1d045db9 217/* additional initialization for ALC889 variants */
87a8c370
JK
218static void alc889_coef_init(struct hda_codec *codec)
219{
220 unsigned int tmp;
221
222 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
223 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
224 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
225 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
226}
227
3fb4a508
TI
228/* turn on/off EAPD control (only if available) */
229static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
230{
231 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
232 return;
233 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
234 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
235 on ? 2 : 0);
236}
237
691f1fcc
TI
238/* turn on/off EAPD controls of the codec */
239static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
240{
241 /* We currently only handle front, HP */
39fa84e9
TI
242 static hda_nid_t pins[] = {
243 0x0f, 0x10, 0x14, 0x15, 0
244 };
245 hda_nid_t *p;
246 for (p = pins; *p; p++)
247 set_eapd(codec, *p, on);
691f1fcc
TI
248}
249
1c716153
TI
250/* generic shutup callback;
251 * just turning off EPAD and a little pause for avoiding pop-noise
252 */
253static void alc_eapd_shutup(struct hda_codec *codec)
254{
255 alc_auto_setup_eapd(codec, false);
256 msleep(200);
257}
258
1d045db9 259/* generic EAPD initialization */
4a79ba34 260static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 261{
4a79ba34 262 unsigned int tmp;
bc9f98a9 263
39fa84e9 264 alc_auto_setup_eapd(codec, true);
4a79ba34
TI
265 switch (type) {
266 case ALC_INIT_GPIO1:
bc9f98a9
KY
267 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
268 break;
4a79ba34 269 case ALC_INIT_GPIO2:
bc9f98a9
KY
270 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
271 break;
4a79ba34 272 case ALC_INIT_GPIO3:
bdd148a3
KY
273 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
274 break;
4a79ba34 275 case ALC_INIT_DEFAULT:
c9b58006
KY
276 switch (codec->vendor_id) {
277 case 0x10ec0260:
278 snd_hda_codec_write(codec, 0x1a, 0,
279 AC_VERB_SET_COEF_INDEX, 7);
280 tmp = snd_hda_codec_read(codec, 0x1a, 0,
281 AC_VERB_GET_PROC_COEF, 0);
282 snd_hda_codec_write(codec, 0x1a, 0,
283 AC_VERB_SET_COEF_INDEX, 7);
284 snd_hda_codec_write(codec, 0x1a, 0,
285 AC_VERB_SET_PROC_COEF,
286 tmp | 0x2010);
287 break;
288 case 0x10ec0262:
289 case 0x10ec0880:
290 case 0x10ec0882:
291 case 0x10ec0883:
292 case 0x10ec0885:
4a5a4c56 293 case 0x10ec0887:
20b67ddd 294 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
87a8c370 295 alc889_coef_init(codec);
c9b58006 296 break;
f9423e7a 297 case 0x10ec0888:
4a79ba34 298 alc888_coef_init(codec);
f9423e7a 299 break;
0aea778e 300#if 0 /* XXX: This may cause the silent output on speaker on some machines */
c9b58006
KY
301 case 0x10ec0267:
302 case 0x10ec0268:
303 snd_hda_codec_write(codec, 0x20, 0,
304 AC_VERB_SET_COEF_INDEX, 7);
305 tmp = snd_hda_codec_read(codec, 0x20, 0,
306 AC_VERB_GET_PROC_COEF, 0);
307 snd_hda_codec_write(codec, 0x20, 0,
ea1fb29a 308 AC_VERB_SET_COEF_INDEX, 7);
c9b58006
KY
309 snd_hda_codec_write(codec, 0x20, 0,
310 AC_VERB_SET_PROC_COEF,
311 tmp | 0x3000);
312 break;
0aea778e 313#endif /* XXX */
bc9f98a9 314 }
4a79ba34
TI
315 break;
316 }
317}
318
08c189f2 319
1d045db9 320/*
08c189f2 321 * Realtek SSID verification
1d045db9 322 */
42cf0d01 323
08c189f2
TI
324/* Could be any non-zero and even value. When used as fixup, tells
325 * the driver to ignore any present sku defines.
326 */
327#define ALC_FIXUP_SKU_IGNORE (2)
1a1455de 328
08c189f2
TI
329static void alc_fixup_sku_ignore(struct hda_codec *codec,
330 const struct hda_fixup *fix, int action)
1a1455de 331{
1a1455de 332 struct alc_spec *spec = codec->spec;
08c189f2
TI
333 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
334 spec->cdefine.fixup = 1;
335 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1a1455de 336 }
1d045db9 337}
1a1455de 338
08c189f2 339static int alc_auto_parse_customize_define(struct hda_codec *codec)
4a79ba34 340{
08c189f2
TI
341 unsigned int ass, tmp, i;
342 unsigned nid = 0;
4a79ba34
TI
343 struct alc_spec *spec = codec->spec;
344
08c189f2 345 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
4a79ba34 346
08c189f2
TI
347 if (spec->cdefine.fixup) {
348 ass = spec->cdefine.sku_cfg;
349 if (ass == ALC_FIXUP_SKU_IGNORE)
350 return -1;
351 goto do_sku;
bb35febd
TI
352 }
353
08c189f2
TI
354 ass = codec->subsystem_id & 0xffff;
355 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
356 goto do_sku;
4a79ba34 357
08c189f2
TI
358 nid = 0x1d;
359 if (codec->vendor_id == 0x10ec0260)
360 nid = 0x17;
361 ass = snd_hda_codec_get_pincfg(codec, nid);
42cf0d01 362
08c189f2
TI
363 if (!(ass & 1)) {
364 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
365 codec->chip_name, ass);
366 return -1;
ae8a60a5
TI
367 }
368
08c189f2
TI
369 /* check sum */
370 tmp = 0;
371 for (i = 1; i < 16; i++) {
372 if ((ass >> i) & 1)
373 tmp++;
475c3d21 374 }
08c189f2
TI
375 if (((ass >> 16) & 0xf) != tmp)
376 return -1;
da00c244
KY
377
378 spec->cdefine.port_connectivity = ass >> 30;
379 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
380 spec->cdefine.check_sum = (ass >> 16) & 0xf;
381 spec->cdefine.customization = ass >> 8;
382do_sku:
383 spec->cdefine.sku_cfg = ass;
384 spec->cdefine.external_amp = (ass & 0x38) >> 3;
385 spec->cdefine.platform_type = (ass & 0x4) >> 2;
386 spec->cdefine.swap = (ass & 0x2) >> 1;
387 spec->cdefine.override = ass & 0x1;
388
389 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
390 nid, spec->cdefine.sku_cfg);
391 snd_printd("SKU: port_connectivity=0x%x\n",
392 spec->cdefine.port_connectivity);
393 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
394 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
395 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
396 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
397 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
398 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
399 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
400
401 return 0;
402}
403
08c189f2
TI
404/* return the position of NID in the list, or -1 if not found */
405static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
406{
407 int i;
408 for (i = 0; i < nums; i++)
409 if (list[i] == nid)
410 return i;
411 return -1;
412}
1d045db9 413/* return true if the given NID is found in the list */
3af9ee6b
TI
414static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
415{
21268961 416 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
417}
418
4a79ba34
TI
419/* check subsystem ID and set up device-specific initialization;
420 * return 1 if initialized, 0 if invalid SSID
421 */
422/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
423 * 31 ~ 16 : Manufacture ID
424 * 15 ~ 8 : SKU ID
425 * 7 ~ 0 : Assembly ID
426 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
427 */
428static int alc_subsystem_id(struct hda_codec *codec,
429 hda_nid_t porta, hda_nid_t porte,
6227cdce 430 hda_nid_t portd, hda_nid_t porti)
4a79ba34
TI
431{
432 unsigned int ass, tmp, i;
433 unsigned nid;
434 struct alc_spec *spec = codec->spec;
435
90622917
DH
436 if (spec->cdefine.fixup) {
437 ass = spec->cdefine.sku_cfg;
438 if (ass == ALC_FIXUP_SKU_IGNORE)
439 return 0;
440 goto do_sku;
441 }
442
4a79ba34
TI
443 ass = codec->subsystem_id & 0xffff;
444 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
445 goto do_sku;
446
447 /* invalid SSID, check the special NID pin defcfg instead */
448 /*
def319f9 449 * 31~30 : port connectivity
4a79ba34
TI
450 * 29~21 : reserve
451 * 20 : PCBEEP input
452 * 19~16 : Check sum (15:1)
453 * 15~1 : Custom
454 * 0 : override
455 */
456 nid = 0x1d;
457 if (codec->vendor_id == 0x10ec0260)
458 nid = 0x17;
459 ass = snd_hda_codec_get_pincfg(codec, nid);
460 snd_printd("realtek: No valid SSID, "
461 "checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 462 ass, nid);
6227cdce 463 if (!(ass & 1))
4a79ba34
TI
464 return 0;
465 if ((ass >> 30) != 1) /* no physical connection */
466 return 0;
467
468 /* check sum */
469 tmp = 0;
470 for (i = 1; i < 16; i++) {
471 if ((ass >> i) & 1)
472 tmp++;
473 }
474 if (((ass >> 16) & 0xf) != tmp)
475 return 0;
476do_sku:
477 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
478 ass & 0xffff, codec->vendor_id);
479 /*
480 * 0 : override
481 * 1 : Swap Jack
482 * 2 : 0 --> Desktop, 1 --> Laptop
483 * 3~5 : External Amplifier control
484 * 7~6 : Reserved
485 */
486 tmp = (ass & 0x38) >> 3; /* external Amp control */
487 switch (tmp) {
488 case 1:
489 spec->init_amp = ALC_INIT_GPIO1;
490 break;
491 case 3:
492 spec->init_amp = ALC_INIT_GPIO2;
493 break;
494 case 7:
495 spec->init_amp = ALC_INIT_GPIO3;
496 break;
497 case 5:
5a8cfb4e 498 default:
4a79ba34 499 spec->init_amp = ALC_INIT_DEFAULT;
bc9f98a9
KY
500 break;
501 }
ea1fb29a 502
8c427226 503 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
504 * when the external headphone out jack is plugged"
505 */
8c427226 506 if (!(ass & 0x8000))
4a79ba34 507 return 1;
c9b58006
KY
508 /*
509 * 10~8 : Jack location
510 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
511 * 14~13: Resvered
512 * 15 : 1 --> enable the function "Mute internal speaker
513 * when the external headphone out jack is plugged"
514 */
08c189f2
TI
515 if (!spec->gen.autocfg.hp_pins[0] &&
516 !(spec->gen.autocfg.line_out_pins[0] &&
517 spec->gen.autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
01d4825d 518 hda_nid_t nid;
c9b58006
KY
519 tmp = (ass >> 11) & 0x3; /* HP to chassis */
520 if (tmp == 0)
01d4825d 521 nid = porta;
c9b58006 522 else if (tmp == 1)
01d4825d 523 nid = porte;
c9b58006 524 else if (tmp == 2)
01d4825d 525 nid = portd;
6227cdce
KY
526 else if (tmp == 3)
527 nid = porti;
c9b58006 528 else
4a79ba34 529 return 1;
08c189f2
TI
530 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
531 spec->gen.autocfg.line_outs))
3af9ee6b 532 return 1;
08c189f2 533 spec->gen.autocfg.hp_pins[0] = nid;
c9b58006 534 }
4a79ba34
TI
535 return 1;
536}
ea1fb29a 537
3e6179b8
TI
538/* Check the validity of ALC subsystem-id
539 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
540static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 541{
3e6179b8 542 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
4a79ba34
TI
543 struct alc_spec *spec = codec->spec;
544 snd_printd("realtek: "
545 "Enable default setup for auto mode as fallback\n");
546 spec->init_amp = ALC_INIT_DEFAULT;
4a79ba34 547 }
21268961 548}
1a1455de 549
1d045db9
TI
550/*
551 * COEF access helper functions
552 */
274693f3
KY
553static int alc_read_coef_idx(struct hda_codec *codec,
554 unsigned int coef_idx)
555{
556 unsigned int val;
557 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
558 coef_idx);
559 val = snd_hda_codec_read(codec, 0x20, 0,
560 AC_VERB_GET_PROC_COEF, 0);
561 return val;
562}
563
977ddd6b
KY
564static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
565 unsigned int coef_val)
566{
567 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
568 coef_idx);
569 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
570 coef_val);
571}
572
1bb7e43e
TI
573/* a special bypass for COEF 0; read the cached value at the second time */
574static unsigned int alc_get_coef0(struct hda_codec *codec)
575{
576 struct alc_spec *spec = codec->spec;
577 if (!spec->coef0)
578 spec->coef0 = alc_read_coef_idx(codec, 0);
579 return spec->coef0;
580}
581
ef8ef5fb 582/*
ef8ef5fb 583 */
f9e336f6 584
08c189f2 585static hda_nid_t get_adc_nid(struct hda_codec *codec, int adc_idx, int imux_idx)
f9e336f6 586{
08c189f2
TI
587 struct hda_gen_spec *spec = codec->spec;
588 if (spec->dyn_adc_switch)
589 adc_idx = spec->dyn_adc_idx[imux_idx];
590 return spec->adc_nids[adc_idx];
f9e336f6
TI
591}
592
666a70d4 593static void alc_inv_dmic_sync_adc(struct hda_codec *codec, int adc_idx)
f9e336f6 594{
666a70d4 595 struct alc_spec *spec = codec->spec;
08c189f2 596 struct hda_input_mux *imux = &spec->gen.input_mux;
666a70d4
TI
597 struct nid_path *path;
598 hda_nid_t nid;
599 int i, dir, parm;
600 unsigned int val;
a23b688f 601
666a70d4 602 for (i = 0; i < imux->num_items; i++) {
08c189f2 603 if (spec->gen.imux_pins[i] == spec->inv_dmic_pin)
666a70d4 604 break;
a23b688f 605 }
666a70d4
TI
606 if (i >= imux->num_items)
607 return;
a23b688f 608
08c189f2
TI
609 path = snd_hda_get_nid_path(codec, spec->inv_dmic_pin,
610 get_adc_nid(codec, adc_idx, i));
666a70d4
TI
611 val = path->ctls[NID_PATH_MUTE_CTL];
612 if (!val)
613 return;
614 nid = get_amp_nid_(val);
615 dir = get_amp_direction_(val);
616 parm = AC_AMP_SET_RIGHT |
617 (dir == HDA_OUTPUT ? AC_AMP_SET_OUTPUT : AC_AMP_SET_INPUT);
618
c4f3ebed 619 /* flush all cached amps at first */
0c3d47b0 620 snd_hda_codec_flush_amp_cache(codec);
c4f3ebed 621
666a70d4
TI
622 /* we care only right channel */
623 val = snd_hda_codec_amp_read(codec, nid, 1, dir, 0);
624 if (val & 0x80) /* if already muted, we don't need to touch */
625 return;
626 val |= 0x80;
627 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
628 parm | val);
f9e336f6
TI
629}
630
125821ae
TI
631/*
632 * Inverted digital-mic handling
633 *
634 * First off, it's a bit tricky. The "Inverted Internal Mic Capture Switch"
635 * gives the additional mute only to the right channel of the digital mic
636 * capture stream. This is a workaround for avoiding the almost silence
637 * by summing the stereo stream from some (known to be ForteMedia)
638 * digital mic unit.
639 *
640 * The logic is to call alc_inv_dmic_sync() after each action (possibly)
641 * modifying ADC amp. When the mute flag is set, it mutes the R-channel
642 * without caching so that the cache can still keep the original value.
643 * The cached value is then restored when the flag is set off or any other
644 * than d-mic is used as the current input source.
645 */
646static void alc_inv_dmic_sync(struct hda_codec *codec, bool force)
647{
648 struct alc_spec *spec = codec->spec;
666a70d4 649 int src, nums;
125821ae
TI
650
651 if (!spec->inv_dmic_fixup)
652 return;
653 if (!spec->inv_dmic_muted && !force)
654 return;
08c189f2 655 nums = spec->gen.dyn_adc_switch ? 1 : spec->gen.num_adc_nids;
666a70d4 656 for (src = 0; src < nums; src++) {
125821ae 657 bool dmic_fixup = false;
125821ae
TI
658
659 if (spec->inv_dmic_muted &&
08c189f2 660 spec->gen.imux_pins[spec->gen.cur_mux[src]] == spec->inv_dmic_pin)
125821ae
TI
661 dmic_fixup = true;
662 if (!dmic_fixup && !force)
663 continue;
666a70d4 664 alc_inv_dmic_sync_adc(codec, src);
125821ae
TI
665 }
666}
667
08c189f2
TI
668static void alc_inv_dmic_hook(struct hda_codec *codec)
669{
670 alc_inv_dmic_sync(codec, false);
671}
672
125821ae
TI
673static int alc_inv_dmic_sw_get(struct snd_kcontrol *kcontrol,
674 struct snd_ctl_elem_value *ucontrol)
675{
676 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
677 struct alc_spec *spec = codec->spec;
678
679 ucontrol->value.integer.value[0] = !spec->inv_dmic_muted;
680 return 0;
681}
682
683static int alc_inv_dmic_sw_put(struct snd_kcontrol *kcontrol,
684 struct snd_ctl_elem_value *ucontrol)
685{
686 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
687 struct alc_spec *spec = codec->spec;
688 unsigned int val = !ucontrol->value.integer.value[0];
689
690 if (val == spec->inv_dmic_muted)
691 return 0;
692 spec->inv_dmic_muted = val;
693 alc_inv_dmic_sync(codec, true);
694 return 0;
695}
696
697static const struct snd_kcontrol_new alc_inv_dmic_sw = {
698 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
bc549767 699 .name = "Inverted Internal Mic Capture Switch",
125821ae
TI
700 .info = snd_ctl_boolean_mono_info,
701 .get = alc_inv_dmic_sw_get,
702 .put = alc_inv_dmic_sw_put,
703};
704
705static int alc_add_inv_dmic_mixer(struct hda_codec *codec, hda_nid_t nid)
706{
707 struct alc_spec *spec = codec->spec;
668d1e96 708
08c189f2 709 if (!snd_hda_gen_add_kctl(&spec->gen, NULL, &alc_inv_dmic_sw))
125821ae
TI
710 return -ENOMEM;
711 spec->inv_dmic_fixup = 1;
712 spec->inv_dmic_muted = 0;
713 spec->inv_dmic_pin = nid;
08c189f2 714 spec->gen.cap_sync_hook = alc_inv_dmic_hook;
125821ae
TI
715 return 0;
716}
717
6e72aa5f
TI
718/* typically the digital mic is put at node 0x12 */
719static void alc_fixup_inv_dmic_0x12(struct hda_codec *codec,
1727a771 720 const struct hda_fixup *fix, int action)
6e72aa5f 721{
1727a771 722 if (action == HDA_FIXUP_ACT_PROBE)
6e72aa5f 723 alc_add_inv_dmic_mixer(codec, 0x12);
08c189f2 724}
bec15c3a 725
78e635c9 726
08c189f2
TI
727#ifdef CONFIG_SND_HDA_INPUT_BEEP
728/* additional beep mixers; the actual parameters are overwritten at build */
729static const struct snd_kcontrol_new alc_beep_mixer[] = {
730 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
731 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
732 { } /* end */
733};
734#endif
bec15c3a 735
08c189f2 736static int alc_build_controls(struct hda_codec *codec)
e9427969
TI
737{
738 struct alc_spec *spec = codec->spec;
08c189f2 739 int i, err;
e9427969 740
08c189f2
TI
741 err = snd_hda_gen_build_controls(codec);
742 if (err < 0)
743 return err;
744
745 for (i = 0; i < spec->num_mixers; i++) {
746 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
747 if (err < 0)
748 return err;
675c1aa3 749 }
08c189f2
TI
750
751#ifdef CONFIG_SND_HDA_INPUT_BEEP
752 /* create beep controls if needed */
753 if (spec->beep_amp) {
754 const struct snd_kcontrol_new *knew;
755 for (knew = alc_beep_mixer; knew->name; knew++) {
756 struct snd_kcontrol *kctl;
757 kctl = snd_ctl_new1(knew, codec);
758 if (!kctl)
759 return -ENOMEM;
760 kctl->private_value = spec->beep_amp;
761 err = snd_hda_ctl_add(codec, 0, kctl);
762 if (err < 0)
763 return err;
8cd0775d 764 }
675c1aa3 765 }
08c189f2 766#endif
bc9f98a9 767
1727a771 768 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
08c189f2 769 return 0;
276dd70b
TI
770}
771
08c189f2 772
df694daa 773/*
08c189f2 774 * Common callbacks
df694daa 775 */
08c189f2
TI
776
777static int alc_init(struct hda_codec *codec)
df694daa 778{
1d045db9 779 struct alc_spec *spec = codec->spec;
1c4a54b4 780
08c189f2
TI
781 if (spec->init_hook)
782 spec->init_hook(codec);
792cf2fa 783
08c189f2
TI
784 alc_fix_pll(codec);
785 alc_auto_init_amp(codec, spec->init_amp);
a361d84b 786
08c189f2
TI
787 snd_hda_gen_init(codec);
788
1727a771 789 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
a361d84b 790
1d045db9
TI
791 return 0;
792}
a361d84b 793
08c189f2 794static inline void alc_shutup(struct hda_codec *codec)
1d045db9
TI
795{
796 struct alc_spec *spec = codec->spec;
130e5f06 797
08c189f2
TI
798 if (spec && spec->shutup)
799 spec->shutup(codec);
800 snd_hda_shutup_pins(codec);
a361d84b
KY
801}
802
08c189f2 803static void alc_free(struct hda_codec *codec)
a361d84b 804{
f6c7e546 805 struct alc_spec *spec = codec->spec;
a361d84b 806
08c189f2
TI
807 if (!spec)
808 return;
809
810 snd_hda_gen_spec_free(&spec->gen);
811 snd_hda_detach_beep_device(codec);
812 kfree(spec);
1d045db9 813}
3abf2f36 814
08c189f2
TI
815#ifdef CONFIG_PM
816static void alc_power_eapd(struct hda_codec *codec)
817{
818 alc_auto_setup_eapd(codec, false);
819}
a361d84b 820
08c189f2 821static int alc_suspend(struct hda_codec *codec)
a361d84b 822{
1d045db9 823 struct alc_spec *spec = codec->spec;
08c189f2
TI
824 alc_shutup(codec);
825 if (spec && spec->power_hook)
826 spec->power_hook(codec);
1d045db9
TI
827 return 0;
828}
08c189f2 829#endif
a361d84b 830
08c189f2
TI
831#ifdef CONFIG_PM
832static int alc_resume(struct hda_codec *codec)
3ebf1e94 833{
08c189f2
TI
834 msleep(150); /* to avoid pop noise */
835 codec->patch_ops.init(codec);
836 snd_hda_codec_resume_amp(codec);
837 snd_hda_codec_resume_cache(codec);
838 alc_inv_dmic_sync(codec, true);
839 hda_call_check_power_status(codec, 0x01);
840 return 0;
1d045db9 841}
08c189f2 842#endif
1d045db9
TI
843
844/*
1d045db9 845 */
08c189f2
TI
846static const struct hda_codec_ops alc_patch_ops = {
847 .build_controls = alc_build_controls,
848 .build_pcms = snd_hda_gen_build_pcms,
849 .init = alc_init,
850 .free = alc_free,
851 .unsol_event = snd_hda_jack_unsol_event,
852#ifdef CONFIG_PM
853 .resume = alc_resume,
08c189f2 854 .suspend = alc_suspend,
fce52a3b 855 .check_power_status = snd_hda_gen_check_power_status,
08c189f2
TI
856#endif
857 .reboot_notify = alc_shutup,
858};
666a70d4 859
2134ea4f 860
08c189f2
TI
861/* replace the codec chip_name with the given string */
862static int alc_codec_rename(struct hda_codec *codec, const char *name)
1d045db9 863{
08c189f2
TI
864 kfree(codec->chip_name);
865 codec->chip_name = kstrdup(name, GFP_KERNEL);
866 if (!codec->chip_name) {
867 alc_free(codec);
868 return -ENOMEM;
1d045db9 869 }
a361d84b
KY
870 return 0;
871}
872
e4770629 873/*
08c189f2 874 * Rename codecs appropriately from COEF value
e4770629 875 */
08c189f2
TI
876struct alc_codec_rename_table {
877 unsigned int vendor_id;
878 unsigned short coef_mask;
879 unsigned short coef_bits;
880 const char *name;
881};
882
883static struct alc_codec_rename_table rename_tbl[] = {
884 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
885 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
886 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
887 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
888 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
889 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
890 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
891 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
892 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
893 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
894 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
895 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
896 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
897 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
898 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
899 { } /* terminator */
900};
901
902static int alc_codec_rename_from_preset(struct hda_codec *codec)
e4770629 903{
08c189f2
TI
904 const struct alc_codec_rename_table *p;
905
906 for (p = rename_tbl; p->vendor_id; p++) {
907 if (p->vendor_id != codec->vendor_id)
908 continue;
909 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
910 return alc_codec_rename(codec, p->name);
911 }
912 return 0;
e4770629
TI
913}
914
08c189f2 915
1d045db9
TI
916/*
917 * Digital-beep handlers
918 */
919#ifdef CONFIG_SND_HDA_INPUT_BEEP
920#define set_beep_amp(spec, nid, idx, dir) \
921 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
84898e87 922
1d045db9 923static const struct snd_pci_quirk beep_white_list[] = {
7110005e 924 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
1d045db9
TI
925 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
926 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
927 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
928 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
78f8baf1 929 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1d045db9
TI
930 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
931 {}
fe3eb0a7
KY
932};
933
1d045db9
TI
934static inline int has_cdefine_beep(struct hda_codec *codec)
935{
936 struct alc_spec *spec = codec->spec;
937 const struct snd_pci_quirk *q;
938 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
939 if (q)
940 return q->value;
941 return spec->cdefine.enable_pcbeep;
942}
943#else
944#define set_beep_amp(spec, nid, idx, dir) /* NOP */
945#define has_cdefine_beep(codec) 0
946#endif
84898e87 947
1d045db9
TI
948/* parse the BIOS configuration and set up the alc_spec */
949/* return 1 if successful, 0 if the proper config is not found,
950 * or a negative error code
951 */
3e6179b8
TI
952static int alc_parse_auto_config(struct hda_codec *codec,
953 const hda_nid_t *ignore_nids,
954 const hda_nid_t *ssid_nids)
1d045db9
TI
955{
956 struct alc_spec *spec = codec->spec;
08c189f2 957 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1d045db9 958 int err;
26f5df26 959
53c334ad
TI
960 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
961 spec->parse_flags);
1d045db9
TI
962 if (err < 0)
963 return err;
f6a92248 964
3e6179b8
TI
965 if (ssid_nids)
966 alc_ssid_check(codec, ssid_nids);
64154835 967
08c189f2
TI
968 err = snd_hda_gen_parse_auto_config(codec, cfg);
969 if (err < 0)
970 return err;
f6a92248 971
1d045db9 972 return 1;
60db6b53 973}
f6a92248 974
3de95173
TI
975/* common preparation job for alc_spec */
976static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
977{
978 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
979 int err;
980
981 if (!spec)
982 return -ENOMEM;
983 codec->spec = spec;
08c189f2
TI
984 snd_hda_gen_spec_init(&spec->gen);
985 spec->gen.mixer_nid = mixer_nid;
986 spec->gen.own_eapd_ctl = 1;
1098b7c2 987 codec->single_adc_amp = 1;
08c189f2
TI
988 /* FIXME: do we need this for all Realtek codec models? */
989 codec->spdif_status_reset = 1;
3de95173
TI
990
991 err = alc_codec_rename_from_preset(codec);
992 if (err < 0) {
993 kfree(spec);
994 return err;
995 }
996 return 0;
997}
998
3e6179b8
TI
999static int alc880_parse_auto_config(struct hda_codec *codec)
1000{
1001 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
7d7eb9ea 1002 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3e6179b8
TI
1003 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1004}
1005
ee3b2969
TI
1006/*
1007 * ALC880 fix-ups
1008 */
1009enum {
411225a0 1010 ALC880_FIXUP_GPIO1,
ee3b2969
TI
1011 ALC880_FIXUP_GPIO2,
1012 ALC880_FIXUP_MEDION_RIM,
dc6af52d 1013 ALC880_FIXUP_LG,
f02aab5d 1014 ALC880_FIXUP_W810,
27e917f8 1015 ALC880_FIXUP_EAPD_COEF,
b9368f5c 1016 ALC880_FIXUP_TCL_S700,
cf5a2279
TI
1017 ALC880_FIXUP_VOL_KNOB,
1018 ALC880_FIXUP_FUJITSU,
ba533818 1019 ALC880_FIXUP_F1734,
817de92f 1020 ALC880_FIXUP_UNIWILL,
967b88c4 1021 ALC880_FIXUP_UNIWILL_DIG,
96e225f6 1022 ALC880_FIXUP_Z71V,
67b6ec31
TI
1023 ALC880_FIXUP_3ST_BASE,
1024 ALC880_FIXUP_3ST,
1025 ALC880_FIXUP_3ST_DIG,
1026 ALC880_FIXUP_5ST_BASE,
1027 ALC880_FIXUP_5ST,
1028 ALC880_FIXUP_5ST_DIG,
1029 ALC880_FIXUP_6ST_BASE,
1030 ALC880_FIXUP_6ST,
1031 ALC880_FIXUP_6ST_DIG,
ee3b2969
TI
1032};
1033
cf5a2279
TI
1034/* enable the volume-knob widget support on NID 0x21 */
1035static void alc880_fixup_vol_knob(struct hda_codec *codec,
1727a771 1036 const struct hda_fixup *fix, int action)
cf5a2279 1037{
1727a771 1038 if (action == HDA_FIXUP_ACT_PROBE)
29adc4b9 1039 snd_hda_jack_detect_enable_callback(codec, 0x21, ALC_DCVOL_EVENT, alc_update_knob_master);
cf5a2279
TI
1040}
1041
1727a771 1042static const struct hda_fixup alc880_fixups[] = {
411225a0 1043 [ALC880_FIXUP_GPIO1] = {
1727a771 1044 .type = HDA_FIXUP_VERBS,
411225a0
TI
1045 .v.verbs = alc_gpio1_init_verbs,
1046 },
ee3b2969 1047 [ALC880_FIXUP_GPIO2] = {
1727a771 1048 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1049 .v.verbs = alc_gpio2_init_verbs,
1050 },
1051 [ALC880_FIXUP_MEDION_RIM] = {
1727a771 1052 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1053 .v.verbs = (const struct hda_verb[]) {
1054 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1055 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1056 { }
1057 },
1058 .chained = true,
1059 .chain_id = ALC880_FIXUP_GPIO2,
1060 },
dc6af52d 1061 [ALC880_FIXUP_LG] = {
1727a771
TI
1062 .type = HDA_FIXUP_PINS,
1063 .v.pins = (const struct hda_pintbl[]) {
dc6af52d
TI
1064 /* disable bogus unused pins */
1065 { 0x16, 0x411111f0 },
1066 { 0x18, 0x411111f0 },
1067 { 0x1a, 0x411111f0 },
1068 { }
1069 }
1070 },
f02aab5d 1071 [ALC880_FIXUP_W810] = {
1727a771
TI
1072 .type = HDA_FIXUP_PINS,
1073 .v.pins = (const struct hda_pintbl[]) {
f02aab5d
TI
1074 /* disable bogus unused pins */
1075 { 0x17, 0x411111f0 },
1076 { }
1077 },
1078 .chained = true,
1079 .chain_id = ALC880_FIXUP_GPIO2,
1080 },
27e917f8 1081 [ALC880_FIXUP_EAPD_COEF] = {
1727a771 1082 .type = HDA_FIXUP_VERBS,
27e917f8
TI
1083 .v.verbs = (const struct hda_verb[]) {
1084 /* change to EAPD mode */
1085 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1086 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1087 {}
1088 },
1089 },
b9368f5c 1090 [ALC880_FIXUP_TCL_S700] = {
1727a771 1091 .type = HDA_FIXUP_VERBS,
b9368f5c
TI
1092 .v.verbs = (const struct hda_verb[]) {
1093 /* change to EAPD mode */
1094 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1095 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1096 {}
1097 },
1098 .chained = true,
1099 .chain_id = ALC880_FIXUP_GPIO2,
1100 },
cf5a2279 1101 [ALC880_FIXUP_VOL_KNOB] = {
1727a771 1102 .type = HDA_FIXUP_FUNC,
cf5a2279
TI
1103 .v.func = alc880_fixup_vol_knob,
1104 },
1105 [ALC880_FIXUP_FUJITSU] = {
1106 /* override all pins as BIOS on old Amilo is broken */
1727a771
TI
1107 .type = HDA_FIXUP_PINS,
1108 .v.pins = (const struct hda_pintbl[]) {
cf5a2279
TI
1109 { 0x14, 0x0121411f }, /* HP */
1110 { 0x15, 0x99030120 }, /* speaker */
1111 { 0x16, 0x99030130 }, /* bass speaker */
1112 { 0x17, 0x411111f0 }, /* N/A */
1113 { 0x18, 0x411111f0 }, /* N/A */
1114 { 0x19, 0x01a19950 }, /* mic-in */
1115 { 0x1a, 0x411111f0 }, /* N/A */
1116 { 0x1b, 0x411111f0 }, /* N/A */
1117 { 0x1c, 0x411111f0 }, /* N/A */
1118 { 0x1d, 0x411111f0 }, /* N/A */
1119 { 0x1e, 0x01454140 }, /* SPDIF out */
1120 { }
1121 },
1122 .chained = true,
1123 .chain_id = ALC880_FIXUP_VOL_KNOB,
1124 },
ba533818
TI
1125 [ALC880_FIXUP_F1734] = {
1126 /* almost compatible with FUJITSU, but no bass and SPDIF */
1727a771
TI
1127 .type = HDA_FIXUP_PINS,
1128 .v.pins = (const struct hda_pintbl[]) {
ba533818
TI
1129 { 0x14, 0x0121411f }, /* HP */
1130 { 0x15, 0x99030120 }, /* speaker */
1131 { 0x16, 0x411111f0 }, /* N/A */
1132 { 0x17, 0x411111f0 }, /* N/A */
1133 { 0x18, 0x411111f0 }, /* N/A */
1134 { 0x19, 0x01a19950 }, /* mic-in */
1135 { 0x1a, 0x411111f0 }, /* N/A */
1136 { 0x1b, 0x411111f0 }, /* N/A */
1137 { 0x1c, 0x411111f0 }, /* N/A */
1138 { 0x1d, 0x411111f0 }, /* N/A */
1139 { 0x1e, 0x411111f0 }, /* N/A */
1140 { }
1141 },
1142 .chained = true,
1143 .chain_id = ALC880_FIXUP_VOL_KNOB,
1144 },
817de92f
TI
1145 [ALC880_FIXUP_UNIWILL] = {
1146 /* need to fix HP and speaker pins to be parsed correctly */
1727a771
TI
1147 .type = HDA_FIXUP_PINS,
1148 .v.pins = (const struct hda_pintbl[]) {
817de92f
TI
1149 { 0x14, 0x0121411f }, /* HP */
1150 { 0x15, 0x99030120 }, /* speaker */
1151 { 0x16, 0x99030130 }, /* bass speaker */
1152 { }
1153 },
1154 },
967b88c4 1155 [ALC880_FIXUP_UNIWILL_DIG] = {
1727a771
TI
1156 .type = HDA_FIXUP_PINS,
1157 .v.pins = (const struct hda_pintbl[]) {
967b88c4
TI
1158 /* disable bogus unused pins */
1159 { 0x17, 0x411111f0 },
1160 { 0x19, 0x411111f0 },
1161 { 0x1b, 0x411111f0 },
1162 { 0x1f, 0x411111f0 },
1163 { }
1164 }
1165 },
96e225f6 1166 [ALC880_FIXUP_Z71V] = {
1727a771
TI
1167 .type = HDA_FIXUP_PINS,
1168 .v.pins = (const struct hda_pintbl[]) {
96e225f6
TI
1169 /* set up the whole pins as BIOS is utterly broken */
1170 { 0x14, 0x99030120 }, /* speaker */
1171 { 0x15, 0x0121411f }, /* HP */
1172 { 0x16, 0x411111f0 }, /* N/A */
1173 { 0x17, 0x411111f0 }, /* N/A */
1174 { 0x18, 0x01a19950 }, /* mic-in */
1175 { 0x19, 0x411111f0 }, /* N/A */
1176 { 0x1a, 0x01813031 }, /* line-in */
1177 { 0x1b, 0x411111f0 }, /* N/A */
1178 { 0x1c, 0x411111f0 }, /* N/A */
1179 { 0x1d, 0x411111f0 }, /* N/A */
1180 { 0x1e, 0x0144111e }, /* SPDIF */
1181 { }
1182 }
1183 },
67b6ec31 1184 [ALC880_FIXUP_3ST_BASE] = {
1727a771
TI
1185 .type = HDA_FIXUP_PINS,
1186 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1187 { 0x14, 0x01014010 }, /* line-out */
1188 { 0x15, 0x411111f0 }, /* N/A */
1189 { 0x16, 0x411111f0 }, /* N/A */
1190 { 0x17, 0x411111f0 }, /* N/A */
1191 { 0x18, 0x01a19c30 }, /* mic-in */
1192 { 0x19, 0x0121411f }, /* HP */
1193 { 0x1a, 0x01813031 }, /* line-in */
1194 { 0x1b, 0x02a19c40 }, /* front-mic */
1195 { 0x1c, 0x411111f0 }, /* N/A */
1196 { 0x1d, 0x411111f0 }, /* N/A */
1197 /* 0x1e is filled in below */
1198 { 0x1f, 0x411111f0 }, /* N/A */
1199 { }
1200 }
1201 },
1202 [ALC880_FIXUP_3ST] = {
1727a771
TI
1203 .type = HDA_FIXUP_PINS,
1204 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1205 { 0x1e, 0x411111f0 }, /* N/A */
1206 { }
1207 },
1208 .chained = true,
1209 .chain_id = ALC880_FIXUP_3ST_BASE,
1210 },
1211 [ALC880_FIXUP_3ST_DIG] = {
1727a771
TI
1212 .type = HDA_FIXUP_PINS,
1213 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1214 { 0x1e, 0x0144111e }, /* SPDIF */
1215 { }
1216 },
1217 .chained = true,
1218 .chain_id = ALC880_FIXUP_3ST_BASE,
1219 },
1220 [ALC880_FIXUP_5ST_BASE] = {
1727a771
TI
1221 .type = HDA_FIXUP_PINS,
1222 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1223 { 0x14, 0x01014010 }, /* front */
1224 { 0x15, 0x411111f0 }, /* N/A */
1225 { 0x16, 0x01011411 }, /* CLFE */
1226 { 0x17, 0x01016412 }, /* surr */
1227 { 0x18, 0x01a19c30 }, /* mic-in */
1228 { 0x19, 0x0121411f }, /* HP */
1229 { 0x1a, 0x01813031 }, /* line-in */
1230 { 0x1b, 0x02a19c40 }, /* front-mic */
1231 { 0x1c, 0x411111f0 }, /* N/A */
1232 { 0x1d, 0x411111f0 }, /* N/A */
1233 /* 0x1e is filled in below */
1234 { 0x1f, 0x411111f0 }, /* N/A */
1235 { }
1236 }
1237 },
1238 [ALC880_FIXUP_5ST] = {
1727a771
TI
1239 .type = HDA_FIXUP_PINS,
1240 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1241 { 0x1e, 0x411111f0 }, /* N/A */
1242 { }
1243 },
1244 .chained = true,
1245 .chain_id = ALC880_FIXUP_5ST_BASE,
1246 },
1247 [ALC880_FIXUP_5ST_DIG] = {
1727a771
TI
1248 .type = HDA_FIXUP_PINS,
1249 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1250 { 0x1e, 0x0144111e }, /* SPDIF */
1251 { }
1252 },
1253 .chained = true,
1254 .chain_id = ALC880_FIXUP_5ST_BASE,
1255 },
1256 [ALC880_FIXUP_6ST_BASE] = {
1727a771
TI
1257 .type = HDA_FIXUP_PINS,
1258 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1259 { 0x14, 0x01014010 }, /* front */
1260 { 0x15, 0x01016412 }, /* surr */
1261 { 0x16, 0x01011411 }, /* CLFE */
1262 { 0x17, 0x01012414 }, /* side */
1263 { 0x18, 0x01a19c30 }, /* mic-in */
1264 { 0x19, 0x02a19c40 }, /* front-mic */
1265 { 0x1a, 0x01813031 }, /* line-in */
1266 { 0x1b, 0x0121411f }, /* HP */
1267 { 0x1c, 0x411111f0 }, /* N/A */
1268 { 0x1d, 0x411111f0 }, /* N/A */
1269 /* 0x1e is filled in below */
1270 { 0x1f, 0x411111f0 }, /* N/A */
1271 { }
1272 }
1273 },
1274 [ALC880_FIXUP_6ST] = {
1727a771
TI
1275 .type = HDA_FIXUP_PINS,
1276 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1277 { 0x1e, 0x411111f0 }, /* N/A */
1278 { }
1279 },
1280 .chained = true,
1281 .chain_id = ALC880_FIXUP_6ST_BASE,
1282 },
1283 [ALC880_FIXUP_6ST_DIG] = {
1727a771
TI
1284 .type = HDA_FIXUP_PINS,
1285 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1286 { 0x1e, 0x0144111e }, /* SPDIF */
1287 { }
1288 },
1289 .chained = true,
1290 .chain_id = ALC880_FIXUP_6ST_BASE,
1291 },
ee3b2969
TI
1292};
1293
1294static const struct snd_pci_quirk alc880_fixup_tbl[] = {
f02aab5d 1295 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
96e225f6 1296 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
29e3fdcc
TI
1297 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
1298 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
27e917f8 1299 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
967b88c4 1300 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
ba533818 1301 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
817de92f 1302 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
7833c7e8 1303 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
f02aab5d 1304 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
ee3b2969 1305 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
ba533818 1306 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
cf5a2279 1307 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
ba533818 1308 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
cf5a2279 1309 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
dc6af52d
TI
1310 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1311 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1312 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
b9368f5c 1313 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
67b6ec31
TI
1314
1315 /* Below is the copied entries from alc880_quirks.c.
1316 * It's not quite sure whether BIOS sets the correct pin-config table
1317 * on these machines, thus they are kept to be compatible with
1318 * the old static quirks. Once when it's confirmed to work without
1319 * these overrides, it'd be better to remove.
1320 */
1321 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1322 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1323 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1324 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1325 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1326 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1327 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1328 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1329 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1330 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1331 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1332 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1333 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1334 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1335 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1336 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1337 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1338 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1339 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1340 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1341 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1342 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1343 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1344 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1345 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1346 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1347 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1348 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1349 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1350 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1351 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1352 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1353 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1354 /* default Intel */
1355 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1356 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1357 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1358 {}
1359};
1360
1727a771 1361static const struct hda_model_fixup alc880_fixup_models[] = {
67b6ec31
TI
1362 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1363 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1364 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1365 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1366 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1367 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
ee3b2969
TI
1368 {}
1369};
1370
1371
1d045db9
TI
1372/*
1373 * OK, here we have finally the patch for ALC880
1374 */
1d045db9 1375static int patch_alc880(struct hda_codec *codec)
60db6b53 1376{
1d045db9 1377 struct alc_spec *spec;
1d045db9 1378 int err;
f6a92248 1379
3de95173
TI
1380 err = alc_alloc_spec(codec, 0x0b);
1381 if (err < 0)
1382 return err;
64154835 1383
3de95173 1384 spec = codec->spec;
08c189f2 1385 spec->gen.need_dac_fix = 1;
f53281e6 1386
1727a771 1387 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
67b6ec31 1388 alc880_fixups);
1727a771 1389 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ee3b2969 1390
67b6ec31
TI
1391 /* automatic parse from the BIOS config */
1392 err = alc880_parse_auto_config(codec);
1393 if (err < 0)
1394 goto error;
fe3eb0a7 1395
08c189f2 1396 if (!spec->gen.no_analog) {
3e6179b8 1397 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
1398 if (err < 0)
1399 goto error;
3e6179b8
TI
1400 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1401 }
f53281e6 1402
1d045db9 1403 codec->patch_ops = alc_patch_ops;
29adc4b9
DH
1404 codec->patch_ops.unsol_event = alc880_unsol_event;
1405
f53281e6 1406
1727a771 1407 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1408
1d045db9 1409 return 0;
e16fb6d1
TI
1410
1411 error:
1412 alc_free(codec);
1413 return err;
226b1ec8
KY
1414}
1415
1d045db9 1416
60db6b53 1417/*
1d045db9 1418 * ALC260 support
60db6b53 1419 */
1d045db9 1420static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 1421{
1d045db9 1422 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
1423 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1424 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
1425}
1426
1d045db9
TI
1427/*
1428 * Pin config fixes
1429 */
1430enum {
ca8f0424
TI
1431 ALC260_FIXUP_HP_DC5750,
1432 ALC260_FIXUP_HP_PIN_0F,
1433 ALC260_FIXUP_COEF,
15317ab2 1434 ALC260_FIXUP_GPIO1,
20f7d928
TI
1435 ALC260_FIXUP_GPIO1_TOGGLE,
1436 ALC260_FIXUP_REPLACER,
0a1c4fa2 1437 ALC260_FIXUP_HP_B1900,
118cb4a4 1438 ALC260_FIXUP_KN1,
1d045db9
TI
1439};
1440
20f7d928
TI
1441static void alc260_gpio1_automute(struct hda_codec *codec)
1442{
1443 struct alc_spec *spec = codec->spec;
1444 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
08c189f2 1445 spec->gen.hp_jack_present);
20f7d928
TI
1446}
1447
1448static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1727a771 1449 const struct hda_fixup *fix, int action)
20f7d928
TI
1450{
1451 struct alc_spec *spec = codec->spec;
1727a771 1452 if (action == HDA_FIXUP_ACT_PROBE) {
20f7d928
TI
1453 /* although the machine has only one output pin, we need to
1454 * toggle GPIO1 according to the jack state
1455 */
08c189f2
TI
1456 spec->gen.automute_hook = alc260_gpio1_automute;
1457 spec->gen.detect_hp = 1;
1458 spec->gen.automute_speaker = 1;
1459 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
1460 snd_hda_jack_detect_enable_callback(codec, 0x0f, HDA_GEN_HP_EVENT,
1461 snd_hda_gen_hp_automute);
c9ce6b26 1462 snd_hda_add_verbs(codec, alc_gpio1_init_verbs);
20f7d928
TI
1463 }
1464}
1465
118cb4a4 1466static void alc260_fixup_kn1(struct hda_codec *codec,
1727a771 1467 const struct hda_fixup *fix, int action)
118cb4a4
TI
1468{
1469 struct alc_spec *spec = codec->spec;
1727a771 1470 static const struct hda_pintbl pincfgs[] = {
118cb4a4
TI
1471 { 0x0f, 0x02214000 }, /* HP/speaker */
1472 { 0x12, 0x90a60160 }, /* int mic */
1473 { 0x13, 0x02a19000 }, /* ext mic */
1474 { 0x18, 0x01446000 }, /* SPDIF out */
1475 /* disable bogus I/O pins */
1476 { 0x10, 0x411111f0 },
1477 { 0x11, 0x411111f0 },
1478 { 0x14, 0x411111f0 },
1479 { 0x15, 0x411111f0 },
1480 { 0x16, 0x411111f0 },
1481 { 0x17, 0x411111f0 },
1482 { 0x19, 0x411111f0 },
1483 { }
1484 };
1485
1486 switch (action) {
1727a771
TI
1487 case HDA_FIXUP_ACT_PRE_PROBE:
1488 snd_hda_apply_pincfgs(codec, pincfgs);
118cb4a4 1489 break;
1727a771 1490 case HDA_FIXUP_ACT_PROBE:
118cb4a4
TI
1491 spec->init_amp = ALC_INIT_NONE;
1492 break;
1493 }
1494}
1495
1727a771 1496static const struct hda_fixup alc260_fixups[] = {
ca8f0424 1497 [ALC260_FIXUP_HP_DC5750] = {
1727a771
TI
1498 .type = HDA_FIXUP_PINS,
1499 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1500 { 0x11, 0x90130110 }, /* speaker */
1501 { }
1502 }
1503 },
ca8f0424 1504 [ALC260_FIXUP_HP_PIN_0F] = {
1727a771
TI
1505 .type = HDA_FIXUP_PINS,
1506 .v.pins = (const struct hda_pintbl[]) {
ca8f0424
TI
1507 { 0x0f, 0x01214000 }, /* HP */
1508 { }
1509 }
1510 },
1511 [ALC260_FIXUP_COEF] = {
1727a771 1512 .type = HDA_FIXUP_VERBS,
ca8f0424
TI
1513 .v.verbs = (const struct hda_verb[]) {
1514 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1515 { 0x20, AC_VERB_SET_PROC_COEF, 0x3040 },
1516 { }
1517 },
1518 .chained = true,
1519 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1520 },
15317ab2 1521 [ALC260_FIXUP_GPIO1] = {
1727a771 1522 .type = HDA_FIXUP_VERBS,
15317ab2
TI
1523 .v.verbs = alc_gpio1_init_verbs,
1524 },
20f7d928 1525 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727a771 1526 .type = HDA_FIXUP_FUNC,
20f7d928
TI
1527 .v.func = alc260_fixup_gpio1_toggle,
1528 .chained = true,
1529 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1530 },
1531 [ALC260_FIXUP_REPLACER] = {
1727a771 1532 .type = HDA_FIXUP_VERBS,
20f7d928
TI
1533 .v.verbs = (const struct hda_verb[]) {
1534 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1535 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1536 { }
1537 },
1538 .chained = true,
1539 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1540 },
0a1c4fa2 1541 [ALC260_FIXUP_HP_B1900] = {
1727a771 1542 .type = HDA_FIXUP_FUNC,
0a1c4fa2
TI
1543 .v.func = alc260_fixup_gpio1_toggle,
1544 .chained = true,
1545 .chain_id = ALC260_FIXUP_COEF,
118cb4a4
TI
1546 },
1547 [ALC260_FIXUP_KN1] = {
1727a771 1548 .type = HDA_FIXUP_FUNC,
118cb4a4
TI
1549 .v.func = alc260_fixup_kn1,
1550 },
1d045db9
TI
1551};
1552
1553static const struct snd_pci_quirk alc260_fixup_tbl[] = {
15317ab2 1554 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
ca8f0424 1555 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
15317ab2 1556 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
ca8f0424 1557 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
0a1c4fa2 1558 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
b1f58085 1559 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
118cb4a4 1560 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
20f7d928 1561 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
ca8f0424 1562 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1d045db9
TI
1563 {}
1564};
1565
1566/*
1567 */
1d045db9 1568static int patch_alc260(struct hda_codec *codec)
977ddd6b 1569{
1d045db9 1570 struct alc_spec *spec;
c3c2c9e7 1571 int err;
1d045db9 1572
3de95173
TI
1573 err = alc_alloc_spec(codec, 0x07);
1574 if (err < 0)
1575 return err;
1d045db9 1576
3de95173 1577 spec = codec->spec;
1d045db9 1578
1727a771
TI
1579 snd_hda_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
1580 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
977ddd6b 1581
c3c2c9e7
TI
1582 /* automatic parse from the BIOS config */
1583 err = alc260_parse_auto_config(codec);
1584 if (err < 0)
1585 goto error;
977ddd6b 1586
08c189f2 1587 if (!spec->gen.no_analog) {
3e6179b8 1588 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
1589 if (err < 0)
1590 goto error;
3e6179b8
TI
1591 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1592 }
977ddd6b 1593
1d045db9 1594 codec->patch_ops = alc_patch_ops;
1d045db9 1595 spec->shutup = alc_eapd_shutup;
6981d184 1596
1727a771 1597 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1598
1d045db9 1599 return 0;
e16fb6d1
TI
1600
1601 error:
1602 alc_free(codec);
1603 return err;
6981d184
TI
1604}
1605
1d045db9
TI
1606
1607/*
1608 * ALC882/883/885/888/889 support
1609 *
1610 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1611 * configuration. Each pin widget can choose any input DACs and a mixer.
1612 * Each ADC is connected from a mixer of all inputs. This makes possible
1613 * 6-channel independent captures.
1614 *
1615 * In addition, an independent DAC for the multi-playback (not used in this
1616 * driver yet).
1617 */
1d045db9
TI
1618
1619/*
1620 * Pin config fixes
1621 */
ff818c24 1622enum {
5c0ebfbe
TI
1623 ALC882_FIXUP_ABIT_AW9D_MAX,
1624 ALC882_FIXUP_LENOVO_Y530,
1625 ALC882_FIXUP_PB_M5210,
1626 ALC882_FIXUP_ACER_ASPIRE_7736,
1627 ALC882_FIXUP_ASUS_W90V,
8f239214 1628 ALC889_FIXUP_CD,
5c0ebfbe 1629 ALC889_FIXUP_VAIO_TT,
0e7cc2e7 1630 ALC888_FIXUP_EEE1601,
177943a3 1631 ALC882_FIXUP_EAPD,
7a6069bf 1632 ALC883_FIXUP_EAPD,
8812c4f9 1633 ALC883_FIXUP_ACER_EAPD,
1a97b7f2
TI
1634 ALC882_FIXUP_GPIO1,
1635 ALC882_FIXUP_GPIO2,
eb844d51 1636 ALC882_FIXUP_GPIO3,
68ef0561
TI
1637 ALC889_FIXUP_COEF,
1638 ALC882_FIXUP_ASUS_W2JC,
c3e837bb
TI
1639 ALC882_FIXUP_ACER_ASPIRE_4930G,
1640 ALC882_FIXUP_ACER_ASPIRE_8930G,
1641 ALC882_FIXUP_ASPIRE_8930G_VERBS,
5671087f 1642 ALC885_FIXUP_MACPRO_GPIO,
02a237b2 1643 ALC889_FIXUP_DAC_ROUTE,
1a97b7f2
TI
1644 ALC889_FIXUP_MBP_VREF,
1645 ALC889_FIXUP_IMAC91_VREF,
6e72aa5f 1646 ALC882_FIXUP_INV_DMIC,
e427c237 1647 ALC882_FIXUP_NO_PRIMARY_HP,
ff818c24
TI
1648};
1649
68ef0561 1650static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1651 const struct hda_fixup *fix, int action)
68ef0561 1652{
1727a771 1653 if (action != HDA_FIXUP_ACT_INIT)
68ef0561
TI
1654 return;
1655 alc889_coef_init(codec);
1656}
1657
5671087f
TI
1658/* toggle speaker-output according to the hp-jack state */
1659static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1660{
1661 unsigned int gpiostate, gpiomask, gpiodir;
1662
1663 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1664 AC_VERB_GET_GPIO_DATA, 0);
1665
1666 if (!muted)
1667 gpiostate |= (1 << pin);
1668 else
1669 gpiostate &= ~(1 << pin);
1670
1671 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1672 AC_VERB_GET_GPIO_MASK, 0);
1673 gpiomask |= (1 << pin);
1674
1675 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1676 AC_VERB_GET_GPIO_DIRECTION, 0);
1677 gpiodir |= (1 << pin);
1678
1679
1680 snd_hda_codec_write(codec, codec->afg, 0,
1681 AC_VERB_SET_GPIO_MASK, gpiomask);
1682 snd_hda_codec_write(codec, codec->afg, 0,
1683 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1684
1685 msleep(1);
1686
1687 snd_hda_codec_write(codec, codec->afg, 0,
1688 AC_VERB_SET_GPIO_DATA, gpiostate);
1689}
1690
1691/* set up GPIO at initialization */
1692static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 1693 const struct hda_fixup *fix, int action)
5671087f 1694{
1727a771 1695 if (action != HDA_FIXUP_ACT_INIT)
5671087f
TI
1696 return;
1697 alc882_gpio_mute(codec, 0, 0);
1698 alc882_gpio_mute(codec, 1, 0);
1699}
1700
02a237b2
TI
1701/* Fix the connection of some pins for ALC889:
1702 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1703 * work correctly (bko#42740)
1704 */
1705static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 1706 const struct hda_fixup *fix, int action)
02a237b2 1707{
1727a771 1708 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 1709 /* fake the connections during parsing the tree */
02a237b2
TI
1710 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1711 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1712 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1713 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1714 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1715 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1727a771 1716 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb
TI
1717 /* restore the connections */
1718 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1719 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1720 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1721 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1722 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
02a237b2
TI
1723 }
1724}
1725
1a97b7f2
TI
1726/* Set VREF on HP pin */
1727static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 1728 const struct hda_fixup *fix, int action)
1a97b7f2
TI
1729{
1730 struct alc_spec *spec = codec->spec;
1731 static hda_nid_t nids[2] = { 0x14, 0x15 };
1732 int i;
1733
1727a771 1734 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
1735 return;
1736 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1737 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1738 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1739 continue;
d3f02d60 1740 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1741 val |= AC_PINCTL_VREF_80;
cdd03ced 1742 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 1743 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1744 break;
1745 }
1746}
1747
1748/* Set VREF on speaker pins on imac91 */
1749static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1727a771 1750 const struct hda_fixup *fix, int action)
1a97b7f2
TI
1751{
1752 struct alc_spec *spec = codec->spec;
1753 static hda_nid_t nids[2] = { 0x18, 0x1a };
1754 int i;
1755
1727a771 1756 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
1757 return;
1758 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1759 unsigned int val;
d3f02d60 1760 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1761 val |= AC_PINCTL_VREF_50;
cdd03ced 1762 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 1763 }
08c189f2 1764 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1765}
1766
e427c237
TI
1767/* Don't take HP output as primary
1768 * strangely, the speaker output doesn't work on VAIO Z through DAC 0x05
1769 */
1770static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 1771 const struct hda_fixup *fix, int action)
e427c237
TI
1772{
1773 struct alc_spec *spec = codec->spec;
1727a771 1774 if (action == HDA_FIXUP_ACT_PRE_PROBE)
08c189f2 1775 spec->gen.no_primary_hp = 1;
e427c237
TI
1776}
1777
1727a771 1778static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 1779 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
1780 .type = HDA_FIXUP_PINS,
1781 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1782 { 0x15, 0x01080104 }, /* side */
1783 { 0x16, 0x01011012 }, /* rear */
1784 { 0x17, 0x01016011 }, /* clfe */
2785591a 1785 { }
145a902b
DH
1786 }
1787 },
5c0ebfbe 1788 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
1789 .type = HDA_FIXUP_PINS,
1790 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1791 { 0x15, 0x99130112 }, /* rear int speakers */
1792 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
1793 { }
1794 }
1795 },
5c0ebfbe 1796 [ALC882_FIXUP_PB_M5210] = {
1727a771 1797 .type = HDA_FIXUP_VERBS,
b5bfbc67 1798 .v.verbs = (const struct hda_verb[]) {
1d045db9 1799 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
357f915e
KY
1800 {}
1801 }
1802 },
5c0ebfbe 1803 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 1804 .type = HDA_FIXUP_FUNC,
23d30f28 1805 .v.func = alc_fixup_sku_ignore,
6981d184 1806 },
5c0ebfbe 1807 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
1808 .type = HDA_FIXUP_PINS,
1809 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
1810 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1811 { }
1812 }
1813 },
8f239214 1814 [ALC889_FIXUP_CD] = {
1727a771
TI
1815 .type = HDA_FIXUP_PINS,
1816 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
1817 { 0x1c, 0x993301f0 }, /* CD */
1818 { }
1819 }
1820 },
5c0ebfbe 1821 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
1822 .type = HDA_FIXUP_PINS,
1823 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
1824 { 0x17, 0x90170111 }, /* hidden surround speaker */
1825 { }
1826 }
1827 },
0e7cc2e7 1828 [ALC888_FIXUP_EEE1601] = {
1727a771 1829 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
1830 .v.verbs = (const struct hda_verb[]) {
1831 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1832 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
1833 { }
1834 }
177943a3
TI
1835 },
1836 [ALC882_FIXUP_EAPD] = {
1727a771 1837 .type = HDA_FIXUP_VERBS,
177943a3
TI
1838 .v.verbs = (const struct hda_verb[]) {
1839 /* change to EAPD mode */
1840 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1841 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1842 { }
1843 }
1844 },
7a6069bf 1845 [ALC883_FIXUP_EAPD] = {
1727a771 1846 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
1847 .v.verbs = (const struct hda_verb[]) {
1848 /* change to EAPD mode */
1849 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1850 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1851 { }
1852 }
1853 },
8812c4f9 1854 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 1855 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
1856 .v.verbs = (const struct hda_verb[]) {
1857 /* eanable EAPD on Acer laptops */
1858 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1859 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1860 { }
1861 }
1862 },
1a97b7f2 1863 [ALC882_FIXUP_GPIO1] = {
1727a771 1864 .type = HDA_FIXUP_VERBS,
1a97b7f2
TI
1865 .v.verbs = alc_gpio1_init_verbs,
1866 },
1867 [ALC882_FIXUP_GPIO2] = {
1727a771 1868 .type = HDA_FIXUP_VERBS,
1a97b7f2
TI
1869 .v.verbs = alc_gpio2_init_verbs,
1870 },
eb844d51 1871 [ALC882_FIXUP_GPIO3] = {
1727a771 1872 .type = HDA_FIXUP_VERBS,
eb844d51
TI
1873 .v.verbs = alc_gpio3_init_verbs,
1874 },
68ef0561 1875 [ALC882_FIXUP_ASUS_W2JC] = {
1727a771 1876 .type = HDA_FIXUP_VERBS,
68ef0561
TI
1877 .v.verbs = alc_gpio1_init_verbs,
1878 .chained = true,
1879 .chain_id = ALC882_FIXUP_EAPD,
1880 },
1881 [ALC889_FIXUP_COEF] = {
1727a771 1882 .type = HDA_FIXUP_FUNC,
68ef0561
TI
1883 .v.func = alc889_fixup_coef,
1884 },
c3e837bb 1885 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
1886 .type = HDA_FIXUP_PINS,
1887 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
1888 { 0x16, 0x99130111 }, /* CLFE speaker */
1889 { 0x17, 0x99130112 }, /* surround speaker */
1890 { }
038d4fef
TI
1891 },
1892 .chained = true,
1893 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
1894 },
1895 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
1896 .type = HDA_FIXUP_PINS,
1897 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
1898 { 0x16, 0x99130111 }, /* CLFE speaker */
1899 { 0x1b, 0x99130112 }, /* surround speaker */
1900 { }
1901 },
1902 .chained = true,
1903 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
1904 },
1905 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
1906 /* additional init verbs for Acer Aspire 8930G */
1727a771 1907 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
1908 .v.verbs = (const struct hda_verb[]) {
1909 /* Enable all DACs */
1910 /* DAC DISABLE/MUTE 1? */
1911 /* setting bits 1-5 disables DAC nids 0x02-0x06
1912 * apparently. Init=0x38 */
1913 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
1914 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1915 /* DAC DISABLE/MUTE 2? */
1916 /* some bit here disables the other DACs.
1917 * Init=0x4900 */
1918 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
1919 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
1920 /* DMIC fix
1921 * This laptop has a stereo digital microphone.
1922 * The mics are only 1cm apart which makes the stereo
1923 * useless. However, either the mic or the ALC889
1924 * makes the signal become a difference/sum signal
1925 * instead of standard stereo, which is annoying.
1926 * So instead we flip this bit which makes the
1927 * codec replicate the sum signal to both channels,
1928 * turning it into a normal mono mic.
1929 */
1930 /* DMIC_CONTROL? Init value = 0x0001 */
1931 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
1932 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
1933 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1934 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
1935 { }
038d4fef
TI
1936 },
1937 .chained = true,
1938 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 1939 },
5671087f 1940 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 1941 .type = HDA_FIXUP_FUNC,
5671087f
TI
1942 .v.func = alc885_fixup_macpro_gpio,
1943 },
02a237b2 1944 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 1945 .type = HDA_FIXUP_FUNC,
02a237b2
TI
1946 .v.func = alc889_fixup_dac_route,
1947 },
1a97b7f2 1948 [ALC889_FIXUP_MBP_VREF] = {
1727a771 1949 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
1950 .v.func = alc889_fixup_mbp_vref,
1951 .chained = true,
1952 .chain_id = ALC882_FIXUP_GPIO1,
1953 },
1954 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 1955 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
1956 .v.func = alc889_fixup_imac91_vref,
1957 .chained = true,
1958 .chain_id = ALC882_FIXUP_GPIO1,
1959 },
6e72aa5f 1960 [ALC882_FIXUP_INV_DMIC] = {
1727a771 1961 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
1962 .v.func = alc_fixup_inv_dmic_0x12,
1963 },
e427c237 1964 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 1965 .type = HDA_FIXUP_FUNC,
e427c237
TI
1966 .v.func = alc882_fixup_no_primary_hp,
1967 },
ff818c24
TI
1968};
1969
1d045db9 1970static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
1971 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
1972 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1973 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
1974 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
1975 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
1976 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
1977 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
1978 ALC882_FIXUP_ACER_ASPIRE_4930G),
1979 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
1980 ALC882_FIXUP_ACER_ASPIRE_4930G),
1981 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
1982 ALC882_FIXUP_ACER_ASPIRE_8930G),
1983 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
1984 ALC882_FIXUP_ACER_ASPIRE_8930G),
1985 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
1986 ALC882_FIXUP_ACER_ASPIRE_4930G),
1987 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
1988 ALC882_FIXUP_ACER_ASPIRE_4930G),
1989 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
1990 ALC882_FIXUP_ACER_ASPIRE_4930G),
5c0ebfbe 1991 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
f5c53d89
TI
1992 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
1993 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 1994 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 1995 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 1996 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 1997 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 1998 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 1999 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
0e7cc2e7 2000 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
ac9b1cdd 2001 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2002 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2003
2004 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2005 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2006 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2007 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f
TI
2008 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2009 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2010 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2011 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2012 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2013 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
1a97b7f2
TI
2014 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2015 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2016 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2017 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2018 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2019 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2020 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2021 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
29ebe402 2022 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
05193639 2023 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2024 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2025 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2026 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
5671087f 2027
7a6069bf 2028 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
bca40138 2029 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
eb844d51 2030 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
8f239214 2031 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
5c0ebfbe 2032 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
7a6069bf
TI
2033 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2034 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2035 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2036 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2037 {}
2038};
2039
1727a771 2040static const struct hda_model_fixup alc882_fixup_models[] = {
912093bc
TI
2041 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2042 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2043 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
6e72aa5f 2044 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2045 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
912093bc
TI
2046 {}
2047};
2048
f6a92248 2049/*
1d045db9 2050 * BIOS auto configuration
f6a92248 2051 */
1d045db9
TI
2052/* almost identical with ALC880 parser... */
2053static int alc882_parse_auto_config(struct hda_codec *codec)
2054{
1d045db9 2055 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2056 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2057 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2058}
b896b4eb 2059
1d045db9
TI
2060/*
2061 */
1d045db9 2062static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2063{
2064 struct alc_spec *spec;
1a97b7f2 2065 int err;
f6a92248 2066
3de95173
TI
2067 err = alc_alloc_spec(codec, 0x0b);
2068 if (err < 0)
2069 return err;
f6a92248 2070
3de95173 2071 spec = codec->spec;
1f0f4b80 2072
1d045db9
TI
2073 switch (codec->vendor_id) {
2074 case 0x10ec0882:
2075 case 0x10ec0885:
2076 break;
2077 default:
2078 /* ALC883 and variants */
2079 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2080 break;
c793bec5 2081 }
977ddd6b 2082
1727a771 2083 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2084 alc882_fixups);
1727a771 2085 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2086
1d045db9
TI
2087 alc_auto_parse_customize_define(codec);
2088
1a97b7f2
TI
2089 /* automatic parse from the BIOS config */
2090 err = alc882_parse_auto_config(codec);
2091 if (err < 0)
2092 goto error;
f6a92248 2093
08c189f2 2094 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3e6179b8 2095 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
2096 if (err < 0)
2097 goto error;
1d045db9 2098 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3e6179b8 2099 }
f6a92248
KY
2100
2101 codec->patch_ops = alc_patch_ops;
bf1b0225 2102
1727a771 2103 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2104
f6a92248 2105 return 0;
e16fb6d1
TI
2106
2107 error:
2108 alc_free(codec);
2109 return err;
f6a92248
KY
2110}
2111
df694daa 2112
df694daa 2113/*
1d045db9 2114 * ALC262 support
df694daa 2115 */
1d045db9 2116static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2117{
1d045db9 2118 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2119 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2120 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2121}
2122
df694daa 2123/*
1d045db9 2124 * Pin config fixes
df694daa 2125 */
cfc9b06f 2126enum {
ea4e7af1
TI
2127 ALC262_FIXUP_FSC_H270,
2128 ALC262_FIXUP_HP_Z200,
2129 ALC262_FIXUP_TYAN,
c470150c 2130 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2131 ALC262_FIXUP_BENQ,
2132 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2133 ALC262_FIXUP_INV_DMIC,
cfc9b06f
TI
2134};
2135
1727a771 2136static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2137 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2138 .type = HDA_FIXUP_PINS,
2139 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2140 { 0x14, 0x99130110 }, /* speaker */
2141 { 0x15, 0x0221142f }, /* front HP */
2142 { 0x1b, 0x0121141f }, /* rear HP */
2143 { }
2144 }
2145 },
ea4e7af1 2146 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2147 .type = HDA_FIXUP_PINS,
2148 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2149 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2150 { }
2151 }
cfc9b06f 2152 },
ea4e7af1 2153 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2154 .type = HDA_FIXUP_PINS,
2155 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2156 { 0x14, 0x1993e1f0 }, /* int AUX */
2157 { }
2158 }
2159 },
c470150c 2160 [ALC262_FIXUP_LENOVO_3000] = {
1727a771 2161 .type = HDA_FIXUP_VERBS,
c470150c
TI
2162 .v.verbs = (const struct hda_verb[]) {
2163 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
b42590b8
TI
2164 {}
2165 },
2166 .chained = true,
2167 .chain_id = ALC262_FIXUP_BENQ,
2168 },
2169 [ALC262_FIXUP_BENQ] = {
1727a771 2170 .type = HDA_FIXUP_VERBS,
b42590b8 2171 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2172 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2173 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2174 {}
2175 }
2176 },
b42590b8 2177 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2178 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2179 .v.verbs = (const struct hda_verb[]) {
2180 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2181 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2182 {}
2183 }
2184 },
6e72aa5f 2185 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2186 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
2187 .v.func = alc_fixup_inv_dmic_0x12,
2188 },
cfc9b06f
TI
2189};
2190
1d045db9 2191static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2192 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
3dcd3be3
TI
2193 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
2194 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1
TI
2195 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2196 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2197 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2198 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2199 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
cfc9b06f
TI
2200 {}
2201};
df694daa 2202
1727a771 2203static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f
TI
2204 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2205 {}
2206};
1d045db9 2207
1d045db9
TI
2208/*
2209 */
1d045db9 2210static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2211{
2212 struct alc_spec *spec;
df694daa
KY
2213 int err;
2214
3de95173
TI
2215 err = alc_alloc_spec(codec, 0x0b);
2216 if (err < 0)
2217 return err;
df694daa 2218
3de95173 2219 spec = codec->spec;
08c189f2 2220 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9
TI
2221
2222#if 0
2223 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2224 * under-run
2225 */
2226 {
2227 int tmp;
2228 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2229 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2230 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2231 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2232 }
2233#endif
1d045db9
TI
2234 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2235
1727a771 2236 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2237 alc262_fixups);
1727a771 2238 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2239
af741c15
TI
2240 alc_auto_parse_customize_define(codec);
2241
42399f7a
TI
2242 /* automatic parse from the BIOS config */
2243 err = alc262_parse_auto_config(codec);
2244 if (err < 0)
2245 goto error;
df694daa 2246
08c189f2 2247 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3e6179b8 2248 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
2249 if (err < 0)
2250 goto error;
1d045db9 2251 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3e6179b8 2252 }
2134ea4f 2253
df694daa 2254 codec->patch_ops = alc_patch_ops;
1d045db9
TI
2255 spec->shutup = alc_eapd_shutup;
2256
1727a771 2257 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2258
1da177e4 2259 return 0;
e16fb6d1
TI
2260
2261 error:
2262 alc_free(codec);
2263 return err;
1da177e4
LT
2264}
2265
f32610ed 2266/*
1d045db9 2267 * ALC268
f32610ed 2268 */
1d045db9
TI
2269/* bind Beep switches of both NID 0x0f and 0x10 */
2270static const struct hda_bind_ctls alc268_bind_beep_sw = {
2271 .ops = &snd_hda_bind_sw,
2272 .values = {
2273 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2274 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2275 0
2276 },
f32610ed
JS
2277};
2278
1d045db9
TI
2279static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2280 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2281 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2282 { }
f32610ed
JS
2283};
2284
1d045db9
TI
2285/* set PCBEEP vol = 0, mute connections */
2286static const struct hda_verb alc268_beep_init_verbs[] = {
2287 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2288 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2289 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2290 { }
f32610ed
JS
2291};
2292
6e72aa5f
TI
2293enum {
2294 ALC268_FIXUP_INV_DMIC,
cb766404 2295 ALC268_FIXUP_HP_EAPD,
6e72aa5f
TI
2296};
2297
1727a771 2298static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 2299 [ALC268_FIXUP_INV_DMIC] = {
1727a771 2300 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
2301 .v.func = alc_fixup_inv_dmic_0x12,
2302 },
cb766404 2303 [ALC268_FIXUP_HP_EAPD] = {
1727a771 2304 .type = HDA_FIXUP_VERBS,
cb766404
TI
2305 .v.verbs = (const struct hda_verb[]) {
2306 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2307 {}
2308 }
2309 },
6e72aa5f
TI
2310};
2311
1727a771 2312static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 2313 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404
TI
2314 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2315 {}
2316};
2317
2318static const struct snd_pci_quirk alc268_fixup_tbl[] = {
2319 /* below is codec SSID since multiple Toshiba laptops have the
2320 * same PCI SSID 1179:ff00
2321 */
2322 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
2323 {}
2324};
2325
f32610ed
JS
2326/*
2327 * BIOS auto configuration
2328 */
1d045db9 2329static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 2330{
3e6179b8 2331 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
f32610ed 2332 struct alc_spec *spec = codec->spec;
3e6179b8
TI
2333 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
2334 if (err > 0) {
08c189f2
TI
2335 if (!spec->gen.no_analog &&
2336 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
3e6179b8 2337 add_mixer(spec, alc268_beep_mixer);
c9ce6b26 2338 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9 2339 }
1d045db9 2340 }
3e6179b8 2341 return err;
f32610ed
JS
2342}
2343
1d045db9
TI
2344/*
2345 */
1d045db9 2346static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
2347{
2348 struct alc_spec *spec;
1d045db9 2349 int i, has_beep, err;
f32610ed 2350
1d045db9 2351 /* ALC268 has no aa-loopback mixer */
3de95173
TI
2352 err = alc_alloc_spec(codec, 0);
2353 if (err < 0)
2354 return err;
2355
2356 spec = codec->spec;
1f0f4b80 2357
1727a771
TI
2358 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2359 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 2360
6ebb8053
TI
2361 /* automatic parse from the BIOS config */
2362 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
2363 if (err < 0)
2364 goto error;
f32610ed 2365
1d045db9
TI
2366 has_beep = 0;
2367 for (i = 0; i < spec->num_mixers; i++) {
2368 if (spec->mixers[i] == alc268_beep_mixer) {
2369 has_beep = 1;
2370 break;
2371 }
2372 }
f32610ed 2373
1d045db9
TI
2374 if (has_beep) {
2375 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
2376 if (err < 0)
2377 goto error;
1d045db9
TI
2378 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2379 /* override the amp caps for beep generator */
2380 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2381 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2382 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2383 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2384 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
2385 }
2386
f32610ed 2387 codec->patch_ops = alc_patch_ops;
1c716153 2388 spec->shutup = alc_eapd_shutup;
1d045db9 2389
1727a771 2390 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 2391
f32610ed 2392 return 0;
e16fb6d1
TI
2393
2394 error:
2395 alc_free(codec);
2396 return err;
f32610ed
JS
2397}
2398
bc9f98a9 2399/*
1d045db9 2400 * ALC269
bc9f98a9 2401 */
08c189f2
TI
2402
2403static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2404 struct hda_codec *codec,
2405 struct snd_pcm_substream *substream)
2406{
2407 struct hda_gen_spec *spec = codec->spec;
2408 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2409 hinfo);
2410}
2411
2412static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2413 struct hda_codec *codec,
2414 unsigned int stream_tag,
2415 unsigned int format,
2416 struct snd_pcm_substream *substream)
2417{
2418 struct hda_gen_spec *spec = codec->spec;
2419 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2420 stream_tag, format, substream);
2421}
2422
2423static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2424 struct hda_codec *codec,
2425 struct snd_pcm_substream *substream)
2426{
2427 struct hda_gen_spec *spec = codec->spec;
2428 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2429}
2430
1d045db9
TI
2431static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2432 .substreams = 1,
2433 .channels_min = 2,
2434 .channels_max = 8,
2435 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2436 /* NID is set in alc_build_pcms */
2437 .ops = {
08c189f2
TI
2438 .open = playback_pcm_open,
2439 .prepare = playback_pcm_prepare,
2440 .cleanup = playback_pcm_cleanup
bc9f98a9
KY
2441 },
2442};
2443
1d045db9
TI
2444static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2445 .substreams = 1,
2446 .channels_min = 2,
2447 .channels_max = 2,
2448 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2449 /* NID is set in alc_build_pcms */
bc9f98a9 2450};
291702f0 2451
1d045db9
TI
2452/* different alc269-variants */
2453enum {
2454 ALC269_TYPE_ALC269VA,
2455 ALC269_TYPE_ALC269VB,
2456 ALC269_TYPE_ALC269VC,
adcc70b2 2457 ALC269_TYPE_ALC269VD,
065380f0
KY
2458 ALC269_TYPE_ALC280,
2459 ALC269_TYPE_ALC282,
2460 ALC269_TYPE_ALC284,
bc9f98a9
KY
2461};
2462
2463/*
1d045db9 2464 * BIOS auto configuration
bc9f98a9 2465 */
1d045db9
TI
2466static int alc269_parse_auto_config(struct hda_codec *codec)
2467{
1d045db9 2468 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2469 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2470 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2471 struct alc_spec *spec = codec->spec;
adcc70b2
KY
2472 const hda_nid_t *ssids;
2473
2474 switch (spec->codec_variant) {
2475 case ALC269_TYPE_ALC269VA:
2476 case ALC269_TYPE_ALC269VC:
065380f0
KY
2477 case ALC269_TYPE_ALC280:
2478 case ALC269_TYPE_ALC284:
adcc70b2
KY
2479 ssids = alc269va_ssids;
2480 break;
2481 case ALC269_TYPE_ALC269VB:
2482 case ALC269_TYPE_ALC269VD:
065380f0 2483 case ALC269_TYPE_ALC282:
adcc70b2
KY
2484 ssids = alc269_ssids;
2485 break;
2486 default:
2487 ssids = alc269_ssids;
2488 break;
2489 }
bc9f98a9 2490
3e6179b8 2491 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 2492}
bc9f98a9 2493
1387e2d1 2494static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9
TI
2495{
2496 int val = alc_read_coef_idx(codec, 0x04);
2497 if (power_up)
2498 val |= 1 << 11;
2499 else
2500 val &= ~(1 << 11);
2501 alc_write_coef_idx(codec, 0x04, val);
2502}
291702f0 2503
1d045db9
TI
2504static void alc269_shutup(struct hda_codec *codec)
2505{
adcc70b2
KY
2506 struct alc_spec *spec = codec->spec;
2507
2508 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
2509 return;
2510
1387e2d1
KY
2511 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2512 alc269vb_toggle_power_output(codec, 0);
2513 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2514 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2515 msleep(150);
2516 }
2517}
291702f0 2518
2a43952a 2519#ifdef CONFIG_PM
1d045db9
TI
2520static int alc269_resume(struct hda_codec *codec)
2521{
adcc70b2
KY
2522 struct alc_spec *spec = codec->spec;
2523
1387e2d1
KY
2524 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2525 alc269vb_toggle_power_output(codec, 0);
2526 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 2527 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2528 msleep(150);
2529 }
8c427226 2530
1d045db9 2531 codec->patch_ops.init(codec);
f1d4e28b 2532
1387e2d1
KY
2533 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2534 alc269vb_toggle_power_output(codec, 1);
2535 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 2536 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
2537 msleep(200);
2538 }
f1d4e28b 2539
1d045db9
TI
2540 snd_hda_codec_resume_amp(codec);
2541 snd_hda_codec_resume_cache(codec);
2542 hda_call_check_power_status(codec, 0x01);
2543 return 0;
2544}
2a43952a 2545#endif /* CONFIG_PM */
f1d4e28b 2546
108cc108 2547static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 2548 const struct hda_fixup *fix, int action)
108cc108
DH
2549{
2550 struct alc_spec *spec = codec->spec;
2551
1727a771 2552 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
2553 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2554}
2555
1d045db9 2556static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 2557 const struct hda_fixup *fix, int action)
1d045db9
TI
2558{
2559 int coef;
f1d4e28b 2560
1727a771 2561 if (action != HDA_FIXUP_ACT_INIT)
1d045db9
TI
2562 return;
2563 coef = alc_read_coef_idx(codec, 0x1e);
2564 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2565}
f1d4e28b 2566
1d045db9 2567static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 2568 const struct hda_fixup *fix, int action)
1d045db9
TI
2569{
2570 static const struct hda_verb verbs[] = {
2571 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2572 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2573 {}
2574 };
2575 unsigned int cfg;
f1d4e28b 2576
1d045db9
TI
2577 if (strcmp(codec->chip_name, "ALC271X"))
2578 return;
2579 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2580 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2581 snd_hda_sequence_write(codec, verbs);
2582}
f1d4e28b 2583
017f2a10 2584static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 2585 const struct hda_fixup *fix, int action)
017f2a10
TI
2586{
2587 struct alc_spec *spec = codec->spec;
2588
1727a771 2589 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
2590 return;
2591
2592 /* Due to a hardware problem on Lenovo Ideadpad, we need to
2593 * fix the sample rate of analog I/O to 44.1kHz
2594 */
08c189f2
TI
2595 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2596 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
2597}
2598
adabb3ec 2599static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 2600 const struct hda_fixup *fix, int action)
adabb3ec
TI
2601{
2602 int coef;
2603
1727a771 2604 if (action != HDA_FIXUP_ACT_INIT)
adabb3ec
TI
2605 return;
2606 /* The digital-mic unit sends PDM (differential signal) instead of
2607 * the standard PCM, thus you can't record a valid mono stream as is.
2608 * Below is a workaround specific to ALC269 to control the dmic
2609 * signal source as mono.
2610 */
2611 coef = alc_read_coef_idx(codec, 0x07);
2612 alc_write_coef_idx(codec, 0x07, coef | 0x80);
2613}
2614
24519911
TI
2615static void alc269_quanta_automute(struct hda_codec *codec)
2616{
08c189f2 2617 snd_hda_gen_update_outputs(codec);
24519911
TI
2618
2619 snd_hda_codec_write(codec, 0x20, 0,
2620 AC_VERB_SET_COEF_INDEX, 0x0c);
2621 snd_hda_codec_write(codec, 0x20, 0,
2622 AC_VERB_SET_PROC_COEF, 0x680);
2623
2624 snd_hda_codec_write(codec, 0x20, 0,
2625 AC_VERB_SET_COEF_INDEX, 0x0c);
2626 snd_hda_codec_write(codec, 0x20, 0,
2627 AC_VERB_SET_PROC_COEF, 0x480);
2628}
2629
2630static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 2631 const struct hda_fixup *fix, int action)
24519911
TI
2632{
2633 struct alc_spec *spec = codec->spec;
1727a771 2634 if (action != HDA_FIXUP_ACT_PROBE)
24519911 2635 return;
08c189f2 2636 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
2637}
2638
6d3cd5d4
DH
2639/* update mute-LED according to the speaker mute state via mic1 VREF pin */
2640static void alc269_fixup_mic1_mute_hook(void *private_data, int enabled)
2641{
2642 struct hda_codec *codec = private_data;
2643 unsigned int pinval = AC_PINCTL_IN_EN + (enabled ?
2644 AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
2645 snd_hda_set_pin_ctl_cache(codec, 0x18, pinval);
2646}
2647
2648static void alc269_fixup_mic1_mute(struct hda_codec *codec,
1727a771 2649 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
2650{
2651 struct alc_spec *spec = codec->spec;
1727a771 2652 if (action == HDA_FIXUP_ACT_PROBE) {
08c189f2 2653 spec->gen.vmaster_mute.hook = alc269_fixup_mic1_mute_hook;
fd25a97a
TI
2654 spec->gen.vmaster_mute_enum = 1;
2655 }
6d3cd5d4
DH
2656}
2657
420b0feb
TI
2658/* update mute-LED according to the speaker mute state via mic2 VREF pin */
2659static void alc269_fixup_mic2_mute_hook(void *private_data, int enabled)
2660{
2661 struct hda_codec *codec = private_data;
2662 unsigned int pinval = enabled ? 0x20 : 0x24;
cdd03ced 2663 snd_hda_set_pin_ctl_cache(codec, 0x19, pinval);
420b0feb
TI
2664}
2665
2666static void alc269_fixup_mic2_mute(struct hda_codec *codec,
1727a771 2667 const struct hda_fixup *fix, int action)
420b0feb
TI
2668{
2669 struct alc_spec *spec = codec->spec;
1727a771 2670 if (action == HDA_FIXUP_ACT_PROBE) {
08c189f2 2671 spec->gen.vmaster_mute.hook = alc269_fixup_mic2_mute_hook;
fd25a97a
TI
2672 spec->gen.vmaster_mute_enum = 1;
2673 }
420b0feb
TI
2674}
2675
08a978db 2676static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 2677 const struct hda_fixup *fix,
08a978db
DR
2678 int action)
2679{
2680 struct alc_spec *spec = codec->spec;
2681
08c189f2
TI
2682 if (snd_BUG_ON(!spec->gen.am_entry[1].pin ||
2683 !spec->gen.autocfg.hp_pins[0]))
ab16c6dd 2684 return;
1727a771 2685 if (action == HDA_FIXUP_ACT_PROBE)
08c189f2
TI
2686 snd_hda_jack_set_gating_jack(codec, spec->gen.am_entry[1].pin,
2687 spec->gen.autocfg.hp_pins[0]);
08a978db 2688}
693b613d 2689
1d045db9
TI
2690enum {
2691 ALC269_FIXUP_SONY_VAIO,
2692 ALC275_FIXUP_SONY_VAIO_GPIO2,
2693 ALC269_FIXUP_DELL_M101Z,
2694 ALC269_FIXUP_SKU_IGNORE,
2695 ALC269_FIXUP_ASUS_G73JW,
2696 ALC269_FIXUP_LENOVO_EAPD,
2697 ALC275_FIXUP_SONY_HWEQ,
2698 ALC271_FIXUP_DMIC,
017f2a10 2699 ALC269_FIXUP_PCM_44K,
adabb3ec 2700 ALC269_FIXUP_STEREO_DMIC,
24519911
TI
2701 ALC269_FIXUP_QUANTA_MUTE,
2702 ALC269_FIXUP_LIFEBOOK,
a4297b5d
TI
2703 ALC269_FIXUP_AMIC,
2704 ALC269_FIXUP_DMIC,
2705 ALC269VB_FIXUP_AMIC,
2706 ALC269VB_FIXUP_DMIC,
6d3cd5d4 2707 ALC269_FIXUP_MIC1_MUTE_LED,
420b0feb 2708 ALC269_FIXUP_MIC2_MUTE_LED,
693b613d 2709 ALC269_FIXUP_INV_DMIC,
108cc108
DH
2710 ALC269_FIXUP_LENOVO_DOCK,
2711 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
08a978db
DR
2712 ALC271_FIXUP_AMIC_MIC2,
2713 ALC271_FIXUP_HP_GATE_MIC_JACK,
f1d4e28b
KY
2714};
2715
1727a771 2716static const struct hda_fixup alc269_fixups[] = {
1d045db9 2717 [ALC269_FIXUP_SONY_VAIO] = {
1727a771 2718 .type = HDA_FIXUP_VERBS,
1d045db9
TI
2719 .v.verbs = (const struct hda_verb[]) {
2720 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
2721 {}
2722 }
f1d4e28b 2723 },
1d045db9 2724 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
1727a771 2725 .type = HDA_FIXUP_VERBS,
1d045db9
TI
2726 .v.verbs = (const struct hda_verb[]) {
2727 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
2728 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
2729 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
2730 { }
2731 },
2732 .chained = true,
2733 .chain_id = ALC269_FIXUP_SONY_VAIO
2734 },
2735 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 2736 .type = HDA_FIXUP_VERBS,
1d045db9
TI
2737 .v.verbs = (const struct hda_verb[]) {
2738 /* Enables internal speaker */
2739 {0x20, AC_VERB_SET_COEF_INDEX, 13},
2740 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
2741 {}
2742 }
2743 },
2744 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 2745 .type = HDA_FIXUP_FUNC,
23d30f28 2746 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
2747 },
2748 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
2749 .type = HDA_FIXUP_PINS,
2750 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2751 { 0x17, 0x99130111 }, /* subwoofer */
2752 { }
2753 }
2754 },
2755 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 2756 .type = HDA_FIXUP_VERBS,
1d045db9
TI
2757 .v.verbs = (const struct hda_verb[]) {
2758 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
2759 {}
2760 }
2761 },
2762 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 2763 .type = HDA_FIXUP_FUNC,
1d045db9
TI
2764 .v.func = alc269_fixup_hweq,
2765 .chained = true,
2766 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
2767 },
2768 [ALC271_FIXUP_DMIC] = {
1727a771 2769 .type = HDA_FIXUP_FUNC,
1d045db9 2770 .v.func = alc271_fixup_dmic,
f1d4e28b 2771 },
017f2a10 2772 [ALC269_FIXUP_PCM_44K] = {
1727a771 2773 .type = HDA_FIXUP_FUNC,
017f2a10 2774 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
2775 .chained = true,
2776 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 2777 },
adabb3ec 2778 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 2779 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
2780 .v.func = alc269_fixup_stereo_dmic,
2781 },
24519911 2782 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 2783 .type = HDA_FIXUP_FUNC,
24519911
TI
2784 .v.func = alc269_fixup_quanta_mute,
2785 },
2786 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
2787 .type = HDA_FIXUP_PINS,
2788 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
2789 { 0x1a, 0x2101103f }, /* dock line-out */
2790 { 0x1b, 0x23a11040 }, /* dock mic-in */
2791 { }
2792 },
2793 .chained = true,
2794 .chain_id = ALC269_FIXUP_QUANTA_MUTE
2795 },
a4297b5d 2796 [ALC269_FIXUP_AMIC] = {
1727a771
TI
2797 .type = HDA_FIXUP_PINS,
2798 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
2799 { 0x14, 0x99130110 }, /* speaker */
2800 { 0x15, 0x0121401f }, /* HP out */
2801 { 0x18, 0x01a19c20 }, /* mic */
2802 { 0x19, 0x99a3092f }, /* int-mic */
2803 { }
2804 },
2805 },
2806 [ALC269_FIXUP_DMIC] = {
1727a771
TI
2807 .type = HDA_FIXUP_PINS,
2808 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
2809 { 0x12, 0x99a3092f }, /* int-mic */
2810 { 0x14, 0x99130110 }, /* speaker */
2811 { 0x15, 0x0121401f }, /* HP out */
2812 { 0x18, 0x01a19c20 }, /* mic */
2813 { }
2814 },
2815 },
2816 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
2817 .type = HDA_FIXUP_PINS,
2818 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
2819 { 0x14, 0x99130110 }, /* speaker */
2820 { 0x18, 0x01a19c20 }, /* mic */
2821 { 0x19, 0x99a3092f }, /* int-mic */
2822 { 0x21, 0x0121401f }, /* HP out */
2823 { }
2824 },
2825 },
2267ea97 2826 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
2827 .type = HDA_FIXUP_PINS,
2828 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
2829 { 0x12, 0x99a3092f }, /* int-mic */
2830 { 0x14, 0x99130110 }, /* speaker */
2831 { 0x18, 0x01a19c20 }, /* mic */
2832 { 0x21, 0x0121401f }, /* HP out */
2833 { }
2834 },
2835 },
6d3cd5d4 2836 [ALC269_FIXUP_MIC1_MUTE_LED] = {
1727a771 2837 .type = HDA_FIXUP_FUNC,
6d3cd5d4
DH
2838 .v.func = alc269_fixup_mic1_mute,
2839 },
420b0feb 2840 [ALC269_FIXUP_MIC2_MUTE_LED] = {
1727a771 2841 .type = HDA_FIXUP_FUNC,
420b0feb
TI
2842 .v.func = alc269_fixup_mic2_mute,
2843 },
693b613d 2844 [ALC269_FIXUP_INV_DMIC] = {
1727a771 2845 .type = HDA_FIXUP_FUNC,
6e72aa5f 2846 .v.func = alc_fixup_inv_dmic_0x12,
693b613d 2847 },
108cc108 2848 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
2849 .type = HDA_FIXUP_PINS,
2850 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
2851 { 0x19, 0x23a11040 }, /* dock mic */
2852 { 0x1b, 0x2121103f }, /* dock headphone */
2853 { }
2854 },
2855 .chained = true,
2856 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
2857 },
2858 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 2859 .type = HDA_FIXUP_FUNC,
108cc108
DH
2860 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
2861 },
08a978db 2862 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
2863 .type = HDA_FIXUP_PINS,
2864 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
2865 { 0x14, 0x99130110 }, /* speaker */
2866 { 0x19, 0x01a19c20 }, /* mic */
2867 { 0x1b, 0x99a7012f }, /* int-mic */
2868 { 0x21, 0x0121401f }, /* HP out */
2869 { }
2870 },
2871 },
2872 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 2873 .type = HDA_FIXUP_FUNC,
08a978db
DR
2874 .v.func = alc271_hp_gate_mic_jack,
2875 .chained = true,
2876 .chain_id = ALC271_FIXUP_AMIC_MIC2,
2877 },
f1d4e28b
KY
2878};
2879
1d045db9 2880static const struct snd_pci_quirk alc269_fixup_tbl[] = {
693b613d
DH
2881 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
2882 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
420b0feb 2883 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_MIC2_MUTE_LED),
6d3cd5d4 2884 SND_PCI_QUIRK(0x103c, 0x1972, "HP Pavilion 17", ALC269_FIXUP_MIC1_MUTE_LED),
5ac57550 2885 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_DMIC),
148728f1 2886 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_DMIC),
017f2a10 2887 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
693b613d 2888 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
adabb3ec
TI
2889 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
2890 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
2891 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
2892 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
2893 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
1d045db9
TI
2894 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
2895 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2896 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
2897 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
2898 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
08a978db 2899 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
1d045db9 2900 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
24519911 2901 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
1d045db9
TI
2902 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
2903 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
2904 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
2905 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
2906 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
707fba3f 2907 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
c8415a48 2908 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
84f98fdf 2909 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 2910 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 2911 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
012e7eb1 2912 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
1d045db9 2913 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
a4297b5d 2914
a7f3eedc 2915#if 0
a4297b5d
TI
2916 /* Below is a quirk table taken from the old code.
2917 * Basically the device should work as is without the fixup table.
2918 * If BIOS doesn't give a proper info, enable the corresponding
2919 * fixup entry.
7d7eb9ea 2920 */
a4297b5d
TI
2921 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
2922 ALC269_FIXUP_AMIC),
2923 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
2924 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
2925 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
2926 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
2927 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
2928 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
2929 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
2930 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
2931 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
2932 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
2933 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
2934 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
2935 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
2936 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
2937 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
2938 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
2939 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
2940 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
2941 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
2942 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
2943 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
2944 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
2945 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
2946 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
2947 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
2948 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
2949 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
2950 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
2951 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
2952 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
2953 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
2954 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
2955 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
2956 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
2957 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
2958 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
2959 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
2960 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
2961 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
2962#endif
2963 {}
2964};
2965
1727a771 2966static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
2967 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
2968 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
2969 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
2970 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
2971 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
108cc108 2972 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
1d045db9 2973 {}
6dda9f4a
KY
2974};
2975
6dda9f4a 2976
546bb678 2977static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 2978{
526af6eb 2979 struct alc_spec *spec = codec->spec;
1d045db9 2980 int val;
ebb83eeb 2981
526af6eb 2982 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 2983 return;
526af6eb 2984
1bb7e43e 2985 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
2986 alc_write_coef_idx(codec, 0xf, 0x960b);
2987 alc_write_coef_idx(codec, 0xe, 0x8817);
2988 }
ebb83eeb 2989
1bb7e43e 2990 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
2991 alc_write_coef_idx(codec, 0xf, 0x960b);
2992 alc_write_coef_idx(codec, 0xe, 0x8814);
2993 }
ebb83eeb 2994
1bb7e43e 2995 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
2996 val = alc_read_coef_idx(codec, 0x04);
2997 /* Power up output pin */
2998 alc_write_coef_idx(codec, 0x04, val | (1<<11));
2999 }
ebb83eeb 3000
1bb7e43e 3001 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3002 val = alc_read_coef_idx(codec, 0xd);
3003 if ((val & 0x0c00) >> 10 != 0x1) {
3004 /* Capless ramp up clock control */
3005 alc_write_coef_idx(codec, 0xd, val | (1<<10));
3006 }
3007 val = alc_read_coef_idx(codec, 0x17);
3008 if ((val & 0x01c0) >> 6 != 0x4) {
3009 /* Class D power on reset */
3010 alc_write_coef_idx(codec, 0x17, val | (1<<7));
3011 }
3012 }
ebb83eeb 3013
1d045db9
TI
3014 val = alc_read_coef_idx(codec, 0xd); /* Class D */
3015 alc_write_coef_idx(codec, 0xd, val | (1<<14));
bc9f98a9 3016
1d045db9
TI
3017 val = alc_read_coef_idx(codec, 0x4); /* HP */
3018 alc_write_coef_idx(codec, 0x4, val | (1<<11));
1d045db9 3019}
a7f2371f 3020
1d045db9
TI
3021/*
3022 */
1d045db9
TI
3023static int patch_alc269(struct hda_codec *codec)
3024{
3025 struct alc_spec *spec;
3de95173 3026 int err;
f1d4e28b 3027
3de95173 3028 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 3029 if (err < 0)
3de95173
TI
3030 return err;
3031
3032 spec = codec->spec;
08c189f2 3033 spec->gen.shared_mic_vref_pin = 0x18;
e16fb6d1 3034
1727a771 3035 snd_hda_pick_fixup(codec, alc269_fixup_models,
9f720bb9 3036 alc269_fixup_tbl, alc269_fixups);
1727a771 3037 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9f720bb9
HRK
3038
3039 alc_auto_parse_customize_define(codec);
3040
065380f0
KY
3041 switch (codec->vendor_id) {
3042 case 0x10ec0269:
1d045db9 3043 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
3044 switch (alc_get_coef0(codec) & 0x00f0) {
3045 case 0x0010:
1d045db9 3046 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 3047 spec->cdefine.platform_type == 1)
20ca0c35 3048 err = alc_codec_rename(codec, "ALC271X");
1d045db9 3049 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
3050 break;
3051 case 0x0020:
e16fb6d1
TI
3052 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
3053 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 3054 err = alc_codec_rename(codec, "ALC3202");
1d045db9 3055 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 3056 break;
adcc70b2
KY
3057 case 0x0030:
3058 spec->codec_variant = ALC269_TYPE_ALC269VD;
3059 break;
1bb7e43e 3060 default:
1d045db9 3061 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 3062 }
e16fb6d1
TI
3063 if (err < 0)
3064 goto error;
546bb678 3065 spec->init_hook = alc269_fill_coef;
1d045db9 3066 alc269_fill_coef(codec);
065380f0
KY
3067 break;
3068
3069 case 0x10ec0280:
3070 case 0x10ec0290:
3071 spec->codec_variant = ALC269_TYPE_ALC280;
3072 break;
3073 case 0x10ec0282:
3074 case 0x10ec0283:
3075 spec->codec_variant = ALC269_TYPE_ALC282;
3076 break;
3077 case 0x10ec0284:
3078 case 0x10ec0292:
3079 spec->codec_variant = ALC269_TYPE_ALC284;
3080 break;
1d045db9 3081 }
6dda9f4a 3082
a4297b5d
TI
3083 /* automatic parse from the BIOS config */
3084 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
3085 if (err < 0)
3086 goto error;
6dda9f4a 3087
08c189f2 3088 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3e6179b8 3089 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
3090 if (err < 0)
3091 goto error;
1d045db9 3092 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3e6179b8 3093 }
f1d4e28b 3094
1d045db9 3095 codec->patch_ops = alc_patch_ops;
2a43952a 3096#ifdef CONFIG_PM
1d045db9
TI
3097 codec->patch_ops.resume = alc269_resume;
3098#endif
1d045db9 3099 spec->shutup = alc269_shutup;
ebb83eeb 3100
1727a771 3101 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 3102
1d045db9 3103 return 0;
e16fb6d1
TI
3104
3105 error:
3106 alc_free(codec);
3107 return err;
1d045db9 3108}
f1d4e28b 3109
1d045db9
TI
3110/*
3111 * ALC861
3112 */
622e84cd 3113
1d045db9 3114static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 3115{
1d045db9 3116 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3117 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
3118 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
3119}
3120
1d045db9
TI
3121/* Pin config fixes */
3122enum {
e652f4c8
TI
3123 ALC861_FIXUP_FSC_AMILO_PI1505,
3124 ALC861_FIXUP_AMP_VREF_0F,
3125 ALC861_FIXUP_NO_JACK_DETECT,
3126 ALC861_FIXUP_ASUS_A6RP,
1d045db9 3127};
7085ec12 3128
31150f23
TI
3129/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
3130static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 3131 const struct hda_fixup *fix, int action)
31150f23
TI
3132{
3133 struct alc_spec *spec = codec->spec;
3134 unsigned int val;
3135
1727a771 3136 if (action != HDA_FIXUP_ACT_INIT)
31150f23 3137 return;
d3f02d60 3138 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
3139 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
3140 val |= AC_PINCTL_IN_EN;
3141 val |= AC_PINCTL_VREF_50;
cdd03ced 3142 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 3143 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
3144}
3145
e652f4c8
TI
3146/* suppress the jack-detection */
3147static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 3148 const struct hda_fixup *fix, int action)
e652f4c8 3149{
1727a771 3150 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 3151 codec->no_jack_detect = 1;
7d7eb9ea 3152}
e652f4c8 3153
1727a771 3154static const struct hda_fixup alc861_fixups[] = {
e652f4c8 3155 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
3156 .type = HDA_FIXUP_PINS,
3157 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
3158 { 0x0b, 0x0221101f }, /* HP */
3159 { 0x0f, 0x90170310 }, /* speaker */
3160 { }
3161 }
3162 },
e652f4c8 3163 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 3164 .type = HDA_FIXUP_FUNC,
31150f23 3165 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 3166 },
e652f4c8 3167 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 3168 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
3169 .v.func = alc_fixup_no_jack_detect,
3170 },
3171 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 3172 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
3173 .v.func = alc861_fixup_asus_amp_vref_0f,
3174 .chained = true,
3175 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
3176 }
1d045db9 3177};
7085ec12 3178
1d045db9 3179static const struct snd_pci_quirk alc861_fixup_tbl[] = {
e652f4c8
TI
3180 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
3181 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
3182 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
3183 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
3184 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
3185 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
3186 {}
3187};
3af9ee6b 3188
1d045db9
TI
3189/*
3190 */
1d045db9 3191static int patch_alc861(struct hda_codec *codec)
7085ec12 3192{
1d045db9 3193 struct alc_spec *spec;
1d045db9 3194 int err;
7085ec12 3195
3de95173
TI
3196 err = alc_alloc_spec(codec, 0x15);
3197 if (err < 0)
3198 return err;
1d045db9 3199
3de95173 3200 spec = codec->spec;
1d045db9 3201
1727a771
TI
3202 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
3203 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 3204
cb4e4824
TI
3205 /* automatic parse from the BIOS config */
3206 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
3207 if (err < 0)
3208 goto error;
3af9ee6b 3209
08c189f2 3210 if (!spec->gen.no_analog) {
3e6179b8 3211 err = snd_hda_attach_beep_device(codec, 0x23);
e16fb6d1
TI
3212 if (err < 0)
3213 goto error;
3e6179b8
TI
3214 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
3215 }
7085ec12 3216
1d045db9 3217 codec->patch_ops = alc_patch_ops;
83012a7c 3218#ifdef CONFIG_PM
cb4e4824 3219 spec->power_hook = alc_power_eapd;
1d045db9
TI
3220#endif
3221
1727a771 3222 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 3223
1d045db9 3224 return 0;
e16fb6d1
TI
3225
3226 error:
3227 alc_free(codec);
3228 return err;
7085ec12
TI
3229}
3230
1d045db9
TI
3231/*
3232 * ALC861-VD support
3233 *
3234 * Based on ALC882
3235 *
3236 * In addition, an independent DAC
3237 */
1d045db9 3238static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 3239{
1d045db9 3240 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3241 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3242 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
3243}
3244
1d045db9 3245enum {
8fdcb6fe
TI
3246 ALC660VD_FIX_ASUS_GPIO1,
3247 ALC861VD_FIX_DALLAS,
1d045db9 3248};
ce764ab2 3249
8fdcb6fe
TI
3250/* exclude VREF80 */
3251static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 3252 const struct hda_fixup *fix, int action)
8fdcb6fe 3253{
1727a771 3254 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
3255 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
3256 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
3257 }
3258}
3259
1727a771 3260static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 3261 [ALC660VD_FIX_ASUS_GPIO1] = {
1727a771 3262 .type = HDA_FIXUP_VERBS,
1d045db9 3263 .v.verbs = (const struct hda_verb[]) {
8fdcb6fe 3264 /* reset GPIO1 */
1d045db9
TI
3265 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
3266 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3267 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3268 { }
3269 }
3270 },
8fdcb6fe 3271 [ALC861VD_FIX_DALLAS] = {
1727a771 3272 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
3273 .v.func = alc861vd_fixup_dallas,
3274 },
1d045db9 3275};
ce764ab2 3276
1d045db9 3277static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 3278 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 3279 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 3280 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
3281 {}
3282};
ce764ab2 3283
1d045db9
TI
3284/*
3285 */
1d045db9 3286static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 3287{
1d045db9 3288 struct alc_spec *spec;
cb4e4824 3289 int err;
ce764ab2 3290
3de95173
TI
3291 err = alc_alloc_spec(codec, 0x0b);
3292 if (err < 0)
3293 return err;
1d045db9 3294
3de95173 3295 spec = codec->spec;
1d045db9 3296
1727a771
TI
3297 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
3298 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 3299
cb4e4824
TI
3300 /* automatic parse from the BIOS config */
3301 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
3302 if (err < 0)
3303 goto error;
ce764ab2 3304
08c189f2 3305 if (!spec->gen.no_analog) {
3e6179b8 3306 err = snd_hda_attach_beep_device(codec, 0x23);
e16fb6d1
TI
3307 if (err < 0)
3308 goto error;
3e6179b8
TI
3309 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3310 }
1d045db9 3311
1d045db9
TI
3312 codec->patch_ops = alc_patch_ops;
3313
1d045db9 3314 spec->shutup = alc_eapd_shutup;
1d045db9 3315
1727a771 3316 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 3317
ce764ab2 3318 return 0;
e16fb6d1
TI
3319
3320 error:
3321 alc_free(codec);
3322 return err;
ce764ab2
TI
3323}
3324
1d045db9
TI
3325/*
3326 * ALC662 support
3327 *
3328 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
3329 * configuration. Each pin widget can choose any input DACs and a mixer.
3330 * Each ADC is connected from a mixer of all inputs. This makes possible
3331 * 6-channel independent captures.
3332 *
3333 * In addition, an independent DAC for the multi-playback (not used in this
3334 * driver yet).
3335 */
1d045db9
TI
3336
3337/*
3338 * BIOS auto configuration
3339 */
3340
bc9f98a9
KY
3341static int alc662_parse_auto_config(struct hda_codec *codec)
3342{
4c6d72d1 3343 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3344 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
3345 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3346 const hda_nid_t *ssids;
ee979a14 3347
6227cdce
KY
3348 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
3349 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
3e6179b8 3350 ssids = alc663_ssids;
6227cdce 3351 else
3e6179b8
TI
3352 ssids = alc662_ssids;
3353 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
3354}
3355
6be7948f 3356static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 3357 const struct hda_fixup *fix, int action)
6fc398cb 3358{
1727a771 3359 if (action != HDA_FIXUP_ACT_PROBE)
6fc398cb 3360 return;
6be7948f
TB
3361 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
3362 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
3363 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
3364 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
3365 (0 << AC_AMPCAP_MUTE_SHIFT)))
3366 printk(KERN_WARNING
3367 "hda_codec: failed to override amp caps for NID 0x2\n");
3368}
3369
6cb3b707 3370enum {
2df03514 3371 ALC662_FIXUP_ASPIRE,
6cb3b707 3372 ALC662_FIXUP_IDEAPAD,
6be7948f 3373 ALC272_FIXUP_MARIO,
d2ebd479 3374 ALC662_FIXUP_CZC_P10T,
94024cd1 3375 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 3376 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
3377 ALC662_FIXUP_ASUS_MODE1,
3378 ALC662_FIXUP_ASUS_MODE2,
3379 ALC662_FIXUP_ASUS_MODE3,
3380 ALC662_FIXUP_ASUS_MODE4,
3381 ALC662_FIXUP_ASUS_MODE5,
3382 ALC662_FIXUP_ASUS_MODE6,
3383 ALC662_FIXUP_ASUS_MODE7,
3384 ALC662_FIXUP_ASUS_MODE8,
1565cc35 3385 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 3386 ALC662_FIXUP_ZOTAC_Z68,
125821ae 3387 ALC662_FIXUP_INV_DMIC,
6cb3b707
DH
3388};
3389
1727a771 3390static const struct hda_fixup alc662_fixups[] = {
2df03514 3391 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
3392 .type = HDA_FIXUP_PINS,
3393 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
3394 { 0x15, 0x99130112 }, /* subwoofer */
3395 { }
3396 }
3397 },
6cb3b707 3398 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
3399 .type = HDA_FIXUP_PINS,
3400 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
3401 { 0x17, 0x99130112 }, /* subwoofer */
3402 { }
3403 }
3404 },
6be7948f 3405 [ALC272_FIXUP_MARIO] = {
1727a771 3406 .type = HDA_FIXUP_FUNC,
b5bfbc67 3407 .v.func = alc272_fixup_mario,
d2ebd479
AA
3408 },
3409 [ALC662_FIXUP_CZC_P10T] = {
1727a771 3410 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
3411 .v.verbs = (const struct hda_verb[]) {
3412 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3413 {}
3414 }
3415 },
94024cd1 3416 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 3417 .type = HDA_FIXUP_FUNC,
23d30f28 3418 .v.func = alc_fixup_sku_ignore,
c6b35874 3419 },
e59ea3ed 3420 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
3421 .type = HDA_FIXUP_PINS,
3422 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
3423 { 0x14, 0x0221201f }, /* HP out */
3424 { }
3425 },
3426 .chained = true,
3427 .chain_id = ALC662_FIXUP_SKU_IGNORE
3428 },
53c334ad 3429 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
3430 .type = HDA_FIXUP_PINS,
3431 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3432 { 0x14, 0x99130110 }, /* speaker */
3433 { 0x18, 0x01a19c20 }, /* mic */
3434 { 0x19, 0x99a3092f }, /* int-mic */
3435 { 0x21, 0x0121401f }, /* HP out */
3436 { }
3437 },
3438 .chained = true,
3439 .chain_id = ALC662_FIXUP_SKU_IGNORE
3440 },
3441 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
3442 .type = HDA_FIXUP_PINS,
3443 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
3444 { 0x14, 0x99130110 }, /* speaker */
3445 { 0x18, 0x01a19820 }, /* mic */
3446 { 0x19, 0x99a3092f }, /* int-mic */
3447 { 0x1b, 0x0121401f }, /* HP out */
3448 { }
3449 },
53c334ad
TI
3450 .chained = true,
3451 .chain_id = ALC662_FIXUP_SKU_IGNORE
3452 },
3453 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
3454 .type = HDA_FIXUP_PINS,
3455 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3456 { 0x14, 0x99130110 }, /* speaker */
3457 { 0x15, 0x0121441f }, /* HP */
3458 { 0x18, 0x01a19840 }, /* mic */
3459 { 0x19, 0x99a3094f }, /* int-mic */
3460 { 0x21, 0x01211420 }, /* HP2 */
3461 { }
3462 },
3463 .chained = true,
3464 .chain_id = ALC662_FIXUP_SKU_IGNORE
3465 },
3466 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
3467 .type = HDA_FIXUP_PINS,
3468 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3469 { 0x14, 0x99130110 }, /* speaker */
3470 { 0x16, 0x99130111 }, /* speaker */
3471 { 0x18, 0x01a19840 }, /* mic */
3472 { 0x19, 0x99a3094f }, /* int-mic */
3473 { 0x21, 0x0121441f }, /* HP */
3474 { }
3475 },
3476 .chained = true,
3477 .chain_id = ALC662_FIXUP_SKU_IGNORE
3478 },
3479 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
3480 .type = HDA_FIXUP_PINS,
3481 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3482 { 0x14, 0x99130110 }, /* speaker */
3483 { 0x15, 0x0121441f }, /* HP */
3484 { 0x16, 0x99130111 }, /* speaker */
3485 { 0x18, 0x01a19840 }, /* mic */
3486 { 0x19, 0x99a3094f }, /* int-mic */
3487 { }
3488 },
3489 .chained = true,
3490 .chain_id = ALC662_FIXUP_SKU_IGNORE
3491 },
3492 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
3493 .type = HDA_FIXUP_PINS,
3494 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3495 { 0x14, 0x99130110 }, /* speaker */
3496 { 0x15, 0x01211420 }, /* HP2 */
3497 { 0x18, 0x01a19840 }, /* mic */
3498 { 0x19, 0x99a3094f }, /* int-mic */
3499 { 0x1b, 0x0121441f }, /* HP */
3500 { }
3501 },
3502 .chained = true,
3503 .chain_id = ALC662_FIXUP_SKU_IGNORE
3504 },
3505 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
3506 .type = HDA_FIXUP_PINS,
3507 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3508 { 0x14, 0x99130110 }, /* speaker */
3509 { 0x17, 0x99130111 }, /* speaker */
3510 { 0x18, 0x01a19840 }, /* mic */
3511 { 0x19, 0x99a3094f }, /* int-mic */
3512 { 0x1b, 0x01214020 }, /* HP */
3513 { 0x21, 0x0121401f }, /* HP */
3514 { }
3515 },
3516 .chained = true,
3517 .chain_id = ALC662_FIXUP_SKU_IGNORE
3518 },
3519 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
3520 .type = HDA_FIXUP_PINS,
3521 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
3522 { 0x14, 0x99130110 }, /* speaker */
3523 { 0x12, 0x99a30970 }, /* int-mic */
3524 { 0x15, 0x01214020 }, /* HP */
3525 { 0x17, 0x99130111 }, /* speaker */
3526 { 0x18, 0x01a19840 }, /* mic */
3527 { 0x21, 0x0121401f }, /* HP */
3528 { }
3529 },
3530 .chained = true,
3531 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 3532 },
1565cc35 3533 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 3534 .type = HDA_FIXUP_FUNC,
1565cc35
TI
3535 .v.func = alc_fixup_no_jack_detect,
3536 },
edfe3bfc 3537 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
3538 .type = HDA_FIXUP_PINS,
3539 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
3540 { 0x1b, 0x02214020 }, /* Front HP */
3541 { }
3542 }
3543 },
125821ae 3544 [ALC662_FIXUP_INV_DMIC] = {
1727a771 3545 .type = HDA_FIXUP_FUNC,
6e72aa5f 3546 .v.func = alc_fixup_inv_dmic_0x12,
125821ae 3547 },
6cb3b707
DH
3548};
3549
a9111321 3550static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 3551 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
a6c47a85 3552 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 3553 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 3554 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
2df03514 3555 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
e59ea3ed 3556 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
1565cc35 3557 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 3558 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 3559 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
d4118588 3560 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 3561 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
edfe3bfc 3562 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
d2ebd479 3563 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
53c334ad
TI
3564
3565#if 0
3566 /* Below is a quirk table taken from the old code.
3567 * Basically the device should work as is without the fixup table.
3568 * If BIOS doesn't give a proper info, enable the corresponding
3569 * fixup entry.
7d7eb9ea 3570 */
53c334ad
TI
3571 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
3572 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
3573 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
3574 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
3575 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3576 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3577 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3578 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
3579 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
3580 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3581 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
3582 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
3583 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
3584 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
3585 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
3586 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3587 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
3588 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
3589 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3590 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3591 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3592 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3593 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
3594 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
3595 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
3596 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3597 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
3598 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
3599 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3600 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
3601 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3602 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3603 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
3604 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
3605 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
3606 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
3607 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
3608 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
3609 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
3610 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
3611 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
3612 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
3613 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3614 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
3615 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
3616 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
3617 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
3618 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
3619 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
3620 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
3621#endif
6cb3b707
DH
3622 {}
3623};
3624
1727a771 3625static const struct hda_model_fixup alc662_fixup_models[] = {
6be7948f 3626 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
53c334ad
TI
3627 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
3628 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
3629 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
3630 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
3631 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
3632 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
3633 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
3634 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
6e72aa5f 3635 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
6be7948f
TB
3636 {}
3637};
6cb3b707 3638
8663ff75
KY
3639static void alc662_fill_coef(struct hda_codec *codec)
3640{
3641 int val, coef;
3642
3643 coef = alc_get_coef0(codec);
3644
3645 switch (codec->vendor_id) {
3646 case 0x10ec0662:
3647 if ((coef & 0x00f0) == 0x0030) {
3648 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
3649 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
3650 }
3651 break;
3652 case 0x10ec0272:
3653 case 0x10ec0273:
3654 case 0x10ec0663:
3655 case 0x10ec0665:
3656 case 0x10ec0670:
3657 case 0x10ec0671:
3658 case 0x10ec0672:
3659 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
3660 alc_write_coef_idx(codec, 0xd, val | (1<<14));
3661 break;
3662 }
3663}
6cb3b707 3664
1d045db9
TI
3665/*
3666 */
bc9f98a9
KY
3667static int patch_alc662(struct hda_codec *codec)
3668{
3669 struct alc_spec *spec;
3de95173 3670 int err;
bc9f98a9 3671
3de95173
TI
3672 err = alc_alloc_spec(codec, 0x0b);
3673 if (err < 0)
3674 return err;
bc9f98a9 3675
3de95173 3676 spec = codec->spec;
1f0f4b80 3677
53c334ad
TI
3678 /* handle multiple HPs as is */
3679 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3680
2c3bf9ab
TI
3681 alc_fix_pll_init(codec, 0x20, 0x04, 15);
3682
8663ff75
KY
3683 spec->init_hook = alc662_fill_coef;
3684 alc662_fill_coef(codec);
3685
1727a771 3686 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 3687 alc662_fixup_tbl, alc662_fixups);
1727a771 3688 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
3689
3690 alc_auto_parse_customize_define(codec);
3691
1bb7e43e 3692 if ((alc_get_coef0(codec) & (1 << 14)) &&
e16fb6d1
TI
3693 codec->bus->pci->subsystem_vendor == 0x1025 &&
3694 spec->cdefine.platform_type == 1) {
3695 if (alc_codec_rename(codec, "ALC272X") < 0)
3696 goto error;
20ca0c35 3697 }
274693f3 3698
b9c5106c
TI
3699 /* automatic parse from the BIOS config */
3700 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
3701 if (err < 0)
3702 goto error;
bc9f98a9 3703
08c189f2 3704 if (!spec->gen.no_analog && has_cdefine_beep(codec)) {
3e6179b8 3705 err = snd_hda_attach_beep_device(codec, 0x1);
e16fb6d1
TI
3706 if (err < 0)
3707 goto error;
da00c244
KY
3708 switch (codec->vendor_id) {
3709 case 0x10ec0662:
3710 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3711 break;
3712 case 0x10ec0272:
3713 case 0x10ec0663:
3714 case 0x10ec0665:
3715 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3716 break;
3717 case 0x10ec0273:
3718 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
3719 break;
3720 }
cec27c89 3721 }
2134ea4f 3722
bc9f98a9 3723 codec->patch_ops = alc_patch_ops;
1c716153 3724 spec->shutup = alc_eapd_shutup;
6cb3b707 3725
1727a771 3726 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 3727
bc9f98a9 3728 return 0;
801f49d3 3729
e16fb6d1
TI
3730 error:
3731 alc_free(codec);
3732 return err;
b478b998
KY
3733}
3734
d1eb57f4
KY
3735/*
3736 * ALC680 support
3737 */
d1eb57f4 3738
d1eb57f4
KY
3739static int alc680_parse_auto_config(struct hda_codec *codec)
3740{
3e6179b8 3741 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
3742}
3743
d1eb57f4 3744/*
d1eb57f4 3745 */
d1eb57f4
KY
3746static int patch_alc680(struct hda_codec *codec)
3747{
d1eb57f4
KY
3748 int err;
3749
1f0f4b80 3750 /* ALC680 has no aa-loopback mixer */
3de95173
TI
3751 err = alc_alloc_spec(codec, 0);
3752 if (err < 0)
3753 return err;
1f0f4b80 3754
1ebec5f2
TI
3755 /* automatic parse from the BIOS config */
3756 err = alc680_parse_auto_config(codec);
3757 if (err < 0) {
3758 alc_free(codec);
3759 return err;
d1eb57f4
KY
3760 }
3761
d1eb57f4 3762 codec->patch_ops = alc_patch_ops;
d1eb57f4
KY
3763
3764 return 0;
3765}
3766
1da177e4
LT
3767/*
3768 * patch entries
3769 */
a9111321 3770static const struct hda_codec_preset snd_hda_preset_realtek[] = {
296f0338 3771 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
1da177e4 3772 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
df694daa 3773 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
f6a92248 3774 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
a361d84b 3775 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
f6a92248 3776 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
ebb83eeb 3777 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
01afd41f 3778 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
ebb83eeb 3779 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
296f0338 3780 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
befae82e 3781 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
4e01ec63 3782 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
7ff34ad8 3783 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
065380f0 3784 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
7ff34ad8 3785 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
af02dde8 3786 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
f32610ed 3787 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
bc9f98a9 3788 .patch = patch_alc861 },
f32610ed
JS
3789 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
3790 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
3791 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
bc9f98a9 3792 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
4953550a 3793 .patch = patch_alc882 },
bc9f98a9
KY
3794 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
3795 .patch = patch_alc662 },
cc667a72
DH
3796 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
3797 .patch = patch_alc662 },
6dda9f4a 3798 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
cec27c89 3799 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
19a62823 3800 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
6227cdce 3801 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
d1eb57f4 3802 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
f32610ed 3803 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
1da177e4 3804 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
4953550a 3805 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
669faba2 3806 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
4953550a 3807 .patch = patch_alc882 },
cb308f97 3808 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
4953550a 3809 .patch = patch_alc882 },
df694daa 3810 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
e16fb6d1 3811 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
4442608d 3812 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
4953550a 3813 .patch = patch_alc882 },
e16fb6d1 3814 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
4953550a 3815 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
274693f3 3816 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
e16fb6d1 3817 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
19a62823 3818 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
1da177e4
LT
3819 {} /* terminator */
3820};
1289e9e8
TI
3821
3822MODULE_ALIAS("snd-hda-codec-id:10ec*");
3823
3824MODULE_LICENSE("GPL");
3825MODULE_DESCRIPTION("Realtek HD-audio codec");
3826
3827static struct hda_codec_preset_list realtek_list = {
3828 .preset = snd_hda_preset_realtek,
3829 .owner = THIS_MODULE,
3830};
3831
3832static int __init patch_realtek_init(void)
3833{
3834 return snd_hda_add_codec_preset(&realtek_list);
3835}
3836
3837static void __exit patch_realtek_exit(void)
3838{
3839 snd_hda_delete_codec_preset(&realtek_list);
3840}
3841
3842module_init(patch_realtek_init)
3843module_exit(patch_realtek_exit)