]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - sound/pci/hda/patch_realtek.c
ALSA: hda - fixup ALC262 to remove depop delay on Intel BayleyBay board
[mirror_ubuntu-bionic-kernel.git] / sound / pci / hda / patch_realtek.c
CommitLineData
1da177e4
LT
1/*
2 * Universal Interface for Intel High Definition Audio Codec
3 *
1d045db9 4 * HD audio interface patch for Realtek ALC codecs
1da177e4 5 *
df694daa
KY
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 8 * Takashi Iwai <tiwai@suse.de>
409a3e98 9 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
10 *
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 */
25
1da177e4
LT
26#include <linux/init.h>
27#include <linux/delay.h>
28#include <linux/slab.h>
29#include <linux/pci.h>
08fb0d0e 30#include <linux/dmi.h>
da155d5b 31#include <linux/module.h>
1da177e4 32#include <sound/core.h>
9ad0e496 33#include <sound/jack.h>
1da177e4
LT
34#include "hda_codec.h"
35#include "hda_local.h"
23d30f28 36#include "hda_auto_parser.h"
1835a0f9 37#include "hda_jack.h"
08c189f2 38#include "hda_generic.h"
1da177e4 39
cd63a5ff
TI
40/* keep halting ALC5505 DSP, for power saving */
41#define HALT_REALTEK_ALC5505
42
1d045db9 43/* unsol event tags */
08c189f2 44#define ALC_DCVOL_EVENT 0x08
d4a86d81 45
df694daa
KY
46/* for GPIO Poll */
47#define GPIO_MASK 0x03
48
4a79ba34
TI
49/* extra amp-initialization sequence types */
50enum {
51 ALC_INIT_NONE,
52 ALC_INIT_DEFAULT,
53 ALC_INIT_GPIO1,
54 ALC_INIT_GPIO2,
55 ALC_INIT_GPIO3,
56};
57
73bdd597
DH
58enum {
59 ALC_HEADSET_MODE_UNKNOWN,
60 ALC_HEADSET_MODE_UNPLUGGED,
61 ALC_HEADSET_MODE_HEADSET,
62 ALC_HEADSET_MODE_MIC,
63 ALC_HEADSET_MODE_HEADPHONE,
64};
65
66enum {
67 ALC_HEADSET_TYPE_UNKNOWN,
68 ALC_HEADSET_TYPE_CTIA,
69 ALC_HEADSET_TYPE_OMTP,
70};
71
da00c244
KY
72struct alc_customize_define {
73 unsigned int sku_cfg;
74 unsigned char port_connectivity;
75 unsigned char check_sum;
76 unsigned char customization;
77 unsigned char external_amp;
78 unsigned int enable_pcbeep:1;
79 unsigned int platform_type:1;
80 unsigned int swap:1;
81 unsigned int override:1;
90622917 82 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
83};
84
1da177e4 85struct alc_spec {
08c189f2 86 struct hda_gen_spec gen; /* must be at head */
23d30f28 87
1da177e4 88 /* codec parameterization */
a9111321 89 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
1da177e4 90 unsigned int num_mixers;
45bdd1c1 91 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
1da177e4 92
da00c244 93 struct alc_customize_define cdefine;
08c189f2 94 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 95
08c189f2
TI
96 /* inverted dmic fix */
97 unsigned int inv_dmic_fixup:1; /* has inverted digital-mic workaround */
98 unsigned int inv_dmic_muted:1; /* R-ch of inv d-mic is muted? */
125821ae 99 hda_nid_t inv_dmic_pin;
834be88d 100
08fb0d0e
TI
101 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
102 int mute_led_polarity;
103 hda_nid_t mute_led_nid;
104
9f5c6faf
TI
105 unsigned int gpio_led; /* used for alc269_fixup_hp_gpio_led() */
106
73bdd597
DH
107 hda_nid_t headset_mic_pin;
108 hda_nid_t headphone_mic_pin;
109 int current_headset_mode;
110 int current_headset_type;
111
ae6b813a
TI
112 /* hooks */
113 void (*init_hook)(struct hda_codec *codec);
83012a7c 114#ifdef CONFIG_PM
c97259df 115 void (*power_hook)(struct hda_codec *codec);
f5de24b0 116#endif
1c716153 117 void (*shutup)(struct hda_codec *codec);
d922b51d 118
4a79ba34 119 int init_amp;
d433a678 120 int codec_variant; /* flag for other variants */
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,
ff818c24
TI
1830};
1831
68ef0561 1832static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1833 const struct hda_fixup *fix, int action)
68ef0561 1834{
1727a771 1835 if (action != HDA_FIXUP_ACT_INIT)
68ef0561
TI
1836 return;
1837 alc889_coef_init(codec);
1838}
1839
5671087f
TI
1840/* toggle speaker-output according to the hp-jack state */
1841static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
1842{
1843 unsigned int gpiostate, gpiomask, gpiodir;
1844
1845 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
1846 AC_VERB_GET_GPIO_DATA, 0);
1847
1848 if (!muted)
1849 gpiostate |= (1 << pin);
1850 else
1851 gpiostate &= ~(1 << pin);
1852
1853 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
1854 AC_VERB_GET_GPIO_MASK, 0);
1855 gpiomask |= (1 << pin);
1856
1857 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
1858 AC_VERB_GET_GPIO_DIRECTION, 0);
1859 gpiodir |= (1 << pin);
1860
1861
1862 snd_hda_codec_write(codec, codec->afg, 0,
1863 AC_VERB_SET_GPIO_MASK, gpiomask);
1864 snd_hda_codec_write(codec, codec->afg, 0,
1865 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
1866
1867 msleep(1);
1868
1869 snd_hda_codec_write(codec, codec->afg, 0,
1870 AC_VERB_SET_GPIO_DATA, gpiostate);
1871}
1872
1873/* set up GPIO at initialization */
1874static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 1875 const struct hda_fixup *fix, int action)
5671087f 1876{
1727a771 1877 if (action != HDA_FIXUP_ACT_INIT)
5671087f
TI
1878 return;
1879 alc882_gpio_mute(codec, 0, 0);
1880 alc882_gpio_mute(codec, 1, 0);
1881}
1882
02a237b2
TI
1883/* Fix the connection of some pins for ALC889:
1884 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1885 * work correctly (bko#42740)
1886 */
1887static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 1888 const struct hda_fixup *fix, int action)
02a237b2 1889{
1727a771 1890 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 1891 /* fake the connections during parsing the tree */
02a237b2
TI
1892 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1893 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1894 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1895 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1896 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1897 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1727a771 1898 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb
TI
1899 /* restore the connections */
1900 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1901 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1902 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1903 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1904 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
02a237b2
TI
1905 }
1906}
1907
1a97b7f2
TI
1908/* Set VREF on HP pin */
1909static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 1910 const struct hda_fixup *fix, int action)
1a97b7f2
TI
1911{
1912 struct alc_spec *spec = codec->spec;
1913 static hda_nid_t nids[2] = { 0x14, 0x15 };
1914 int i;
1915
1727a771 1916 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
1917 return;
1918 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1919 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1920 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1921 continue;
d3f02d60 1922 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1923 val |= AC_PINCTL_VREF_80;
cdd03ced 1924 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 1925 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1926 break;
1927 }
1928}
1929
1930/* Set VREF on speaker pins on imac91 */
1931static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1727a771 1932 const struct hda_fixup *fix, int action)
1a97b7f2
TI
1933{
1934 struct alc_spec *spec = codec->spec;
1935 static hda_nid_t nids[2] = { 0x18, 0x1a };
1936 int i;
1937
1727a771 1938 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
1939 return;
1940 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1941 unsigned int val;
d3f02d60 1942 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1943 val |= AC_PINCTL_VREF_50;
cdd03ced 1944 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 1945 }
08c189f2 1946 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1947}
1948
e427c237 1949/* Don't take HP output as primary
d9111496
FLVC
1950 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
1951 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
e427c237
TI
1952 */
1953static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 1954 const struct hda_fixup *fix, int action)
e427c237
TI
1955{
1956 struct alc_spec *spec = codec->spec;
da96fb5b 1957 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08c189f2 1958 spec->gen.no_primary_hp = 1;
da96fb5b
TI
1959 spec->gen.no_multi_io = 1;
1960 }
e427c237
TI
1961}
1962
1727a771 1963static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 1964 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
1965 .type = HDA_FIXUP_PINS,
1966 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1967 { 0x15, 0x01080104 }, /* side */
1968 { 0x16, 0x01011012 }, /* rear */
1969 { 0x17, 0x01016011 }, /* clfe */
2785591a 1970 { }
145a902b
DH
1971 }
1972 },
5c0ebfbe 1973 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
1974 .type = HDA_FIXUP_PINS,
1975 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1976 { 0x15, 0x99130112 }, /* rear int speakers */
1977 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
1978 { }
1979 }
1980 },
5c0ebfbe 1981 [ALC882_FIXUP_PB_M5210] = {
fd108215
TI
1982 .type = HDA_FIXUP_PINCTLS,
1983 .v.pins = (const struct hda_pintbl[]) {
1984 { 0x19, PIN_VREF50 },
357f915e
KY
1985 {}
1986 }
1987 },
5c0ebfbe 1988 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 1989 .type = HDA_FIXUP_FUNC,
23d30f28 1990 .v.func = alc_fixup_sku_ignore,
6981d184 1991 },
5c0ebfbe 1992 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
1993 .type = HDA_FIXUP_PINS,
1994 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
1995 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
1996 { }
1997 }
1998 },
8f239214 1999 [ALC889_FIXUP_CD] = {
1727a771
TI
2000 .type = HDA_FIXUP_PINS,
2001 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
2002 { 0x1c, 0x993301f0 }, /* CD */
2003 { }
2004 }
2005 },
5c0ebfbe 2006 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
2007 .type = HDA_FIXUP_PINS,
2008 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
2009 { 0x17, 0x90170111 }, /* hidden surround speaker */
2010 { }
2011 }
2012 },
0e7cc2e7 2013 [ALC888_FIXUP_EEE1601] = {
1727a771 2014 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
2015 .v.verbs = (const struct hda_verb[]) {
2016 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2017 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2018 { }
2019 }
177943a3
TI
2020 },
2021 [ALC882_FIXUP_EAPD] = {
1727a771 2022 .type = HDA_FIXUP_VERBS,
177943a3
TI
2023 .v.verbs = (const struct hda_verb[]) {
2024 /* change to EAPD mode */
2025 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2026 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2027 { }
2028 }
2029 },
7a6069bf 2030 [ALC883_FIXUP_EAPD] = {
1727a771 2031 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
2032 .v.verbs = (const struct hda_verb[]) {
2033 /* change to EAPD mode */
2034 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2035 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2036 { }
2037 }
2038 },
8812c4f9 2039 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 2040 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
2041 .v.verbs = (const struct hda_verb[]) {
2042 /* eanable EAPD on Acer laptops */
2043 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2044 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2045 { }
2046 }
2047 },
1a97b7f2 2048 [ALC882_FIXUP_GPIO1] = {
1727a771 2049 .type = HDA_FIXUP_VERBS,
1a97b7f2
TI
2050 .v.verbs = alc_gpio1_init_verbs,
2051 },
2052 [ALC882_FIXUP_GPIO2] = {
1727a771 2053 .type = HDA_FIXUP_VERBS,
1a97b7f2
TI
2054 .v.verbs = alc_gpio2_init_verbs,
2055 },
eb844d51 2056 [ALC882_FIXUP_GPIO3] = {
1727a771 2057 .type = HDA_FIXUP_VERBS,
eb844d51
TI
2058 .v.verbs = alc_gpio3_init_verbs,
2059 },
68ef0561 2060 [ALC882_FIXUP_ASUS_W2JC] = {
1727a771 2061 .type = HDA_FIXUP_VERBS,
68ef0561
TI
2062 .v.verbs = alc_gpio1_init_verbs,
2063 .chained = true,
2064 .chain_id = ALC882_FIXUP_EAPD,
2065 },
2066 [ALC889_FIXUP_COEF] = {
1727a771 2067 .type = HDA_FIXUP_FUNC,
68ef0561
TI
2068 .v.func = alc889_fixup_coef,
2069 },
c3e837bb 2070 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
2071 .type = HDA_FIXUP_PINS,
2072 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2073 { 0x16, 0x99130111 }, /* CLFE speaker */
2074 { 0x17, 0x99130112 }, /* surround speaker */
2075 { }
038d4fef
TI
2076 },
2077 .chained = true,
2078 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
2079 },
2080 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
2081 .type = HDA_FIXUP_PINS,
2082 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2083 { 0x16, 0x99130111 }, /* CLFE speaker */
2084 { 0x1b, 0x99130112 }, /* surround speaker */
2085 { }
2086 },
2087 .chained = true,
2088 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2089 },
2090 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2091 /* additional init verbs for Acer Aspire 8930G */
1727a771 2092 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
2093 .v.verbs = (const struct hda_verb[]) {
2094 /* Enable all DACs */
2095 /* DAC DISABLE/MUTE 1? */
2096 /* setting bits 1-5 disables DAC nids 0x02-0x06
2097 * apparently. Init=0x38 */
2098 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2099 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2100 /* DAC DISABLE/MUTE 2? */
2101 /* some bit here disables the other DACs.
2102 * Init=0x4900 */
2103 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2104 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2105 /* DMIC fix
2106 * This laptop has a stereo digital microphone.
2107 * The mics are only 1cm apart which makes the stereo
2108 * useless. However, either the mic or the ALC889
2109 * makes the signal become a difference/sum signal
2110 * instead of standard stereo, which is annoying.
2111 * So instead we flip this bit which makes the
2112 * codec replicate the sum signal to both channels,
2113 * turning it into a normal mono mic.
2114 */
2115 /* DMIC_CONTROL? Init value = 0x0001 */
2116 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2117 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2118 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2119 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2120 { }
038d4fef
TI
2121 },
2122 .chained = true,
2123 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 2124 },
5671087f 2125 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 2126 .type = HDA_FIXUP_FUNC,
5671087f
TI
2127 .v.func = alc885_fixup_macpro_gpio,
2128 },
02a237b2 2129 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 2130 .type = HDA_FIXUP_FUNC,
02a237b2
TI
2131 .v.func = alc889_fixup_dac_route,
2132 },
1a97b7f2 2133 [ALC889_FIXUP_MBP_VREF] = {
1727a771 2134 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2135 .v.func = alc889_fixup_mbp_vref,
2136 .chained = true,
2137 .chain_id = ALC882_FIXUP_GPIO1,
2138 },
2139 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 2140 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2141 .v.func = alc889_fixup_imac91_vref,
2142 .chained = true,
2143 .chain_id = ALC882_FIXUP_GPIO1,
2144 },
6e72aa5f 2145 [ALC882_FIXUP_INV_DMIC] = {
1727a771 2146 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
2147 .v.func = alc_fixup_inv_dmic_0x12,
2148 },
e427c237 2149 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 2150 .type = HDA_FIXUP_FUNC,
e427c237
TI
2151 .v.func = alc882_fixup_no_primary_hp,
2152 },
ff818c24
TI
2153};
2154
1d045db9 2155static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
2156 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2157 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2158 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2159 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2160 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2161 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
2162 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2163 ALC882_FIXUP_ACER_ASPIRE_4930G),
2164 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2165 ALC882_FIXUP_ACER_ASPIRE_4930G),
2166 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2167 ALC882_FIXUP_ACER_ASPIRE_8930G),
2168 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2169 ALC882_FIXUP_ACER_ASPIRE_8930G),
2170 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2171 ALC882_FIXUP_ACER_ASPIRE_4930G),
2172 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2173 ALC882_FIXUP_ACER_ASPIRE_4930G),
2174 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2175 ALC882_FIXUP_ACER_ASPIRE_4930G),
5c0ebfbe 2176 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
f5c53d89
TI
2177 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2178 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 2179 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 2180 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 2181 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 2182 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 2183 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 2184 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
0e7cc2e7 2185 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
ac9b1cdd 2186 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2187 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
12e31a78 2188 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2189
2190 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2191 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2192 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2193 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f
TI
2194 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
2195 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2196 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2197 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2198 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2199 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
1a97b7f2
TI
2200 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBP_VREF),
2201 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBP_VREF),
2202 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2203 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2204 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2205 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2206 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2207 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
29ebe402 2208 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 5,1", ALC885_FIXUP_MACPRO_GPIO),
05193639 2209 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2210 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2211 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
2212 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_IMAC91_VREF),
5671087f 2213
7a6069bf 2214 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
bca40138 2215 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
eb844d51 2216 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
8f239214 2217 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3", ALC889_FIXUP_CD),
5c0ebfbe 2218 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
7a6069bf
TI
2219 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2220 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2221 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2222 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2223 {}
2224};
2225
1727a771 2226static const struct hda_model_fixup alc882_fixup_models[] = {
912093bc
TI
2227 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2228 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2229 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
6e72aa5f 2230 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2231 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
912093bc
TI
2232 {}
2233};
2234
f6a92248 2235/*
1d045db9 2236 * BIOS auto configuration
f6a92248 2237 */
1d045db9
TI
2238/* almost identical with ALC880 parser... */
2239static int alc882_parse_auto_config(struct hda_codec *codec)
2240{
1d045db9 2241 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2242 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2243 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2244}
b896b4eb 2245
1d045db9
TI
2246/*
2247 */
1d045db9 2248static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2249{
2250 struct alc_spec *spec;
1a97b7f2 2251 int err;
f6a92248 2252
3de95173
TI
2253 err = alc_alloc_spec(codec, 0x0b);
2254 if (err < 0)
2255 return err;
f6a92248 2256
3de95173 2257 spec = codec->spec;
1f0f4b80 2258
1d045db9
TI
2259 switch (codec->vendor_id) {
2260 case 0x10ec0882:
2261 case 0x10ec0885:
2262 break;
2263 default:
2264 /* ALC883 and variants */
2265 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2266 break;
c793bec5 2267 }
977ddd6b 2268
1727a771 2269 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2270 alc882_fixups);
1727a771 2271 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2272
1d045db9
TI
2273 alc_auto_parse_customize_define(codec);
2274
7504b6cd
TI
2275 if (has_cdefine_beep(codec))
2276 spec->gen.beep_nid = 0x01;
2277
1a97b7f2
TI
2278 /* automatic parse from the BIOS config */
2279 err = alc882_parse_auto_config(codec);
2280 if (err < 0)
2281 goto error;
f6a92248 2282
7504b6cd 2283 if (!spec->gen.no_analog && spec->gen.beep_nid)
1d045db9 2284 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
f6a92248
KY
2285
2286 codec->patch_ops = alc_patch_ops;
bf1b0225 2287
1727a771 2288 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2289
f6a92248 2290 return 0;
e16fb6d1
TI
2291
2292 error:
2293 alc_free(codec);
2294 return err;
f6a92248
KY
2295}
2296
df694daa 2297
df694daa 2298/*
1d045db9 2299 * ALC262 support
df694daa 2300 */
1d045db9 2301static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2302{
1d045db9 2303 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2304 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2305 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2306}
2307
df694daa 2308/*
1d045db9 2309 * Pin config fixes
df694daa 2310 */
cfc9b06f 2311enum {
ea4e7af1 2312 ALC262_FIXUP_FSC_H270,
7513e6da 2313 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2314 ALC262_FIXUP_HP_Z200,
2315 ALC262_FIXUP_TYAN,
c470150c 2316 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2317 ALC262_FIXUP_BENQ,
2318 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2319 ALC262_FIXUP_INV_DMIC,
b5c6611f 2320 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2321};
2322
1727a771 2323static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2324 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2325 .type = HDA_FIXUP_PINS,
2326 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2327 { 0x14, 0x99130110 }, /* speaker */
2328 { 0x15, 0x0221142f }, /* front HP */
2329 { 0x1b, 0x0121141f }, /* rear HP */
2330 { }
2331 }
2332 },
7513e6da
TI
2333 [ALC262_FIXUP_FSC_S7110] = {
2334 .type = HDA_FIXUP_PINS,
2335 .v.pins = (const struct hda_pintbl[]) {
2336 { 0x15, 0x90170110 }, /* speaker */
2337 { }
2338 },
2339 .chained = true,
2340 .chain_id = ALC262_FIXUP_BENQ,
2341 },
ea4e7af1 2342 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2343 .type = HDA_FIXUP_PINS,
2344 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2345 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2346 { }
2347 }
cfc9b06f 2348 },
ea4e7af1 2349 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2350 .type = HDA_FIXUP_PINS,
2351 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2352 { 0x14, 0x1993e1f0 }, /* int AUX */
2353 { }
2354 }
2355 },
c470150c 2356 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2357 .type = HDA_FIXUP_PINCTLS,
2358 .v.pins = (const struct hda_pintbl[]) {
2359 { 0x19, PIN_VREF50 },
b42590b8
TI
2360 {}
2361 },
2362 .chained = true,
2363 .chain_id = ALC262_FIXUP_BENQ,
2364 },
2365 [ALC262_FIXUP_BENQ] = {
1727a771 2366 .type = HDA_FIXUP_VERBS,
b42590b8 2367 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2368 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2369 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2370 {}
2371 }
2372 },
b42590b8 2373 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2374 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2375 .v.verbs = (const struct hda_verb[]) {
2376 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2377 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2378 {}
2379 }
2380 },
6e72aa5f 2381 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2382 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
2383 .v.func = alc_fixup_inv_dmic_0x12,
2384 },
b5c6611f
ML
2385 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2386 .type = HDA_FIXUP_FUNC,
2387 .v.func = alc_fixup_no_depop_delay,
2388 },
cfc9b06f
TI
2389};
2390
1d045db9 2391static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2392 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2393 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2394 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1
TI
2395 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
2396 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2397 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2398 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2399 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2400 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2401 {}
2402};
df694daa 2403
1727a771 2404static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f
TI
2405 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
2406 {}
2407};
1d045db9 2408
1d045db9
TI
2409/*
2410 */
1d045db9 2411static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2412{
2413 struct alc_spec *spec;
df694daa
KY
2414 int err;
2415
3de95173
TI
2416 err = alc_alloc_spec(codec, 0x0b);
2417 if (err < 0)
2418 return err;
df694daa 2419
3de95173 2420 spec = codec->spec;
08c189f2 2421 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9
TI
2422
2423#if 0
2424 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2425 * under-run
2426 */
2427 {
2428 int tmp;
2429 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2430 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
2431 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
2432 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
2433 }
2434#endif
1d045db9
TI
2435 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2436
1727a771 2437 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2438 alc262_fixups);
1727a771 2439 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2440
af741c15
TI
2441 alc_auto_parse_customize_define(codec);
2442
7504b6cd
TI
2443 if (has_cdefine_beep(codec))
2444 spec->gen.beep_nid = 0x01;
2445
42399f7a
TI
2446 /* automatic parse from the BIOS config */
2447 err = alc262_parse_auto_config(codec);
2448 if (err < 0)
2449 goto error;
df694daa 2450
7504b6cd 2451 if (!spec->gen.no_analog && spec->gen.beep_nid)
1d045db9 2452 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2134ea4f 2453
df694daa 2454 codec->patch_ops = alc_patch_ops;
1d045db9
TI
2455 spec->shutup = alc_eapd_shutup;
2456
1727a771 2457 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2458
1da177e4 2459 return 0;
e16fb6d1
TI
2460
2461 error:
2462 alc_free(codec);
2463 return err;
1da177e4
LT
2464}
2465
f32610ed 2466/*
1d045db9 2467 * ALC268
f32610ed 2468 */
1d045db9
TI
2469/* bind Beep switches of both NID 0x0f and 0x10 */
2470static const struct hda_bind_ctls alc268_bind_beep_sw = {
2471 .ops = &snd_hda_bind_sw,
2472 .values = {
2473 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
2474 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
2475 0
2476 },
f32610ed
JS
2477};
2478
1d045db9
TI
2479static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2480 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
2481 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
2482 { }
f32610ed
JS
2483};
2484
1d045db9
TI
2485/* set PCBEEP vol = 0, mute connections */
2486static const struct hda_verb alc268_beep_init_verbs[] = {
2487 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2488 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2489 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2490 { }
f32610ed
JS
2491};
2492
6e72aa5f
TI
2493enum {
2494 ALC268_FIXUP_INV_DMIC,
cb766404 2495 ALC268_FIXUP_HP_EAPD,
24eff328 2496 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
2497};
2498
1727a771 2499static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 2500 [ALC268_FIXUP_INV_DMIC] = {
1727a771 2501 .type = HDA_FIXUP_FUNC,
6e72aa5f
TI
2502 .v.func = alc_fixup_inv_dmic_0x12,
2503 },
cb766404 2504 [ALC268_FIXUP_HP_EAPD] = {
1727a771 2505 .type = HDA_FIXUP_VERBS,
cb766404
TI
2506 .v.verbs = (const struct hda_verb[]) {
2507 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2508 {}
2509 }
2510 },
24eff328
TI
2511 [ALC268_FIXUP_SPDIF] = {
2512 .type = HDA_FIXUP_PINS,
2513 .v.pins = (const struct hda_pintbl[]) {
2514 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2515 {}
2516 }
2517 },
6e72aa5f
TI
2518};
2519
1727a771 2520static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 2521 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404
TI
2522 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
2523 {}
2524};
2525
2526static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 2527 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 2528 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
2529 /* below is codec SSID since multiple Toshiba laptops have the
2530 * same PCI SSID 1179:ff00
2531 */
2532 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
2533 {}
2534};
2535
f32610ed
JS
2536/*
2537 * BIOS auto configuration
2538 */
1d045db9 2539static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 2540{
3e6179b8 2541 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 2542 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
2543}
2544
1d045db9
TI
2545/*
2546 */
1d045db9 2547static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
2548{
2549 struct alc_spec *spec;
7504b6cd 2550 int err;
f32610ed 2551
1d045db9 2552 /* ALC268 has no aa-loopback mixer */
3de95173
TI
2553 err = alc_alloc_spec(codec, 0);
2554 if (err < 0)
2555 return err;
2556
2557 spec = codec->spec;
7504b6cd 2558 spec->gen.beep_nid = 0x01;
1f0f4b80 2559
1727a771
TI
2560 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2561 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 2562
6ebb8053
TI
2563 /* automatic parse from the BIOS config */
2564 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
2565 if (err < 0)
2566 goto error;
f32610ed 2567
7504b6cd
TI
2568 if (err > 0 && !spec->gen.no_analog &&
2569 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
2570 add_mixer(spec, alc268_beep_mixer);
2571 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
2572 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2573 /* override the amp caps for beep generator */
2574 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2575 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2576 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2577 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2578 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
2579 }
2580
f32610ed 2581 codec->patch_ops = alc_patch_ops;
1c716153 2582 spec->shutup = alc_eapd_shutup;
1d045db9 2583
1727a771 2584 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 2585
f32610ed 2586 return 0;
e16fb6d1
TI
2587
2588 error:
2589 alc_free(codec);
2590 return err;
f32610ed
JS
2591}
2592
bc9f98a9 2593/*
1d045db9 2594 * ALC269
bc9f98a9 2595 */
08c189f2
TI
2596
2597static int playback_pcm_open(struct hda_pcm_stream *hinfo,
2598 struct hda_codec *codec,
2599 struct snd_pcm_substream *substream)
2600{
2601 struct hda_gen_spec *spec = codec->spec;
2602 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2603 hinfo);
2604}
2605
2606static int playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2607 struct hda_codec *codec,
2608 unsigned int stream_tag,
2609 unsigned int format,
2610 struct snd_pcm_substream *substream)
2611{
2612 struct hda_gen_spec *spec = codec->spec;
2613 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2614 stream_tag, format, substream);
2615}
2616
2617static int playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2618 struct hda_codec *codec,
2619 struct snd_pcm_substream *substream)
2620{
2621 struct hda_gen_spec *spec = codec->spec;
2622 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2623}
2624
1d045db9
TI
2625static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
2626 .substreams = 1,
2627 .channels_min = 2,
2628 .channels_max = 8,
2629 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2630 /* NID is set in alc_build_pcms */
2631 .ops = {
08c189f2
TI
2632 .open = playback_pcm_open,
2633 .prepare = playback_pcm_prepare,
2634 .cleanup = playback_pcm_cleanup
bc9f98a9
KY
2635 },
2636};
2637
1d045db9
TI
2638static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
2639 .substreams = 1,
2640 .channels_min = 2,
2641 .channels_max = 2,
2642 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
2643 /* NID is set in alc_build_pcms */
bc9f98a9 2644};
291702f0 2645
1d045db9
TI
2646/* different alc269-variants */
2647enum {
2648 ALC269_TYPE_ALC269VA,
2649 ALC269_TYPE_ALC269VB,
2650 ALC269_TYPE_ALC269VC,
adcc70b2 2651 ALC269_TYPE_ALC269VD,
065380f0
KY
2652 ALC269_TYPE_ALC280,
2653 ALC269_TYPE_ALC282,
2af02be7 2654 ALC269_TYPE_ALC283,
065380f0 2655 ALC269_TYPE_ALC284,
161ebf29 2656 ALC269_TYPE_ALC285,
7fc7d047 2657 ALC269_TYPE_ALC286,
1d04c9de 2658 ALC269_TYPE_ALC255,
bc9f98a9
KY
2659};
2660
2661/*
1d045db9 2662 * BIOS auto configuration
bc9f98a9 2663 */
1d045db9
TI
2664static int alc269_parse_auto_config(struct hda_codec *codec)
2665{
1d045db9 2666 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2667 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2668 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2669 struct alc_spec *spec = codec->spec;
adcc70b2
KY
2670 const hda_nid_t *ssids;
2671
2672 switch (spec->codec_variant) {
2673 case ALC269_TYPE_ALC269VA:
2674 case ALC269_TYPE_ALC269VC:
065380f0
KY
2675 case ALC269_TYPE_ALC280:
2676 case ALC269_TYPE_ALC284:
161ebf29 2677 case ALC269_TYPE_ALC285:
adcc70b2
KY
2678 ssids = alc269va_ssids;
2679 break;
2680 case ALC269_TYPE_ALC269VB:
2681 case ALC269_TYPE_ALC269VD:
065380f0 2682 case ALC269_TYPE_ALC282:
2af02be7 2683 case ALC269_TYPE_ALC283:
7fc7d047 2684 case ALC269_TYPE_ALC286:
1d04c9de 2685 case ALC269_TYPE_ALC255:
adcc70b2
KY
2686 ssids = alc269_ssids;
2687 break;
2688 default:
2689 ssids = alc269_ssids;
2690 break;
2691 }
bc9f98a9 2692
3e6179b8 2693 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 2694}
bc9f98a9 2695
1387e2d1 2696static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9
TI
2697{
2698 int val = alc_read_coef_idx(codec, 0x04);
2699 if (power_up)
2700 val |= 1 << 11;
2701 else
2702 val &= ~(1 << 11);
2703 alc_write_coef_idx(codec, 0x04, val);
2704}
291702f0 2705
1d045db9
TI
2706static void alc269_shutup(struct hda_codec *codec)
2707{
adcc70b2
KY
2708 struct alc_spec *spec = codec->spec;
2709
1387e2d1
KY
2710 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2711 alc269vb_toggle_power_output(codec, 0);
2712 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2713 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2714 msleep(150);
2715 }
9bfb2844 2716 snd_hda_shutup_pins(codec);
1d045db9 2717}
291702f0 2718
2af02be7
KY
2719static void alc283_init(struct hda_codec *codec)
2720{
2721 struct alc_spec *spec = codec->spec;
2722 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2723 bool hp_pin_sense;
2724 int val;
2725
2726 if (!hp_pin)
2727 return;
2728 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2729
2730 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
2731 /* Headphone capless set to high power mode */
2732 alc_write_coef_idx(codec, 0x43, 0x9004);
2733
2734 snd_hda_codec_write(codec, hp_pin, 0,
2735 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2736
2737 if (hp_pin_sense)
2738 msleep(85);
2739
2740 snd_hda_codec_write(codec, hp_pin, 0,
2741 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
2742
2743 if (hp_pin_sense)
2744 msleep(85);
2745 /* Index 0x46 Combo jack auto switch control 2 */
2746 /* 3k pull low control for Headset jack. */
2747 val = alc_read_coef_idx(codec, 0x46);
2748 alc_write_coef_idx(codec, 0x46, val & ~(3 << 12));
2749 /* Headphone capless set to normal mode */
2750 alc_write_coef_idx(codec, 0x43, 0x9614);
2751}
2752
2753static void alc283_shutup(struct hda_codec *codec)
2754{
2755 struct alc_spec *spec = codec->spec;
2756 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
2757 bool hp_pin_sense;
2758 int val;
2759
2760 if (!hp_pin) {
2761 alc269_shutup(codec);
2762 return;
2763 }
2764
2765 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
2766
2767 alc_write_coef_idx(codec, 0x43, 0x9004);
2768
2769 snd_hda_codec_write(codec, hp_pin, 0,
2770 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
2771
2772 if (hp_pin_sense)
88011c09 2773 msleep(100);
2af02be7
KY
2774
2775 snd_hda_codec_write(codec, hp_pin, 0,
2776 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2777
2778 val = alc_read_coef_idx(codec, 0x46);
2779 alc_write_coef_idx(codec, 0x46, val | (3 << 12));
2780
2781 if (hp_pin_sense)
88011c09 2782 msleep(100);
2af02be7
KY
2783 snd_hda_shutup_pins(codec);
2784 alc_write_coef_idx(codec, 0x43, 0x9614);
2785}
2786
ad60d502
KY
2787static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
2788 unsigned int val)
2789{
2790 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2791 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
2792 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
2793}
2794
2795static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
2796{
2797 unsigned int val;
2798
2799 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
2800 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2801 & 0xffff;
2802 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
2803 << 16;
2804 return val;
2805}
2806
2807static void alc5505_dsp_halt(struct hda_codec *codec)
2808{
2809 unsigned int val;
2810
2811 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
2812 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
2813 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
2814 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
2815 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
2816 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
2817 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
2818 val = alc5505_coef_get(codec, 0x6220);
2819 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
2820}
2821
2822static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
2823{
2824 alc5505_coef_set(codec, 0x61b8, 0x04133302);
2825 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
2826 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
2827 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
2828 alc5505_coef_set(codec, 0x6220, 0x2002010f);
2829 alc5505_coef_set(codec, 0x880c, 0x00000004);
2830}
2831
2832static void alc5505_dsp_init(struct hda_codec *codec)
2833{
2834 unsigned int val;
2835
2836 alc5505_dsp_halt(codec);
2837 alc5505_dsp_back_from_halt(codec);
2838 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
2839 alc5505_coef_set(codec, 0x61b0, 0x5b16);
2840 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
2841 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
2842 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
2843 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
2844 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
2845 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
2846 alc5505_coef_set(codec, 0x61b8, 0x04173302);
2847 alc5505_coef_set(codec, 0x61b8, 0x04163302);
2848 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
2849 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
2850 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
2851
2852 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
2853 if (val <= 3)
2854 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
2855 else
2856 alc5505_coef_set(codec, 0x6220, 0x6002018f);
2857
2858 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
2859 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
2860 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
2861 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
2862 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
2863 alc5505_coef_set(codec, 0x880c, 0x00000003);
2864 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
2865
2866#ifdef HALT_REALTEK_ALC5505
2867 alc5505_dsp_halt(codec);
2868#endif
ad60d502
KY
2869}
2870
cd63a5ff
TI
2871#ifdef HALT_REALTEK_ALC5505
2872#define alc5505_dsp_suspend(codec) /* NOP */
2873#define alc5505_dsp_resume(codec) /* NOP */
2874#else
2875#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
2876#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
2877#endif
2878
2a43952a 2879#ifdef CONFIG_PM
ad60d502
KY
2880static int alc269_suspend(struct hda_codec *codec)
2881{
2882 struct alc_spec *spec = codec->spec;
2883
2884 if (spec->has_alc5505_dsp)
cd63a5ff 2885 alc5505_dsp_suspend(codec);
ad60d502
KY
2886 return alc_suspend(codec);
2887}
2888
1d045db9
TI
2889static int alc269_resume(struct hda_codec *codec)
2890{
adcc70b2
KY
2891 struct alc_spec *spec = codec->spec;
2892
1387e2d1
KY
2893 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2894 alc269vb_toggle_power_output(codec, 0);
2895 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 2896 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2897 msleep(150);
2898 }
8c427226 2899
1d045db9 2900 codec->patch_ops.init(codec);
f1d4e28b 2901
1387e2d1
KY
2902 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2903 alc269vb_toggle_power_output(codec, 1);
2904 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 2905 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
2906 msleep(200);
2907 }
f1d4e28b 2908
1d045db9
TI
2909 snd_hda_codec_resume_amp(codec);
2910 snd_hda_codec_resume_cache(codec);
0623a889 2911 alc_inv_dmic_sync(codec, true);
1d045db9 2912 hda_call_check_power_status(codec, 0x01);
ad60d502 2913 if (spec->has_alc5505_dsp)
cd63a5ff 2914 alc5505_dsp_resume(codec);
c5177c86 2915
1d045db9
TI
2916 return 0;
2917}
2a43952a 2918#endif /* CONFIG_PM */
f1d4e28b 2919
108cc108 2920static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 2921 const struct hda_fixup *fix, int action)
108cc108
DH
2922{
2923 struct alc_spec *spec = codec->spec;
2924
1727a771 2925 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
2926 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
2927}
2928
1d045db9 2929static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 2930 const struct hda_fixup *fix, int action)
1d045db9
TI
2931{
2932 int coef;
f1d4e28b 2933
1727a771 2934 if (action != HDA_FIXUP_ACT_INIT)
1d045db9
TI
2935 return;
2936 coef = alc_read_coef_idx(codec, 0x1e);
2937 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
2938}
f1d4e28b 2939
7c478f03
DH
2940static void alc269_fixup_headset_mic(struct hda_codec *codec,
2941 const struct hda_fixup *fix, int action)
2942{
2943 struct alc_spec *spec = codec->spec;
2944
2945 if (action == HDA_FIXUP_ACT_PRE_PROBE)
2946 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
2947}
2948
1d045db9 2949static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 2950 const struct hda_fixup *fix, int action)
1d045db9
TI
2951{
2952 static const struct hda_verb verbs[] = {
2953 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
2954 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
2955 {}
2956 };
2957 unsigned int cfg;
f1d4e28b 2958
42397004
DR
2959 if (strcmp(codec->chip_name, "ALC271X") &&
2960 strcmp(codec->chip_name, "ALC269VB"))
1d045db9
TI
2961 return;
2962 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
2963 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
2964 snd_hda_sequence_write(codec, verbs);
2965}
f1d4e28b 2966
017f2a10 2967static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 2968 const struct hda_fixup *fix, int action)
017f2a10
TI
2969{
2970 struct alc_spec *spec = codec->spec;
2971
1727a771 2972 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
2973 return;
2974
2975 /* Due to a hardware problem on Lenovo Ideadpad, we need to
2976 * fix the sample rate of analog I/O to 44.1kHz
2977 */
08c189f2
TI
2978 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
2979 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
2980}
2981
adabb3ec 2982static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 2983 const struct hda_fixup *fix, int action)
adabb3ec
TI
2984{
2985 int coef;
2986
1727a771 2987 if (action != HDA_FIXUP_ACT_INIT)
adabb3ec
TI
2988 return;
2989 /* The digital-mic unit sends PDM (differential signal) instead of
2990 * the standard PCM, thus you can't record a valid mono stream as is.
2991 * Below is a workaround specific to ALC269 to control the dmic
2992 * signal source as mono.
2993 */
2994 coef = alc_read_coef_idx(codec, 0x07);
2995 alc_write_coef_idx(codec, 0x07, coef | 0x80);
2996}
2997
24519911
TI
2998static void alc269_quanta_automute(struct hda_codec *codec)
2999{
08c189f2 3000 snd_hda_gen_update_outputs(codec);
24519911
TI
3001
3002 snd_hda_codec_write(codec, 0x20, 0,
3003 AC_VERB_SET_COEF_INDEX, 0x0c);
3004 snd_hda_codec_write(codec, 0x20, 0,
3005 AC_VERB_SET_PROC_COEF, 0x680);
3006
3007 snd_hda_codec_write(codec, 0x20, 0,
3008 AC_VERB_SET_COEF_INDEX, 0x0c);
3009 snd_hda_codec_write(codec, 0x20, 0,
3010 AC_VERB_SET_PROC_COEF, 0x480);
3011}
3012
3013static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 3014 const struct hda_fixup *fix, int action)
24519911
TI
3015{
3016 struct alc_spec *spec = codec->spec;
1727a771 3017 if (action != HDA_FIXUP_ACT_PROBE)
24519911 3018 return;
08c189f2 3019 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
3020}
3021
d240d1dc
DH
3022static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
3023 struct hda_jack_tbl *jack)
3024{
3025 struct alc_spec *spec = codec->spec;
3026 int vref;
3027 msleep(200);
3028 snd_hda_gen_hp_automute(codec, jack);
3029
3030 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3031 msleep(100);
3032 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3033 vref);
3034 msleep(500);
3035 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3036 vref);
3037}
3038
3039static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3040 const struct hda_fixup *fix, int action)
3041{
3042 struct alc_spec *spec = codec->spec;
3043 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3044 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3045 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3046 }
3047}
3048
3049
08fb0d0e
TI
3050/* update mute-LED according to the speaker mute state via mic VREF pin */
3051static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
6d3cd5d4
DH
3052{
3053 struct hda_codec *codec = private_data;
08fb0d0e
TI
3054 struct alc_spec *spec = codec->spec;
3055 unsigned int pinval;
3056
3057 if (spec->mute_led_polarity)
3058 enabled = !enabled;
3059 pinval = AC_PINCTL_IN_EN |
3060 (enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80);
3061 if (spec->mute_led_nid)
3062 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
6d3cd5d4
DH
3063}
3064
d5b6b65e
DH
3065/* Make sure the led works even in runtime suspend */
3066static unsigned int led_power_filter(struct hda_codec *codec,
3067 hda_nid_t nid,
3068 unsigned int power_state)
3069{
3070 struct alc_spec *spec = codec->spec;
3071
3072 if (power_state != AC_PWRST_D3 || nid != spec->mute_led_nid)
3073 return power_state;
3074
3075 /* Set pin ctl again, it might have just been set to 0 */
3076 snd_hda_set_pin_ctl(codec, nid,
3077 snd_hda_codec_get_pin_target(codec, nid));
3078
3079 return AC_PWRST_D0;
3080}
3081
08fb0d0e
TI
3082static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3083 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
3084{
3085 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
3086 const struct dmi_device *dev = NULL;
3087
3088 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3089 return;
3090
3091 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3092 int pol, pin;
3093 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3094 continue;
3095 if (pin < 0x0a || pin >= 0x10)
3096 break;
3097 spec->mute_led_polarity = pol;
3098 spec->mute_led_nid = pin - 0x0a + 0x18;
3099 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
fd25a97a 3100 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3101 codec->power_filter = led_power_filter;
08fb0d0e
TI
3102 snd_printd("Detected mute LED for %x:%d\n", spec->mute_led_nid,
3103 spec->mute_led_polarity);
6d3cd5d4
DH
3104 break;
3105 }
3106}
3107
d06ac143
DH
3108static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3109 const struct hda_fixup *fix, int action)
3110{
3111 struct alc_spec *spec = codec->spec;
3112 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3113 spec->mute_led_polarity = 0;
3114 spec->mute_led_nid = 0x18;
3115 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3116 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3117 codec->power_filter = led_power_filter;
d06ac143
DH
3118 }
3119}
3120
08fb0d0e
TI
3121static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3122 const struct hda_fixup *fix, int action)
420b0feb
TI
3123{
3124 struct alc_spec *spec = codec->spec;
9bb1f06f 3125 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08fb0d0e
TI
3126 spec->mute_led_polarity = 0;
3127 spec->mute_led_nid = 0x19;
3128 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
fd25a97a 3129 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3130 codec->power_filter = led_power_filter;
420b0feb
TI
3131 }
3132}
3133
9f5c6faf
TI
3134/* turn on/off mute LED per vmaster hook */
3135static void alc269_fixup_hp_gpio_mute_hook(void *private_data, int enabled)
3136{
3137 struct hda_codec *codec = private_data;
3138 struct alc_spec *spec = codec->spec;
3139 unsigned int oldval = spec->gpio_led;
3140
3141 if (enabled)
3142 spec->gpio_led &= ~0x08;
3143 else
3144 spec->gpio_led |= 0x08;
3145 if (spec->gpio_led != oldval)
3146 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3147 spec->gpio_led);
3148}
3149
3150/* turn on/off mic-mute LED per capture hook */
3151static void alc269_fixup_hp_gpio_mic_mute_hook(struct hda_codec *codec,
3152 struct snd_ctl_elem_value *ucontrol)
3153{
3154 struct alc_spec *spec = codec->spec;
3155 unsigned int oldval = spec->gpio_led;
3156
3157 if (!ucontrol)
3158 return;
3159
3160 if (ucontrol->value.integer.value[0] ||
3161 ucontrol->value.integer.value[1])
3162 spec->gpio_led &= ~0x10;
3163 else
3164 spec->gpio_led |= 0x10;
3165 if (spec->gpio_led != oldval)
3166 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
3167 spec->gpio_led);
3168}
3169
3170static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
3171 const struct hda_fixup *fix, int action)
3172{
3173 struct alc_spec *spec = codec->spec;
3174 static const struct hda_verb gpio_init[] = {
3175 { 0x01, AC_VERB_SET_GPIO_MASK, 0x18 },
3176 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x18 },
3177 {}
3178 };
3179
3180 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3181 spec->gen.vmaster_mute.hook = alc269_fixup_hp_gpio_mute_hook;
3182 spec->gen.cap_sync_hook = alc269_fixup_hp_gpio_mic_mute_hook;
3183 spec->gpio_led = 0;
3184 snd_hda_add_verbs(codec, gpio_init);
3185 }
3186}
3187
73bdd597
DH
3188static void alc_headset_mode_unplugged(struct hda_codec *codec)
3189{
3190 int val;
3191
3192 switch (codec->vendor_id) {
9a22a8f5
KY
3193 case 0x10ec0255:
3194 /* LDO and MISC control */
3195 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3196 /* UAJ function set to menual mode */
3197 alc_write_coef_idx(codec, 0x45, 0xd089);
3198 /* Direct Drive HP Amp control(Set to verb control)*/
3199 val = alc_read_coefex_idx(codec, 0x57, 0x05);
3200 alc_write_coefex_idx(codec, 0x57, 0x05, val & ~(1<<14));
3201 /* Set MIC2 Vref gate with HP */
3202 alc_write_coef_idx(codec, 0x06, 0x6104);
3203 /* Direct Drive HP Amp control */
3204 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3205 break;
73bdd597
DH
3206 case 0x10ec0283:
3207 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3208 alc_write_coef_idx(codec, 0x45, 0xc429);
3209 val = alc_read_coef_idx(codec, 0x35);
3210 alc_write_coef_idx(codec, 0x35, val & 0xbfff);
3211 alc_write_coef_idx(codec, 0x06, 0x2104);
3212 alc_write_coef_idx(codec, 0x1a, 0x0001);
3213 alc_write_coef_idx(codec, 0x26, 0x0004);
3214 alc_write_coef_idx(codec, 0x32, 0x42a3);
3215 break;
3216 case 0x10ec0292:
3217 alc_write_coef_idx(codec, 0x76, 0x000e);
3218 alc_write_coef_idx(codec, 0x6c, 0x2400);
3219 alc_write_coef_idx(codec, 0x18, 0x7308);
3220 alc_write_coef_idx(codec, 0x6b, 0xc429);
3221 break;
3222 case 0x10ec0668:
3223 alc_write_coef_idx(codec, 0x15, 0x0d40);
3224 alc_write_coef_idx(codec, 0xb7, 0x802b);
3225 break;
3226 }
3227 snd_printdd("Headset jack set to unplugged mode.\n");
3228}
3229
3230
3231static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
3232 hda_nid_t mic_pin)
3233{
3234 int val;
3235
3236 switch (codec->vendor_id) {
9a22a8f5
KY
3237 case 0x10ec0255:
3238 alc_write_coef_idx(codec, 0x45, 0xc489);
3239 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3240 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8aa6);
3241 /* Set MIC2 Vref gate to normal */
3242 alc_write_coef_idx(codec, 0x06, 0x6100);
3243 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3244 break;
73bdd597
DH
3245 case 0x10ec0283:
3246 alc_write_coef_idx(codec, 0x45, 0xc429);
3247 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3248 val = alc_read_coef_idx(codec, 0x35);
3249 alc_write_coef_idx(codec, 0x35, val | 1<<14);
3250 alc_write_coef_idx(codec, 0x06, 0x2100);
3251 alc_write_coef_idx(codec, 0x1a, 0x0021);
3252 alc_write_coef_idx(codec, 0x26, 0x008c);
3253 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3254 break;
3255 case 0x10ec0292:
3256 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3257 alc_write_coef_idx(codec, 0x19, 0xa208);
3258 alc_write_coef_idx(codec, 0x2e, 0xacf0);
3259 break;
3260 case 0x10ec0668:
3261 alc_write_coef_idx(codec, 0x11, 0x0001);
3262 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
3263 alc_write_coef_idx(codec, 0xb7, 0x802b);
3264 alc_write_coef_idx(codec, 0xb5, 0x1040);
3265 val = alc_read_coef_idx(codec, 0xc3);
3266 alc_write_coef_idx(codec, 0xc3, val | 1<<12);
3267 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
3268 break;
3269 }
3270 snd_printdd("Headset jack set to mic-in mode.\n");
3271}
3272
3273static void alc_headset_mode_default(struct hda_codec *codec)
3274{
3275 switch (codec->vendor_id) {
9a22a8f5
KY
3276 case 0x10ec0255:
3277 alc_write_coef_idx(codec, 0x45, 0xc089);
3278 alc_write_coef_idx(codec, 0x45, 0xc489);
3279 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3280 alc_write_coef_idx(codec, 0x49, 0x0049);
3281 break;
73bdd597
DH
3282 case 0x10ec0283:
3283 alc_write_coef_idx(codec, 0x06, 0x2100);
3284 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3285 break;
3286 case 0x10ec0292:
3287 alc_write_coef_idx(codec, 0x76, 0x000e);
3288 alc_write_coef_idx(codec, 0x6c, 0x2400);
3289 alc_write_coef_idx(codec, 0x6b, 0xc429);
3290 alc_write_coef_idx(codec, 0x18, 0x7308);
3291 break;
3292 case 0x10ec0668:
3293 alc_write_coef_idx(codec, 0x11, 0x0041);
3294 alc_write_coef_idx(codec, 0x15, 0x0d40);
3295 alc_write_coef_idx(codec, 0xb7, 0x802b);
3296 break;
3297 }
3298 snd_printdd("Headset jack set to headphone (default) mode.\n");
3299}
3300
3301/* Iphone type */
3302static void alc_headset_mode_ctia(struct hda_codec *codec)
3303{
3304 switch (codec->vendor_id) {
9a22a8f5
KY
3305 case 0x10ec0255:
3306 /* Set to CTIA type */
3307 alc_write_coef_idx(codec, 0x45, 0xd489);
3308 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3309 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3310 break;
73bdd597
DH
3311 case 0x10ec0283:
3312 alc_write_coef_idx(codec, 0x45, 0xd429);
3313 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3314 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3315 break;
3316 case 0x10ec0292:
3317 alc_write_coef_idx(codec, 0x6b, 0xd429);
3318 alc_write_coef_idx(codec, 0x76, 0x0008);
3319 alc_write_coef_idx(codec, 0x18, 0x7388);
3320 break;
3321 case 0x10ec0668:
3322 alc_write_coef_idx(codec, 0x15, 0x0d60);
3323 alc_write_coef_idx(codec, 0xc3, 0x0000);
3324 break;
3325 }
3326 snd_printdd("Headset jack set to iPhone-style headset mode.\n");
3327}
3328
3329/* Nokia type */
3330static void alc_headset_mode_omtp(struct hda_codec *codec)
3331{
3332 switch (codec->vendor_id) {
9a22a8f5
KY
3333 case 0x10ec0255:
3334 /* Set to OMTP Type */
3335 alc_write_coef_idx(codec, 0x45, 0xe489);
3336 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3337 alc_write_coefex_idx(codec, 0x57, 0x03, 0x8ea6);
3338 break;
73bdd597
DH
3339 case 0x10ec0283:
3340 alc_write_coef_idx(codec, 0x45, 0xe429);
3341 alc_write_coef_idx(codec, 0x1b, 0x0c2b);
3342 alc_write_coef_idx(codec, 0x32, 0x4ea3);
3343 break;
3344 case 0x10ec0292:
3345 alc_write_coef_idx(codec, 0x6b, 0xe429);
3346 alc_write_coef_idx(codec, 0x76, 0x0008);
3347 alc_write_coef_idx(codec, 0x18, 0x7388);
3348 break;
3349 case 0x10ec0668:
3350 alc_write_coef_idx(codec, 0x15, 0x0d50);
3351 alc_write_coef_idx(codec, 0xc3, 0x0000);
3352 break;
3353 }
3354 snd_printdd("Headset jack set to Nokia-style headset mode.\n");
3355}
3356
3357static void alc_determine_headset_type(struct hda_codec *codec)
3358{
3359 int val;
3360 bool is_ctia = false;
3361 struct alc_spec *spec = codec->spec;
3362
3363 switch (codec->vendor_id) {
9a22a8f5
KY
3364 case 0x10ec0255:
3365 /* combo jack auto switch control(Check type)*/
3366 alc_write_coef_idx(codec, 0x45, 0xd089);
3367 /* combo jack auto switch control(Vref conteol) */
3368 alc_write_coef_idx(codec, 0x49, 0x0149);
3369 msleep(300);
3370 val = alc_read_coef_idx(codec, 0x46);
3371 is_ctia = (val & 0x0070) == 0x0070;
3372 break;
73bdd597
DH
3373 case 0x10ec0283:
3374 alc_write_coef_idx(codec, 0x45, 0xd029);
3375 msleep(300);
3376 val = alc_read_coef_idx(codec, 0x46);
3377 is_ctia = (val & 0x0070) == 0x0070;
3378 break;
3379 case 0x10ec0292:
3380 alc_write_coef_idx(codec, 0x6b, 0xd429);
3381 msleep(300);
3382 val = alc_read_coef_idx(codec, 0x6c);
3383 is_ctia = (val & 0x001c) == 0x001c;
3384 break;
3385 case 0x10ec0668:
3386 alc_write_coef_idx(codec, 0x11, 0x0001);
3387 alc_write_coef_idx(codec, 0xb7, 0x802b);
3388 alc_write_coef_idx(codec, 0x15, 0x0d60);
3389 alc_write_coef_idx(codec, 0xc3, 0x0c00);
3390 msleep(300);
3391 val = alc_read_coef_idx(codec, 0xbe);
3392 is_ctia = (val & 0x1c02) == 0x1c02;
3393 break;
3394 }
3395
3396 snd_printdd("Headset jack detected iPhone-style headset: %s\n",
3397 is_ctia ? "yes" : "no");
3398 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
3399}
3400
3401static void alc_update_headset_mode(struct hda_codec *codec)
3402{
3403 struct alc_spec *spec = codec->spec;
3404
3405 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
3406 hda_nid_t hp_pin = spec->gen.autocfg.hp_pins[0];
3407
3408 int new_headset_mode;
3409
3410 if (!snd_hda_jack_detect(codec, hp_pin))
3411 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
3412 else if (mux_pin == spec->headset_mic_pin)
3413 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
3414 else if (mux_pin == spec->headphone_mic_pin)
3415 new_headset_mode = ALC_HEADSET_MODE_MIC;
3416 else
3417 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
3418
5959a6bc
DH
3419 if (new_headset_mode == spec->current_headset_mode) {
3420 snd_hda_gen_update_outputs(codec);
73bdd597 3421 return;
5959a6bc 3422 }
73bdd597
DH
3423
3424 switch (new_headset_mode) {
3425 case ALC_HEADSET_MODE_UNPLUGGED:
3426 alc_headset_mode_unplugged(codec);
3427 spec->gen.hp_jack_present = false;
3428 break;
3429 case ALC_HEADSET_MODE_HEADSET:
3430 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
3431 alc_determine_headset_type(codec);
3432 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
3433 alc_headset_mode_ctia(codec);
3434 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
3435 alc_headset_mode_omtp(codec);
3436 spec->gen.hp_jack_present = true;
3437 break;
3438 case ALC_HEADSET_MODE_MIC:
3439 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
3440 spec->gen.hp_jack_present = false;
3441 break;
3442 case ALC_HEADSET_MODE_HEADPHONE:
3443 alc_headset_mode_default(codec);
3444 spec->gen.hp_jack_present = true;
3445 break;
3446 }
3447 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
3448 snd_hda_set_pin_ctl_cache(codec, hp_pin,
3449 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
3450 if (spec->headphone_mic_pin)
3451 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
3452 PIN_VREFHIZ);
3453 }
3454 spec->current_headset_mode = new_headset_mode;
3455
3456 snd_hda_gen_update_outputs(codec);
3457}
3458
3459static void alc_update_headset_mode_hook(struct hda_codec *codec,
3460 struct snd_ctl_elem_value *ucontrol)
3461{
3462 alc_update_headset_mode(codec);
3463}
3464
3465static void alc_update_headset_jack_cb(struct hda_codec *codec, struct hda_jack_tbl *jack)
3466{
3467 struct alc_spec *spec = codec->spec;
5db4d34b 3468 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
3469 snd_hda_gen_hp_automute(codec, jack);
3470}
3471
3472static void alc_probe_headset_mode(struct hda_codec *codec)
3473{
3474 int i;
3475 struct alc_spec *spec = codec->spec;
3476 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3477
3478 /* Find mic pins */
3479 for (i = 0; i < cfg->num_inputs; i++) {
3480 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
3481 spec->headset_mic_pin = cfg->inputs[i].pin;
3482 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
3483 spec->headphone_mic_pin = cfg->inputs[i].pin;
3484 }
3485
3486 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
3487 spec->gen.automute_hook = alc_update_headset_mode;
3488 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
3489}
3490
3491static void alc_fixup_headset_mode(struct hda_codec *codec,
3492 const struct hda_fixup *fix, int action)
3493{
3494 struct alc_spec *spec = codec->spec;
3495
3496 switch (action) {
3497 case HDA_FIXUP_ACT_PRE_PROBE:
3498 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
3499 break;
3500 case HDA_FIXUP_ACT_PROBE:
3501 alc_probe_headset_mode(codec);
3502 break;
3503 case HDA_FIXUP_ACT_INIT:
3504 spec->current_headset_mode = 0;
3505 alc_update_headset_mode(codec);
3506 break;
3507 }
3508}
3509
3510static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
3511 const struct hda_fixup *fix, int action)
3512{
3513 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3514 struct alc_spec *spec = codec->spec;
3515 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3516 }
3517 else
3518 alc_fixup_headset_mode(codec, fix, action);
3519}
3520
9a22a8f5
KY
3521static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
3522 const struct hda_fixup *fix, int action)
3523{
3524 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3525 /* Set to iphone type */
3526 alc_write_coef_idx(codec, 0x1b, 0x880b);
3527 alc_write_coef_idx(codec, 0x45, 0xd089);
3528 alc_write_coef_idx(codec, 0x1b, 0x080b);
3529 alc_write_coef_idx(codec, 0x46, 0x0004);
3530 alc_write_coef_idx(codec, 0x1b, 0x0c0b);
3531 msleep(30);
3532 }
3533 alc_fixup_headset_mode(codec, fix, action);
3534}
3535
73bdd597
DH
3536static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
3537 const struct hda_fixup *fix, int action)
3538{
3539 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3540 int val;
3541 alc_write_coef_idx(codec, 0xc4, 0x8000);
3542 val = alc_read_coef_idx(codec, 0xc2);
3543 alc_write_coef_idx(codec, 0xc2, val & 0xfe);
3544 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
3545 }
3546 alc_fixup_headset_mode(codec, fix, action);
3547}
3548
bde7bc60
CCC
3549/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
3550static int find_ext_mic_pin(struct hda_codec *codec)
3551{
3552 struct alc_spec *spec = codec->spec;
3553 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3554 hda_nid_t nid;
3555 unsigned int defcfg;
3556 int i;
3557
3558 for (i = 0; i < cfg->num_inputs; i++) {
3559 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3560 continue;
3561 nid = cfg->inputs[i].pin;
3562 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3563 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
3564 continue;
3565 return nid;
3566 }
3567
3568 return 0;
3569}
3570
08a978db 3571static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 3572 const struct hda_fixup *fix,
08a978db
DR
3573 int action)
3574{
3575 struct alc_spec *spec = codec->spec;
3576
0db75790 3577 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60
CCC
3578 int mic_pin = find_ext_mic_pin(codec);
3579 int hp_pin = spec->gen.autocfg.hp_pins[0];
3580
3581 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 3582 return;
bde7bc60 3583 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 3584 }
08a978db 3585}
693b613d 3586
3e0d611b
DH
3587static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
3588 const struct hda_fixup *fix,
3589 int action)
3590{
3591 struct alc_spec *spec = codec->spec;
3592 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
3593 int i;
3594
3595 /* The mic boosts on level 2 and 3 are too noisy
3596 on the internal mic input.
3597 Therefore limit the boost to 0 or 1. */
3598
3599 if (action != HDA_FIXUP_ACT_PROBE)
3600 return;
3601
3602 for (i = 0; i < cfg->num_inputs; i++) {
3603 hda_nid_t nid = cfg->inputs[i].pin;
3604 unsigned int defcfg;
3605 if (cfg->inputs[i].type != AUTO_PIN_MIC)
3606 continue;
3607 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3608 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
3609 continue;
3610
3611 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
3612 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
3613 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
3614 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
3615 (0 << AC_AMPCAP_MUTE_SHIFT));
3616 }
3617}
3618
cd217a63
KY
3619static void alc283_hp_automute_hook(struct hda_codec *codec,
3620 struct hda_jack_tbl *jack)
3621{
3622 struct alc_spec *spec = codec->spec;
3623 int vref;
3624
3625 msleep(200);
3626 snd_hda_gen_hp_automute(codec, jack);
3627
3628 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3629
3630 msleep(600);
3631 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3632 vref);
3633}
3634
3635static void alc283_chromebook_caps(struct hda_codec *codec)
3636{
3637 snd_hda_override_wcaps(codec, 0x03, 0);
3638}
3639
3640static void alc283_fixup_chromebook(struct hda_codec *codec,
3641 const struct hda_fixup *fix, int action)
3642{
3643 struct alc_spec *spec = codec->spec;
3644 int val;
3645
3646 switch (action) {
3647 case HDA_FIXUP_ACT_PRE_PROBE:
3648 alc283_chromebook_caps(codec);
d2e92709
TI
3649 /* Disable AA-loopback as it causes white noise */
3650 spec->gen.mixer_nid = 0;
cd217a63 3651 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
3652 break;
3653 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
3654 /* MIC2-VREF control */
3655 /* Set to manual mode */
3656 val = alc_read_coef_idx(codec, 0x06);
3657 alc_write_coef_idx(codec, 0x06, val & ~0x000c);
068fd3a0
KY
3658 /* Enable Line1 input control by verb */
3659 val = alc_read_coef_idx(codec, 0x1a);
3660 alc_write_coef_idx(codec, 0x1a, val | (1 << 4));
cd217a63
KY
3661 break;
3662 }
3663}
3664
7bba2157
TI
3665/* mute tablet speaker pin (0x14) via dock plugging in addition */
3666static void asus_tx300_automute(struct hda_codec *codec)
3667{
3668 struct alc_spec *spec = codec->spec;
3669 snd_hda_gen_update_outputs(codec);
3670 if (snd_hda_jack_detect(codec, 0x1b))
3671 spec->gen.mute_bits |= (1ULL << 0x14);
3672}
3673
3674static void alc282_fixup_asus_tx300(struct hda_codec *codec,
3675 const struct hda_fixup *fix, int action)
3676{
3677 struct alc_spec *spec = codec->spec;
3678 /* TX300 needs to set up GPIO2 for the speaker amp */
3679 static const struct hda_verb gpio2_verbs[] = {
3680 { 0x01, AC_VERB_SET_GPIO_MASK, 0x04 },
3681 { 0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04 },
3682 { 0x01, AC_VERB_SET_GPIO_DATA, 0x04 },
3683 {}
3684 };
3685 static const struct hda_pintbl dock_pins[] = {
3686 { 0x1b, 0x21114000 }, /* dock speaker pin */
3687 {}
3688 };
3689 struct snd_kcontrol *kctl;
3690
3691 switch (action) {
3692 case HDA_FIXUP_ACT_PRE_PROBE:
3693 snd_hda_add_verbs(codec, gpio2_verbs);
3694 snd_hda_apply_pincfgs(codec, dock_pins);
3695 spec->gen.auto_mute_via_amp = 1;
3696 spec->gen.automute_hook = asus_tx300_automute;
3697 snd_hda_jack_detect_enable_callback(codec, 0x1b,
3698 HDA_GEN_HP_EVENT,
3699 snd_hda_gen_hp_automute);
3700 break;
3701 case HDA_FIXUP_ACT_BUILD:
3702 /* this is a bit tricky; give more sane names for the main
3703 * (tablet) speaker and the dock speaker, respectively
3704 */
3705 kctl = snd_hda_find_mixer_ctl(codec, "Speaker Playback Switch");
3706 if (kctl)
3707 strcpy(kctl->id.name, "Dock Speaker Playback Switch");
3708 kctl = snd_hda_find_mixer_ctl(codec, "Bass Speaker Playback Switch");
3709 if (kctl)
3710 strcpy(kctl->id.name, "Speaker Playback Switch");
3711 break;
3712 }
3713}
3714
338cae56
DH
3715static void alc290_fixup_mono_speakers(struct hda_codec *codec,
3716 const struct hda_fixup *fix, int action)
3717{
3718 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3719 /* Remove DAC node 0x03, as it seems to be
3720 giving mono output */
3721 snd_hda_override_wcaps(codec, 0x03, 0);
3722}
3723
b67ae3f1
DH
3724#if IS_ENABLED(CONFIG_THINKPAD_ACPI)
3725
3726#include <linux/thinkpad_acpi.h>
2793769f 3727#include <acpi/acpi.h>
b67ae3f1
DH
3728
3729static int (*led_set_func)(int, bool);
3730
2793769f
DH
3731static acpi_status acpi_check_cb(acpi_handle handle, u32 lvl, void *context,
3732 void **rv)
3733{
3734 bool *found = context;
3735 *found = true;
3736 return AE_OK;
3737}
3738
3739static bool is_thinkpad(struct hda_codec *codec)
3740{
3741 bool found = false;
3742 if (codec->subsystem_id >> 16 != 0x17aa)
3743 return false;
3744 if (ACPI_SUCCESS(acpi_get_devices("LEN0068", acpi_check_cb, &found, NULL)) && found)
3745 return true;
3746 found = false;
3747 return ACPI_SUCCESS(acpi_get_devices("IBM0068", acpi_check_cb, &found, NULL)) && found;
3748}
3749
b67ae3f1
DH
3750static void update_tpacpi_mute_led(void *private_data, int enabled)
3751{
3752 if (led_set_func)
3753 led_set_func(TPACPI_LED_MUTE, !enabled);
3754}
3755
3756static void update_tpacpi_micmute_led(struct hda_codec *codec,
3757 struct snd_ctl_elem_value *ucontrol)
3758{
3759 if (!ucontrol || !led_set_func)
3760 return;
3761 if (strcmp("Capture Switch", ucontrol->id.name) == 0 && ucontrol->id.index == 0) {
3762 /* TODO: How do I verify if it's a mono or stereo here? */
3763 bool val = ucontrol->value.integer.value[0] || ucontrol->value.integer.value[1];
3764 led_set_func(TPACPI_LED_MICMUTE, !val);
3765 }
3766}
3767
3768static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3769 const struct hda_fixup *fix, int action)
3770{
3771 struct alc_spec *spec = codec->spec;
3772 bool removefunc = false;
3773
3774 if (action == HDA_FIXUP_ACT_PROBE) {
2793769f
DH
3775 if (!is_thinkpad(codec))
3776 return;
b67ae3f1
DH
3777 if (!led_set_func)
3778 led_set_func = symbol_request(tpacpi_led_set);
3779 if (!led_set_func) {
3780 snd_printk(KERN_WARNING "Failed to find thinkpad-acpi symbol tpacpi_led_set\n");
3781 return;
3782 }
3783
3784 removefunc = true;
3785 if (led_set_func(TPACPI_LED_MUTE, false) >= 0) {
3786 spec->gen.vmaster_mute.hook = update_tpacpi_mute_led;
3787 removefunc = false;
3788 }
3789 if (led_set_func(TPACPI_LED_MICMUTE, false) >= 0) {
3790 if (spec->gen.num_adc_nids > 1)
3791 snd_printdd("Skipping micmute LED control due to several ADCs");
3792 else {
3793 spec->gen.cap_sync_hook = update_tpacpi_micmute_led;
3794 removefunc = false;
3795 }
3796 }
3797 }
3798
3799 if (led_set_func && (action == HDA_FIXUP_ACT_FREE || removefunc)) {
3800 symbol_put(tpacpi_led_set);
3801 led_set_func = NULL;
3802 }
3803}
3804
3805#else
3806
3807static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
3808 const struct hda_fixup *fix, int action)
3809{
3810}
3811
3812#endif
3813
1d045db9
TI
3814enum {
3815 ALC269_FIXUP_SONY_VAIO,
3816 ALC275_FIXUP_SONY_VAIO_GPIO2,
3817 ALC269_FIXUP_DELL_M101Z,
3818 ALC269_FIXUP_SKU_IGNORE,
3819 ALC269_FIXUP_ASUS_G73JW,
3820 ALC269_FIXUP_LENOVO_EAPD,
3821 ALC275_FIXUP_SONY_HWEQ,
3822 ALC271_FIXUP_DMIC,
017f2a10 3823 ALC269_FIXUP_PCM_44K,
adabb3ec 3824 ALC269_FIXUP_STEREO_DMIC,
7c478f03 3825 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
3826 ALC269_FIXUP_QUANTA_MUTE,
3827 ALC269_FIXUP_LIFEBOOK,
a4297b5d
TI
3828 ALC269_FIXUP_AMIC,
3829 ALC269_FIXUP_DMIC,
3830 ALC269VB_FIXUP_AMIC,
3831 ALC269VB_FIXUP_DMIC,
08fb0d0e 3832 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 3833 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 3834 ALC269_FIXUP_HP_MUTE_LED_MIC2,
9f5c6faf 3835 ALC269_FIXUP_HP_GPIO_LED,
693b613d 3836 ALC269_FIXUP_INV_DMIC,
108cc108 3837 ALC269_FIXUP_LENOVO_DOCK,
88cfcf86 3838 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 3839 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
3840 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
3841 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 3842 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
73bdd597
DH
3843 ALC269_FIXUP_HEADSET_MODE,
3844 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
d240d1dc
DH
3845 ALC269_FIXUP_ASUS_X101_FUNC,
3846 ALC269_FIXUP_ASUS_X101_VERB,
3847 ALC269_FIXUP_ASUS_X101,
08a978db
DR
3848 ALC271_FIXUP_AMIC_MIC2,
3849 ALC271_FIXUP_HP_GATE_MIC_JACK,
42397004 3850 ALC269_FIXUP_ACER_AC700,
3e0d611b 3851 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 3852 ALC269VB_FIXUP_ASUS_ZENBOOK,
8e35cd4a 3853 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 3854 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 3855 ALC283_FIXUP_CHROME_BOOK,
7bba2157 3856 ALC282_FIXUP_ASUS_TX300,
1bb3e062 3857 ALC283_FIXUP_INT_MIC,
338cae56 3858 ALC290_FIXUP_MONO_SPEAKERS,
b67ae3f1 3859 ALC269_FIXUP_THINKPAD_ACPI,
9a22a8f5
KY
3860 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
3861 ALC255_FIXUP_HEADSET_MODE,
f1d4e28b
KY
3862};
3863
1727a771 3864static const struct hda_fixup alc269_fixups[] = {
1d045db9 3865 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
3866 .type = HDA_FIXUP_PINCTLS,
3867 .v.pins = (const struct hda_pintbl[]) {
3868 {0x19, PIN_VREFGRD},
1d045db9
TI
3869 {}
3870 }
f1d4e28b 3871 },
1d045db9 3872 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
1727a771 3873 .type = HDA_FIXUP_VERBS,
1d045db9
TI
3874 .v.verbs = (const struct hda_verb[]) {
3875 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
3876 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
3877 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
3878 { }
3879 },
3880 .chained = true,
3881 .chain_id = ALC269_FIXUP_SONY_VAIO
3882 },
3883 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 3884 .type = HDA_FIXUP_VERBS,
1d045db9
TI
3885 .v.verbs = (const struct hda_verb[]) {
3886 /* Enables internal speaker */
3887 {0x20, AC_VERB_SET_COEF_INDEX, 13},
3888 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
3889 {}
3890 }
3891 },
3892 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 3893 .type = HDA_FIXUP_FUNC,
23d30f28 3894 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
3895 },
3896 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
3897 .type = HDA_FIXUP_PINS,
3898 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
3899 { 0x17, 0x99130111 }, /* subwoofer */
3900 { }
3901 }
3902 },
3903 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 3904 .type = HDA_FIXUP_VERBS,
1d045db9
TI
3905 .v.verbs = (const struct hda_verb[]) {
3906 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
3907 {}
3908 }
3909 },
3910 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 3911 .type = HDA_FIXUP_FUNC,
1d045db9
TI
3912 .v.func = alc269_fixup_hweq,
3913 .chained = true,
3914 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
3915 },
3916 [ALC271_FIXUP_DMIC] = {
1727a771 3917 .type = HDA_FIXUP_FUNC,
1d045db9 3918 .v.func = alc271_fixup_dmic,
f1d4e28b 3919 },
017f2a10 3920 [ALC269_FIXUP_PCM_44K] = {
1727a771 3921 .type = HDA_FIXUP_FUNC,
017f2a10 3922 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
3923 .chained = true,
3924 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 3925 },
adabb3ec 3926 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 3927 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
3928 .v.func = alc269_fixup_stereo_dmic,
3929 },
7c478f03
DH
3930 [ALC269_FIXUP_HEADSET_MIC] = {
3931 .type = HDA_FIXUP_FUNC,
3932 .v.func = alc269_fixup_headset_mic,
3933 },
24519911 3934 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 3935 .type = HDA_FIXUP_FUNC,
24519911
TI
3936 .v.func = alc269_fixup_quanta_mute,
3937 },
3938 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
3939 .type = HDA_FIXUP_PINS,
3940 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
3941 { 0x1a, 0x2101103f }, /* dock line-out */
3942 { 0x1b, 0x23a11040 }, /* dock mic-in */
3943 { }
3944 },
3945 .chained = true,
3946 .chain_id = ALC269_FIXUP_QUANTA_MUTE
3947 },
a4297b5d 3948 [ALC269_FIXUP_AMIC] = {
1727a771
TI
3949 .type = HDA_FIXUP_PINS,
3950 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
3951 { 0x14, 0x99130110 }, /* speaker */
3952 { 0x15, 0x0121401f }, /* HP out */
3953 { 0x18, 0x01a19c20 }, /* mic */
3954 { 0x19, 0x99a3092f }, /* int-mic */
3955 { }
3956 },
3957 },
3958 [ALC269_FIXUP_DMIC] = {
1727a771
TI
3959 .type = HDA_FIXUP_PINS,
3960 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
3961 { 0x12, 0x99a3092f }, /* int-mic */
3962 { 0x14, 0x99130110 }, /* speaker */
3963 { 0x15, 0x0121401f }, /* HP out */
3964 { 0x18, 0x01a19c20 }, /* mic */
3965 { }
3966 },
3967 },
3968 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
3969 .type = HDA_FIXUP_PINS,
3970 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
3971 { 0x14, 0x99130110 }, /* speaker */
3972 { 0x18, 0x01a19c20 }, /* mic */
3973 { 0x19, 0x99a3092f }, /* int-mic */
3974 { 0x21, 0x0121401f }, /* HP out */
3975 { }
3976 },
3977 },
2267ea97 3978 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
3979 .type = HDA_FIXUP_PINS,
3980 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
3981 { 0x12, 0x99a3092f }, /* int-mic */
3982 { 0x14, 0x99130110 }, /* speaker */
3983 { 0x18, 0x01a19c20 }, /* mic */
3984 { 0x21, 0x0121401f }, /* HP out */
3985 { }
3986 },
3987 },
08fb0d0e 3988 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 3989 .type = HDA_FIXUP_FUNC,
08fb0d0e 3990 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 3991 },
d06ac143
DH
3992 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
3993 .type = HDA_FIXUP_FUNC,
3994 .v.func = alc269_fixup_hp_mute_led_mic1,
3995 },
08fb0d0e 3996 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 3997 .type = HDA_FIXUP_FUNC,
08fb0d0e 3998 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 3999 },
9f5c6faf
TI
4000 [ALC269_FIXUP_HP_GPIO_LED] = {
4001 .type = HDA_FIXUP_FUNC,
4002 .v.func = alc269_fixup_hp_gpio_led,
4003 },
693b613d 4004 [ALC269_FIXUP_INV_DMIC] = {
1727a771 4005 .type = HDA_FIXUP_FUNC,
6e72aa5f 4006 .v.func = alc_fixup_inv_dmic_0x12,
693b613d 4007 },
108cc108 4008 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
4009 .type = HDA_FIXUP_PINS,
4010 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
4011 { 0x19, 0x23a11040 }, /* dock mic */
4012 { 0x1b, 0x2121103f }, /* dock headphone */
4013 { }
4014 },
4015 .chained = true,
4016 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
4017 },
4018 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 4019 .type = HDA_FIXUP_FUNC,
108cc108 4020 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
4021 .chained = true,
4022 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 4023 },
73bdd597
DH
4024 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4025 .type = HDA_FIXUP_PINS,
4026 .v.pins = (const struct hda_pintbl[]) {
4027 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4028 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4029 { }
4030 },
4031 .chained = true,
4032 .chain_id = ALC269_FIXUP_HEADSET_MODE
4033 },
4034 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
4035 .type = HDA_FIXUP_PINS,
4036 .v.pins = (const struct hda_pintbl[]) {
4037 { 0x16, 0x21014020 }, /* dock line out */
4038 { 0x19, 0x21a19030 }, /* dock mic */
4039 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4040 { }
4041 },
4042 .chained = true,
4043 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4044 },
338cae56
DH
4045 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
4046 .type = HDA_FIXUP_PINS,
4047 .v.pins = (const struct hda_pintbl[]) {
4048 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4049 { }
4050 },
4051 .chained = true,
4052 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
4053 },
73bdd597
DH
4054 [ALC269_FIXUP_HEADSET_MODE] = {
4055 .type = HDA_FIXUP_FUNC,
4056 .v.func = alc_fixup_headset_mode,
4057 },
4058 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
4059 .type = HDA_FIXUP_FUNC,
4060 .v.func = alc_fixup_headset_mode_no_hp_mic,
4061 },
88cfcf86
DH
4062 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
4063 .type = HDA_FIXUP_PINS,
4064 .v.pins = (const struct hda_pintbl[]) {
4065 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4066 { }
4067 },
fbc78ad6
DH
4068 .chained = true,
4069 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 4070 },
d240d1dc
DH
4071 [ALC269_FIXUP_ASUS_X101_FUNC] = {
4072 .type = HDA_FIXUP_FUNC,
4073 .v.func = alc269_fixup_x101_headset_mic,
4074 },
4075 [ALC269_FIXUP_ASUS_X101_VERB] = {
4076 .type = HDA_FIXUP_VERBS,
4077 .v.verbs = (const struct hda_verb[]) {
4078 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4079 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
4080 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
4081 { }
4082 },
4083 .chained = true,
4084 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
4085 },
4086 [ALC269_FIXUP_ASUS_X101] = {
4087 .type = HDA_FIXUP_PINS,
4088 .v.pins = (const struct hda_pintbl[]) {
4089 { 0x18, 0x04a1182c }, /* Headset mic */
4090 { }
4091 },
4092 .chained = true,
4093 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
4094 },
08a978db 4095 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
4096 .type = HDA_FIXUP_PINS,
4097 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
4098 { 0x14, 0x99130110 }, /* speaker */
4099 { 0x19, 0x01a19c20 }, /* mic */
4100 { 0x1b, 0x99a7012f }, /* int-mic */
4101 { 0x21, 0x0121401f }, /* HP out */
4102 { }
4103 },
4104 },
4105 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 4106 .type = HDA_FIXUP_FUNC,
08a978db
DR
4107 .v.func = alc271_hp_gate_mic_jack,
4108 .chained = true,
4109 .chain_id = ALC271_FIXUP_AMIC_MIC2,
4110 },
42397004
DR
4111 [ALC269_FIXUP_ACER_AC700] = {
4112 .type = HDA_FIXUP_PINS,
4113 .v.pins = (const struct hda_pintbl[]) {
4114 { 0x12, 0x99a3092f }, /* int-mic */
4115 { 0x14, 0x99130110 }, /* speaker */
4116 { 0x18, 0x03a11c20 }, /* mic */
4117 { 0x1e, 0x0346101e }, /* SPDIF1 */
4118 { 0x21, 0x0321101f }, /* HP out */
4119 { }
4120 },
4121 .chained = true,
4122 .chain_id = ALC271_FIXUP_DMIC,
4123 },
3e0d611b
DH
4124 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
4125 .type = HDA_FIXUP_FUNC,
4126 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
4127 .chained = true,
4128 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 4129 },
2cede303
OR
4130 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
4131 .type = HDA_FIXUP_FUNC,
4132 .v.func = alc269_fixup_limit_int_mic_boost,
4133 .chained = true,
4134 .chain_id = ALC269VB_FIXUP_DMIC,
4135 },
8e35cd4a
DH
4136 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
4137 .type = HDA_FIXUP_FUNC,
4138 .v.func = alc269_fixup_limit_int_mic_boost,
4139 .chained = true,
4140 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
4141 },
02b504d9
AA
4142 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
4143 .type = HDA_FIXUP_PINS,
4144 .v.pins = (const struct hda_pintbl[]) {
4145 { 0x12, 0x99a3092f }, /* int-mic */
4146 { 0x18, 0x03a11d20 }, /* mic */
4147 { 0x19, 0x411111f0 }, /* Unused bogus pin */
4148 { }
4149 },
4150 },
cd217a63
KY
4151 [ALC283_FIXUP_CHROME_BOOK] = {
4152 .type = HDA_FIXUP_FUNC,
4153 .v.func = alc283_fixup_chromebook,
4154 },
7bba2157
TI
4155 [ALC282_FIXUP_ASUS_TX300] = {
4156 .type = HDA_FIXUP_FUNC,
4157 .v.func = alc282_fixup_asus_tx300,
4158 },
1bb3e062
KY
4159 [ALC283_FIXUP_INT_MIC] = {
4160 .type = HDA_FIXUP_VERBS,
4161 .v.verbs = (const struct hda_verb[]) {
4162 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
4163 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
4164 { }
4165 },
4166 .chained = true,
4167 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
4168 },
338cae56
DH
4169 [ALC290_FIXUP_MONO_SPEAKERS] = {
4170 .type = HDA_FIXUP_FUNC,
4171 .v.func = alc290_fixup_mono_speakers,
4172 .chained = true,
4173 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
4174 },
b67ae3f1
DH
4175 [ALC269_FIXUP_THINKPAD_ACPI] = {
4176 .type = HDA_FIXUP_FUNC,
4177 .v.func = alc_fixup_thinkpad_acpi,
b67ae3f1 4178 },
9a22a8f5
KY
4179 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
4180 .type = HDA_FIXUP_PINS,
4181 .v.pins = (const struct hda_pintbl[]) {
4182 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
4183 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
4184 { }
4185 },
4186 .chained = true,
4187 .chain_id = ALC255_FIXUP_HEADSET_MODE
4188 },
4189 [ALC255_FIXUP_HEADSET_MODE] = {
4190 .type = HDA_FIXUP_FUNC,
4191 .v.func = alc_fixup_headset_mode_alc255,
4192 },
f1d4e28b
KY
4193};
4194
1d045db9 4195static const struct snd_pci_quirk alc269_fixup_tbl[] = {
693b613d
DH
4196 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
4197 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47
DH
4198 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
4199 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
4200 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
4201 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
4202 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
73bdd597
DH
4203 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4204 SND_PCI_QUIRK(0x1028, 0x05be, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4205 SND_PCI_QUIRK(0x1028, 0x05c4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4206 SND_PCI_QUIRK(0x1028, 0x05c5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4207 SND_PCI_QUIRK(0x1028, 0x05c6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4208 SND_PCI_QUIRK(0x1028, 0x05c7, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4209 SND_PCI_QUIRK(0x1028, 0x05c8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4210 SND_PCI_QUIRK(0x1028, 0x05c9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4211 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4212 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
05843c07
KY
4213 SND_PCI_QUIRK(0x1028, 0x05cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4214 SND_PCI_QUIRK(0x1028, 0x05cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
436c4a0c 4215 SND_PCI_QUIRK(0x1028, 0x05de, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
d81bf8cf 4216 SND_PCI_QUIRK(0x1028, 0x05e0, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
73bdd597
DH
4217 SND_PCI_QUIRK(0x1028, 0x05e9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4218 SND_PCI_QUIRK(0x1028, 0x05ea, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4219 SND_PCI_QUIRK(0x1028, 0x05eb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4220 SND_PCI_QUIRK(0x1028, 0x05ec, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4221 SND_PCI_QUIRK(0x1028, 0x05ed, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4222 SND_PCI_QUIRK(0x1028, 0x05ee, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4223 SND_PCI_QUIRK(0x1028, 0x05f3, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4224 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4225 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4226 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3ee2102f 4227 SND_PCI_QUIRK(0x1028, 0x05f8, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
cd6fb679
DH
4228 SND_PCI_QUIRK(0x1028, 0x05f9, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4229 SND_PCI_QUIRK(0x1028, 0x05fb, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
d81bf8cf
DH
4230 SND_PCI_QUIRK(0x1028, 0x0606, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
4231 SND_PCI_QUIRK(0x1028, 0x0608, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
3ee2102f 4232 SND_PCI_QUIRK(0x1028, 0x0609, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
6c29d68a 4233 SND_PCI_QUIRK(0x1028, 0x0613, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
b8362e70 4234 SND_PCI_QUIRK(0x1028, 0x0614, "Dell Inspiron 3135", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
338cae56 4235 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_MONO_SPEAKERS),
9a22a8f5
KY
4236 SND_PCI_QUIRK(0x1028, 0x061f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
4237 SND_PCI_QUIRK(0x1028, 0x063f, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
05843c07
KY
4238 SND_PCI_QUIRK(0x1028, 0x15cc, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
4239 SND_PCI_QUIRK(0x1028, 0x15cd, "Dell X5 Precision", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE),
08fb0d0e 4240 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 4241 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
d06ac143
DH
4242 SND_PCI_QUIRK(0x103c, 0x1973, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
4243 SND_PCI_QUIRK(0x103c, 0x1983, "HP Pavilion", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8e35cd4a 4244 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
cd217a63 4245 SND_PCI_QUIRK(0x103c, 0x21ed, "HP Falco Chromebook", ALC283_FIXUP_CHROME_BOOK),
08fb0d0e 4246 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
7bba2157 4247 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b
DH
4248 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4249 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
2cede303
OR
4250 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
4251 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK),
3e0d611b 4252 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
017f2a10 4253 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
693b613d 4254 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
3e0d611b 4255 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
adabb3ec
TI
4256 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4257 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4258 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4259 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 4260 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
88cfcf86 4261 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
1d045db9
TI
4262 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4263 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4264 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4265 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
24519911 4266 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
1d045db9
TI
4267 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4268 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4269 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4270 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4271 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
707fba3f 4272 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
c8415a48 4273 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
84f98fdf 4274 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 4275 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 4276 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 4277 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
cd5302c0
DH
4278 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4279 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
2793769f 4280 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
a4a9e082
DH
4281 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4282 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 4283 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
cd5302c0
DH
4284 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4285 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
012e7eb1 4286 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
1d045db9 4287 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
2793769f 4288 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
02b504d9 4289 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
a4297b5d 4290
a7f3eedc 4291#if 0
a4297b5d
TI
4292 /* Below is a quirk table taken from the old code.
4293 * Basically the device should work as is without the fixup table.
4294 * If BIOS doesn't give a proper info, enable the corresponding
4295 * fixup entry.
7d7eb9ea 4296 */
a4297b5d
TI
4297 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4298 ALC269_FIXUP_AMIC),
4299 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
4300 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4301 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4302 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4303 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4304 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4305 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4306 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4307 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4308 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4309 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4310 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4311 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4312 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4313 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4314 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4315 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4316 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4317 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4318 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4319 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4320 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4321 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4322 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4323 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4324 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4325 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4326 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4327 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4328 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4329 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4330 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4331 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4332 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4333 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4334 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4335 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4336 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4337 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4338#endif
4339 {}
4340};
4341
1727a771 4342static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
4343 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4344 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
4345 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
4346 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
4347 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 4348 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
108cc108 4349 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
9f5c6faf 4350 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
e32aa85a
DH
4351 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
4352 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
1d045db9 4353 {}
6dda9f4a
KY
4354};
4355
6dda9f4a 4356
546bb678 4357static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 4358{
526af6eb 4359 struct alc_spec *spec = codec->spec;
1d045db9 4360 int val;
ebb83eeb 4361
526af6eb 4362 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 4363 return;
526af6eb 4364
1bb7e43e 4365 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
4366 alc_write_coef_idx(codec, 0xf, 0x960b);
4367 alc_write_coef_idx(codec, 0xe, 0x8817);
4368 }
ebb83eeb 4369
1bb7e43e 4370 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
4371 alc_write_coef_idx(codec, 0xf, 0x960b);
4372 alc_write_coef_idx(codec, 0xe, 0x8814);
4373 }
ebb83eeb 4374
1bb7e43e 4375 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
4376 val = alc_read_coef_idx(codec, 0x04);
4377 /* Power up output pin */
4378 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4379 }
ebb83eeb 4380
1bb7e43e 4381 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
4382 val = alc_read_coef_idx(codec, 0xd);
4383 if ((val & 0x0c00) >> 10 != 0x1) {
4384 /* Capless ramp up clock control */
4385 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4386 }
4387 val = alc_read_coef_idx(codec, 0x17);
4388 if ((val & 0x01c0) >> 6 != 0x4) {
4389 /* Class D power on reset */
4390 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4391 }
4392 }
ebb83eeb 4393
1d045db9
TI
4394 val = alc_read_coef_idx(codec, 0xd); /* Class D */
4395 alc_write_coef_idx(codec, 0xd, val | (1<<14));
bc9f98a9 4396
1d045db9
TI
4397 val = alc_read_coef_idx(codec, 0x4); /* HP */
4398 alc_write_coef_idx(codec, 0x4, val | (1<<11));
1d045db9 4399}
a7f2371f 4400
1d045db9
TI
4401/*
4402 */
1d045db9
TI
4403static int patch_alc269(struct hda_codec *codec)
4404{
4405 struct alc_spec *spec;
3de95173 4406 int err;
f1d4e28b 4407
3de95173 4408 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 4409 if (err < 0)
3de95173
TI
4410 return err;
4411
4412 spec = codec->spec;
08c189f2 4413 spec->gen.shared_mic_vref_pin = 0x18;
e16fb6d1 4414
1727a771 4415 snd_hda_pick_fixup(codec, alc269_fixup_models,
9f720bb9 4416 alc269_fixup_tbl, alc269_fixups);
1727a771 4417 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9f720bb9
HRK
4418
4419 alc_auto_parse_customize_define(codec);
4420
7504b6cd
TI
4421 if (has_cdefine_beep(codec))
4422 spec->gen.beep_nid = 0x01;
4423
065380f0
KY
4424 switch (codec->vendor_id) {
4425 case 0x10ec0269:
1d045db9 4426 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
4427 switch (alc_get_coef0(codec) & 0x00f0) {
4428 case 0x0010:
1d045db9 4429 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 4430 spec->cdefine.platform_type == 1)
20ca0c35 4431 err = alc_codec_rename(codec, "ALC271X");
1d045db9 4432 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
4433 break;
4434 case 0x0020:
e16fb6d1
TI
4435 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4436 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 4437 err = alc_codec_rename(codec, "ALC3202");
1d045db9 4438 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 4439 break;
adcc70b2
KY
4440 case 0x0030:
4441 spec->codec_variant = ALC269_TYPE_ALC269VD;
4442 break;
1bb7e43e 4443 default:
1d045db9 4444 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 4445 }
e16fb6d1
TI
4446 if (err < 0)
4447 goto error;
546bb678 4448 spec->init_hook = alc269_fill_coef;
1d045db9 4449 alc269_fill_coef(codec);
065380f0
KY
4450 break;
4451
4452 case 0x10ec0280:
4453 case 0x10ec0290:
4454 spec->codec_variant = ALC269_TYPE_ALC280;
4455 break;
4456 case 0x10ec0282:
065380f0
KY
4457 spec->codec_variant = ALC269_TYPE_ALC282;
4458 break;
2af02be7
KY
4459 case 0x10ec0233:
4460 case 0x10ec0283:
4461 spec->codec_variant = ALC269_TYPE_ALC283;
4462 spec->shutup = alc283_shutup;
4463 spec->init_hook = alc283_init;
4464 break;
065380f0
KY
4465 case 0x10ec0284:
4466 case 0x10ec0292:
4467 spec->codec_variant = ALC269_TYPE_ALC284;
4468 break;
161ebf29
KY
4469 case 0x10ec0285:
4470 case 0x10ec0293:
4471 spec->codec_variant = ALC269_TYPE_ALC285;
4472 break;
7fc7d047
KY
4473 case 0x10ec0286:
4474 spec->codec_variant = ALC269_TYPE_ALC286;
4475 break;
1d04c9de
KY
4476 case 0x10ec0255:
4477 spec->codec_variant = ALC269_TYPE_ALC255;
4478 break;
1d045db9 4479 }
6dda9f4a 4480
ad60d502 4481 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 4482 spec->has_alc5505_dsp = 1;
ad60d502
KY
4483 spec->init_hook = alc5505_dsp_init;
4484 }
4485
a4297b5d
TI
4486 /* automatic parse from the BIOS config */
4487 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
4488 if (err < 0)
4489 goto error;
6dda9f4a 4490
7504b6cd 4491 if (!spec->gen.no_analog && spec->gen.beep_nid)
1d045db9 4492 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
f1d4e28b 4493
1d045db9 4494 codec->patch_ops = alc_patch_ops;
2a43952a 4495#ifdef CONFIG_PM
ad60d502 4496 codec->patch_ops.suspend = alc269_suspend;
1d045db9
TI
4497 codec->patch_ops.resume = alc269_resume;
4498#endif
c5177c86
KY
4499 if (!spec->shutup)
4500 spec->shutup = alc269_shutup;
ebb83eeb 4501
1727a771 4502 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 4503
1d045db9 4504 return 0;
e16fb6d1
TI
4505
4506 error:
4507 alc_free(codec);
4508 return err;
1d045db9 4509}
f1d4e28b 4510
1d045db9
TI
4511/*
4512 * ALC861
4513 */
622e84cd 4514
1d045db9 4515static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 4516{
1d045db9 4517 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4518 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4519 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
4520}
4521
1d045db9
TI
4522/* Pin config fixes */
4523enum {
e652f4c8
TI
4524 ALC861_FIXUP_FSC_AMILO_PI1505,
4525 ALC861_FIXUP_AMP_VREF_0F,
4526 ALC861_FIXUP_NO_JACK_DETECT,
4527 ALC861_FIXUP_ASUS_A6RP,
1d045db9 4528};
7085ec12 4529
31150f23
TI
4530/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
4531static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 4532 const struct hda_fixup *fix, int action)
31150f23
TI
4533{
4534 struct alc_spec *spec = codec->spec;
4535 unsigned int val;
4536
1727a771 4537 if (action != HDA_FIXUP_ACT_INIT)
31150f23 4538 return;
d3f02d60 4539 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
4540 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
4541 val |= AC_PINCTL_IN_EN;
4542 val |= AC_PINCTL_VREF_50;
cdd03ced 4543 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 4544 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
4545}
4546
e652f4c8
TI
4547/* suppress the jack-detection */
4548static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 4549 const struct hda_fixup *fix, int action)
e652f4c8 4550{
1727a771 4551 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 4552 codec->no_jack_detect = 1;
7d7eb9ea 4553}
e652f4c8 4554
1727a771 4555static const struct hda_fixup alc861_fixups[] = {
e652f4c8 4556 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
4557 .type = HDA_FIXUP_PINS,
4558 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
4559 { 0x0b, 0x0221101f }, /* HP */
4560 { 0x0f, 0x90170310 }, /* speaker */
4561 { }
4562 }
4563 },
e652f4c8 4564 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 4565 .type = HDA_FIXUP_FUNC,
31150f23 4566 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 4567 },
e652f4c8 4568 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 4569 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
4570 .v.func = alc_fixup_no_jack_detect,
4571 },
4572 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 4573 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
4574 .v.func = alc861_fixup_asus_amp_vref_0f,
4575 .chained = true,
4576 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
4577 }
1d045db9 4578};
7085ec12 4579
1d045db9 4580static const struct snd_pci_quirk alc861_fixup_tbl[] = {
e652f4c8
TI
4581 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
4582 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
4583 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
4584 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
4585 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
4586 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
4587 {}
4588};
3af9ee6b 4589
1d045db9
TI
4590/*
4591 */
1d045db9 4592static int patch_alc861(struct hda_codec *codec)
7085ec12 4593{
1d045db9 4594 struct alc_spec *spec;
1d045db9 4595 int err;
7085ec12 4596
3de95173
TI
4597 err = alc_alloc_spec(codec, 0x15);
4598 if (err < 0)
4599 return err;
1d045db9 4600
3de95173 4601 spec = codec->spec;
7504b6cd 4602 spec->gen.beep_nid = 0x23;
1d045db9 4603
1727a771
TI
4604 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4605 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 4606
cb4e4824
TI
4607 /* automatic parse from the BIOS config */
4608 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
4609 if (err < 0)
4610 goto error;
3af9ee6b 4611
7504b6cd 4612 if (!spec->gen.no_analog)
3e6179b8 4613 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
7085ec12 4614
1d045db9 4615 codec->patch_ops = alc_patch_ops;
83012a7c 4616#ifdef CONFIG_PM
cb4e4824 4617 spec->power_hook = alc_power_eapd;
1d045db9
TI
4618#endif
4619
1727a771 4620 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 4621
1d045db9 4622 return 0;
e16fb6d1
TI
4623
4624 error:
4625 alc_free(codec);
4626 return err;
7085ec12
TI
4627}
4628
1d045db9
TI
4629/*
4630 * ALC861-VD support
4631 *
4632 * Based on ALC882
4633 *
4634 * In addition, an independent DAC
4635 */
1d045db9 4636static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 4637{
1d045db9 4638 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4639 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4640 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
4641}
4642
1d045db9 4643enum {
8fdcb6fe
TI
4644 ALC660VD_FIX_ASUS_GPIO1,
4645 ALC861VD_FIX_DALLAS,
1d045db9 4646};
ce764ab2 4647
8fdcb6fe
TI
4648/* exclude VREF80 */
4649static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 4650 const struct hda_fixup *fix, int action)
8fdcb6fe 4651{
1727a771 4652 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
4653 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
4654 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
4655 }
4656}
4657
1727a771 4658static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 4659 [ALC660VD_FIX_ASUS_GPIO1] = {
1727a771 4660 .type = HDA_FIXUP_VERBS,
1d045db9 4661 .v.verbs = (const struct hda_verb[]) {
8fdcb6fe 4662 /* reset GPIO1 */
1d045db9
TI
4663 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4664 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4665 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4666 { }
4667 }
4668 },
8fdcb6fe 4669 [ALC861VD_FIX_DALLAS] = {
1727a771 4670 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
4671 .v.func = alc861vd_fixup_dallas,
4672 },
1d045db9 4673};
ce764ab2 4674
1d045db9 4675static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 4676 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 4677 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 4678 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
4679 {}
4680};
ce764ab2 4681
1d045db9
TI
4682/*
4683 */
1d045db9 4684static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 4685{
1d045db9 4686 struct alc_spec *spec;
cb4e4824 4687 int err;
ce764ab2 4688
3de95173
TI
4689 err = alc_alloc_spec(codec, 0x0b);
4690 if (err < 0)
4691 return err;
1d045db9 4692
3de95173 4693 spec = codec->spec;
7504b6cd 4694 spec->gen.beep_nid = 0x23;
1d045db9 4695
1727a771
TI
4696 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
4697 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 4698
cb4e4824
TI
4699 /* automatic parse from the BIOS config */
4700 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
4701 if (err < 0)
4702 goto error;
ce764ab2 4703
7504b6cd 4704 if (!spec->gen.no_analog)
3e6179b8 4705 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1d045db9 4706
1d045db9
TI
4707 codec->patch_ops = alc_patch_ops;
4708
1d045db9 4709 spec->shutup = alc_eapd_shutup;
1d045db9 4710
1727a771 4711 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 4712
ce764ab2 4713 return 0;
e16fb6d1
TI
4714
4715 error:
4716 alc_free(codec);
4717 return err;
ce764ab2
TI
4718}
4719
1d045db9
TI
4720/*
4721 * ALC662 support
4722 *
4723 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
4724 * configuration. Each pin widget can choose any input DACs and a mixer.
4725 * Each ADC is connected from a mixer of all inputs. This makes possible
4726 * 6-channel independent captures.
4727 *
4728 * In addition, an independent DAC for the multi-playback (not used in this
4729 * driver yet).
4730 */
1d045db9
TI
4731
4732/*
4733 * BIOS auto configuration
4734 */
4735
bc9f98a9
KY
4736static int alc662_parse_auto_config(struct hda_codec *codec)
4737{
4c6d72d1 4738 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4739 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
4740 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4741 const hda_nid_t *ssids;
ee979a14 4742
6227cdce 4743 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
1d87caa6
RK
4744 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670 ||
4745 codec->vendor_id == 0x10ec0671)
3e6179b8 4746 ssids = alc663_ssids;
6227cdce 4747 else
3e6179b8
TI
4748 ssids = alc662_ssids;
4749 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
4750}
4751
6be7948f 4752static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 4753 const struct hda_fixup *fix, int action)
6fc398cb 4754{
9bb1f06f 4755 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 4756 return;
6be7948f
TB
4757 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
4758 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
4759 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
4760 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4761 (0 << AC_AMPCAP_MUTE_SHIFT)))
4762 printk(KERN_WARNING
4763 "hda_codec: failed to override amp caps for NID 0x2\n");
4764}
4765
8e383953
TI
4766static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
4767 { .channels = 2,
4768 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
4769 { .channels = 4,
4770 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
4771 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
4772 { }
4773};
4774
4775/* override the 2.1 chmap */
4776static void alc662_fixup_bass_chmap(struct hda_codec *codec,
4777 const struct hda_fixup *fix, int action)
4778{
4779 if (action == HDA_FIXUP_ACT_BUILD) {
4780 struct alc_spec *spec = codec->spec;
4781 spec->gen.pcm_rec[0].stream[0].chmap = asus_pcm_2_1_chmaps;
4782 }
4783}
4784
6cb3b707 4785enum {
2df03514 4786 ALC662_FIXUP_ASPIRE,
6cb3b707 4787 ALC662_FIXUP_IDEAPAD,
6be7948f 4788 ALC272_FIXUP_MARIO,
d2ebd479 4789 ALC662_FIXUP_CZC_P10T,
94024cd1 4790 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 4791 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
4792 ALC662_FIXUP_ASUS_MODE1,
4793 ALC662_FIXUP_ASUS_MODE2,
4794 ALC662_FIXUP_ASUS_MODE3,
4795 ALC662_FIXUP_ASUS_MODE4,
4796 ALC662_FIXUP_ASUS_MODE5,
4797 ALC662_FIXUP_ASUS_MODE6,
4798 ALC662_FIXUP_ASUS_MODE7,
4799 ALC662_FIXUP_ASUS_MODE8,
1565cc35 4800 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 4801 ALC662_FIXUP_ZOTAC_Z68,
125821ae 4802 ALC662_FIXUP_INV_DMIC,
73bdd597
DH
4803 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
4804 ALC668_FIXUP_HEADSET_MODE,
8e383953 4805 ALC662_FIXUP_BASS_CHMAP,
a30c9aaa
TI
4806 ALC662_FIXUP_BASS_1A,
4807 ALC662_FIXUP_BASS_1A_CHMAP,
6cb3b707
DH
4808};
4809
1727a771 4810static const struct hda_fixup alc662_fixups[] = {
2df03514 4811 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
4812 .type = HDA_FIXUP_PINS,
4813 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
4814 { 0x15, 0x99130112 }, /* subwoofer */
4815 { }
4816 }
4817 },
6cb3b707 4818 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
4819 .type = HDA_FIXUP_PINS,
4820 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
4821 { 0x17, 0x99130112 }, /* subwoofer */
4822 { }
4823 }
4824 },
6be7948f 4825 [ALC272_FIXUP_MARIO] = {
1727a771 4826 .type = HDA_FIXUP_FUNC,
b5bfbc67 4827 .v.func = alc272_fixup_mario,
d2ebd479
AA
4828 },
4829 [ALC662_FIXUP_CZC_P10T] = {
1727a771 4830 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
4831 .v.verbs = (const struct hda_verb[]) {
4832 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4833 {}
4834 }
4835 },
94024cd1 4836 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 4837 .type = HDA_FIXUP_FUNC,
23d30f28 4838 .v.func = alc_fixup_sku_ignore,
c6b35874 4839 },
e59ea3ed 4840 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
4841 .type = HDA_FIXUP_PINS,
4842 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
4843 { 0x14, 0x0221201f }, /* HP out */
4844 { }
4845 },
4846 .chained = true,
4847 .chain_id = ALC662_FIXUP_SKU_IGNORE
4848 },
53c334ad 4849 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
4850 .type = HDA_FIXUP_PINS,
4851 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4852 { 0x14, 0x99130110 }, /* speaker */
4853 { 0x18, 0x01a19c20 }, /* mic */
4854 { 0x19, 0x99a3092f }, /* int-mic */
4855 { 0x21, 0x0121401f }, /* HP out */
4856 { }
4857 },
4858 .chained = true,
4859 .chain_id = ALC662_FIXUP_SKU_IGNORE
4860 },
4861 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
4862 .type = HDA_FIXUP_PINS,
4863 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
4864 { 0x14, 0x99130110 }, /* speaker */
4865 { 0x18, 0x01a19820 }, /* mic */
4866 { 0x19, 0x99a3092f }, /* int-mic */
4867 { 0x1b, 0x0121401f }, /* HP out */
4868 { }
4869 },
53c334ad
TI
4870 .chained = true,
4871 .chain_id = ALC662_FIXUP_SKU_IGNORE
4872 },
4873 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
4874 .type = HDA_FIXUP_PINS,
4875 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4876 { 0x14, 0x99130110 }, /* speaker */
4877 { 0x15, 0x0121441f }, /* HP */
4878 { 0x18, 0x01a19840 }, /* mic */
4879 { 0x19, 0x99a3094f }, /* int-mic */
4880 { 0x21, 0x01211420 }, /* HP2 */
4881 { }
4882 },
4883 .chained = true,
4884 .chain_id = ALC662_FIXUP_SKU_IGNORE
4885 },
4886 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
4887 .type = HDA_FIXUP_PINS,
4888 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4889 { 0x14, 0x99130110 }, /* speaker */
4890 { 0x16, 0x99130111 }, /* speaker */
4891 { 0x18, 0x01a19840 }, /* mic */
4892 { 0x19, 0x99a3094f }, /* int-mic */
4893 { 0x21, 0x0121441f }, /* HP */
4894 { }
4895 },
4896 .chained = true,
4897 .chain_id = ALC662_FIXUP_SKU_IGNORE
4898 },
4899 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
4900 .type = HDA_FIXUP_PINS,
4901 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4902 { 0x14, 0x99130110 }, /* speaker */
4903 { 0x15, 0x0121441f }, /* HP */
4904 { 0x16, 0x99130111 }, /* speaker */
4905 { 0x18, 0x01a19840 }, /* mic */
4906 { 0x19, 0x99a3094f }, /* int-mic */
4907 { }
4908 },
4909 .chained = true,
4910 .chain_id = ALC662_FIXUP_SKU_IGNORE
4911 },
4912 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
4913 .type = HDA_FIXUP_PINS,
4914 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4915 { 0x14, 0x99130110 }, /* speaker */
4916 { 0x15, 0x01211420 }, /* HP2 */
4917 { 0x18, 0x01a19840 }, /* mic */
4918 { 0x19, 0x99a3094f }, /* int-mic */
4919 { 0x1b, 0x0121441f }, /* HP */
4920 { }
4921 },
4922 .chained = true,
4923 .chain_id = ALC662_FIXUP_SKU_IGNORE
4924 },
4925 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
4926 .type = HDA_FIXUP_PINS,
4927 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4928 { 0x14, 0x99130110 }, /* speaker */
4929 { 0x17, 0x99130111 }, /* speaker */
4930 { 0x18, 0x01a19840 }, /* mic */
4931 { 0x19, 0x99a3094f }, /* int-mic */
4932 { 0x1b, 0x01214020 }, /* HP */
4933 { 0x21, 0x0121401f }, /* HP */
4934 { }
4935 },
4936 .chained = true,
4937 .chain_id = ALC662_FIXUP_SKU_IGNORE
4938 },
4939 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
4940 .type = HDA_FIXUP_PINS,
4941 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
4942 { 0x14, 0x99130110 }, /* speaker */
4943 { 0x12, 0x99a30970 }, /* int-mic */
4944 { 0x15, 0x01214020 }, /* HP */
4945 { 0x17, 0x99130111 }, /* speaker */
4946 { 0x18, 0x01a19840 }, /* mic */
4947 { 0x21, 0x0121401f }, /* HP */
4948 { }
4949 },
4950 .chained = true,
4951 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 4952 },
1565cc35 4953 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 4954 .type = HDA_FIXUP_FUNC,
1565cc35
TI
4955 .v.func = alc_fixup_no_jack_detect,
4956 },
edfe3bfc 4957 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
4958 .type = HDA_FIXUP_PINS,
4959 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
4960 { 0x1b, 0x02214020 }, /* Front HP */
4961 { }
4962 }
4963 },
125821ae 4964 [ALC662_FIXUP_INV_DMIC] = {
1727a771 4965 .type = HDA_FIXUP_FUNC,
6e72aa5f 4966 .v.func = alc_fixup_inv_dmic_0x12,
125821ae 4967 },
73bdd597
DH
4968 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
4969 .type = HDA_FIXUP_PINS,
4970 .v.pins = (const struct hda_pintbl[]) {
4971 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
4972 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
4973 { }
4974 },
4975 .chained = true,
4976 .chain_id = ALC668_FIXUP_HEADSET_MODE
4977 },
4978 [ALC668_FIXUP_HEADSET_MODE] = {
4979 .type = HDA_FIXUP_FUNC,
4980 .v.func = alc_fixup_headset_mode_alc668,
4981 },
8e383953
TI
4982 [ALC662_FIXUP_BASS_CHMAP] = {
4983 .type = HDA_FIXUP_FUNC,
4984 .v.func = alc662_fixup_bass_chmap,
4985 .chained = true,
4986 .chain_id = ALC662_FIXUP_ASUS_MODE4
4987 },
a30c9aaa
TI
4988 [ALC662_FIXUP_BASS_1A] = {
4989 .type = HDA_FIXUP_PINS,
4990 .v.pins = (const struct hda_pintbl[]) {
4991 {0x1a, 0x80106111}, /* bass speaker */
4992 {}
4993 },
4994 },
4995 [ALC662_FIXUP_BASS_1A_CHMAP] = {
4996 .type = HDA_FIXUP_FUNC,
4997 .v.func = alc662_fixup_bass_chmap,
4998 .chained = true,
4999 .chain_id = ALC662_FIXUP_BASS_1A,
5000 },
6cb3b707
DH
5001};
5002
a9111321 5003static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 5004 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 5005 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
a6c47a85 5006 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 5007 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 5008 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 5009 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 5010 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
73bdd597
DH
5011 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
5012 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
09d2014f 5013 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 5014 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 5015 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
a30c9aaa 5016 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_BASS_1A_CHMAP),
8e383953
TI
5017 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_CHMAP),
5018 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_CHMAP),
1565cc35 5019 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 5020 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 5021 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
d4118588 5022 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 5023 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
edfe3bfc 5024 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
d2ebd479 5025 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
53c334ad
TI
5026
5027#if 0
5028 /* Below is a quirk table taken from the old code.
5029 * Basically the device should work as is without the fixup table.
5030 * If BIOS doesn't give a proper info, enable the corresponding
5031 * fixup entry.
7d7eb9ea 5032 */
53c334ad
TI
5033 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5034 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5035 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5036 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5037 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5038 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5039 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5040 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5041 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5042 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5043 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5044 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5045 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5046 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5047 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5048 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5049 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5050 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5051 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5052 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5053 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5054 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5055 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5056 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5057 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5058 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5059 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5060 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5061 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5062 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5063 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5064 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5065 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5066 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5067 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5068 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5069 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5070 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5071 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5072 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5073 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5074 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5075 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5076 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5077 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5078 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5079 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5080 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5081 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5082 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5083#endif
6cb3b707
DH
5084 {}
5085};
5086
1727a771 5087static const struct hda_model_fixup alc662_fixup_models[] = {
6be7948f 5088 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
53c334ad
TI
5089 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5090 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5091 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5092 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5093 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5094 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5095 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5096 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
6e72aa5f 5097 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
e32aa85a 5098 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
6be7948f
TB
5099 {}
5100};
6cb3b707 5101
8663ff75
KY
5102static void alc662_fill_coef(struct hda_codec *codec)
5103{
5104 int val, coef;
5105
5106 coef = alc_get_coef0(codec);
5107
5108 switch (codec->vendor_id) {
5109 case 0x10ec0662:
5110 if ((coef & 0x00f0) == 0x0030) {
5111 val = alc_read_coef_idx(codec, 0x4); /* EAPD Ctrl */
5112 alc_write_coef_idx(codec, 0x4, val & ~(1<<10));
5113 }
5114 break;
5115 case 0x10ec0272:
5116 case 0x10ec0273:
5117 case 0x10ec0663:
5118 case 0x10ec0665:
5119 case 0x10ec0670:
5120 case 0x10ec0671:
5121 case 0x10ec0672:
5122 val = alc_read_coef_idx(codec, 0xd); /* EAPD Ctrl */
5123 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5124 break;
5125 }
5126}
6cb3b707 5127
1d045db9
TI
5128/*
5129 */
bc9f98a9
KY
5130static int patch_alc662(struct hda_codec *codec)
5131{
5132 struct alc_spec *spec;
3de95173 5133 int err;
bc9f98a9 5134
3de95173
TI
5135 err = alc_alloc_spec(codec, 0x0b);
5136 if (err < 0)
5137 return err;
bc9f98a9 5138
3de95173 5139 spec = codec->spec;
1f0f4b80 5140
53c334ad
TI
5141 /* handle multiple HPs as is */
5142 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5143
2c3bf9ab
TI
5144 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5145
8663ff75
KY
5146 spec->init_hook = alc662_fill_coef;
5147 alc662_fill_coef(codec);
5148
1727a771 5149 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 5150 alc662_fixup_tbl, alc662_fixups);
1727a771 5151 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
5152
5153 alc_auto_parse_customize_define(codec);
5154
7504b6cd
TI
5155 if (has_cdefine_beep(codec))
5156 spec->gen.beep_nid = 0x01;
5157
1bb7e43e 5158 if ((alc_get_coef0(codec) & (1 << 14)) &&
e16fb6d1
TI
5159 codec->bus->pci->subsystem_vendor == 0x1025 &&
5160 spec->cdefine.platform_type == 1) {
6134b1a2
WY
5161 err = alc_codec_rename(codec, "ALC272X");
5162 if (err < 0)
e16fb6d1 5163 goto error;
20ca0c35 5164 }
274693f3 5165
b9c5106c
TI
5166 /* automatic parse from the BIOS config */
5167 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
5168 if (err < 0)
5169 goto error;
bc9f98a9 5170
7504b6cd 5171 if (!spec->gen.no_analog && spec->gen.beep_nid) {
da00c244
KY
5172 switch (codec->vendor_id) {
5173 case 0x10ec0662:
5174 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5175 break;
5176 case 0x10ec0272:
5177 case 0x10ec0663:
5178 case 0x10ec0665:
9ad54547 5179 case 0x10ec0668:
da00c244
KY
5180 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5181 break;
5182 case 0x10ec0273:
5183 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5184 break;
5185 }
cec27c89 5186 }
2134ea4f 5187
bc9f98a9 5188 codec->patch_ops = alc_patch_ops;
1c716153 5189 spec->shutup = alc_eapd_shutup;
6cb3b707 5190
1727a771 5191 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 5192
bc9f98a9 5193 return 0;
801f49d3 5194
e16fb6d1
TI
5195 error:
5196 alc_free(codec);
5197 return err;
b478b998
KY
5198}
5199
d1eb57f4
KY
5200/*
5201 * ALC680 support
5202 */
d1eb57f4 5203
d1eb57f4
KY
5204static int alc680_parse_auto_config(struct hda_codec *codec)
5205{
3e6179b8 5206 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
5207}
5208
d1eb57f4 5209/*
d1eb57f4 5210 */
d1eb57f4
KY
5211static int patch_alc680(struct hda_codec *codec)
5212{
d1eb57f4
KY
5213 int err;
5214
1f0f4b80 5215 /* ALC680 has no aa-loopback mixer */
3de95173
TI
5216 err = alc_alloc_spec(codec, 0);
5217 if (err < 0)
5218 return err;
1f0f4b80 5219
1ebec5f2
TI
5220 /* automatic parse from the BIOS config */
5221 err = alc680_parse_auto_config(codec);
5222 if (err < 0) {
5223 alc_free(codec);
5224 return err;
d1eb57f4
KY
5225 }
5226
d1eb57f4 5227 codec->patch_ops = alc_patch_ops;
d1eb57f4
KY
5228
5229 return 0;
5230}
5231
1da177e4
LT
5232/*
5233 * patch entries
5234 */
a9111321 5235static const struct hda_codec_preset snd_hda_preset_realtek[] = {
296f0338 5236 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
ba4c4d0a 5237 { .id = 0x10ec0231, .name = "ALC231", .patch = patch_alc269 },
84dfd0ac 5238 { .id = 0x10ec0233, .name = "ALC233", .patch = patch_alc269 },
1d04c9de 5239 { .id = 0x10ec0255, .name = "ALC255", .patch = patch_alc269 },
1da177e4 5240 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
df694daa 5241 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
f6a92248 5242 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
a361d84b 5243 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
f6a92248 5244 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
ebb83eeb 5245 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
01afd41f 5246 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
ebb83eeb 5247 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
296f0338 5248 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
befae82e 5249 { .id = 0x10ec0280, .name = "ALC280", .patch = patch_alc269 },
4e01ec63 5250 { .id = 0x10ec0282, .name = "ALC282", .patch = patch_alc269 },
7ff34ad8 5251 { .id = 0x10ec0283, .name = "ALC283", .patch = patch_alc269 },
065380f0 5252 { .id = 0x10ec0284, .name = "ALC284", .patch = patch_alc269 },
161ebf29 5253 { .id = 0x10ec0285, .name = "ALC285", .patch = patch_alc269 },
7fc7d047 5254 { .id = 0x10ec0286, .name = "ALC286", .patch = patch_alc269 },
7ff34ad8 5255 { .id = 0x10ec0290, .name = "ALC290", .patch = patch_alc269 },
af02dde8 5256 { .id = 0x10ec0292, .name = "ALC292", .patch = patch_alc269 },
161ebf29 5257 { .id = 0x10ec0293, .name = "ALC293", .patch = patch_alc269 },
f32610ed 5258 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
bc9f98a9 5259 .patch = patch_alc861 },
f32610ed
JS
5260 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5261 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5262 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
bc9f98a9 5263 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
4953550a 5264 .patch = patch_alc882 },
bc9f98a9
KY
5265 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5266 .patch = patch_alc662 },
cc667a72
DH
5267 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5268 .patch = patch_alc662 },
6dda9f4a 5269 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
cec27c89 5270 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
19a62823 5271 { .id = 0x10ec0668, .name = "ALC668", .patch = patch_alc662 },
6227cdce 5272 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
1d87caa6 5273 { .id = 0x10ec0671, .name = "ALC671", .patch = patch_alc662 },
d1eb57f4 5274 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
f32610ed 5275 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
1da177e4 5276 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
4953550a 5277 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
669faba2 5278 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
4953550a 5279 .patch = patch_alc882 },
cb308f97 5280 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
4953550a 5281 .patch = patch_alc882 },
df694daa 5282 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
e16fb6d1 5283 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
4442608d 5284 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
4953550a 5285 .patch = patch_alc882 },
e16fb6d1 5286 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
4953550a 5287 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
274693f3 5288 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
e16fb6d1 5289 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
19a62823 5290 { .id = 0x10ec0900, .name = "ALC1150", .patch = patch_alc882 },
1da177e4
LT
5291 {} /* terminator */
5292};
1289e9e8
TI
5293
5294MODULE_ALIAS("snd-hda-codec-id:10ec*");
5295
5296MODULE_LICENSE("GPL");
5297MODULE_DESCRIPTION("Realtek HD-audio codec");
5298
5299static struct hda_codec_preset_list realtek_list = {
5300 .preset = snd_hda_preset_realtek,
5301 .owner = THIS_MODULE,
5302};
5303
5304static int __init patch_realtek_init(void)
5305{
5306 return snd_hda_add_codec_preset(&realtek_list);
5307}
5308
5309static void __exit patch_realtek_exit(void)
5310{
5311 snd_hda_delete_codec_preset(&realtek_list);
5312}
5313
5314module_init(patch_realtek_init)
5315module_exit(patch_realtek_exit)