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