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