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