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