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