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