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