]> git.ipfire.org Git - thirdparty/linux.git/blame - sound/pci/hda/patch_realtek.c
ALSA: docs: Update about the new PCM sync_stop ops
[thirdparty/linux.git] / sound / pci / hda / patch_realtek.c
CommitLineData
d0fa1179 1// SPDX-License-Identifier: GPL-2.0-or-later
1da177e4
LT
2/*
3 * Universal Interface for Intel High Definition Audio Codec
4 *
1d045db9 5 * HD audio interface patch for Realtek ALC codecs
1da177e4 6 *
df694daa
KY
7 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
8 * PeiSen Hou <pshou@realtek.com.tw>
1da177e4 9 * Takashi Iwai <tiwai@suse.de>
409a3e98 10 * Jonathan Woithe <jwoithe@just42.net>
1da177e4
LT
11 */
12
1da177e4
LT
13#include <linux/init.h>
14#include <linux/delay.h>
15#include <linux/slab.h>
16#include <linux/pci.h>
08fb0d0e 17#include <linux/dmi.h>
da155d5b 18#include <linux/module.h>
33f4acd3 19#include <linux/input.h>
1da177e4 20#include <sound/core.h>
9ad0e496 21#include <sound/jack.h>
be57bfff 22#include <sound/hda_codec.h>
1da177e4 23#include "hda_local.h"
23d30f28 24#include "hda_auto_parser.h"
1835a0f9 25#include "hda_jack.h"
08c189f2 26#include "hda_generic.h"
1da177e4 27
cd63a5ff
TI
28/* keep halting ALC5505 DSP, for power saving */
29#define HALT_REALTEK_ALC5505
30
4a79ba34
TI
31/* extra amp-initialization sequence types */
32enum {
1c76aa5f 33 ALC_INIT_UNDEFINED,
4a79ba34
TI
34 ALC_INIT_NONE,
35 ALC_INIT_DEFAULT,
4a79ba34
TI
36};
37
73bdd597
DH
38enum {
39 ALC_HEADSET_MODE_UNKNOWN,
40 ALC_HEADSET_MODE_UNPLUGGED,
41 ALC_HEADSET_MODE_HEADSET,
42 ALC_HEADSET_MODE_MIC,
43 ALC_HEADSET_MODE_HEADPHONE,
44};
45
46enum {
47 ALC_HEADSET_TYPE_UNKNOWN,
48 ALC_HEADSET_TYPE_CTIA,
49 ALC_HEADSET_TYPE_OMTP,
50};
51
c7b60a89
HW
52enum {
53 ALC_KEY_MICMUTE_INDEX,
54};
55
da00c244
KY
56struct alc_customize_define {
57 unsigned int sku_cfg;
58 unsigned char port_connectivity;
59 unsigned char check_sum;
60 unsigned char customization;
61 unsigned char external_amp;
62 unsigned int enable_pcbeep:1;
63 unsigned int platform_type:1;
64 unsigned int swap:1;
65 unsigned int override:1;
90622917 66 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
67};
68
1da177e4 69struct alc_spec {
08c189f2 70 struct hda_gen_spec gen; /* must be at head */
23d30f28 71
1da177e4 72 /* codec parameterization */
da00c244 73 struct alc_customize_define cdefine;
08c189f2 74 unsigned int parse_flags; /* flag for snd_hda_parse_pin_defcfg() */
834be88d 75
5579cd6f
TI
76 /* GPIO bits */
77 unsigned int gpio_mask;
78 unsigned int gpio_dir;
79 unsigned int gpio_data;
215c850c 80 bool gpio_write_delay; /* add a delay before writing gpio_data */
5579cd6f 81
08fb0d0e
TI
82 /* mute LED for HP laptops, see alc269_fixup_mic_mute_hook() */
83 int mute_led_polarity;
84 hda_nid_t mute_led_nid;
9c5dc3bf 85 hda_nid_t cap_mute_led_nid;
08fb0d0e 86
0f32fd19
TI
87 unsigned int gpio_mute_led_mask;
88 unsigned int gpio_mic_led_mask;
9f5c6faf 89
73bdd597
DH
90 hda_nid_t headset_mic_pin;
91 hda_nid_t headphone_mic_pin;
92 int current_headset_mode;
93 int current_headset_type;
94
ae6b813a
TI
95 /* hooks */
96 void (*init_hook)(struct hda_codec *codec);
83012a7c 97#ifdef CONFIG_PM
c97259df 98 void (*power_hook)(struct hda_codec *codec);
f5de24b0 99#endif
1c716153 100 void (*shutup)(struct hda_codec *codec);
70a0976b 101 void (*reboot_notify)(struct hda_codec *codec);
d922b51d 102
4a79ba34 103 int init_amp;
d433a678 104 int codec_variant; /* flag for other variants */
97a26570
KY
105 unsigned int has_alc5505_dsp:1;
106 unsigned int no_depop_delay:1;
693abe11 107 unsigned int done_hp_init:1;
c0ca5ece 108 unsigned int no_shutup_pins:1;
d3ba58bb 109 unsigned int ultra_low_power:1;
e64f14f4 110
2c3bf9ab
TI
111 /* for PLL fix */
112 hda_nid_t pll_nid;
113 unsigned int pll_coef_idx, pll_coef_bit;
1bb7e43e 114 unsigned int coef0;
33f4acd3 115 struct input_dev *kb_dev;
c7b60a89 116 u8 alc_mute_keycode_map[1];
df694daa
KY
117};
118
f2a227cd
TI
119/*
120 * COEF access helper functions
121 */
122
123static int alc_read_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
124 unsigned int coef_idx)
125{
126 unsigned int val;
127
128 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
129 val = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_PROC_COEF, 0);
130 return val;
131}
132
133#define alc_read_coef_idx(codec, coef_idx) \
134 alc_read_coefex_idx(codec, 0x20, coef_idx)
135
136static void alc_write_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
137 unsigned int coef_idx, unsigned int coef_val)
138{
139 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_COEF_INDEX, coef_idx);
140 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PROC_COEF, coef_val);
141}
142
143#define alc_write_coef_idx(codec, coef_idx, coef_val) \
144 alc_write_coefex_idx(codec, 0x20, coef_idx, coef_val)
145
98b24883
TI
146static void alc_update_coefex_idx(struct hda_codec *codec, hda_nid_t nid,
147 unsigned int coef_idx, unsigned int mask,
148 unsigned int bits_set)
149{
150 unsigned int val = alc_read_coefex_idx(codec, nid, coef_idx);
151
152 if (val != -1)
153 alc_write_coefex_idx(codec, nid, coef_idx,
154 (val & ~mask) | bits_set);
155}
156
157#define alc_update_coef_idx(codec, coef_idx, mask, bits_set) \
158 alc_update_coefex_idx(codec, 0x20, coef_idx, mask, bits_set)
159
f2a227cd
TI
160/* a special bypass for COEF 0; read the cached value at the second time */
161static unsigned int alc_get_coef0(struct hda_codec *codec)
162{
163 struct alc_spec *spec = codec->spec;
164
165 if (!spec->coef0)
166 spec->coef0 = alc_read_coef_idx(codec, 0);
167 return spec->coef0;
168}
169
54db6c39
TI
170/* coef writes/updates batch */
171struct coef_fw {
172 unsigned char nid;
173 unsigned char idx;
174 unsigned short mask;
175 unsigned short val;
176};
177
178#define UPDATE_COEFEX(_nid, _idx, _mask, _val) \
179 { .nid = (_nid), .idx = (_idx), .mask = (_mask), .val = (_val) }
180#define WRITE_COEFEX(_nid, _idx, _val) UPDATE_COEFEX(_nid, _idx, -1, _val)
181#define WRITE_COEF(_idx, _val) WRITE_COEFEX(0x20, _idx, _val)
182#define UPDATE_COEF(_idx, _mask, _val) UPDATE_COEFEX(0x20, _idx, _mask, _val)
183
184static void alc_process_coef_fw(struct hda_codec *codec,
185 const struct coef_fw *fw)
186{
187 for (; fw->nid; fw++) {
188 if (fw->mask == (unsigned short)-1)
189 alc_write_coefex_idx(codec, fw->nid, fw->idx, fw->val);
190 else
191 alc_update_coefex_idx(codec, fw->nid, fw->idx,
192 fw->mask, fw->val);
193 }
194}
195
df694daa 196/*
1d045db9 197 * GPIO setup tables, used in initialization
df694daa 198 */
5579cd6f 199
bc9f98a9 200/* Enable GPIO mask and set output */
5579cd6f
TI
201static void alc_setup_gpio(struct hda_codec *codec, unsigned int mask)
202{
203 struct alc_spec *spec = codec->spec;
bc9f98a9 204
5579cd6f
TI
205 spec->gpio_mask |= mask;
206 spec->gpio_dir |= mask;
207 spec->gpio_data |= mask;
208}
bc9f98a9 209
5579cd6f
TI
210static void alc_write_gpio_data(struct hda_codec *codec)
211{
212 struct alc_spec *spec = codec->spec;
213
214 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
215 spec->gpio_data);
216}
217
aaf312de
TI
218static void alc_update_gpio_data(struct hda_codec *codec, unsigned int mask,
219 bool on)
220{
221 struct alc_spec *spec = codec->spec;
222 unsigned int oldval = spec->gpio_data;
223
224 if (on)
225 spec->gpio_data |= mask;
226 else
227 spec->gpio_data &= ~mask;
228 if (oldval != spec->gpio_data)
229 alc_write_gpio_data(codec);
230}
231
5579cd6f
TI
232static void alc_write_gpio(struct hda_codec *codec)
233{
234 struct alc_spec *spec = codec->spec;
235
236 if (!spec->gpio_mask)
237 return;
238
239 snd_hda_codec_write(codec, codec->core.afg, 0,
240 AC_VERB_SET_GPIO_MASK, spec->gpio_mask);
241 snd_hda_codec_write(codec, codec->core.afg, 0,
242 AC_VERB_SET_GPIO_DIRECTION, spec->gpio_dir);
215c850c
TI
243 if (spec->gpio_write_delay)
244 msleep(1);
5579cd6f
TI
245 alc_write_gpio_data(codec);
246}
247
248static void alc_fixup_gpio(struct hda_codec *codec, int action,
249 unsigned int mask)
250{
251 if (action == HDA_FIXUP_ACT_PRE_PROBE)
252 alc_setup_gpio(codec, mask);
253}
254
255static void alc_fixup_gpio1(struct hda_codec *codec,
256 const struct hda_fixup *fix, int action)
257{
258 alc_fixup_gpio(codec, action, 0x01);
259}
260
261static void alc_fixup_gpio2(struct hda_codec *codec,
262 const struct hda_fixup *fix, int action)
263{
264 alc_fixup_gpio(codec, action, 0x02);
265}
266
267static void alc_fixup_gpio3(struct hda_codec *codec,
268 const struct hda_fixup *fix, int action)
269{
270 alc_fixup_gpio(codec, action, 0x03);
271}
bdd148a3 272
ae065f1c
TI
273static void alc_fixup_gpio4(struct hda_codec *codec,
274 const struct hda_fixup *fix, int action)
275{
276 alc_fixup_gpio(codec, action, 0x04);
277}
278
2c3bf9ab
TI
279/*
280 * Fix hardware PLL issue
281 * On some codecs, the analog PLL gating control must be off while
282 * the default value is 1.
283 */
284static void alc_fix_pll(struct hda_codec *codec)
285{
286 struct alc_spec *spec = codec->spec;
2c3bf9ab 287
98b24883
TI
288 if (spec->pll_nid)
289 alc_update_coefex_idx(codec, spec->pll_nid, spec->pll_coef_idx,
290 1 << spec->pll_coef_bit, 0);
2c3bf9ab
TI
291}
292
293static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
294 unsigned int coef_idx, unsigned int coef_bit)
295{
296 struct alc_spec *spec = codec->spec;
297 spec->pll_nid = nid;
298 spec->pll_coef_idx = coef_idx;
299 spec->pll_coef_bit = coef_bit;
300 alc_fix_pll(codec);
301}
302
cf5a2279 303/* update the master volume per volume-knob's unsol event */
1a4f69d5
TI
304static void alc_update_knob_master(struct hda_codec *codec,
305 struct hda_jack_callback *jack)
cf5a2279
TI
306{
307 unsigned int val;
308 struct snd_kcontrol *kctl;
309 struct snd_ctl_elem_value *uctl;
310
311 kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
312 if (!kctl)
313 return;
314 uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
315 if (!uctl)
316 return;
2ebab40e 317 val = snd_hda_codec_read(codec, jack->nid, 0,
cf5a2279
TI
318 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
319 val &= HDA_AMP_VOLMASK;
320 uctl->value.integer.value[0] = val;
321 uctl->value.integer.value[1] = val;
322 kctl->put(kctl, uctl);
323 kfree(uctl);
324}
325
29adc4b9 326static void alc880_unsol_event(struct hda_codec *codec, unsigned int res)
f21d78e2 327{
29adc4b9
DH
328 /* For some reason, the res given from ALC880 is broken.
329 Here we adjust it properly. */
330 snd_hda_jack_unsol_event(codec, res >> 2);
f21d78e2
TI
331}
332
394c97f8
KY
333/* Change EAPD to verb control */
334static void alc_fill_eapd_coef(struct hda_codec *codec)
335{
336 int coef;
337
338 coef = alc_get_coef0(codec);
339
7639a06c 340 switch (codec->core.vendor_id) {
394c97f8
KY
341 case 0x10ec0262:
342 alc_update_coef_idx(codec, 0x7, 0, 1<<5);
343 break;
344 case 0x10ec0267:
345 case 0x10ec0268:
346 alc_update_coef_idx(codec, 0x7, 0, 1<<13);
347 break;
348 case 0x10ec0269:
349 if ((coef & 0x00f0) == 0x0010)
350 alc_update_coef_idx(codec, 0xd, 0, 1<<14);
351 if ((coef & 0x00f0) == 0x0020)
352 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
353 if ((coef & 0x00f0) == 0x0030)
354 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
355 break;
356 case 0x10ec0280:
357 case 0x10ec0284:
358 case 0x10ec0290:
359 case 0x10ec0292:
360 alc_update_coef_idx(codec, 0x4, 1<<15, 0);
361 break;
4231430d 362 case 0x10ec0225:
44be77c5
TI
363 case 0x10ec0295:
364 case 0x10ec0299:
365 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
366 /* fallthrough */
367 case 0x10ec0215:
394c97f8 368 case 0x10ec0233:
ea04a1db 369 case 0x10ec0235:
736f20a7 370 case 0x10ec0236:
394c97f8 371 case 0x10ec0255:
4344aec8 372 case 0x10ec0256:
f429e7e4 373 case 0x10ec0257:
394c97f8
KY
374 case 0x10ec0282:
375 case 0x10ec0283:
376 case 0x10ec0286:
377 case 0x10ec0288:
0a6f0600 378 case 0x10ec0285:
506b62c3 379 case 0x10ec0298:
0a6f0600 380 case 0x10ec0289:
1078bef0 381 case 0x10ec0300:
394c97f8
KY
382 alc_update_coef_idx(codec, 0x10, 1<<9, 0);
383 break;
3aabf94c
KY
384 case 0x10ec0275:
385 alc_update_coef_idx(codec, 0xe, 0, 1<<0);
386 break;
394c97f8
KY
387 case 0x10ec0293:
388 alc_update_coef_idx(codec, 0xa, 1<<13, 0);
389 break;
dcd4f0db
KY
390 case 0x10ec0234:
391 case 0x10ec0274:
392 case 0x10ec0294:
6fbae35a
KY
393 case 0x10ec0700:
394 case 0x10ec0701:
395 case 0x10ec0703:
83629532 396 case 0x10ec0711:
dcd4f0db
KY
397 alc_update_coef_idx(codec, 0x10, 1<<15, 0);
398 break;
394c97f8
KY
399 case 0x10ec0662:
400 if ((coef & 0x00f0) == 0x0030)
401 alc_update_coef_idx(codec, 0x4, 1<<10, 0); /* EAPD Ctrl */
402 break;
403 case 0x10ec0272:
404 case 0x10ec0273:
405 case 0x10ec0663:
406 case 0x10ec0665:
407 case 0x10ec0670:
408 case 0x10ec0671:
409 case 0x10ec0672:
410 alc_update_coef_idx(codec, 0xd, 0, 1<<14); /* EAPD Ctrl */
411 break;
f0778871
KY
412 case 0x10ec0623:
413 alc_update_coef_idx(codec, 0x19, 1<<13, 0);
414 break;
394c97f8
KY
415 case 0x10ec0668:
416 alc_update_coef_idx(codec, 0x7, 3<<13, 0);
417 break;
418 case 0x10ec0867:
419 alc_update_coef_idx(codec, 0x4, 1<<10, 0);
420 break;
421 case 0x10ec0888:
422 if ((coef & 0x00f0) == 0x0020 || (coef & 0x00f0) == 0x0030)
423 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
424 break;
425 case 0x10ec0892:
426 alc_update_coef_idx(codec, 0x7, 1<<5, 0);
427 break;
428 case 0x10ec0899:
429 case 0x10ec0900:
65553b12 430 case 0x10ec1168:
a535ad57 431 case 0x10ec1220:
394c97f8
KY
432 alc_update_coef_idx(codec, 0x7, 1<<1, 0);
433 break;
434 }
435}
436
f9423e7a
KY
437/* additional initialization for ALC888 variants */
438static void alc888_coef_init(struct hda_codec *codec)
439{
1df8874b
KY
440 switch (alc_get_coef0(codec) & 0x00f0) {
441 /* alc888-VA */
442 case 0x00:
443 /* alc888-VB */
444 case 0x10:
445 alc_update_coef_idx(codec, 7, 0, 0x2030); /* Turn EAPD to High */
446 break;
447 }
87a8c370
JK
448}
449
3fb4a508
TI
450/* turn on/off EAPD control (only if available) */
451static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
452{
453 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
454 return;
455 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
456 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
457 on ? 2 : 0);
458}
459
691f1fcc
TI
460/* turn on/off EAPD controls of the codec */
461static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
462{
463 /* We currently only handle front, HP */
39fa84e9 464 static hda_nid_t pins[] = {
af95b414 465 0x0f, 0x10, 0x14, 0x15, 0x17, 0
39fa84e9
TI
466 };
467 hda_nid_t *p;
468 for (p = pins; *p; p++)
469 set_eapd(codec, *p, on);
691f1fcc
TI
470}
471
dad3197d
KY
472static int find_ext_mic_pin(struct hda_codec *codec);
473
474static void alc_headset_mic_no_shutup(struct hda_codec *codec)
475{
476 const struct hda_pincfg *pin;
477 int mic_pin = find_ext_mic_pin(codec);
478 int i;
479
480 /* don't shut up pins when unloading the driver; otherwise it breaks
481 * the default pin setup at the next load of the driver
482 */
483 if (codec->bus->shutdown)
484 return;
485
486 snd_array_for_each(&codec->init_pins, i, pin) {
487 /* use read here for syncing after issuing each verb */
488 if (pin->nid != mic_pin)
489 snd_hda_codec_read(codec, pin->nid, 0,
490 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
491 }
492
493 codec->pins_shutup = 1;
494}
495
c0ca5ece
TI
496static void alc_shutup_pins(struct hda_codec *codec)
497{
498 struct alc_spec *spec = codec->spec;
499
dad3197d
KY
500 switch (codec->core.vendor_id) {
501 case 0x10ec0286:
502 case 0x10ec0288:
503 case 0x10ec0298:
504 alc_headset_mic_no_shutup(codec);
505 break;
506 default:
507 if (!spec->no_shutup_pins)
508 snd_hda_shutup_pins(codec);
509 break;
510 }
c0ca5ece
TI
511}
512
1c716153 513/* generic shutup callback;
4ce8e6a5 514 * just turning off EAPD and a little pause for avoiding pop-noise
1c716153
TI
515 */
516static void alc_eapd_shutup(struct hda_codec *codec)
517{
97a26570
KY
518 struct alc_spec *spec = codec->spec;
519
1c716153 520 alc_auto_setup_eapd(codec, false);
97a26570
KY
521 if (!spec->no_depop_delay)
522 msleep(200);
c0ca5ece 523 alc_shutup_pins(codec);
1c716153
TI
524}
525
1d045db9 526/* generic EAPD initialization */
4a79ba34 527static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 528{
39fa84e9 529 alc_auto_setup_eapd(codec, true);
5579cd6f 530 alc_write_gpio(codec);
4a79ba34 531 switch (type) {
4a79ba34 532 case ALC_INIT_DEFAULT:
7639a06c 533 switch (codec->core.vendor_id) {
c9b58006 534 case 0x10ec0260:
98b24883 535 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x2010);
c9b58006 536 break;
c9b58006
KY
537 case 0x10ec0880:
538 case 0x10ec0882:
539 case 0x10ec0883:
540 case 0x10ec0885:
1df8874b 541 alc_update_coef_idx(codec, 7, 0, 0x2030);
c9b58006 542 break;
f9423e7a 543 case 0x10ec0888:
4a79ba34 544 alc888_coef_init(codec);
f9423e7a 545 break;
bc9f98a9 546 }
4a79ba34
TI
547 break;
548 }
549}
550
35a39f98
TI
551/* get a primary headphone pin if available */
552static hda_nid_t alc_get_hp_pin(struct alc_spec *spec)
553{
554 if (spec->gen.autocfg.hp_pins[0])
555 return spec->gen.autocfg.hp_pins[0];
556 if (spec->gen.autocfg.line_out_type == AC_JACK_HP_OUT)
557 return spec->gen.autocfg.line_out_pins[0];
558 return 0;
559}
08c189f2 560
1d045db9 561/*
08c189f2 562 * Realtek SSID verification
1d045db9 563 */
42cf0d01 564
08c189f2
TI
565/* Could be any non-zero and even value. When used as fixup, tells
566 * the driver to ignore any present sku defines.
567 */
568#define ALC_FIXUP_SKU_IGNORE (2)
1a1455de 569
08c189f2
TI
570static void alc_fixup_sku_ignore(struct hda_codec *codec,
571 const struct hda_fixup *fix, int action)
1a1455de 572{
1a1455de 573 struct alc_spec *spec = codec->spec;
08c189f2
TI
574 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
575 spec->cdefine.fixup = 1;
576 spec->cdefine.sku_cfg = ALC_FIXUP_SKU_IGNORE;
1a1455de 577 }
1a1455de
TI
578}
579
b5c6611f
ML
580static void alc_fixup_no_depop_delay(struct hda_codec *codec,
581 const struct hda_fixup *fix, int action)
582{
583 struct alc_spec *spec = codec->spec;
584
84d2dc3e 585 if (action == HDA_FIXUP_ACT_PROBE) {
b5c6611f 586 spec->no_depop_delay = 1;
84d2dc3e
ML
587 codec->depop_delay = 0;
588 }
b5c6611f
ML
589}
590
08c189f2 591static int alc_auto_parse_customize_define(struct hda_codec *codec)
4a79ba34 592{
08c189f2
TI
593 unsigned int ass, tmp, i;
594 unsigned nid = 0;
4a79ba34
TI
595 struct alc_spec *spec = codec->spec;
596
08c189f2 597 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
4a79ba34 598
08c189f2
TI
599 if (spec->cdefine.fixup) {
600 ass = spec->cdefine.sku_cfg;
601 if (ass == ALC_FIXUP_SKU_IGNORE)
602 return -1;
603 goto do_sku;
bb35febd
TI
604 }
605
5100cd07
TI
606 if (!codec->bus->pci)
607 return -1;
7639a06c 608 ass = codec->core.subsystem_id & 0xffff;
08c189f2
TI
609 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
610 goto do_sku;
4a79ba34 611
08c189f2 612 nid = 0x1d;
7639a06c 613 if (codec->core.vendor_id == 0x10ec0260)
08c189f2
TI
614 nid = 0x17;
615 ass = snd_hda_codec_get_pincfg(codec, nid);
42cf0d01 616
08c189f2 617 if (!(ass & 1)) {
4e76a883 618 codec_info(codec, "%s: SKU not ready 0x%08x\n",
7639a06c 619 codec->core.chip_name, ass);
08c189f2 620 return -1;
42cf0d01
DH
621 }
622
08c189f2
TI
623 /* check sum */
624 tmp = 0;
625 for (i = 1; i < 16; i++) {
626 if ((ass >> i) & 1)
627 tmp++;
ae8a60a5 628 }
08c189f2
TI
629 if (((ass >> 16) & 0xf) != tmp)
630 return -1;
ae8a60a5 631
da00c244
KY
632 spec->cdefine.port_connectivity = ass >> 30;
633 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
634 spec->cdefine.check_sum = (ass >> 16) & 0xf;
635 spec->cdefine.customization = ass >> 8;
636do_sku:
637 spec->cdefine.sku_cfg = ass;
638 spec->cdefine.external_amp = (ass & 0x38) >> 3;
639 spec->cdefine.platform_type = (ass & 0x4) >> 2;
640 spec->cdefine.swap = (ass & 0x2) >> 1;
641 spec->cdefine.override = ass & 0x1;
642
4e76a883 643 codec_dbg(codec, "SKU: Nid=0x%x sku_cfg=0x%08x\n",
da00c244 644 nid, spec->cdefine.sku_cfg);
4e76a883 645 codec_dbg(codec, "SKU: port_connectivity=0x%x\n",
da00c244 646 spec->cdefine.port_connectivity);
4e76a883
TI
647 codec_dbg(codec, "SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
648 codec_dbg(codec, "SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
649 codec_dbg(codec, "SKU: customization=0x%08x\n", spec->cdefine.customization);
650 codec_dbg(codec, "SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
651 codec_dbg(codec, "SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
652 codec_dbg(codec, "SKU: swap=0x%x\n", spec->cdefine.swap);
653 codec_dbg(codec, "SKU: override=0x%x\n", spec->cdefine.override);
da00c244
KY
654
655 return 0;
656}
657
08c189f2
TI
658/* return the position of NID in the list, or -1 if not found */
659static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
660{
661 int i;
662 for (i = 0; i < nums; i++)
663 if (list[i] == nid)
664 return i;
665 return -1;
666}
1d045db9 667/* return true if the given NID is found in the list */
3af9ee6b
TI
668static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
669{
21268961 670 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
671}
672
4a79ba34
TI
673/* check subsystem ID and set up device-specific initialization;
674 * return 1 if initialized, 0 if invalid SSID
675 */
676/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
677 * 31 ~ 16 : Manufacture ID
678 * 15 ~ 8 : SKU ID
679 * 7 ~ 0 : Assembly ID
680 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
681 */
58c57cfa 682static int alc_subsystem_id(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34
TI
683{
684 unsigned int ass, tmp, i;
685 unsigned nid;
686 struct alc_spec *spec = codec->spec;
687
90622917
DH
688 if (spec->cdefine.fixup) {
689 ass = spec->cdefine.sku_cfg;
690 if (ass == ALC_FIXUP_SKU_IGNORE)
691 return 0;
692 goto do_sku;
693 }
694
7639a06c 695 ass = codec->core.subsystem_id & 0xffff;
5100cd07
TI
696 if (codec->bus->pci &&
697 ass != codec->bus->pci->subsystem_device && (ass & 1))
4a79ba34
TI
698 goto do_sku;
699
700 /* invalid SSID, check the special NID pin defcfg instead */
701 /*
def319f9 702 * 31~30 : port connectivity
4a79ba34
TI
703 * 29~21 : reserve
704 * 20 : PCBEEP input
705 * 19~16 : Check sum (15:1)
706 * 15~1 : Custom
707 * 0 : override
708 */
709 nid = 0x1d;
7639a06c 710 if (codec->core.vendor_id == 0x10ec0260)
4a79ba34
TI
711 nid = 0x17;
712 ass = snd_hda_codec_get_pincfg(codec, nid);
4e76a883
TI
713 codec_dbg(codec,
714 "realtek: No valid SSID, checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 715 ass, nid);
6227cdce 716 if (!(ass & 1))
4a79ba34
TI
717 return 0;
718 if ((ass >> 30) != 1) /* no physical connection */
719 return 0;
720
721 /* check sum */
722 tmp = 0;
723 for (i = 1; i < 16; i++) {
724 if ((ass >> i) & 1)
725 tmp++;
726 }
727 if (((ass >> 16) & 0xf) != tmp)
728 return 0;
729do_sku:
4e76a883 730 codec_dbg(codec, "realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
7639a06c 731 ass & 0xffff, codec->core.vendor_id);
4a79ba34
TI
732 /*
733 * 0 : override
734 * 1 : Swap Jack
735 * 2 : 0 --> Desktop, 1 --> Laptop
736 * 3~5 : External Amplifier control
737 * 7~6 : Reserved
738 */
739 tmp = (ass & 0x38) >> 3; /* external Amp control */
1c76aa5f
TI
740 if (spec->init_amp == ALC_INIT_UNDEFINED) {
741 switch (tmp) {
742 case 1:
5579cd6f 743 alc_setup_gpio(codec, 0x01);
1c76aa5f
TI
744 break;
745 case 3:
5579cd6f 746 alc_setup_gpio(codec, 0x02);
1c76aa5f
TI
747 break;
748 case 7:
5579cd6f 749 alc_setup_gpio(codec, 0x03);
1c76aa5f
TI
750 break;
751 case 5:
752 default:
753 spec->init_amp = ALC_INIT_DEFAULT;
754 break;
755 }
bc9f98a9 756 }
ea1fb29a 757
8c427226 758 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
759 * when the external headphone out jack is plugged"
760 */
8c427226 761 if (!(ass & 0x8000))
4a79ba34 762 return 1;
c9b58006
KY
763 /*
764 * 10~8 : Jack location
765 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
766 * 14~13: Resvered
767 * 15 : 1 --> enable the function "Mute internal speaker
768 * when the external headphone out jack is plugged"
769 */
35a39f98 770 if (!alc_get_hp_pin(spec)) {
01d4825d 771 hda_nid_t nid;
c9b58006 772 tmp = (ass >> 11) & 0x3; /* HP to chassis */
58c57cfa 773 nid = ports[tmp];
08c189f2
TI
774 if (found_in_nid_list(nid, spec->gen.autocfg.line_out_pins,
775 spec->gen.autocfg.line_outs))
3af9ee6b 776 return 1;
08c189f2 777 spec->gen.autocfg.hp_pins[0] = nid;
c9b58006 778 }
4a79ba34
TI
779 return 1;
780}
ea1fb29a 781
3e6179b8
TI
782/* Check the validity of ALC subsystem-id
783 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
784static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 785{
58c57cfa 786 if (!alc_subsystem_id(codec, ports)) {
4a79ba34 787 struct alc_spec *spec = codec->spec;
4e76a883
TI
788 codec_dbg(codec,
789 "realtek: Enable default setup for auto mode as fallback\n");
4a79ba34 790 spec->init_amp = ALC_INIT_DEFAULT;
4a79ba34 791 }
21268961 792}
1a1455de 793
1d045db9 794/*
ef8ef5fb 795 */
f9e336f6 796
9d36a7dc
DH
797static void alc_fixup_inv_dmic(struct hda_codec *codec,
798 const struct hda_fixup *fix, int action)
125821ae
TI
799{
800 struct alc_spec *spec = codec->spec;
668d1e96 801
9d36a7dc 802 spec->gen.inv_dmic_split = 1;
6e72aa5f
TI
803}
804
e9edcee0 805
08c189f2 806static int alc_build_controls(struct hda_codec *codec)
1d045db9 807{
a5cb463a 808 int err;
e9427969 809
08c189f2
TI
810 err = snd_hda_gen_build_controls(codec);
811 if (err < 0)
812 return err;
1da177e4 813
1727a771 814 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_BUILD);
1c4a54b4 815 return 0;
a361d84b
KY
816}
817
a361d84b 818
df694daa 819/*
08c189f2 820 * Common callbacks
df694daa 821 */
a361d84b 822
c9af753f
TI
823static void alc_pre_init(struct hda_codec *codec)
824{
825 alc_fill_eapd_coef(codec);
826}
827
aeac1a0d
KY
828#define is_s3_resume(codec) \
829 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESUME)
c9af753f
TI
830#define is_s4_resume(codec) \
831 ((codec)->core.dev.power.power_state.event == PM_EVENT_RESTORE)
832
08c189f2 833static int alc_init(struct hda_codec *codec)
1d045db9
TI
834{
835 struct alc_spec *spec = codec->spec;
a361d84b 836
c9af753f
TI
837 /* hibernation resume needs the full chip initialization */
838 if (is_s4_resume(codec))
839 alc_pre_init(codec);
840
08c189f2
TI
841 if (spec->init_hook)
842 spec->init_hook(codec);
a361d84b 843
89781d08 844 spec->gen.skip_verbs = 1; /* applied in below */
607ca3bd 845 snd_hda_gen_init(codec);
08c189f2
TI
846 alc_fix_pll(codec);
847 alc_auto_init_amp(codec, spec->init_amp);
89781d08 848 snd_hda_apply_verbs(codec); /* apply verbs here after own init */
3abf2f36 849
1727a771 850 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_INIT);
a361d84b 851
1d045db9
TI
852 return 0;
853}
a361d84b 854
08c189f2 855static inline void alc_shutup(struct hda_codec *codec)
1d045db9
TI
856{
857 struct alc_spec *spec = codec->spec;
a361d84b 858
c7273bd6
TI
859 if (!snd_hda_get_bool_hint(codec, "shutup"))
860 return; /* disabled explicitly by hints */
861
08c189f2
TI
862 if (spec && spec->shutup)
863 spec->shutup(codec);
9bfb2844 864 else
c0ca5ece 865 alc_shutup_pins(codec);
1d045db9
TI
866}
867
70a0976b
TI
868static void alc_reboot_notify(struct hda_codec *codec)
869{
870 struct alc_spec *spec = codec->spec;
871
872 if (spec && spec->reboot_notify)
873 spec->reboot_notify(codec);
874 else
875 alc_shutup(codec);
876}
877
8a02c0cc 878#define alc_free snd_hda_gen_free
2134ea4f 879
08c189f2
TI
880#ifdef CONFIG_PM
881static void alc_power_eapd(struct hda_codec *codec)
1d045db9 882{
08c189f2 883 alc_auto_setup_eapd(codec, false);
1d045db9 884}
2134ea4f 885
08c189f2 886static int alc_suspend(struct hda_codec *codec)
1d045db9
TI
887{
888 struct alc_spec *spec = codec->spec;
08c189f2
TI
889 alc_shutup(codec);
890 if (spec && spec->power_hook)
891 spec->power_hook(codec);
a361d84b
KY
892 return 0;
893}
08c189f2 894#endif
a361d84b 895
08c189f2
TI
896#ifdef CONFIG_PM
897static int alc_resume(struct hda_codec *codec)
1d045db9 898{
97a26570
KY
899 struct alc_spec *spec = codec->spec;
900
901 if (!spec->no_depop_delay)
902 msleep(150); /* to avoid pop noise */
08c189f2 903 codec->patch_ops.init(codec);
eeecd9d1 904 regcache_sync(codec->core.regmap);
08c189f2
TI
905 hda_call_check_power_status(codec, 0x01);
906 return 0;
1d045db9 907}
08c189f2 908#endif
f6a92248 909
1d045db9 910/*
1d045db9 911 */
08c189f2
TI
912static const struct hda_codec_ops alc_patch_ops = {
913 .build_controls = alc_build_controls,
914 .build_pcms = snd_hda_gen_build_pcms,
915 .init = alc_init,
916 .free = alc_free,
917 .unsol_event = snd_hda_jack_unsol_event,
918#ifdef CONFIG_PM
919 .resume = alc_resume,
08c189f2 920 .suspend = alc_suspend,
fce52a3b 921 .check_power_status = snd_hda_gen_check_power_status,
08c189f2 922#endif
70a0976b 923 .reboot_notify = alc_reboot_notify,
08c189f2 924};
f6a92248 925
f53281e6 926
ded255be 927#define alc_codec_rename(codec, name) snd_hda_codec_set_name(codec, name)
e01bf509 928
e4770629 929/*
4b016931 930 * Rename codecs appropriately from COEF value or subvendor id
e4770629 931 */
08c189f2
TI
932struct alc_codec_rename_table {
933 unsigned int vendor_id;
934 unsigned short coef_mask;
935 unsigned short coef_bits;
936 const char *name;
937};
84898e87 938
4b016931
KY
939struct alc_codec_rename_pci_table {
940 unsigned int codec_vendor_id;
941 unsigned short pci_subvendor;
942 unsigned short pci_subdevice;
943 const char *name;
944};
945
08c189f2 946static struct alc_codec_rename_table rename_tbl[] = {
e6e5f7ad 947 { 0x10ec0221, 0xf00f, 0x1003, "ALC231" },
08c189f2
TI
948 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
949 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
950 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
951 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
952 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
953 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
954 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
955 { 0x10ec0269, 0x00f0, 0x0030, "ALC269VD" },
e6e5f7ad 956 { 0x10ec0662, 0xffff, 0x4020, "ALC656" },
08c189f2
TI
957 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
958 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
959 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
960 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
961 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
962 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
963 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
964 { } /* terminator */
965};
84898e87 966
4b016931
KY
967static struct alc_codec_rename_pci_table rename_pci_tbl[] = {
968 { 0x10ec0280, 0x1028, 0, "ALC3220" },
969 { 0x10ec0282, 0x1028, 0, "ALC3221" },
970 { 0x10ec0283, 0x1028, 0, "ALC3223" },
193177de 971 { 0x10ec0288, 0x1028, 0, "ALC3263" },
4b016931 972 { 0x10ec0292, 0x1028, 0, "ALC3226" },
193177de 973 { 0x10ec0293, 0x1028, 0, "ALC3235" },
4b016931
KY
974 { 0x10ec0255, 0x1028, 0, "ALC3234" },
975 { 0x10ec0668, 0x1028, 0, "ALC3661" },
e6e5f7ad
KY
976 { 0x10ec0275, 0x1028, 0, "ALC3260" },
977 { 0x10ec0899, 0x1028, 0, "ALC3861" },
2c674fac 978 { 0x10ec0298, 0x1028, 0, "ALC3266" },
736f20a7 979 { 0x10ec0236, 0x1028, 0, "ALC3204" },
82324502 980 { 0x10ec0256, 0x1028, 0, "ALC3246" },
4231430d 981 { 0x10ec0225, 0x1028, 0, "ALC3253" },
7d727869 982 { 0x10ec0295, 0x1028, 0, "ALC3254" },
28f1f9b2 983 { 0x10ec0299, 0x1028, 0, "ALC3271" },
e6e5f7ad
KY
984 { 0x10ec0670, 0x1025, 0, "ALC669X" },
985 { 0x10ec0676, 0x1025, 0, "ALC679X" },
986 { 0x10ec0282, 0x1043, 0, "ALC3229" },
987 { 0x10ec0233, 0x1043, 0, "ALC3236" },
988 { 0x10ec0280, 0x103c, 0, "ALC3228" },
989 { 0x10ec0282, 0x103c, 0, "ALC3227" },
990 { 0x10ec0286, 0x103c, 0, "ALC3242" },
991 { 0x10ec0290, 0x103c, 0, "ALC3241" },
992 { 0x10ec0668, 0x103c, 0, "ALC3662" },
993 { 0x10ec0283, 0x17aa, 0, "ALC3239" },
994 { 0x10ec0292, 0x17aa, 0, "ALC3232" },
4b016931
KY
995 { } /* terminator */
996};
997
08c189f2 998static int alc_codec_rename_from_preset(struct hda_codec *codec)
1d045db9 999{
08c189f2 1000 const struct alc_codec_rename_table *p;
4b016931 1001 const struct alc_codec_rename_pci_table *q;
60db6b53 1002
08c189f2 1003 for (p = rename_tbl; p->vendor_id; p++) {
7639a06c 1004 if (p->vendor_id != codec->core.vendor_id)
08c189f2
TI
1005 continue;
1006 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
1007 return alc_codec_rename(codec, p->name);
1d045db9 1008 }
4b016931 1009
5100cd07
TI
1010 if (!codec->bus->pci)
1011 return 0;
4b016931 1012 for (q = rename_pci_tbl; q->codec_vendor_id; q++) {
7639a06c 1013 if (q->codec_vendor_id != codec->core.vendor_id)
4b016931
KY
1014 continue;
1015 if (q->pci_subvendor != codec->bus->pci->subsystem_vendor)
1016 continue;
1017 if (!q->pci_subdevice ||
1018 q->pci_subdevice == codec->bus->pci->subsystem_device)
1019 return alc_codec_rename(codec, q->name);
1020 }
1021
08c189f2 1022 return 0;
1d045db9 1023}
f53281e6 1024
e4770629 1025
1d045db9
TI
1026/*
1027 * Digital-beep handlers
1028 */
1029#ifdef CONFIG_SND_HDA_INPUT_BEEP
fea80fae
TI
1030
1031/* additional beep mixers; private_value will be overwritten */
1032static const struct snd_kcontrol_new alc_beep_mixer[] = {
1033 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1034 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1035};
1036
1037/* set up and create beep controls */
1038static int set_beep_amp(struct alc_spec *spec, hda_nid_t nid,
1039 int idx, int dir)
1040{
1041 struct snd_kcontrol_new *knew;
1042 unsigned int beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir);
1043 int i;
1044
1045 for (i = 0; i < ARRAY_SIZE(alc_beep_mixer); i++) {
1046 knew = snd_hda_gen_add_kctl(&spec->gen, NULL,
1047 &alc_beep_mixer[i]);
1048 if (!knew)
1049 return -ENOMEM;
1050 knew->private_value = beep_amp;
1051 }
1052 return 0;
1053}
84898e87 1054
1d045db9 1055static const struct snd_pci_quirk beep_white_list[] = {
7110005e 1056 SND_PCI_QUIRK(0x1043, 0x103c, "ASUS", 1),
a4b7f21d 1057 SND_PCI_QUIRK(0x1043, 0x115d, "ASUS", 1),
1d045db9 1058 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
8554ee40 1059 SND_PCI_QUIRK(0x1043, 0x8376, "EeePC", 1),
1d045db9
TI
1060 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
1061 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
1062 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
78f8baf1 1063 SND_PCI_QUIRK(0x1458, 0xa002, "GA-MA790X", 1),
1d045db9 1064 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
051c78af
TI
1065 /* blacklist -- no beep available */
1066 SND_PCI_QUIRK(0x17aa, 0x309e, "Lenovo ThinkCentre M73", 0),
1067 SND_PCI_QUIRK(0x17aa, 0x30a3, "Lenovo ThinkCentre M93", 0),
1d045db9 1068 {}
fe3eb0a7
KY
1069};
1070
1d045db9
TI
1071static inline int has_cdefine_beep(struct hda_codec *codec)
1072{
1073 struct alc_spec *spec = codec->spec;
1074 const struct snd_pci_quirk *q;
1075 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
1076 if (q)
1077 return q->value;
1078 return spec->cdefine.enable_pcbeep;
1079}
1080#else
fea80fae 1081#define set_beep_amp(spec, nid, idx, dir) 0
1d045db9
TI
1082#define has_cdefine_beep(codec) 0
1083#endif
84898e87 1084
1d045db9
TI
1085/* parse the BIOS configuration and set up the alc_spec */
1086/* return 1 if successful, 0 if the proper config is not found,
1087 * or a negative error code
1088 */
3e6179b8
TI
1089static int alc_parse_auto_config(struct hda_codec *codec,
1090 const hda_nid_t *ignore_nids,
1091 const hda_nid_t *ssid_nids)
1d045db9
TI
1092{
1093 struct alc_spec *spec = codec->spec;
08c189f2 1094 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
1d045db9 1095 int err;
26f5df26 1096
53c334ad
TI
1097 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
1098 spec->parse_flags);
1d045db9
TI
1099 if (err < 0)
1100 return err;
3e6179b8
TI
1101
1102 if (ssid_nids)
1103 alc_ssid_check(codec, ssid_nids);
64154835 1104
08c189f2
TI
1105 err = snd_hda_gen_parse_auto_config(codec, cfg);
1106 if (err < 0)
1107 return err;
070cff4c 1108
1d045db9 1109 return 1;
60db6b53 1110}
f6a92248 1111
3de95173
TI
1112/* common preparation job for alc_spec */
1113static int alc_alloc_spec(struct hda_codec *codec, hda_nid_t mixer_nid)
1114{
1115 struct alc_spec *spec = kzalloc(sizeof(*spec), GFP_KERNEL);
1116 int err;
1117
1118 if (!spec)
1119 return -ENOMEM;
1120 codec->spec = spec;
08c189f2
TI
1121 snd_hda_gen_spec_init(&spec->gen);
1122 spec->gen.mixer_nid = mixer_nid;
1123 spec->gen.own_eapd_ctl = 1;
1098b7c2 1124 codec->single_adc_amp = 1;
08c189f2
TI
1125 /* FIXME: do we need this for all Realtek codec models? */
1126 codec->spdif_status_reset = 1;
225068ab 1127 codec->patch_ops = alc_patch_ops;
3de95173
TI
1128
1129 err = alc_codec_rename_from_preset(codec);
1130 if (err < 0) {
1131 kfree(spec);
1132 return err;
1133 }
1134 return 0;
1135}
1136
3e6179b8
TI
1137static int alc880_parse_auto_config(struct hda_codec *codec)
1138{
1139 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
7d7eb9ea 1140 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3e6179b8
TI
1141 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
1142}
1143
ee3b2969
TI
1144/*
1145 * ALC880 fix-ups
1146 */
1147enum {
411225a0 1148 ALC880_FIXUP_GPIO1,
ee3b2969
TI
1149 ALC880_FIXUP_GPIO2,
1150 ALC880_FIXUP_MEDION_RIM,
dc6af52d 1151 ALC880_FIXUP_LG,
db8a38e5 1152 ALC880_FIXUP_LG_LW25,
f02aab5d 1153 ALC880_FIXUP_W810,
27e917f8 1154 ALC880_FIXUP_EAPD_COEF,
b9368f5c 1155 ALC880_FIXUP_TCL_S700,
cf5a2279
TI
1156 ALC880_FIXUP_VOL_KNOB,
1157 ALC880_FIXUP_FUJITSU,
ba533818 1158 ALC880_FIXUP_F1734,
817de92f 1159 ALC880_FIXUP_UNIWILL,
967b88c4 1160 ALC880_FIXUP_UNIWILL_DIG,
96e225f6 1161 ALC880_FIXUP_Z71V,
487a588d 1162 ALC880_FIXUP_ASUS_W5A,
67b6ec31
TI
1163 ALC880_FIXUP_3ST_BASE,
1164 ALC880_FIXUP_3ST,
1165 ALC880_FIXUP_3ST_DIG,
1166 ALC880_FIXUP_5ST_BASE,
1167 ALC880_FIXUP_5ST,
1168 ALC880_FIXUP_5ST_DIG,
1169 ALC880_FIXUP_6ST_BASE,
1170 ALC880_FIXUP_6ST,
1171 ALC880_FIXUP_6ST_DIG,
5397145f 1172 ALC880_FIXUP_6ST_AUTOMUTE,
ee3b2969
TI
1173};
1174
cf5a2279
TI
1175/* enable the volume-knob widget support on NID 0x21 */
1176static void alc880_fixup_vol_knob(struct hda_codec *codec,
1727a771 1177 const struct hda_fixup *fix, int action)
cf5a2279 1178{
1727a771 1179 if (action == HDA_FIXUP_ACT_PROBE)
62f949bf
TI
1180 snd_hda_jack_detect_enable_callback(codec, 0x21,
1181 alc_update_knob_master);
cf5a2279
TI
1182}
1183
1727a771 1184static const struct hda_fixup alc880_fixups[] = {
411225a0 1185 [ALC880_FIXUP_GPIO1] = {
5579cd6f
TI
1186 .type = HDA_FIXUP_FUNC,
1187 .v.func = alc_fixup_gpio1,
411225a0 1188 },
ee3b2969 1189 [ALC880_FIXUP_GPIO2] = {
5579cd6f
TI
1190 .type = HDA_FIXUP_FUNC,
1191 .v.func = alc_fixup_gpio2,
ee3b2969
TI
1192 },
1193 [ALC880_FIXUP_MEDION_RIM] = {
1727a771 1194 .type = HDA_FIXUP_VERBS,
ee3b2969
TI
1195 .v.verbs = (const struct hda_verb[]) {
1196 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1197 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1198 { }
1199 },
1200 .chained = true,
1201 .chain_id = ALC880_FIXUP_GPIO2,
1202 },
dc6af52d 1203 [ALC880_FIXUP_LG] = {
1727a771
TI
1204 .type = HDA_FIXUP_PINS,
1205 .v.pins = (const struct hda_pintbl[]) {
dc6af52d
TI
1206 /* disable bogus unused pins */
1207 { 0x16, 0x411111f0 },
1208 { 0x18, 0x411111f0 },
1209 { 0x1a, 0x411111f0 },
1210 { }
1211 }
1212 },
db8a38e5
TI
1213 [ALC880_FIXUP_LG_LW25] = {
1214 .type = HDA_FIXUP_PINS,
1215 .v.pins = (const struct hda_pintbl[]) {
1216 { 0x1a, 0x0181344f }, /* line-in */
1217 { 0x1b, 0x0321403f }, /* headphone */
1218 { }
1219 }
1220 },
f02aab5d 1221 [ALC880_FIXUP_W810] = {
1727a771
TI
1222 .type = HDA_FIXUP_PINS,
1223 .v.pins = (const struct hda_pintbl[]) {
f02aab5d
TI
1224 /* disable bogus unused pins */
1225 { 0x17, 0x411111f0 },
1226 { }
1227 },
1228 .chained = true,
1229 .chain_id = ALC880_FIXUP_GPIO2,
1230 },
27e917f8 1231 [ALC880_FIXUP_EAPD_COEF] = {
1727a771 1232 .type = HDA_FIXUP_VERBS,
27e917f8
TI
1233 .v.verbs = (const struct hda_verb[]) {
1234 /* change to EAPD mode */
1235 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1236 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
1237 {}
1238 },
1239 },
b9368f5c 1240 [ALC880_FIXUP_TCL_S700] = {
1727a771 1241 .type = HDA_FIXUP_VERBS,
b9368f5c
TI
1242 .v.verbs = (const struct hda_verb[]) {
1243 /* change to EAPD mode */
1244 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
1245 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
1246 {}
1247 },
1248 .chained = true,
1249 .chain_id = ALC880_FIXUP_GPIO2,
1250 },
cf5a2279 1251 [ALC880_FIXUP_VOL_KNOB] = {
1727a771 1252 .type = HDA_FIXUP_FUNC,
cf5a2279
TI
1253 .v.func = alc880_fixup_vol_knob,
1254 },
1255 [ALC880_FIXUP_FUJITSU] = {
1256 /* override all pins as BIOS on old Amilo is broken */
1727a771
TI
1257 .type = HDA_FIXUP_PINS,
1258 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1259 { 0x14, 0x0121401f }, /* HP */
cf5a2279
TI
1260 { 0x15, 0x99030120 }, /* speaker */
1261 { 0x16, 0x99030130 }, /* bass speaker */
1262 { 0x17, 0x411111f0 }, /* N/A */
1263 { 0x18, 0x411111f0 }, /* N/A */
1264 { 0x19, 0x01a19950 }, /* mic-in */
1265 { 0x1a, 0x411111f0 }, /* N/A */
1266 { 0x1b, 0x411111f0 }, /* N/A */
1267 { 0x1c, 0x411111f0 }, /* N/A */
1268 { 0x1d, 0x411111f0 }, /* N/A */
1269 { 0x1e, 0x01454140 }, /* SPDIF out */
1270 { }
1271 },
1272 .chained = true,
1273 .chain_id = ALC880_FIXUP_VOL_KNOB,
1274 },
ba533818
TI
1275 [ALC880_FIXUP_F1734] = {
1276 /* almost compatible with FUJITSU, but no bass and SPDIF */
1727a771
TI
1277 .type = HDA_FIXUP_PINS,
1278 .v.pins = (const struct hda_pintbl[]) {
bb148bde 1279 { 0x14, 0x0121401f }, /* HP */
ba533818
TI
1280 { 0x15, 0x99030120 }, /* speaker */
1281 { 0x16, 0x411111f0 }, /* N/A */
1282 { 0x17, 0x411111f0 }, /* N/A */
1283 { 0x18, 0x411111f0 }, /* N/A */
1284 { 0x19, 0x01a19950 }, /* mic-in */
1285 { 0x1a, 0x411111f0 }, /* N/A */
1286 { 0x1b, 0x411111f0 }, /* N/A */
1287 { 0x1c, 0x411111f0 }, /* N/A */
1288 { 0x1d, 0x411111f0 }, /* N/A */
1289 { 0x1e, 0x411111f0 }, /* N/A */
1290 { }
1291 },
1292 .chained = true,
1293 .chain_id = ALC880_FIXUP_VOL_KNOB,
1294 },
817de92f
TI
1295 [ALC880_FIXUP_UNIWILL] = {
1296 /* need to fix HP and speaker pins to be parsed correctly */
1727a771
TI
1297 .type = HDA_FIXUP_PINS,
1298 .v.pins = (const struct hda_pintbl[]) {
817de92f
TI
1299 { 0x14, 0x0121411f }, /* HP */
1300 { 0x15, 0x99030120 }, /* speaker */
1301 { 0x16, 0x99030130 }, /* bass speaker */
1302 { }
1303 },
1304 },
967b88c4 1305 [ALC880_FIXUP_UNIWILL_DIG] = {
1727a771
TI
1306 .type = HDA_FIXUP_PINS,
1307 .v.pins = (const struct hda_pintbl[]) {
967b88c4
TI
1308 /* disable bogus unused pins */
1309 { 0x17, 0x411111f0 },
1310 { 0x19, 0x411111f0 },
1311 { 0x1b, 0x411111f0 },
1312 { 0x1f, 0x411111f0 },
1313 { }
1314 }
1315 },
96e225f6 1316 [ALC880_FIXUP_Z71V] = {
1727a771
TI
1317 .type = HDA_FIXUP_PINS,
1318 .v.pins = (const struct hda_pintbl[]) {
96e225f6
TI
1319 /* set up the whole pins as BIOS is utterly broken */
1320 { 0x14, 0x99030120 }, /* speaker */
1321 { 0x15, 0x0121411f }, /* HP */
1322 { 0x16, 0x411111f0 }, /* N/A */
1323 { 0x17, 0x411111f0 }, /* N/A */
1324 { 0x18, 0x01a19950 }, /* mic-in */
1325 { 0x19, 0x411111f0 }, /* N/A */
1326 { 0x1a, 0x01813031 }, /* line-in */
1327 { 0x1b, 0x411111f0 }, /* N/A */
1328 { 0x1c, 0x411111f0 }, /* N/A */
1329 { 0x1d, 0x411111f0 }, /* N/A */
1330 { 0x1e, 0x0144111e }, /* SPDIF */
1331 { }
1332 }
1333 },
487a588d
TI
1334 [ALC880_FIXUP_ASUS_W5A] = {
1335 .type = HDA_FIXUP_PINS,
1336 .v.pins = (const struct hda_pintbl[]) {
1337 /* set up the whole pins as BIOS is utterly broken */
1338 { 0x14, 0x0121411f }, /* HP */
1339 { 0x15, 0x411111f0 }, /* N/A */
1340 { 0x16, 0x411111f0 }, /* N/A */
1341 { 0x17, 0x411111f0 }, /* N/A */
1342 { 0x18, 0x90a60160 }, /* mic */
1343 { 0x19, 0x411111f0 }, /* N/A */
1344 { 0x1a, 0x411111f0 }, /* N/A */
1345 { 0x1b, 0x411111f0 }, /* N/A */
1346 { 0x1c, 0x411111f0 }, /* N/A */
1347 { 0x1d, 0x411111f0 }, /* N/A */
1348 { 0x1e, 0xb743111e }, /* SPDIF out */
1349 { }
1350 },
1351 .chained = true,
1352 .chain_id = ALC880_FIXUP_GPIO1,
1353 },
67b6ec31 1354 [ALC880_FIXUP_3ST_BASE] = {
1727a771
TI
1355 .type = HDA_FIXUP_PINS,
1356 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1357 { 0x14, 0x01014010 }, /* line-out */
1358 { 0x15, 0x411111f0 }, /* N/A */
1359 { 0x16, 0x411111f0 }, /* N/A */
1360 { 0x17, 0x411111f0 }, /* N/A */
1361 { 0x18, 0x01a19c30 }, /* mic-in */
1362 { 0x19, 0x0121411f }, /* HP */
1363 { 0x1a, 0x01813031 }, /* line-in */
1364 { 0x1b, 0x02a19c40 }, /* front-mic */
1365 { 0x1c, 0x411111f0 }, /* N/A */
1366 { 0x1d, 0x411111f0 }, /* N/A */
1367 /* 0x1e is filled in below */
1368 { 0x1f, 0x411111f0 }, /* N/A */
1369 { }
1370 }
1371 },
1372 [ALC880_FIXUP_3ST] = {
1727a771
TI
1373 .type = HDA_FIXUP_PINS,
1374 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1375 { 0x1e, 0x411111f0 }, /* N/A */
1376 { }
1377 },
1378 .chained = true,
1379 .chain_id = ALC880_FIXUP_3ST_BASE,
1380 },
1381 [ALC880_FIXUP_3ST_DIG] = {
1727a771
TI
1382 .type = HDA_FIXUP_PINS,
1383 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1384 { 0x1e, 0x0144111e }, /* SPDIF */
1385 { }
1386 },
1387 .chained = true,
1388 .chain_id = ALC880_FIXUP_3ST_BASE,
1389 },
1390 [ALC880_FIXUP_5ST_BASE] = {
1727a771
TI
1391 .type = HDA_FIXUP_PINS,
1392 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1393 { 0x14, 0x01014010 }, /* front */
1394 { 0x15, 0x411111f0 }, /* N/A */
1395 { 0x16, 0x01011411 }, /* CLFE */
1396 { 0x17, 0x01016412 }, /* surr */
1397 { 0x18, 0x01a19c30 }, /* mic-in */
1398 { 0x19, 0x0121411f }, /* HP */
1399 { 0x1a, 0x01813031 }, /* line-in */
1400 { 0x1b, 0x02a19c40 }, /* front-mic */
1401 { 0x1c, 0x411111f0 }, /* N/A */
1402 { 0x1d, 0x411111f0 }, /* N/A */
1403 /* 0x1e is filled in below */
1404 { 0x1f, 0x411111f0 }, /* N/A */
1405 { }
1406 }
1407 },
1408 [ALC880_FIXUP_5ST] = {
1727a771
TI
1409 .type = HDA_FIXUP_PINS,
1410 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1411 { 0x1e, 0x411111f0 }, /* N/A */
1412 { }
1413 },
1414 .chained = true,
1415 .chain_id = ALC880_FIXUP_5ST_BASE,
1416 },
1417 [ALC880_FIXUP_5ST_DIG] = {
1727a771
TI
1418 .type = HDA_FIXUP_PINS,
1419 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1420 { 0x1e, 0x0144111e }, /* SPDIF */
1421 { }
1422 },
1423 .chained = true,
1424 .chain_id = ALC880_FIXUP_5ST_BASE,
1425 },
1426 [ALC880_FIXUP_6ST_BASE] = {
1727a771
TI
1427 .type = HDA_FIXUP_PINS,
1428 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1429 { 0x14, 0x01014010 }, /* front */
1430 { 0x15, 0x01016412 }, /* surr */
1431 { 0x16, 0x01011411 }, /* CLFE */
1432 { 0x17, 0x01012414 }, /* side */
1433 { 0x18, 0x01a19c30 }, /* mic-in */
1434 { 0x19, 0x02a19c40 }, /* front-mic */
1435 { 0x1a, 0x01813031 }, /* line-in */
1436 { 0x1b, 0x0121411f }, /* HP */
1437 { 0x1c, 0x411111f0 }, /* N/A */
1438 { 0x1d, 0x411111f0 }, /* N/A */
1439 /* 0x1e is filled in below */
1440 { 0x1f, 0x411111f0 }, /* N/A */
1441 { }
1442 }
1443 },
1444 [ALC880_FIXUP_6ST] = {
1727a771
TI
1445 .type = HDA_FIXUP_PINS,
1446 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1447 { 0x1e, 0x411111f0 }, /* N/A */
1448 { }
1449 },
1450 .chained = true,
1451 .chain_id = ALC880_FIXUP_6ST_BASE,
1452 },
1453 [ALC880_FIXUP_6ST_DIG] = {
1727a771
TI
1454 .type = HDA_FIXUP_PINS,
1455 .v.pins = (const struct hda_pintbl[]) {
67b6ec31
TI
1456 { 0x1e, 0x0144111e }, /* SPDIF */
1457 { }
1458 },
1459 .chained = true,
1460 .chain_id = ALC880_FIXUP_6ST_BASE,
1461 },
5397145f
TI
1462 [ALC880_FIXUP_6ST_AUTOMUTE] = {
1463 .type = HDA_FIXUP_PINS,
1464 .v.pins = (const struct hda_pintbl[]) {
1465 { 0x1b, 0x0121401f }, /* HP with jack detect */
1466 { }
1467 },
1468 .chained_before = true,
1469 .chain_id = ALC880_FIXUP_6ST_BASE,
1470 },
ee3b2969
TI
1471};
1472
1473static const struct snd_pci_quirk alc880_fixup_tbl[] = {
f02aab5d 1474 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
487a588d 1475 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS W5A", ALC880_FIXUP_ASUS_W5A),
96e225f6 1476 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
29e3fdcc 1477 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
6538de03 1478 SND_PCI_QUIRK(0x147b, 0x1045, "ABit AA8XE", ALC880_FIXUP_6ST_AUTOMUTE),
29e3fdcc 1479 SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
27e917f8 1480 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
967b88c4 1481 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
ba533818 1482 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
817de92f 1483 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
7833c7e8 1484 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
f02aab5d 1485 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
ee3b2969 1486 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
5397145f 1487 SND_PCI_QUIRK(0x1631, 0xe011, "PB 13201056", ALC880_FIXUP_6ST_AUTOMUTE),
a161574e 1488 SND_PCI_QUIRK(0x1734, 0x107c, "FSC Amilo M1437", ALC880_FIXUP_FUJITSU),
cf5a2279 1489 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
ba533818 1490 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
cf5a2279 1491 SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
dc6af52d
TI
1492 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
1493 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
1494 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
db8a38e5 1495 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_FIXUP_LG_LW25),
b9368f5c 1496 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
67b6ec31
TI
1497
1498 /* Below is the copied entries from alc880_quirks.c.
1499 * It's not quite sure whether BIOS sets the correct pin-config table
1500 * on these machines, thus they are kept to be compatible with
1501 * the old static quirks. Once when it's confirmed to work without
1502 * these overrides, it'd be better to remove.
1503 */
1504 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
1505 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
1506 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
1507 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
1508 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
1509 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
1510 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
1511 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
1512 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
1513 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
1514 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
1515 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
1516 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
1517 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
1518 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
1519 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
1520 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
1521 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
1522 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
1523 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
1524 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
1525 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
1526 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
1527 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1528 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1529 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1530 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1531 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1532 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1533 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
1534 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1535 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1536 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
1537 /* default Intel */
1538 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
1539 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
1540 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
1541 {}
1542};
1543
1727a771 1544static const struct hda_model_fixup alc880_fixup_models[] = {
67b6ec31
TI
1545 {.id = ALC880_FIXUP_3ST, .name = "3stack"},
1546 {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
1547 {.id = ALC880_FIXUP_5ST, .name = "5stack"},
1548 {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
1549 {.id = ALC880_FIXUP_6ST, .name = "6stack"},
1550 {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
5397145f 1551 {.id = ALC880_FIXUP_6ST_AUTOMUTE, .name = "6stack-automute"},
ee3b2969
TI
1552 {}
1553};
1554
1555
1d045db9
TI
1556/*
1557 * OK, here we have finally the patch for ALC880
1558 */
1d045db9 1559static int patch_alc880(struct hda_codec *codec)
60db6b53 1560{
1d045db9 1561 struct alc_spec *spec;
1d045db9 1562 int err;
f6a92248 1563
3de95173
TI
1564 err = alc_alloc_spec(codec, 0x0b);
1565 if (err < 0)
1566 return err;
64154835 1567
3de95173 1568 spec = codec->spec;
08c189f2 1569 spec->gen.need_dac_fix = 1;
7504b6cd 1570 spec->gen.beep_nid = 0x01;
f53281e6 1571
225068ab
TI
1572 codec->patch_ops.unsol_event = alc880_unsol_event;
1573
c9af753f
TI
1574 alc_pre_init(codec);
1575
1727a771 1576 snd_hda_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
67b6ec31 1577 alc880_fixups);
1727a771 1578 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ee3b2969 1579
67b6ec31
TI
1580 /* automatic parse from the BIOS config */
1581 err = alc880_parse_auto_config(codec);
1582 if (err < 0)
1583 goto error;
fe3eb0a7 1584
fea80fae
TI
1585 if (!spec->gen.no_analog) {
1586 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
1587 if (err < 0)
1588 goto error;
1589 }
f53281e6 1590
1727a771 1591 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1592
1d045db9 1593 return 0;
e16fb6d1
TI
1594
1595 error:
1596 alc_free(codec);
1597 return err;
226b1ec8
KY
1598}
1599
1d045db9 1600
60db6b53 1601/*
1d045db9 1602 * ALC260 support
60db6b53 1603 */
1d045db9 1604static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 1605{
1d045db9 1606 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
1607 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
1608 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
1609}
1610
1d045db9
TI
1611/*
1612 * Pin config fixes
1613 */
1614enum {
ca8f0424
TI
1615 ALC260_FIXUP_HP_DC5750,
1616 ALC260_FIXUP_HP_PIN_0F,
1617 ALC260_FIXUP_COEF,
15317ab2 1618 ALC260_FIXUP_GPIO1,
20f7d928
TI
1619 ALC260_FIXUP_GPIO1_TOGGLE,
1620 ALC260_FIXUP_REPLACER,
0a1c4fa2 1621 ALC260_FIXUP_HP_B1900,
118cb4a4 1622 ALC260_FIXUP_KN1,
39aedee7 1623 ALC260_FIXUP_FSC_S7020,
5ebd3bbd 1624 ALC260_FIXUP_FSC_S7020_JWSE,
d08c5ef2 1625 ALC260_FIXUP_VAIO_PINS,
1d045db9
TI
1626};
1627
20f7d928
TI
1628static void alc260_gpio1_automute(struct hda_codec *codec)
1629{
1630 struct alc_spec *spec = codec->spec;
aaf312de
TI
1631
1632 alc_update_gpio_data(codec, 0x01, spec->gen.hp_jack_present);
20f7d928
TI
1633}
1634
1635static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
1727a771 1636 const struct hda_fixup *fix, int action)
20f7d928
TI
1637{
1638 struct alc_spec *spec = codec->spec;
1727a771 1639 if (action == HDA_FIXUP_ACT_PROBE) {
20f7d928
TI
1640 /* although the machine has only one output pin, we need to
1641 * toggle GPIO1 according to the jack state
1642 */
08c189f2
TI
1643 spec->gen.automute_hook = alc260_gpio1_automute;
1644 spec->gen.detect_hp = 1;
1645 spec->gen.automute_speaker = 1;
1646 spec->gen.autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
62f949bf 1647 snd_hda_jack_detect_enable_callback(codec, 0x0f,
08c189f2 1648 snd_hda_gen_hp_automute);
5579cd6f 1649 alc_setup_gpio(codec, 0x01);
20f7d928
TI
1650 }
1651}
1652
118cb4a4 1653static void alc260_fixup_kn1(struct hda_codec *codec,
1727a771 1654 const struct hda_fixup *fix, int action)
118cb4a4
TI
1655{
1656 struct alc_spec *spec = codec->spec;
1727a771 1657 static const struct hda_pintbl pincfgs[] = {
118cb4a4
TI
1658 { 0x0f, 0x02214000 }, /* HP/speaker */
1659 { 0x12, 0x90a60160 }, /* int mic */
1660 { 0x13, 0x02a19000 }, /* ext mic */
1661 { 0x18, 0x01446000 }, /* SPDIF out */
1662 /* disable bogus I/O pins */
1663 { 0x10, 0x411111f0 },
1664 { 0x11, 0x411111f0 },
1665 { 0x14, 0x411111f0 },
1666 { 0x15, 0x411111f0 },
1667 { 0x16, 0x411111f0 },
1668 { 0x17, 0x411111f0 },
1669 { 0x19, 0x411111f0 },
1670 { }
1671 };
1672
1673 switch (action) {
1727a771
TI
1674 case HDA_FIXUP_ACT_PRE_PROBE:
1675 snd_hda_apply_pincfgs(codec, pincfgs);
118cb4a4
TI
1676 spec->init_amp = ALC_INIT_NONE;
1677 break;
1678 }
1679}
1680
39aedee7
TI
1681static void alc260_fixup_fsc_s7020(struct hda_codec *codec,
1682 const struct hda_fixup *fix, int action)
1683{
1684 struct alc_spec *spec = codec->spec;
1c76aa5f 1685 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5ebd3bbd
TI
1686 spec->init_amp = ALC_INIT_NONE;
1687}
39aedee7 1688
5ebd3bbd
TI
1689static void alc260_fixup_fsc_s7020_jwse(struct hda_codec *codec,
1690 const struct hda_fixup *fix, int action)
1691{
1692 struct alc_spec *spec = codec->spec;
1693 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
f811c3cf 1694 spec->gen.add_jack_modes = 1;
5ebd3bbd 1695 spec->gen.hp_mic = 1;
e6e0ee50 1696 }
39aedee7
TI
1697}
1698
1727a771 1699static const struct hda_fixup alc260_fixups[] = {
ca8f0424 1700 [ALC260_FIXUP_HP_DC5750] = {
1727a771
TI
1701 .type = HDA_FIXUP_PINS,
1702 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
1703 { 0x11, 0x90130110 }, /* speaker */
1704 { }
1705 }
1706 },
ca8f0424 1707 [ALC260_FIXUP_HP_PIN_0F] = {
1727a771
TI
1708 .type = HDA_FIXUP_PINS,
1709 .v.pins = (const struct hda_pintbl[]) {
ca8f0424
TI
1710 { 0x0f, 0x01214000 }, /* HP */
1711 { }
1712 }
1713 },
1714 [ALC260_FIXUP_COEF] = {
1727a771 1715 .type = HDA_FIXUP_VERBS,
ca8f0424 1716 .v.verbs = (const struct hda_verb[]) {
e30cf2d2
RM
1717 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1718 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3040 },
ca8f0424
TI
1719 { }
1720 },
ca8f0424 1721 },
15317ab2 1722 [ALC260_FIXUP_GPIO1] = {
5579cd6f
TI
1723 .type = HDA_FIXUP_FUNC,
1724 .v.func = alc_fixup_gpio1,
15317ab2 1725 },
20f7d928 1726 [ALC260_FIXUP_GPIO1_TOGGLE] = {
1727a771 1727 .type = HDA_FIXUP_FUNC,
20f7d928
TI
1728 .v.func = alc260_fixup_gpio1_toggle,
1729 .chained = true,
1730 .chain_id = ALC260_FIXUP_HP_PIN_0F,
1731 },
1732 [ALC260_FIXUP_REPLACER] = {
1727a771 1733 .type = HDA_FIXUP_VERBS,
20f7d928 1734 .v.verbs = (const struct hda_verb[]) {
192a98e2
TI
1735 { 0x1a, AC_VERB_SET_COEF_INDEX, 0x07 },
1736 { 0x1a, AC_VERB_SET_PROC_COEF, 0x3050 },
20f7d928
TI
1737 { }
1738 },
1739 .chained = true,
1740 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
1741 },
0a1c4fa2 1742 [ALC260_FIXUP_HP_B1900] = {
1727a771 1743 .type = HDA_FIXUP_FUNC,
0a1c4fa2
TI
1744 .v.func = alc260_fixup_gpio1_toggle,
1745 .chained = true,
1746 .chain_id = ALC260_FIXUP_COEF,
118cb4a4
TI
1747 },
1748 [ALC260_FIXUP_KN1] = {
1727a771 1749 .type = HDA_FIXUP_FUNC,
118cb4a4
TI
1750 .v.func = alc260_fixup_kn1,
1751 },
39aedee7
TI
1752 [ALC260_FIXUP_FSC_S7020] = {
1753 .type = HDA_FIXUP_FUNC,
1754 .v.func = alc260_fixup_fsc_s7020,
1755 },
5ebd3bbd
TI
1756 [ALC260_FIXUP_FSC_S7020_JWSE] = {
1757 .type = HDA_FIXUP_FUNC,
1758 .v.func = alc260_fixup_fsc_s7020_jwse,
1759 .chained = true,
1760 .chain_id = ALC260_FIXUP_FSC_S7020,
1761 },
d08c5ef2
TI
1762 [ALC260_FIXUP_VAIO_PINS] = {
1763 .type = HDA_FIXUP_PINS,
1764 .v.pins = (const struct hda_pintbl[]) {
1765 /* Pin configs are missing completely on some VAIOs */
1766 { 0x0f, 0x01211020 },
1767 { 0x10, 0x0001003f },
1768 { 0x11, 0x411111f0 },
1769 { 0x12, 0x01a15930 },
1770 { 0x13, 0x411111f0 },
1771 { 0x14, 0x411111f0 },
1772 { 0x15, 0x411111f0 },
1773 { 0x16, 0x411111f0 },
1774 { 0x17, 0x411111f0 },
1775 { 0x18, 0x411111f0 },
1776 { 0x19, 0x411111f0 },
1777 { }
1778 }
1779 },
1d045db9
TI
1780};
1781
1782static const struct snd_pci_quirk alc260_fixup_tbl[] = {
15317ab2 1783 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
ca8f0424 1784 SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
15317ab2 1785 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
ca8f0424 1786 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
0a1c4fa2 1787 SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
d08c5ef2 1788 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_FIXUP_VAIO_PINS),
0f5a5b85 1789 SND_PCI_QUIRK(0x104d, 0x81e2, "Sony VAIO TX", ALC260_FIXUP_HP_PIN_0F),
39aedee7 1790 SND_PCI_QUIRK(0x10cf, 0x1326, "FSC LifeBook S7020", ALC260_FIXUP_FSC_S7020),
b1f58085 1791 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
118cb4a4 1792 SND_PCI_QUIRK(0x152d, 0x0729, "Quanta KN1", ALC260_FIXUP_KN1),
20f7d928 1793 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
ca8f0424 1794 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
1d045db9
TI
1795 {}
1796};
1797
5ebd3bbd
TI
1798static const struct hda_model_fixup alc260_fixup_models[] = {
1799 {.id = ALC260_FIXUP_GPIO1, .name = "gpio1"},
1800 {.id = ALC260_FIXUP_COEF, .name = "coef"},
1801 {.id = ALC260_FIXUP_FSC_S7020, .name = "fujitsu"},
1802 {.id = ALC260_FIXUP_FSC_S7020_JWSE, .name = "fujitsu-jwse"},
1803 {}
1804};
1805
1d045db9
TI
1806/*
1807 */
1d045db9 1808static int patch_alc260(struct hda_codec *codec)
977ddd6b 1809{
1d045db9 1810 struct alc_spec *spec;
c3c2c9e7 1811 int err;
1d045db9 1812
3de95173
TI
1813 err = alc_alloc_spec(codec, 0x07);
1814 if (err < 0)
1815 return err;
1d045db9 1816
3de95173 1817 spec = codec->spec;
ea46c3c8
TI
1818 /* as quite a few machines require HP amp for speaker outputs,
1819 * it's easier to enable it unconditionally; even if it's unneeded,
1820 * it's almost harmless.
1821 */
1822 spec->gen.prefer_hp_amp = 1;
7504b6cd 1823 spec->gen.beep_nid = 0x01;
1d045db9 1824
225068ab
TI
1825 spec->shutup = alc_eapd_shutup;
1826
c9af753f
TI
1827 alc_pre_init(codec);
1828
5ebd3bbd
TI
1829 snd_hda_pick_fixup(codec, alc260_fixup_models, alc260_fixup_tbl,
1830 alc260_fixups);
1727a771 1831 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
977ddd6b 1832
c3c2c9e7
TI
1833 /* automatic parse from the BIOS config */
1834 err = alc260_parse_auto_config(codec);
1835 if (err < 0)
1836 goto error;
977ddd6b 1837
fea80fae
TI
1838 if (!spec->gen.no_analog) {
1839 err = set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
1840 if (err < 0)
1841 goto error;
1842 }
977ddd6b 1843
1727a771 1844 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 1845
1d045db9 1846 return 0;
e16fb6d1
TI
1847
1848 error:
1849 alc_free(codec);
1850 return err;
6981d184
TI
1851}
1852
1d045db9
TI
1853
1854/*
1855 * ALC882/883/885/888/889 support
1856 *
1857 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
1858 * configuration. Each pin widget can choose any input DACs and a mixer.
1859 * Each ADC is connected from a mixer of all inputs. This makes possible
1860 * 6-channel independent captures.
1861 *
1862 * In addition, an independent DAC for the multi-playback (not used in this
1863 * driver yet).
1864 */
1d045db9
TI
1865
1866/*
1867 * Pin config fixes
1868 */
ff818c24 1869enum {
5c0ebfbe
TI
1870 ALC882_FIXUP_ABIT_AW9D_MAX,
1871 ALC882_FIXUP_LENOVO_Y530,
1872 ALC882_FIXUP_PB_M5210,
1873 ALC882_FIXUP_ACER_ASPIRE_7736,
1874 ALC882_FIXUP_ASUS_W90V,
8f239214 1875 ALC889_FIXUP_CD,
b2c53e20 1876 ALC889_FIXUP_FRONT_HP_NO_PRESENCE,
5c0ebfbe 1877 ALC889_FIXUP_VAIO_TT,
0e7cc2e7 1878 ALC888_FIXUP_EEE1601,
177943a3 1879 ALC882_FIXUP_EAPD,
7a6069bf 1880 ALC883_FIXUP_EAPD,
8812c4f9 1881 ALC883_FIXUP_ACER_EAPD,
1a97b7f2
TI
1882 ALC882_FIXUP_GPIO1,
1883 ALC882_FIXUP_GPIO2,
eb844d51 1884 ALC882_FIXUP_GPIO3,
68ef0561
TI
1885 ALC889_FIXUP_COEF,
1886 ALC882_FIXUP_ASUS_W2JC,
c3e837bb
TI
1887 ALC882_FIXUP_ACER_ASPIRE_4930G,
1888 ALC882_FIXUP_ACER_ASPIRE_8930G,
1889 ALC882_FIXUP_ASPIRE_8930G_VERBS,
5671087f 1890 ALC885_FIXUP_MACPRO_GPIO,
02a237b2 1891 ALC889_FIXUP_DAC_ROUTE,
1a97b7f2
TI
1892 ALC889_FIXUP_MBP_VREF,
1893 ALC889_FIXUP_IMAC91_VREF,
e7729a41 1894 ALC889_FIXUP_MBA11_VREF,
0756f09c 1895 ALC889_FIXUP_MBA21_VREF,
c20f31ec 1896 ALC889_FIXUP_MP11_VREF,
9f660a1c 1897 ALC889_FIXUP_MP41_VREF,
6e72aa5f 1898 ALC882_FIXUP_INV_DMIC,
e427c237 1899 ALC882_FIXUP_NO_PRIMARY_HP,
1f0bbf03 1900 ALC887_FIXUP_ASUS_BASS,
eb9ca3ab 1901 ALC887_FIXUP_BASS_CHMAP,
7beb3a6e 1902 ALC1220_FIXUP_GB_DUAL_CODECS,
0202f5cd 1903 ALC1220_FIXUP_CLEVO_P950,
80690a27
RS
1904 ALC1220_FIXUP_CLEVO_PB51ED,
1905 ALC1220_FIXUP_CLEVO_PB51ED_PINS,
ff818c24
TI
1906};
1907
68ef0561 1908static void alc889_fixup_coef(struct hda_codec *codec,
1727a771 1909 const struct hda_fixup *fix, int action)
68ef0561 1910{
1727a771 1911 if (action != HDA_FIXUP_ACT_INIT)
68ef0561 1912 return;
1df8874b 1913 alc_update_coef_idx(codec, 7, 0, 0x2030);
68ef0561
TI
1914}
1915
5671087f
TI
1916/* set up GPIO at initialization */
1917static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
1727a771 1918 const struct hda_fixup *fix, int action)
5671087f 1919{
215c850c
TI
1920 struct alc_spec *spec = codec->spec;
1921
1922 spec->gpio_write_delay = true;
1923 alc_fixup_gpio3(codec, fix, action);
5671087f
TI
1924}
1925
02a237b2
TI
1926/* Fix the connection of some pins for ALC889:
1927 * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
1928 * work correctly (bko#42740)
1929 */
1930static void alc889_fixup_dac_route(struct hda_codec *codec,
1727a771 1931 const struct hda_fixup *fix, int action)
02a237b2 1932{
1727a771 1933 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
ef8d60fb 1934 /* fake the connections during parsing the tree */
02a237b2
TI
1935 hda_nid_t conn1[2] = { 0x0c, 0x0d };
1936 hda_nid_t conn2[2] = { 0x0e, 0x0f };
1937 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
1938 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
1939 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
1940 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
1727a771 1941 } else if (action == HDA_FIXUP_ACT_PROBE) {
ef8d60fb
TI
1942 /* restore the connections */
1943 hda_nid_t conn[5] = { 0x0c, 0x0d, 0x0e, 0x0f, 0x26 };
1944 snd_hda_override_conn_list(codec, 0x14, 5, conn);
1945 snd_hda_override_conn_list(codec, 0x15, 5, conn);
1946 snd_hda_override_conn_list(codec, 0x18, 5, conn);
1947 snd_hda_override_conn_list(codec, 0x1a, 5, conn);
02a237b2
TI
1948 }
1949}
1950
1a97b7f2
TI
1951/* Set VREF on HP pin */
1952static void alc889_fixup_mbp_vref(struct hda_codec *codec,
1727a771 1953 const struct hda_fixup *fix, int action)
1a97b7f2
TI
1954{
1955 struct alc_spec *spec = codec->spec;
9f660a1c 1956 static hda_nid_t nids[3] = { 0x14, 0x15, 0x19 };
1a97b7f2
TI
1957 int i;
1958
1727a771 1959 if (action != HDA_FIXUP_ACT_INIT)
1a97b7f2
TI
1960 return;
1961 for (i = 0; i < ARRAY_SIZE(nids); i++) {
1962 unsigned int val = snd_hda_codec_get_pincfg(codec, nids[i]);
1963 if (get_defcfg_device(val) != AC_JACK_HP_OUT)
1964 continue;
d3f02d60 1965 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1966 val |= AC_PINCTL_VREF_80;
cdd03ced 1967 snd_hda_set_pin_ctl(codec, nids[i], val);
08c189f2 1968 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1969 break;
1970 }
1971}
1972
0756f09c
TI
1973static void alc889_fixup_mac_pins(struct hda_codec *codec,
1974 const hda_nid_t *nids, int num_nids)
1a97b7f2
TI
1975{
1976 struct alc_spec *spec = codec->spec;
1a97b7f2
TI
1977 int i;
1978
0756f09c 1979 for (i = 0; i < num_nids; i++) {
1a97b7f2 1980 unsigned int val;
d3f02d60 1981 val = snd_hda_codec_get_pin_target(codec, nids[i]);
1a97b7f2 1982 val |= AC_PINCTL_VREF_50;
cdd03ced 1983 snd_hda_set_pin_ctl(codec, nids[i], val);
1a97b7f2 1984 }
08c189f2 1985 spec->gen.keep_vref_in_automute = 1;
1a97b7f2
TI
1986}
1987
0756f09c
TI
1988/* Set VREF on speaker pins on imac91 */
1989static void alc889_fixup_imac91_vref(struct hda_codec *codec,
1990 const struct hda_fixup *fix, int action)
1991{
1992 static hda_nid_t nids[2] = { 0x18, 0x1a };
1993
1994 if (action == HDA_FIXUP_ACT_INIT)
1995 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
1996}
1997
e7729a41
AV
1998/* Set VREF on speaker pins on mba11 */
1999static void alc889_fixup_mba11_vref(struct hda_codec *codec,
2000 const struct hda_fixup *fix, int action)
2001{
2002 static hda_nid_t nids[1] = { 0x18 };
2003
2004 if (action == HDA_FIXUP_ACT_INIT)
2005 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2006}
2007
0756f09c
TI
2008/* Set VREF on speaker pins on mba21 */
2009static void alc889_fixup_mba21_vref(struct hda_codec *codec,
2010 const struct hda_fixup *fix, int action)
2011{
2012 static hda_nid_t nids[2] = { 0x18, 0x19 };
2013
2014 if (action == HDA_FIXUP_ACT_INIT)
2015 alc889_fixup_mac_pins(codec, nids, ARRAY_SIZE(nids));
2016}
2017
e427c237 2018/* Don't take HP output as primary
d9111496
FLVC
2019 * Strangely, the speaker output doesn't work on Vaio Z and some Vaio
2020 * all-in-one desktop PCs (for example VGC-LN51JGB) through DAC 0x05
e427c237
TI
2021 */
2022static void alc882_fixup_no_primary_hp(struct hda_codec *codec,
1727a771 2023 const struct hda_fixup *fix, int action)
e427c237
TI
2024{
2025 struct alc_spec *spec = codec->spec;
da96fb5b 2026 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
08c189f2 2027 spec->gen.no_primary_hp = 1;
da96fb5b
TI
2028 spec->gen.no_multi_io = 1;
2029 }
e427c237
TI
2030}
2031
eb9ca3ab
TI
2032static void alc_fixup_bass_chmap(struct hda_codec *codec,
2033 const struct hda_fixup *fix, int action);
2034
7beb3a6e
TI
2035/* For dual-codec configuration, we need to disable some features to avoid
2036 * conflicts of kctls and PCM streams
2037 */
2038static void alc_fixup_dual_codecs(struct hda_codec *codec,
2039 const struct hda_fixup *fix, int action)
2040{
2041 struct alc_spec *spec = codec->spec;
2042
2043 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2044 return;
2045 /* disable vmaster */
2046 spec->gen.suppress_vmaster = 1;
2047 /* auto-mute and auto-mic switch don't work with multiple codecs */
2048 spec->gen.suppress_auto_mute = 1;
2049 spec->gen.suppress_auto_mic = 1;
2050 /* disable aamix as well */
2051 spec->gen.mixer_nid = 0;
2052 /* add location prefix to avoid conflicts */
2053 codec->force_pin_prefix = 1;
2054}
2055
2056static void rename_ctl(struct hda_codec *codec, const char *oldname,
2057 const char *newname)
2058{
2059 struct snd_kcontrol *kctl;
2060
2061 kctl = snd_hda_find_mixer_ctl(codec, oldname);
2062 if (kctl)
2063 strcpy(kctl->id.name, newname);
2064}
2065
2066static void alc1220_fixup_gb_dual_codecs(struct hda_codec *codec,
2067 const struct hda_fixup *fix,
2068 int action)
2069{
2070 alc_fixup_dual_codecs(codec, fix, action);
2071 switch (action) {
2072 case HDA_FIXUP_ACT_PRE_PROBE:
2073 /* override card longname to provide a unique UCM profile */
2074 strcpy(codec->card->longname, "HDAudio-Gigabyte-ALC1220DualCodecs");
2075 break;
2076 case HDA_FIXUP_ACT_BUILD:
2077 /* rename Capture controls depending on the codec */
2078 rename_ctl(codec, "Capture Volume",
2079 codec->addr == 0 ?
2080 "Rear-Panel Capture Volume" :
2081 "Front-Panel Capture Volume");
2082 rename_ctl(codec, "Capture Switch",
2083 codec->addr == 0 ?
2084 "Rear-Panel Capture Switch" :
2085 "Front-Panel Capture Switch");
2086 break;
2087 }
2088}
2089
0202f5cd
P
2090static void alc1220_fixup_clevo_p950(struct hda_codec *codec,
2091 const struct hda_fixup *fix,
2092 int action)
2093{
2094 hda_nid_t conn1[1] = { 0x0c };
2095
2096 if (action != HDA_FIXUP_ACT_PRE_PROBE)
2097 return;
2098
2099 alc_update_coef_idx(codec, 0x7, 0, 0x3c3);
2100 /* We therefore want to make sure 0x14 (front headphone) and
2101 * 0x1b (speakers) use the stereo DAC 0x02
2102 */
2103 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
2104 snd_hda_override_conn_list(codec, 0x1b, 1, conn1);
2105}
2106
7f665b1c
JS
2107static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
2108 const struct hda_fixup *fix, int action);
2109
80690a27 2110static void alc1220_fixup_clevo_pb51ed(struct hda_codec *codec,
7f665b1c
JS
2111 const struct hda_fixup *fix,
2112 int action)
2113{
2114 alc1220_fixup_clevo_p950(codec, fix, action);
2115 alc_fixup_headset_mode_no_hp_mic(codec, fix, action);
2116}
2117
1727a771 2118static const struct hda_fixup alc882_fixups[] = {
5c0ebfbe 2119 [ALC882_FIXUP_ABIT_AW9D_MAX] = {
1727a771
TI
2120 .type = HDA_FIXUP_PINS,
2121 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2122 { 0x15, 0x01080104 }, /* side */
2123 { 0x16, 0x01011012 }, /* rear */
2124 { 0x17, 0x01016011 }, /* clfe */
2785591a 2125 { }
145a902b
DH
2126 }
2127 },
5c0ebfbe 2128 [ALC882_FIXUP_LENOVO_Y530] = {
1727a771
TI
2129 .type = HDA_FIXUP_PINS,
2130 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2131 { 0x15, 0x99130112 }, /* rear int speakers */
2132 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
2133 { }
2134 }
2135 },
5c0ebfbe 2136 [ALC882_FIXUP_PB_M5210] = {
fd108215
TI
2137 .type = HDA_FIXUP_PINCTLS,
2138 .v.pins = (const struct hda_pintbl[]) {
2139 { 0x19, PIN_VREF50 },
357f915e
KY
2140 {}
2141 }
2142 },
5c0ebfbe 2143 [ALC882_FIXUP_ACER_ASPIRE_7736] = {
1727a771 2144 .type = HDA_FIXUP_FUNC,
23d30f28 2145 .v.func = alc_fixup_sku_ignore,
6981d184 2146 },
5c0ebfbe 2147 [ALC882_FIXUP_ASUS_W90V] = {
1727a771
TI
2148 .type = HDA_FIXUP_PINS,
2149 .v.pins = (const struct hda_pintbl[]) {
5cdf745e
TI
2150 { 0x16, 0x99130110 }, /* fix sequence for CLFE */
2151 { }
2152 }
2153 },
8f239214 2154 [ALC889_FIXUP_CD] = {
1727a771
TI
2155 .type = HDA_FIXUP_PINS,
2156 .v.pins = (const struct hda_pintbl[]) {
8f239214
MB
2157 { 0x1c, 0x993301f0 }, /* CD */
2158 { }
2159 }
2160 },
b2c53e20
DH
2161 [ALC889_FIXUP_FRONT_HP_NO_PRESENCE] = {
2162 .type = HDA_FIXUP_PINS,
2163 .v.pins = (const struct hda_pintbl[]) {
2164 { 0x1b, 0x02214120 }, /* Front HP jack is flaky, disable jack detect */
2165 { }
2166 },
2167 .chained = true,
2168 .chain_id = ALC889_FIXUP_CD,
2169 },
5c0ebfbe 2170 [ALC889_FIXUP_VAIO_TT] = {
1727a771
TI
2171 .type = HDA_FIXUP_PINS,
2172 .v.pins = (const struct hda_pintbl[]) {
5c0ebfbe
TI
2173 { 0x17, 0x90170111 }, /* hidden surround speaker */
2174 { }
2175 }
2176 },
0e7cc2e7 2177 [ALC888_FIXUP_EEE1601] = {
1727a771 2178 .type = HDA_FIXUP_VERBS,
0e7cc2e7
TI
2179 .v.verbs = (const struct hda_verb[]) {
2180 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2181 { 0x20, AC_VERB_SET_PROC_COEF, 0x0838 },
2182 { }
2183 }
177943a3
TI
2184 },
2185 [ALC882_FIXUP_EAPD] = {
1727a771 2186 .type = HDA_FIXUP_VERBS,
177943a3
TI
2187 .v.verbs = (const struct hda_verb[]) {
2188 /* change to EAPD mode */
2189 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2190 { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
2191 { }
2192 }
2193 },
7a6069bf 2194 [ALC883_FIXUP_EAPD] = {
1727a771 2195 .type = HDA_FIXUP_VERBS,
7a6069bf
TI
2196 .v.verbs = (const struct hda_verb[]) {
2197 /* change to EAPD mode */
2198 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2199 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2200 { }
2201 }
2202 },
8812c4f9 2203 [ALC883_FIXUP_ACER_EAPD] = {
1727a771 2204 .type = HDA_FIXUP_VERBS,
8812c4f9
TI
2205 .v.verbs = (const struct hda_verb[]) {
2206 /* eanable EAPD on Acer laptops */
2207 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2208 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2209 { }
2210 }
2211 },
1a97b7f2 2212 [ALC882_FIXUP_GPIO1] = {
5579cd6f
TI
2213 .type = HDA_FIXUP_FUNC,
2214 .v.func = alc_fixup_gpio1,
1a97b7f2
TI
2215 },
2216 [ALC882_FIXUP_GPIO2] = {
5579cd6f
TI
2217 .type = HDA_FIXUP_FUNC,
2218 .v.func = alc_fixup_gpio2,
1a97b7f2 2219 },
eb844d51 2220 [ALC882_FIXUP_GPIO3] = {
5579cd6f
TI
2221 .type = HDA_FIXUP_FUNC,
2222 .v.func = alc_fixup_gpio3,
eb844d51 2223 },
68ef0561 2224 [ALC882_FIXUP_ASUS_W2JC] = {
5579cd6f
TI
2225 .type = HDA_FIXUP_FUNC,
2226 .v.func = alc_fixup_gpio1,
68ef0561
TI
2227 .chained = true,
2228 .chain_id = ALC882_FIXUP_EAPD,
2229 },
2230 [ALC889_FIXUP_COEF] = {
1727a771 2231 .type = HDA_FIXUP_FUNC,
68ef0561
TI
2232 .v.func = alc889_fixup_coef,
2233 },
c3e837bb 2234 [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
1727a771
TI
2235 .type = HDA_FIXUP_PINS,
2236 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2237 { 0x16, 0x99130111 }, /* CLFE speaker */
2238 { 0x17, 0x99130112 }, /* surround speaker */
2239 { }
038d4fef
TI
2240 },
2241 .chained = true,
2242 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb
TI
2243 },
2244 [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
1727a771
TI
2245 .type = HDA_FIXUP_PINS,
2246 .v.pins = (const struct hda_pintbl[]) {
c3e837bb
TI
2247 { 0x16, 0x99130111 }, /* CLFE speaker */
2248 { 0x1b, 0x99130112 }, /* surround speaker */
2249 { }
2250 },
2251 .chained = true,
2252 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
2253 },
2254 [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
2255 /* additional init verbs for Acer Aspire 8930G */
1727a771 2256 .type = HDA_FIXUP_VERBS,
c3e837bb
TI
2257 .v.verbs = (const struct hda_verb[]) {
2258 /* Enable all DACs */
2259 /* DAC DISABLE/MUTE 1? */
2260 /* setting bits 1-5 disables DAC nids 0x02-0x06
2261 * apparently. Init=0x38 */
2262 { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
2263 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2264 /* DAC DISABLE/MUTE 2? */
2265 /* some bit here disables the other DACs.
2266 * Init=0x4900 */
2267 { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
2268 { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
2269 /* DMIC fix
2270 * This laptop has a stereo digital microphone.
2271 * The mics are only 1cm apart which makes the stereo
2272 * useless. However, either the mic or the ALC889
2273 * makes the signal become a difference/sum signal
2274 * instead of standard stereo, which is annoying.
2275 * So instead we flip this bit which makes the
2276 * codec replicate the sum signal to both channels,
2277 * turning it into a normal mono mic.
2278 */
2279 /* DMIC_CONTROL? Init value = 0x0001 */
2280 { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
2281 { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
2282 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2283 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2284 { }
038d4fef
TI
2285 },
2286 .chained = true,
2287 .chain_id = ALC882_FIXUP_GPIO1,
c3e837bb 2288 },
5671087f 2289 [ALC885_FIXUP_MACPRO_GPIO] = {
1727a771 2290 .type = HDA_FIXUP_FUNC,
5671087f
TI
2291 .v.func = alc885_fixup_macpro_gpio,
2292 },
02a237b2 2293 [ALC889_FIXUP_DAC_ROUTE] = {
1727a771 2294 .type = HDA_FIXUP_FUNC,
02a237b2
TI
2295 .v.func = alc889_fixup_dac_route,
2296 },
1a97b7f2 2297 [ALC889_FIXUP_MBP_VREF] = {
1727a771 2298 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2299 .v.func = alc889_fixup_mbp_vref,
2300 .chained = true,
2301 .chain_id = ALC882_FIXUP_GPIO1,
2302 },
2303 [ALC889_FIXUP_IMAC91_VREF] = {
1727a771 2304 .type = HDA_FIXUP_FUNC,
1a97b7f2
TI
2305 .v.func = alc889_fixup_imac91_vref,
2306 .chained = true,
2307 .chain_id = ALC882_FIXUP_GPIO1,
2308 },
e7729a41
AV
2309 [ALC889_FIXUP_MBA11_VREF] = {
2310 .type = HDA_FIXUP_FUNC,
2311 .v.func = alc889_fixup_mba11_vref,
2312 .chained = true,
2313 .chain_id = ALC889_FIXUP_MBP_VREF,
2314 },
0756f09c
TI
2315 [ALC889_FIXUP_MBA21_VREF] = {
2316 .type = HDA_FIXUP_FUNC,
2317 .v.func = alc889_fixup_mba21_vref,
2318 .chained = true,
2319 .chain_id = ALC889_FIXUP_MBP_VREF,
2320 },
c20f31ec
TI
2321 [ALC889_FIXUP_MP11_VREF] = {
2322 .type = HDA_FIXUP_FUNC,
2323 .v.func = alc889_fixup_mba11_vref,
2324 .chained = true,
2325 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2326 },
9f660a1c
MK
2327 [ALC889_FIXUP_MP41_VREF] = {
2328 .type = HDA_FIXUP_FUNC,
2329 .v.func = alc889_fixup_mbp_vref,
2330 .chained = true,
2331 .chain_id = ALC885_FIXUP_MACPRO_GPIO,
2332 },
6e72aa5f 2333 [ALC882_FIXUP_INV_DMIC] = {
1727a771 2334 .type = HDA_FIXUP_FUNC,
9d36a7dc 2335 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2336 },
e427c237 2337 [ALC882_FIXUP_NO_PRIMARY_HP] = {
1727a771 2338 .type = HDA_FIXUP_FUNC,
e427c237
TI
2339 .v.func = alc882_fixup_no_primary_hp,
2340 },
1f0bbf03
TI
2341 [ALC887_FIXUP_ASUS_BASS] = {
2342 .type = HDA_FIXUP_PINS,
2343 .v.pins = (const struct hda_pintbl[]) {
2344 {0x16, 0x99130130}, /* bass speaker */
2345 {}
2346 },
eb9ca3ab
TI
2347 .chained = true,
2348 .chain_id = ALC887_FIXUP_BASS_CHMAP,
2349 },
2350 [ALC887_FIXUP_BASS_CHMAP] = {
2351 .type = HDA_FIXUP_FUNC,
2352 .v.func = alc_fixup_bass_chmap,
1f0bbf03 2353 },
7beb3a6e
TI
2354 [ALC1220_FIXUP_GB_DUAL_CODECS] = {
2355 .type = HDA_FIXUP_FUNC,
2356 .v.func = alc1220_fixup_gb_dual_codecs,
2357 },
0202f5cd
P
2358 [ALC1220_FIXUP_CLEVO_P950] = {
2359 .type = HDA_FIXUP_FUNC,
2360 .v.func = alc1220_fixup_clevo_p950,
2361 },
80690a27 2362 [ALC1220_FIXUP_CLEVO_PB51ED] = {
7f665b1c 2363 .type = HDA_FIXUP_FUNC,
80690a27 2364 .v.func = alc1220_fixup_clevo_pb51ed,
7f665b1c 2365 },
80690a27 2366 [ALC1220_FIXUP_CLEVO_PB51ED_PINS] = {
7f665b1c
JS
2367 .type = HDA_FIXUP_PINS,
2368 .v.pins = (const struct hda_pintbl[]) {
2369 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
2370 {}
2371 },
2372 .chained = true,
80690a27 2373 .chain_id = ALC1220_FIXUP_CLEVO_PB51ED,
7f665b1c 2374 },
ff818c24
TI
2375};
2376
1d045db9 2377static const struct snd_pci_quirk alc882_fixup_tbl[] = {
8812c4f9
TI
2378 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
2379 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
b5d724b1 2380 SND_PCI_QUIRK(0x1025, 0x0107, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
8812c4f9
TI
2381 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
2382 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
2383 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
2384 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
c3e837bb
TI
2385 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
2386 ALC882_FIXUP_ACER_ASPIRE_4930G),
2387 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
2388 ALC882_FIXUP_ACER_ASPIRE_4930G),
2389 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
2390 ALC882_FIXUP_ACER_ASPIRE_8930G),
2391 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
2392 ALC882_FIXUP_ACER_ASPIRE_8930G),
2393 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
2394 ALC882_FIXUP_ACER_ASPIRE_4930G),
2395 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
2396 ALC882_FIXUP_ACER_ASPIRE_4930G),
2397 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
2398 ALC882_FIXUP_ACER_ASPIRE_4930G),
5c0ebfbe 2399 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
f5c53d89
TI
2400 SND_PCI_QUIRK(0x1025, 0x021e, "Acer Aspire 5739G",
2401 ALC882_FIXUP_ACER_ASPIRE_4930G),
02a237b2 2402 SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
fe97da1f 2403 SND_PCI_QUIRK(0x1025, 0x026b, "Acer Aspire 8940G", ALC882_FIXUP_ACER_ASPIRE_8930G),
ac9b1cdd 2404 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
177943a3 2405 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5c0ebfbe 2406 SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
68ef0561 2407 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
0e7cc2e7 2408 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
1f0bbf03 2409 SND_PCI_QUIRK(0x1043, 0x84bc, "ASUS ET2700", ALC887_FIXUP_ASUS_BASS),
85bcf96c 2410 SND_PCI_QUIRK(0x1043, 0x8691, "ASUS ROG Ranger VIII", ALC882_FIXUP_GPIO3),
ac9b1cdd 2411 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
e427c237 2412 SND_PCI_QUIRK(0x104d, 0x905a, "Sony Vaio Z", ALC882_FIXUP_NO_PRIMARY_HP),
3f3c3714 2413 SND_PCI_QUIRK(0x104d, 0x9060, "Sony Vaio VPCL14M1R", ALC882_FIXUP_NO_PRIMARY_HP),
12e31a78 2414 SND_PCI_QUIRK(0x104d, 0x9043, "Sony Vaio VGC-LN51JGB", ALC882_FIXUP_NO_PRIMARY_HP),
c44d9b11 2415 SND_PCI_QUIRK(0x104d, 0x9044, "Sony VAIO AiO", ALC882_FIXUP_NO_PRIMARY_HP),
5671087f
TI
2416
2417 /* All Apple entries are in codec SSIDs */
1a97b7f2
TI
2418 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC889_FIXUP_MBP_VREF),
2419 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC889_FIXUP_MBP_VREF),
2420 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
c20f31ec 2421 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC889_FIXUP_MP11_VREF),
5671087f
TI
2422 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
2423 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2424 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC889_FIXUP_MBP_VREF),
2425 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889_FIXUP_MBP_VREF),
5671087f 2426 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
e7729a41 2427 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC889_FIXUP_MBA11_VREF),
0756f09c 2428 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC889_FIXUP_MBA21_VREF),
1a97b7f2
TI
2429 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889_FIXUP_MBP_VREF),
2430 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC889_FIXUP_MBP_VREF),
5671087f 2431 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
1a97b7f2
TI
2432 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC889_FIXUP_IMAC91_VREF),
2433 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC889_FIXUP_IMAC91_VREF),
2434 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC889_FIXUP_IMAC91_VREF),
9f660a1c 2435 SND_PCI_QUIRK(0x106b, 0x4200, "Mac Pro 4,1/5,1", ALC889_FIXUP_MP41_VREF),
05193639 2436 SND_PCI_QUIRK(0x106b, 0x4300, "iMac 9,1", ALC889_FIXUP_IMAC91_VREF),
1a97b7f2
TI
2437 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC889_FIXUP_IMAC91_VREF),
2438 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC889_FIXUP_IMAC91_VREF),
649ccd08 2439 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC889_FIXUP_MBA11_VREF),
5671087f 2440
7a6069bf 2441 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
b2c53e20 2442 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte EP45-DS3/Z87X-UD3H", ALC889_FIXUP_FRONT_HP_NO_PRESENCE),
7beb3a6e 2443 SND_PCI_QUIRK(0x1458, 0xa0b8, "Gigabyte AZ370-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
d2c3b14e 2444 SND_PCI_QUIRK(0x1462, 0x7350, "MSI-7350", ALC889_FIXUP_CD),
63691587 2445 SND_PCI_QUIRK(0x1462, 0xda57, "MSI Z270-Gaming", ALC1220_FIXUP_GB_DUAL_CODECS),
d2c3b14e 2446 SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5c0ebfbe 2447 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
0202f5cd 2448 SND_PCI_QUIRK(0x1558, 0x9501, "Clevo P950HR", ALC1220_FIXUP_CLEVO_P950),
f3d737b6 2449 SND_PCI_QUIRK(0x1558, 0x95e1, "Clevo P95xER", ALC1220_FIXUP_CLEVO_P950),
2f0d520a 2450 SND_PCI_QUIRK(0x1558, 0x95e2, "Clevo P950ER", ALC1220_FIXUP_CLEVO_P950),
503d90b3
RS
2451 SND_PCI_QUIRK(0x1558, 0x96e1, "Clevo P960[ER][CDFN]-K", ALC1220_FIXUP_CLEVO_P950),
2452 SND_PCI_QUIRK(0x1558, 0x97e1, "Clevo P970[ER][CDFN]", ALC1220_FIXUP_CLEVO_P950),
2453 SND_PCI_QUIRK(0x1558, 0x65d1, "Clevo PB51[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
2454 SND_PCI_QUIRK(0x1558, 0x67d1, "Clevo PB71[ER][CDF]", ALC1220_FIXUP_CLEVO_PB51ED_PINS),
7a6069bf
TI
2455 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
2456 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
ac9b1cdd 2457 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
68ef0561 2458 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
ff818c24
TI
2459 {}
2460};
2461
1727a771 2462static const struct hda_model_fixup alc882_fixup_models[] = {
772c2917
TI
2463 {.id = ALC882_FIXUP_ABIT_AW9D_MAX, .name = "abit-aw9d"},
2464 {.id = ALC882_FIXUP_LENOVO_Y530, .name = "lenovo-y530"},
2465 {.id = ALC882_FIXUP_ACER_ASPIRE_7736, .name = "acer-aspire-7736"},
2466 {.id = ALC882_FIXUP_ASUS_W90V, .name = "asus-w90v"},
2467 {.id = ALC889_FIXUP_CD, .name = "cd"},
2468 {.id = ALC889_FIXUP_FRONT_HP_NO_PRESENCE, .name = "no-front-hp"},
2469 {.id = ALC889_FIXUP_VAIO_TT, .name = "vaio-tt"},
2470 {.id = ALC888_FIXUP_EEE1601, .name = "eee1601"},
2471 {.id = ALC882_FIXUP_EAPD, .name = "alc882-eapd"},
2472 {.id = ALC883_FIXUP_EAPD, .name = "alc883-eapd"},
2473 {.id = ALC882_FIXUP_GPIO1, .name = "gpio1"},
2474 {.id = ALC882_FIXUP_GPIO2, .name = "gpio2"},
2475 {.id = ALC882_FIXUP_GPIO3, .name = "gpio3"},
2476 {.id = ALC889_FIXUP_COEF, .name = "alc889-coef"},
2477 {.id = ALC882_FIXUP_ASUS_W2JC, .name = "asus-w2jc"},
912093bc
TI
2478 {.id = ALC882_FIXUP_ACER_ASPIRE_4930G, .name = "acer-aspire-4930g"},
2479 {.id = ALC882_FIXUP_ACER_ASPIRE_8930G, .name = "acer-aspire-8930g"},
2480 {.id = ALC883_FIXUP_ACER_EAPD, .name = "acer-aspire"},
772c2917
TI
2481 {.id = ALC885_FIXUP_MACPRO_GPIO, .name = "macpro-gpio"},
2482 {.id = ALC889_FIXUP_DAC_ROUTE, .name = "dac-route"},
2483 {.id = ALC889_FIXUP_MBP_VREF, .name = "mbp-vref"},
2484 {.id = ALC889_FIXUP_IMAC91_VREF, .name = "imac91-vref"},
2485 {.id = ALC889_FIXUP_MBA11_VREF, .name = "mba11-vref"},
2486 {.id = ALC889_FIXUP_MBA21_VREF, .name = "mba21-vref"},
2487 {.id = ALC889_FIXUP_MP11_VREF, .name = "mp11-vref"},
2488 {.id = ALC889_FIXUP_MP41_VREF, .name = "mp41-vref"},
6e72aa5f 2489 {.id = ALC882_FIXUP_INV_DMIC, .name = "inv-dmic"},
e427c237 2490 {.id = ALC882_FIXUP_NO_PRIMARY_HP, .name = "no-primary-hp"},
772c2917 2491 {.id = ALC887_FIXUP_ASUS_BASS, .name = "asus-bass"},
ba90d6a6 2492 {.id = ALC1220_FIXUP_GB_DUAL_CODECS, .name = "dual-codecs"},
772c2917 2493 {.id = ALC1220_FIXUP_CLEVO_P950, .name = "clevo-p950"},
912093bc
TI
2494 {}
2495};
2496
f6a92248 2497/*
1d045db9 2498 * BIOS auto configuration
f6a92248 2499 */
1d045db9
TI
2500/* almost identical with ALC880 parser... */
2501static int alc882_parse_auto_config(struct hda_codec *codec)
2502{
1d045db9 2503 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2504 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2505 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 2506}
b896b4eb 2507
1d045db9
TI
2508/*
2509 */
1d045db9 2510static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
2511{
2512 struct alc_spec *spec;
1a97b7f2 2513 int err;
f6a92248 2514
3de95173
TI
2515 err = alc_alloc_spec(codec, 0x0b);
2516 if (err < 0)
2517 return err;
f6a92248 2518
3de95173 2519 spec = codec->spec;
1f0f4b80 2520
7639a06c 2521 switch (codec->core.vendor_id) {
1d045db9
TI
2522 case 0x10ec0882:
2523 case 0x10ec0885:
acf08081 2524 case 0x10ec0900:
a535ad57 2525 case 0x10ec1220:
1d045db9
TI
2526 break;
2527 default:
2528 /* ALC883 and variants */
2529 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2530 break;
c793bec5 2531 }
977ddd6b 2532
c9af753f
TI
2533 alc_pre_init(codec);
2534
1727a771 2535 snd_hda_pick_fixup(codec, alc882_fixup_models, alc882_fixup_tbl,
912093bc 2536 alc882_fixups);
1727a771 2537 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
ff818c24 2538
1d045db9
TI
2539 alc_auto_parse_customize_define(codec);
2540
7504b6cd
TI
2541 if (has_cdefine_beep(codec))
2542 spec->gen.beep_nid = 0x01;
2543
1a97b7f2
TI
2544 /* automatic parse from the BIOS config */
2545 err = alc882_parse_auto_config(codec);
2546 if (err < 0)
2547 goto error;
f6a92248 2548
fea80fae
TI
2549 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2550 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2551 if (err < 0)
2552 goto error;
2553 }
f6a92248 2554
1727a771 2555 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2556
f6a92248 2557 return 0;
e16fb6d1
TI
2558
2559 error:
2560 alc_free(codec);
2561 return err;
f6a92248
KY
2562}
2563
df694daa 2564
df694daa 2565/*
1d045db9 2566 * ALC262 support
df694daa 2567 */
1d045db9 2568static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 2569{
1d045db9 2570 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2571 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2572 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
2573}
2574
df694daa 2575/*
1d045db9 2576 * Pin config fixes
df694daa 2577 */
cfc9b06f 2578enum {
ea4e7af1 2579 ALC262_FIXUP_FSC_H270,
7513e6da 2580 ALC262_FIXUP_FSC_S7110,
ea4e7af1
TI
2581 ALC262_FIXUP_HP_Z200,
2582 ALC262_FIXUP_TYAN,
c470150c 2583 ALC262_FIXUP_LENOVO_3000,
b42590b8
TI
2584 ALC262_FIXUP_BENQ,
2585 ALC262_FIXUP_BENQ_T31,
6e72aa5f 2586 ALC262_FIXUP_INV_DMIC,
b5c6611f 2587 ALC262_FIXUP_INTEL_BAYLEYBAY,
cfc9b06f
TI
2588};
2589
1727a771 2590static const struct hda_fixup alc262_fixups[] = {
ea4e7af1 2591 [ALC262_FIXUP_FSC_H270] = {
1727a771
TI
2592 .type = HDA_FIXUP_PINS,
2593 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
2594 { 0x14, 0x99130110 }, /* speaker */
2595 { 0x15, 0x0221142f }, /* front HP */
2596 { 0x1b, 0x0121141f }, /* rear HP */
2597 { }
2598 }
2599 },
7513e6da
TI
2600 [ALC262_FIXUP_FSC_S7110] = {
2601 .type = HDA_FIXUP_PINS,
2602 .v.pins = (const struct hda_pintbl[]) {
2603 { 0x15, 0x90170110 }, /* speaker */
2604 { }
2605 },
2606 .chained = true,
2607 .chain_id = ALC262_FIXUP_BENQ,
2608 },
ea4e7af1 2609 [ALC262_FIXUP_HP_Z200] = {
1727a771
TI
2610 .type = HDA_FIXUP_PINS,
2611 .v.pins = (const struct hda_pintbl[]) {
1d045db9 2612 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
2613 { }
2614 }
cfc9b06f 2615 },
ea4e7af1 2616 [ALC262_FIXUP_TYAN] = {
1727a771
TI
2617 .type = HDA_FIXUP_PINS,
2618 .v.pins = (const struct hda_pintbl[]) {
ea4e7af1
TI
2619 { 0x14, 0x1993e1f0 }, /* int AUX */
2620 { }
2621 }
2622 },
c470150c 2623 [ALC262_FIXUP_LENOVO_3000] = {
fd108215
TI
2624 .type = HDA_FIXUP_PINCTLS,
2625 .v.pins = (const struct hda_pintbl[]) {
2626 { 0x19, PIN_VREF50 },
b42590b8
TI
2627 {}
2628 },
2629 .chained = true,
2630 .chain_id = ALC262_FIXUP_BENQ,
2631 },
2632 [ALC262_FIXUP_BENQ] = {
1727a771 2633 .type = HDA_FIXUP_VERBS,
b42590b8 2634 .v.verbs = (const struct hda_verb[]) {
c470150c
TI
2635 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2636 { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
2637 {}
2638 }
2639 },
b42590b8 2640 [ALC262_FIXUP_BENQ_T31] = {
1727a771 2641 .type = HDA_FIXUP_VERBS,
b42590b8
TI
2642 .v.verbs = (const struct hda_verb[]) {
2643 { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
2644 { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
2645 {}
2646 }
2647 },
6e72aa5f 2648 [ALC262_FIXUP_INV_DMIC] = {
1727a771 2649 .type = HDA_FIXUP_FUNC,
9d36a7dc 2650 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2651 },
b5c6611f
ML
2652 [ALC262_FIXUP_INTEL_BAYLEYBAY] = {
2653 .type = HDA_FIXUP_FUNC,
2654 .v.func = alc_fixup_no_depop_delay,
2655 },
cfc9b06f
TI
2656};
2657
1d045db9 2658static const struct snd_pci_quirk alc262_fixup_tbl[] = {
ea4e7af1 2659 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
7513e6da 2660 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu Lifebook S7110", ALC262_FIXUP_FSC_S7110),
3dcd3be3 2661 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
ea4e7af1 2662 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
275ec0cb 2663 SND_PCI_QUIRK(0x1734, 0x1141, "FSC ESPRIMO U9210", ALC262_FIXUP_FSC_H270),
ea4e7af1 2664 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
c470150c 2665 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
b42590b8
TI
2666 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
2667 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
b5c6611f 2668 SND_PCI_QUIRK(0x8086, 0x7270, "BayleyBay", ALC262_FIXUP_INTEL_BAYLEYBAY),
cfc9b06f
TI
2669 {}
2670};
df694daa 2671
1727a771 2672static const struct hda_model_fixup alc262_fixup_models[] = {
6e72aa5f 2673 {.id = ALC262_FIXUP_INV_DMIC, .name = "inv-dmic"},
e43c44d6
TI
2674 {.id = ALC262_FIXUP_FSC_H270, .name = "fsc-h270"},
2675 {.id = ALC262_FIXUP_FSC_S7110, .name = "fsc-s7110"},
2676 {.id = ALC262_FIXUP_HP_Z200, .name = "hp-z200"},
2677 {.id = ALC262_FIXUP_TYAN, .name = "tyan"},
2678 {.id = ALC262_FIXUP_LENOVO_3000, .name = "lenovo-3000"},
2679 {.id = ALC262_FIXUP_BENQ, .name = "benq"},
2680 {.id = ALC262_FIXUP_BENQ_T31, .name = "benq-t31"},
2681 {.id = ALC262_FIXUP_INTEL_BAYLEYBAY, .name = "bayleybay"},
6e72aa5f
TI
2682 {}
2683};
1d045db9 2684
1d045db9
TI
2685/*
2686 */
1d045db9 2687static int patch_alc262(struct hda_codec *codec)
df694daa
KY
2688{
2689 struct alc_spec *spec;
df694daa
KY
2690 int err;
2691
3de95173
TI
2692 err = alc_alloc_spec(codec, 0x0b);
2693 if (err < 0)
2694 return err;
df694daa 2695
3de95173 2696 spec = codec->spec;
08c189f2 2697 spec->gen.shared_mic_vref_pin = 0x18;
1d045db9 2698
225068ab
TI
2699 spec->shutup = alc_eapd_shutup;
2700
1d045db9
TI
2701#if 0
2702 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
2703 * under-run
2704 */
98b24883 2705 alc_update_coefex_idx(codec, 0x1a, 7, 0, 0x80);
1d045db9 2706#endif
1d045db9
TI
2707 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
2708
c9af753f
TI
2709 alc_pre_init(codec);
2710
1727a771 2711 snd_hda_pick_fixup(codec, alc262_fixup_models, alc262_fixup_tbl,
6e72aa5f 2712 alc262_fixups);
1727a771 2713 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
9c7f852e 2714
af741c15
TI
2715 alc_auto_parse_customize_define(codec);
2716
7504b6cd
TI
2717 if (has_cdefine_beep(codec))
2718 spec->gen.beep_nid = 0x01;
2719
42399f7a
TI
2720 /* automatic parse from the BIOS config */
2721 err = alc262_parse_auto_config(codec);
2722 if (err < 0)
2723 goto error;
df694daa 2724
fea80fae
TI
2725 if (!spec->gen.no_analog && spec->gen.beep_nid) {
2726 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
2727 if (err < 0)
2728 goto error;
2729 }
2134ea4f 2730
1727a771 2731 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 2732
1da177e4 2733 return 0;
e16fb6d1
TI
2734
2735 error:
2736 alc_free(codec);
2737 return err;
1da177e4
LT
2738}
2739
f32610ed 2740/*
1d045db9 2741 * ALC268
f32610ed 2742 */
1d045db9 2743/* bind Beep switches of both NID 0x0f and 0x10 */
a717777d
TI
2744static int alc268_beep_switch_put(struct snd_kcontrol *kcontrol,
2745 struct snd_ctl_elem_value *ucontrol)
2746{
2747 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2748 unsigned long pval;
2749 int err;
2750
2751 mutex_lock(&codec->control_mutex);
2752 pval = kcontrol->private_value;
2753 kcontrol->private_value = (pval & ~0xff) | 0x0f;
2754 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2755 if (err >= 0) {
2756 kcontrol->private_value = (pval & ~0xff) | 0x10;
2757 err = snd_hda_mixer_amp_switch_put(kcontrol, ucontrol);
2758 }
2759 kcontrol->private_value = pval;
2760 mutex_unlock(&codec->control_mutex);
2761 return err;
2762}
f32610ed 2763
1d045db9
TI
2764static const struct snd_kcontrol_new alc268_beep_mixer[] = {
2765 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
a717777d
TI
2766 {
2767 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2768 .name = "Beep Playback Switch",
2769 .subdevice = HDA_SUBDEV_AMP_FLAG,
2770 .info = snd_hda_mixer_amp_switch_info,
2771 .get = snd_hda_mixer_amp_switch_get,
2772 .put = alc268_beep_switch_put,
2773 .private_value = HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT)
2774 },
f32610ed
JS
2775};
2776
1d045db9
TI
2777/* set PCBEEP vol = 0, mute connections */
2778static const struct hda_verb alc268_beep_init_verbs[] = {
2779 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2780 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2781 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2782 { }
f32610ed
JS
2783};
2784
6e72aa5f
TI
2785enum {
2786 ALC268_FIXUP_INV_DMIC,
cb766404 2787 ALC268_FIXUP_HP_EAPD,
24eff328 2788 ALC268_FIXUP_SPDIF,
6e72aa5f
TI
2789};
2790
1727a771 2791static const struct hda_fixup alc268_fixups[] = {
6e72aa5f 2792 [ALC268_FIXUP_INV_DMIC] = {
1727a771 2793 .type = HDA_FIXUP_FUNC,
9d36a7dc 2794 .v.func = alc_fixup_inv_dmic,
6e72aa5f 2795 },
cb766404 2796 [ALC268_FIXUP_HP_EAPD] = {
1727a771 2797 .type = HDA_FIXUP_VERBS,
cb766404
TI
2798 .v.verbs = (const struct hda_verb[]) {
2799 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 0},
2800 {}
2801 }
2802 },
24eff328
TI
2803 [ALC268_FIXUP_SPDIF] = {
2804 .type = HDA_FIXUP_PINS,
2805 .v.pins = (const struct hda_pintbl[]) {
2806 { 0x1e, 0x014b1180 }, /* enable SPDIF out */
2807 {}
2808 }
2809 },
6e72aa5f
TI
2810};
2811
1727a771 2812static const struct hda_model_fixup alc268_fixup_models[] = {
6e72aa5f 2813 {.id = ALC268_FIXUP_INV_DMIC, .name = "inv-dmic"},
cb766404 2814 {.id = ALC268_FIXUP_HP_EAPD, .name = "hp-eapd"},
03bf11c9 2815 {.id = ALC268_FIXUP_SPDIF, .name = "spdif"},
cb766404
TI
2816 {}
2817};
2818
2819static const struct snd_pci_quirk alc268_fixup_tbl[] = {
24eff328 2820 SND_PCI_QUIRK(0x1025, 0x0139, "Acer TravelMate 6293", ALC268_FIXUP_SPDIF),
fcd8f3b1 2821 SND_PCI_QUIRK(0x1025, 0x015b, "Acer AOA 150 (ZG5)", ALC268_FIXUP_INV_DMIC),
cb766404
TI
2822 /* below is codec SSID since multiple Toshiba laptops have the
2823 * same PCI SSID 1179:ff00
2824 */
2825 SND_PCI_QUIRK(0x1179, 0xff06, "Toshiba P200", ALC268_FIXUP_HP_EAPD),
6e72aa5f
TI
2826 {}
2827};
2828
f32610ed
JS
2829/*
2830 * BIOS auto configuration
2831 */
1d045db9 2832static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 2833{
3e6179b8 2834 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
7504b6cd 2835 return alc_parse_auto_config(codec, NULL, alc268_ssids);
f32610ed
JS
2836}
2837
1d045db9
TI
2838/*
2839 */
1d045db9 2840static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
2841{
2842 struct alc_spec *spec;
a5cb463a 2843 int i, err;
f32610ed 2844
1d045db9 2845 /* ALC268 has no aa-loopback mixer */
3de95173
TI
2846 err = alc_alloc_spec(codec, 0);
2847 if (err < 0)
2848 return err;
2849
2850 spec = codec->spec;
2722b535
TI
2851 if (has_cdefine_beep(codec))
2852 spec->gen.beep_nid = 0x01;
1f0f4b80 2853
225068ab
TI
2854 spec->shutup = alc_eapd_shutup;
2855
c9af753f
TI
2856 alc_pre_init(codec);
2857
1727a771
TI
2858 snd_hda_pick_fixup(codec, alc268_fixup_models, alc268_fixup_tbl, alc268_fixups);
2859 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
6e72aa5f 2860
6ebb8053
TI
2861 /* automatic parse from the BIOS config */
2862 err = alc268_parse_auto_config(codec);
e16fb6d1
TI
2863 if (err < 0)
2864 goto error;
f32610ed 2865
7504b6cd
TI
2866 if (err > 0 && !spec->gen.no_analog &&
2867 spec->gen.autocfg.speaker_pins[0] != 0x1d) {
a5cb463a
TI
2868 for (i = 0; i < ARRAY_SIZE(alc268_beep_mixer); i++) {
2869 if (!snd_hda_gen_add_kctl(&spec->gen, NULL,
2870 &alc268_beep_mixer[i])) {
2871 err = -ENOMEM;
2872 goto error;
2873 }
2874 }
7504b6cd 2875 snd_hda_add_verbs(codec, alc268_beep_init_verbs);
1d045db9
TI
2876 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
2877 /* override the amp caps for beep generator */
2878 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
2879 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
2880 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
2881 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
2882 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
2883 }
2884
1727a771 2885 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
6e72aa5f 2886
f32610ed 2887 return 0;
e16fb6d1
TI
2888
2889 error:
2890 alc_free(codec);
2891 return err;
f32610ed
JS
2892}
2893
bc9f98a9 2894/*
1d045db9 2895 * ALC269
bc9f98a9 2896 */
08c189f2 2897
1d045db9 2898static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
1d045db9 2899 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9
KY
2900};
2901
1d045db9 2902static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
1d045db9 2903 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
bc9f98a9 2904};
291702f0 2905
1d045db9
TI
2906/* different alc269-variants */
2907enum {
2908 ALC269_TYPE_ALC269VA,
2909 ALC269_TYPE_ALC269VB,
2910 ALC269_TYPE_ALC269VC,
adcc70b2 2911 ALC269_TYPE_ALC269VD,
065380f0
KY
2912 ALC269_TYPE_ALC280,
2913 ALC269_TYPE_ALC282,
2af02be7 2914 ALC269_TYPE_ALC283,
065380f0 2915 ALC269_TYPE_ALC284,
4731d5de 2916 ALC269_TYPE_ALC293,
7fc7d047 2917 ALC269_TYPE_ALC286,
506b62c3 2918 ALC269_TYPE_ALC298,
1d04c9de 2919 ALC269_TYPE_ALC255,
4344aec8 2920 ALC269_TYPE_ALC256,
f429e7e4 2921 ALC269_TYPE_ALC257,
0a6f0600 2922 ALC269_TYPE_ALC215,
4231430d 2923 ALC269_TYPE_ALC225,
dcd4f0db 2924 ALC269_TYPE_ALC294,
1078bef0 2925 ALC269_TYPE_ALC300,
f0778871 2926 ALC269_TYPE_ALC623,
6fbae35a 2927 ALC269_TYPE_ALC700,
bc9f98a9
KY
2928};
2929
2930/*
1d045db9 2931 * BIOS auto configuration
bc9f98a9 2932 */
1d045db9
TI
2933static int alc269_parse_auto_config(struct hda_codec *codec)
2934{
1d045db9 2935 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
2936 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
2937 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
2938 struct alc_spec *spec = codec->spec;
adcc70b2
KY
2939 const hda_nid_t *ssids;
2940
2941 switch (spec->codec_variant) {
2942 case ALC269_TYPE_ALC269VA:
2943 case ALC269_TYPE_ALC269VC:
065380f0
KY
2944 case ALC269_TYPE_ALC280:
2945 case ALC269_TYPE_ALC284:
4731d5de 2946 case ALC269_TYPE_ALC293:
adcc70b2
KY
2947 ssids = alc269va_ssids;
2948 break;
2949 case ALC269_TYPE_ALC269VB:
2950 case ALC269_TYPE_ALC269VD:
065380f0 2951 case ALC269_TYPE_ALC282:
2af02be7 2952 case ALC269_TYPE_ALC283:
7fc7d047 2953 case ALC269_TYPE_ALC286:
506b62c3 2954 case ALC269_TYPE_ALC298:
1d04c9de 2955 case ALC269_TYPE_ALC255:
4344aec8 2956 case ALC269_TYPE_ALC256:
f429e7e4 2957 case ALC269_TYPE_ALC257:
0a6f0600 2958 case ALC269_TYPE_ALC215:
4231430d 2959 case ALC269_TYPE_ALC225:
dcd4f0db 2960 case ALC269_TYPE_ALC294:
1078bef0 2961 case ALC269_TYPE_ALC300:
f0778871 2962 case ALC269_TYPE_ALC623:
6fbae35a 2963 case ALC269_TYPE_ALC700:
adcc70b2
KY
2964 ssids = alc269_ssids;
2965 break;
2966 default:
2967 ssids = alc269_ssids;
2968 break;
2969 }
bc9f98a9 2970
3e6179b8 2971 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 2972}
bc9f98a9 2973
1387e2d1 2974static void alc269vb_toggle_power_output(struct hda_codec *codec, int power_up)
1d045db9 2975{
98b24883 2976 alc_update_coef_idx(codec, 0x04, 1 << 11, power_up ? (1 << 11) : 0);
1d045db9 2977}
291702f0 2978
1d045db9
TI
2979static void alc269_shutup(struct hda_codec *codec)
2980{
adcc70b2
KY
2981 struct alc_spec *spec = codec->spec;
2982
1387e2d1
KY
2983 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
2984 alc269vb_toggle_power_output(codec, 0);
2985 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
2986 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
2987 msleep(150);
2988 }
c0ca5ece 2989 alc_shutup_pins(codec);
1d045db9 2990}
291702f0 2991
54db6c39
TI
2992static struct coef_fw alc282_coefs[] = {
2993 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
32fa7e49 2994 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
2995 WRITE_COEF(0x07, 0x0200), /* DMIC control */
2996 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
2997 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
2998 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
2999 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3000 WRITE_COEF(0x0e, 0x6e00), /* LDO1/2/3, DAC/ADC */
3001 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3002 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3003 WRITE_COEF(0x6f, 0x0), /* Class D test 4 */
3004 UPDATE_COEF(0x0c, 0xfe00, 0), /* IO power down directly */
3005 WRITE_COEF(0x34, 0xa0c0), /* ANC */
3006 UPDATE_COEF(0x16, 0x0008, 0), /* AGC MUX */
3007 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3008 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3009 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3010 WRITE_COEF(0x63, 0x2902), /* PLL */
3011 WRITE_COEF(0x68, 0xa080), /* capless control 2 */
3012 WRITE_COEF(0x69, 0x3400), /* capless control 3 */
3013 WRITE_COEF(0x6a, 0x2f3e), /* capless control 4 */
3014 WRITE_COEF(0x6b, 0x0), /* capless control 5 */
3015 UPDATE_COEF(0x6d, 0x0fff, 0x0900), /* class D test 2 */
3016 WRITE_COEF(0x6e, 0x110a), /* class D test 3 */
3017 UPDATE_COEF(0x70, 0x00f8, 0x00d8), /* class D test 5 */
3018 WRITE_COEF(0x71, 0x0014), /* class D test 6 */
3019 WRITE_COEF(0x72, 0xc2ba), /* classD OCP */
3020 UPDATE_COEF(0x77, 0x0f80, 0), /* classD pure DC test */
3021 WRITE_COEF(0x6c, 0xfc06), /* Class D amp control */
3022 {}
3023};
3024
cb149cb3
KY
3025static void alc282_restore_default_value(struct hda_codec *codec)
3026{
54db6c39 3027 alc_process_coef_fw(codec, alc282_coefs);
cb149cb3
KY
3028}
3029
7b5c7a02
KY
3030static void alc282_init(struct hda_codec *codec)
3031{
3032 struct alc_spec *spec = codec->spec;
35a39f98 3033 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3034 bool hp_pin_sense;
3035 int coef78;
3036
cb149cb3
KY
3037 alc282_restore_default_value(codec);
3038
7b5c7a02
KY
3039 if (!hp_pin)
3040 return;
3041 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3042 coef78 = alc_read_coef_idx(codec, 0x78);
3043
3044 /* Index 0x78 Direct Drive HP AMP LPM Control 1 */
3045 /* Headphone capless set to high power mode */
3046 alc_write_coef_idx(codec, 0x78, 0x9004);
3047
3048 if (hp_pin_sense)
3049 msleep(2);
3050
3051 snd_hda_codec_write(codec, hp_pin, 0,
3052 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3053
3054 if (hp_pin_sense)
3055 msleep(85);
3056
3057 snd_hda_codec_write(codec, hp_pin, 0,
3058 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3059
3060 if (hp_pin_sense)
3061 msleep(100);
3062
3063 /* Headphone capless set to normal mode */
3064 alc_write_coef_idx(codec, 0x78, coef78);
3065}
3066
3067static void alc282_shutup(struct hda_codec *codec)
3068{
3069 struct alc_spec *spec = codec->spec;
35a39f98 3070 hda_nid_t hp_pin = alc_get_hp_pin(spec);
7b5c7a02
KY
3071 bool hp_pin_sense;
3072 int coef78;
3073
3074 if (!hp_pin) {
3075 alc269_shutup(codec);
3076 return;
3077 }
3078
3079 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3080 coef78 = alc_read_coef_idx(codec, 0x78);
3081 alc_write_coef_idx(codec, 0x78, 0x9004);
3082
3083 if (hp_pin_sense)
3084 msleep(2);
3085
3086 snd_hda_codec_write(codec, hp_pin, 0,
3087 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3088
3089 if (hp_pin_sense)
3090 msleep(85);
3091
c0ca5ece
TI
3092 if (!spec->no_shutup_pins)
3093 snd_hda_codec_write(codec, hp_pin, 0,
3094 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
7b5c7a02
KY
3095
3096 if (hp_pin_sense)
3097 msleep(100);
3098
3099 alc_auto_setup_eapd(codec, false);
c0ca5ece 3100 alc_shutup_pins(codec);
7b5c7a02
KY
3101 alc_write_coef_idx(codec, 0x78, coef78);
3102}
3103
54db6c39
TI
3104static struct coef_fw alc283_coefs[] = {
3105 WRITE_COEF(0x03, 0x0002), /* Power Down Control */
56779864 3106 UPDATE_COEF(0x05, 0xff3f, 0x0700), /* FIFO and filter clock */
54db6c39
TI
3107 WRITE_COEF(0x07, 0x0200), /* DMIC control */
3108 UPDATE_COEF(0x06, 0x00f0, 0), /* Analog clock */
3109 UPDATE_COEF(0x08, 0xfffc, 0x0c2c), /* JD */
3110 WRITE_COEF(0x0a, 0xcccc), /* JD offset1 */
3111 WRITE_COEF(0x0b, 0xcccc), /* JD offset2 */
3112 WRITE_COEF(0x0e, 0x6fc0), /* LDO1/2/3, DAC/ADC */
3113 UPDATE_COEF(0x0f, 0xf800, 0x1000), /* JD */
3114 UPDATE_COEF(0x10, 0xfc00, 0x0c00), /* Capless */
3115 WRITE_COEF(0x3a, 0x0), /* Class D test 4 */
3116 UPDATE_COEF(0x0c, 0xfe00, 0x0), /* IO power down directly */
3117 WRITE_COEF(0x22, 0xa0c0), /* ANC */
3118 UPDATE_COEFEX(0x53, 0x01, 0x000f, 0x0008), /* AGC MUX */
3119 UPDATE_COEF(0x1d, 0x00e0, 0), /* DAC simple content protection */
3120 UPDATE_COEF(0x1f, 0x00e0, 0), /* ADC simple content protection */
3121 WRITE_COEF(0x21, 0x8804), /* DAC ADC Zero Detection */
3122 WRITE_COEF(0x2e, 0x2902), /* PLL */
3123 WRITE_COEF(0x33, 0xa080), /* capless control 2 */
3124 WRITE_COEF(0x34, 0x3400), /* capless control 3 */
3125 WRITE_COEF(0x35, 0x2f3e), /* capless control 4 */
3126 WRITE_COEF(0x36, 0x0), /* capless control 5 */
3127 UPDATE_COEF(0x38, 0x0fff, 0x0900), /* class D test 2 */
3128 WRITE_COEF(0x39, 0x110a), /* class D test 3 */
3129 UPDATE_COEF(0x3b, 0x00f8, 0x00d8), /* class D test 5 */
3130 WRITE_COEF(0x3c, 0x0014), /* class D test 6 */
3131 WRITE_COEF(0x3d, 0xc2ba), /* classD OCP */
3132 UPDATE_COEF(0x42, 0x0f80, 0x0), /* classD pure DC test */
3133 WRITE_COEF(0x49, 0x0), /* test mode */
3134 UPDATE_COEF(0x40, 0xf800, 0x9800), /* Class D DC enable */
3135 UPDATE_COEF(0x42, 0xf000, 0x2000), /* DC offset */
3136 WRITE_COEF(0x37, 0xfc06), /* Class D amp control */
56779864 3137 UPDATE_COEF(0x1b, 0x8000, 0), /* HP JD control */
54db6c39
TI
3138 {}
3139};
3140
6bd55b04
KY
3141static void alc283_restore_default_value(struct hda_codec *codec)
3142{
54db6c39 3143 alc_process_coef_fw(codec, alc283_coefs);
6bd55b04
KY
3144}
3145
2af02be7
KY
3146static void alc283_init(struct hda_codec *codec)
3147{
3148 struct alc_spec *spec = codec->spec;
35a39f98 3149 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3150 bool hp_pin_sense;
2af02be7 3151
6bd55b04
KY
3152 alc283_restore_default_value(codec);
3153
2af02be7
KY
3154 if (!hp_pin)
3155 return;
a59d7199
KY
3156
3157 msleep(30);
2af02be7
KY
3158 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3159
3160 /* Index 0x43 Direct Drive HP AMP LPM Control 1 */
3161 /* Headphone capless set to high power mode */
3162 alc_write_coef_idx(codec, 0x43, 0x9004);
3163
3164 snd_hda_codec_write(codec, hp_pin, 0,
3165 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3166
3167 if (hp_pin_sense)
3168 msleep(85);
3169
3170 snd_hda_codec_write(codec, hp_pin, 0,
3171 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3172
3173 if (hp_pin_sense)
3174 msleep(85);
3175 /* Index 0x46 Combo jack auto switch control 2 */
3176 /* 3k pull low control for Headset jack. */
98b24883 3177 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
2af02be7
KY
3178 /* Headphone capless set to normal mode */
3179 alc_write_coef_idx(codec, 0x43, 0x9614);
3180}
3181
3182static void alc283_shutup(struct hda_codec *codec)
3183{
3184 struct alc_spec *spec = codec->spec;
35a39f98 3185 hda_nid_t hp_pin = alc_get_hp_pin(spec);
2af02be7 3186 bool hp_pin_sense;
2af02be7
KY
3187
3188 if (!hp_pin) {
3189 alc269_shutup(codec);
3190 return;
3191 }
3192
3193 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3194
3195 alc_write_coef_idx(codec, 0x43, 0x9004);
3196
b450b17c
HP
3197 /*depop hp during suspend*/
3198 alc_write_coef_idx(codec, 0x06, 0x2100);
3199
2af02be7
KY
3200 snd_hda_codec_write(codec, hp_pin, 0,
3201 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3202
3203 if (hp_pin_sense)
88011c09 3204 msleep(100);
2af02be7 3205
c0ca5ece
TI
3206 if (!spec->no_shutup_pins)
3207 snd_hda_codec_write(codec, hp_pin, 0,
3208 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
2af02be7 3209
98b24883 3210 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
2af02be7
KY
3211
3212 if (hp_pin_sense)
88011c09 3213 msleep(100);
0435b3ff 3214 alc_auto_setup_eapd(codec, false);
c0ca5ece 3215 alc_shutup_pins(codec);
2af02be7
KY
3216 alc_write_coef_idx(codec, 0x43, 0x9614);
3217}
3218
4a219ef8
KY
3219static void alc256_init(struct hda_codec *codec)
3220{
3221 struct alc_spec *spec = codec->spec;
35a39f98 3222 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3223 bool hp_pin_sense;
3224
3225 if (!hp_pin)
6447c962 3226 hp_pin = 0x21;
4a219ef8
KY
3227
3228 msleep(30);
3229
3230 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3231
3232 if (hp_pin_sense)
3233 msleep(2);
3234
3235 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
6447c962
KY
3236 if (spec->ultra_low_power) {
3237 alc_update_coef_idx(codec, 0x03, 1<<1, 1<<1);
3238 alc_update_coef_idx(codec, 0x08, 3<<2, 3<<2);
3239 alc_update_coef_idx(codec, 0x08, 7<<4, 0);
3240 alc_update_coef_idx(codec, 0x3b, 1<<15, 0);
3241 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3242 msleep(30);
3243 }
4a219ef8
KY
3244
3245 snd_hda_codec_write(codec, hp_pin, 0,
3246 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3247
6447c962 3248 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3249 msleep(85);
3250
3251 snd_hda_codec_write(codec, hp_pin, 0,
3252 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3253
6447c962 3254 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3255 msleep(100);
3256
3257 alc_update_coef_idx(codec, 0x46, 3 << 12, 0);
3258 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
88d42b2b
KY
3259 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 1 << 15); /* Clear bit */
3260 alc_update_coefex_idx(codec, 0x53, 0x02, 0x8000, 0 << 15);
d07a9a4f 3261 alc_update_coef_idx(codec, 0x36, 1 << 13, 1 << 5); /* Switch pcbeep path to Line in path*/
4a219ef8
KY
3262}
3263
3264static void alc256_shutup(struct hda_codec *codec)
3265{
3266 struct alc_spec *spec = codec->spec;
35a39f98 3267 hda_nid_t hp_pin = alc_get_hp_pin(spec);
4a219ef8
KY
3268 bool hp_pin_sense;
3269
6447c962
KY
3270 if (!hp_pin)
3271 hp_pin = 0x21;
4a219ef8
KY
3272
3273 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3274
3275 if (hp_pin_sense)
3276 msleep(2);
3277
3278 snd_hda_codec_write(codec, hp_pin, 0,
3279 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3280
6447c962 3281 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3282 msleep(85);
3283
1c9609e3
TI
3284 /* 3k pull low control for Headset jack. */
3285 /* NOTE: call this before clearing the pin, otherwise codec stalls */
3286 alc_update_coef_idx(codec, 0x46, 0, 3 << 12);
3287
c0ca5ece
TI
3288 if (!spec->no_shutup_pins)
3289 snd_hda_codec_write(codec, hp_pin, 0,
3290 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4a219ef8 3291
6447c962 3292 if (hp_pin_sense || spec->ultra_low_power)
4a219ef8
KY
3293 msleep(100);
3294
3295 alc_auto_setup_eapd(codec, false);
c0ca5ece 3296 alc_shutup_pins(codec);
6447c962
KY
3297 if (spec->ultra_low_power) {
3298 msleep(50);
3299 alc_update_coef_idx(codec, 0x03, 1<<1, 0);
3300 alc_update_coef_idx(codec, 0x08, 7<<4, 7<<4);
3301 alc_update_coef_idx(codec, 0x08, 3<<2, 0);
3302 alc_update_coef_idx(codec, 0x3b, 1<<15, 1<<15);
3303 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3304 msleep(30);
3305 }
4a219ef8
KY
3306}
3307
da911b1f
KY
3308static void alc225_init(struct hda_codec *codec)
3309{
3310 struct alc_spec *spec = codec->spec;
35a39f98 3311 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3312 bool hp1_pin_sense, hp2_pin_sense;
3313
3314 if (!hp_pin)
d3ba58bb 3315 hp_pin = 0x21;
da911b1f
KY
3316 msleep(30);
3317
3318 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3319 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3320
3321 if (hp1_pin_sense || hp2_pin_sense)
3322 msleep(2);
3323
3324 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x1); /* Low power */
d3ba58bb
KY
3325 if (spec->ultra_low_power) {
3326 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 3<<2);
3327 alc_update_coef_idx(codec, 0x0e, 7<<6, 7<<6);
3328 alc_update_coef_idx(codec, 0x33, 1<<11, 0);
3329 msleep(30);
3330 }
da911b1f 3331
d3ba58bb 3332 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3333 snd_hda_codec_write(codec, hp_pin, 0,
3334 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3335 if (hp2_pin_sense)
3336 snd_hda_codec_write(codec, 0x16, 0,
3337 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3338
d3ba58bb 3339 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3340 msleep(85);
3341
d3ba58bb 3342 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3343 snd_hda_codec_write(codec, hp_pin, 0,
3344 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3345 if (hp2_pin_sense)
3346 snd_hda_codec_write(codec, 0x16, 0,
3347 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3348
d3ba58bb 3349 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3350 msleep(100);
3351
3352 alc_update_coef_idx(codec, 0x4a, 3 << 10, 0);
3353 alc_update_coefex_idx(codec, 0x57, 0x04, 0x0007, 0x4); /* Hight power */
3354}
3355
3356static void alc225_shutup(struct hda_codec *codec)
3357{
3358 struct alc_spec *spec = codec->spec;
35a39f98 3359 hda_nid_t hp_pin = alc_get_hp_pin(spec);
da911b1f
KY
3360 bool hp1_pin_sense, hp2_pin_sense;
3361
d3ba58bb
KY
3362 if (!hp_pin)
3363 hp_pin = 0x21;
da911b1f
KY
3364 /* 3k pull low control for Headset jack. */
3365 alc_update_coef_idx(codec, 0x4a, 0, 3 << 10);
3366
3367 hp1_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3368 hp2_pin_sense = snd_hda_jack_detect(codec, 0x16);
3369
3370 if (hp1_pin_sense || hp2_pin_sense)
3371 msleep(2);
3372
d3ba58bb 3373 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3374 snd_hda_codec_write(codec, hp_pin, 0,
3375 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3376 if (hp2_pin_sense)
3377 snd_hda_codec_write(codec, 0x16, 0,
3378 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3379
d3ba58bb 3380 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3381 msleep(85);
3382
d3ba58bb 3383 if (hp1_pin_sense || spec->ultra_low_power)
da911b1f
KY
3384 snd_hda_codec_write(codec, hp_pin, 0,
3385 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3386 if (hp2_pin_sense)
3387 snd_hda_codec_write(codec, 0x16, 0,
3388 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
3389
d3ba58bb 3390 if (hp1_pin_sense || hp2_pin_sense || spec->ultra_low_power)
da911b1f
KY
3391 msleep(100);
3392
3393 alc_auto_setup_eapd(codec, false);
c0ca5ece 3394 alc_shutup_pins(codec);
d3ba58bb
KY
3395 if (spec->ultra_low_power) {
3396 msleep(50);
3397 alc_update_coef_idx(codec, 0x08, 0x0f << 2, 0x0c << 2);
3398 alc_update_coef_idx(codec, 0x0e, 7<<6, 0);
3399 alc_update_coef_idx(codec, 0x33, 1<<11, 1<<11);
3400 alc_update_coef_idx(codec, 0x4a, 3<<4, 2<<4);
3401 msleep(30);
3402 }
da911b1f
KY
3403}
3404
c2d6af53
KY
3405static void alc_default_init(struct hda_codec *codec)
3406{
3407 struct alc_spec *spec = codec->spec;
35a39f98 3408 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3409 bool hp_pin_sense;
3410
3411 if (!hp_pin)
3412 return;
3413
3414 msleep(30);
3415
3416 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3417
3418 if (hp_pin_sense)
3419 msleep(2);
3420
3421 snd_hda_codec_write(codec, hp_pin, 0,
3422 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3423
3424 if (hp_pin_sense)
3425 msleep(85);
3426
3427 snd_hda_codec_write(codec, hp_pin, 0,
3428 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
3429
3430 if (hp_pin_sense)
3431 msleep(100);
3432}
3433
3434static void alc_default_shutup(struct hda_codec *codec)
3435{
3436 struct alc_spec *spec = codec->spec;
35a39f98 3437 hda_nid_t hp_pin = alc_get_hp_pin(spec);
c2d6af53
KY
3438 bool hp_pin_sense;
3439
3440 if (!hp_pin) {
3441 alc269_shutup(codec);
3442 return;
3443 }
3444
3445 hp_pin_sense = snd_hda_jack_detect(codec, hp_pin);
3446
3447 if (hp_pin_sense)
3448 msleep(2);
3449
3450 snd_hda_codec_write(codec, hp_pin, 0,
3451 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3452
3453 if (hp_pin_sense)
3454 msleep(85);
3455
c0ca5ece
TI
3456 if (!spec->no_shutup_pins)
3457 snd_hda_codec_write(codec, hp_pin, 0,
3458 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
c2d6af53
KY
3459
3460 if (hp_pin_sense)
3461 msleep(100);
3462
3463 alc_auto_setup_eapd(codec, false);
c0ca5ece 3464 alc_shutup_pins(codec);
c2d6af53
KY
3465}
3466
693abe11
KY
3467static void alc294_hp_init(struct hda_codec *codec)
3468{
3469 struct alc_spec *spec = codec->spec;
35a39f98 3470 hda_nid_t hp_pin = alc_get_hp_pin(spec);
693abe11
KY
3471 int i, val;
3472
3473 if (!hp_pin)
3474 return;
3475
3476 snd_hda_codec_write(codec, hp_pin, 0,
3477 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
3478
3479 msleep(100);
3480
c0ca5ece
TI
3481 if (!spec->no_shutup_pins)
3482 snd_hda_codec_write(codec, hp_pin, 0,
3483 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
693abe11
KY
3484
3485 alc_update_coef_idx(codec, 0x6f, 0x000f, 0);/* Set HP depop to manual mode */
3486 alc_update_coefex_idx(codec, 0x58, 0x00, 0x8000, 0x8000); /* HP depop procedure start */
3487
3488 /* Wait for depop procedure finish */
3489 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3490 for (i = 0; i < 20 && val & 0x0080; i++) {
3491 msleep(50);
3492 val = alc_read_coefex_idx(codec, 0x58, 0x01);
3493 }
3494 /* Set HP depop to auto mode */
3495 alc_update_coef_idx(codec, 0x6f, 0x000f, 0x000b);
3496 msleep(50);
3497}
3498
3499static void alc294_init(struct hda_codec *codec)
3500{
3501 struct alc_spec *spec = codec->spec;
3502
f6ef4e0e
TI
3503 /* required only at boot or S4 resume time */
3504 if (!spec->done_hp_init ||
3505 codec->core.dev.power.power_state.event == PM_EVENT_RESTORE) {
693abe11
KY
3506 alc294_hp_init(codec);
3507 spec->done_hp_init = true;
3508 }
3509 alc_default_init(codec);
3510}
3511
ad60d502
KY
3512static void alc5505_coef_set(struct hda_codec *codec, unsigned int index_reg,
3513 unsigned int val)
3514{
3515 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3516 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val & 0xffff); /* LSB */
3517 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_PROC_COEF, val >> 16); /* MSB */
3518}
3519
3520static int alc5505_coef_get(struct hda_codec *codec, unsigned int index_reg)
3521{
3522 unsigned int val;
3523
3524 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_COEF_INDEX, index_reg >> 1);
3525 val = snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3526 & 0xffff;
3527 val |= snd_hda_codec_read(codec, 0x51, 0, AC_VERB_GET_PROC_COEF, 0)
3528 << 16;
3529 return val;
3530}
3531
3532static void alc5505_dsp_halt(struct hda_codec *codec)
3533{
3534 unsigned int val;
3535
3536 alc5505_coef_set(codec, 0x3000, 0x000c); /* DSP CPU stop */
3537 alc5505_coef_set(codec, 0x880c, 0x0008); /* DDR enter self refresh */
3538 alc5505_coef_set(codec, 0x61c0, 0x11110080); /* Clock control for PLL and CPU */
3539 alc5505_coef_set(codec, 0x6230, 0xfc0d4011); /* Disable Input OP */
3540 alc5505_coef_set(codec, 0x61b4, 0x040a2b03); /* Stop PLL2 */
3541 alc5505_coef_set(codec, 0x61b0, 0x00005b17); /* Stop PLL1 */
3542 alc5505_coef_set(codec, 0x61b8, 0x04133303); /* Stop PLL3 */
3543 val = alc5505_coef_get(codec, 0x6220);
3544 alc5505_coef_set(codec, 0x6220, (val | 0x3000)); /* switch Ringbuffer clock to DBUS clock */
3545}
3546
3547static void alc5505_dsp_back_from_halt(struct hda_codec *codec)
3548{
3549 alc5505_coef_set(codec, 0x61b8, 0x04133302);
3550 alc5505_coef_set(codec, 0x61b0, 0x00005b16);
3551 alc5505_coef_set(codec, 0x61b4, 0x040a2b02);
3552 alc5505_coef_set(codec, 0x6230, 0xf80d4011);
3553 alc5505_coef_set(codec, 0x6220, 0x2002010f);
3554 alc5505_coef_set(codec, 0x880c, 0x00000004);
3555}
3556
3557static void alc5505_dsp_init(struct hda_codec *codec)
3558{
3559 unsigned int val;
3560
3561 alc5505_dsp_halt(codec);
3562 alc5505_dsp_back_from_halt(codec);
3563 alc5505_coef_set(codec, 0x61b0, 0x5b14); /* PLL1 control */
3564 alc5505_coef_set(codec, 0x61b0, 0x5b16);
3565 alc5505_coef_set(codec, 0x61b4, 0x04132b00); /* PLL2 control */
3566 alc5505_coef_set(codec, 0x61b4, 0x04132b02);
3567 alc5505_coef_set(codec, 0x61b8, 0x041f3300); /* PLL3 control*/
3568 alc5505_coef_set(codec, 0x61b8, 0x041f3302);
3569 snd_hda_codec_write(codec, 0x51, 0, AC_VERB_SET_CODEC_RESET, 0); /* Function reset */
3570 alc5505_coef_set(codec, 0x61b8, 0x041b3302);
3571 alc5505_coef_set(codec, 0x61b8, 0x04173302);
3572 alc5505_coef_set(codec, 0x61b8, 0x04163302);
3573 alc5505_coef_set(codec, 0x8800, 0x348b328b); /* DRAM control */
3574 alc5505_coef_set(codec, 0x8808, 0x00020022); /* DRAM control */
3575 alc5505_coef_set(codec, 0x8818, 0x00000400); /* DRAM control */
3576
3577 val = alc5505_coef_get(codec, 0x6200) >> 16; /* Read revision ID */
3578 if (val <= 3)
3579 alc5505_coef_set(codec, 0x6220, 0x2002010f); /* I/O PAD Configuration */
3580 else
3581 alc5505_coef_set(codec, 0x6220, 0x6002018f);
3582
3583 alc5505_coef_set(codec, 0x61ac, 0x055525f0); /**/
3584 alc5505_coef_set(codec, 0x61c0, 0x12230080); /* Clock control */
3585 alc5505_coef_set(codec, 0x61b4, 0x040e2b02); /* PLL2 control */
3586 alc5505_coef_set(codec, 0x61bc, 0x010234f8); /* OSC Control */
3587 alc5505_coef_set(codec, 0x880c, 0x00000004); /* DRAM Function control */
3588 alc5505_coef_set(codec, 0x880c, 0x00000003);
3589 alc5505_coef_set(codec, 0x880c, 0x00000010);
cd63a5ff
TI
3590
3591#ifdef HALT_REALTEK_ALC5505
3592 alc5505_dsp_halt(codec);
3593#endif
ad60d502
KY
3594}
3595
cd63a5ff
TI
3596#ifdef HALT_REALTEK_ALC5505
3597#define alc5505_dsp_suspend(codec) /* NOP */
3598#define alc5505_dsp_resume(codec) /* NOP */
3599#else
3600#define alc5505_dsp_suspend(codec) alc5505_dsp_halt(codec)
3601#define alc5505_dsp_resume(codec) alc5505_dsp_back_from_halt(codec)
3602#endif
3603
2a43952a 3604#ifdef CONFIG_PM
ad60d502
KY
3605static int alc269_suspend(struct hda_codec *codec)
3606{
3607 struct alc_spec *spec = codec->spec;
3608
3609 if (spec->has_alc5505_dsp)
cd63a5ff 3610 alc5505_dsp_suspend(codec);
ad60d502
KY
3611 return alc_suspend(codec);
3612}
3613
1d045db9
TI
3614static int alc269_resume(struct hda_codec *codec)
3615{
adcc70b2
KY
3616 struct alc_spec *spec = codec->spec;
3617
1387e2d1
KY
3618 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3619 alc269vb_toggle_power_output(codec, 0);
3620 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 3621 (alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9
TI
3622 msleep(150);
3623 }
8c427226 3624
1d045db9 3625 codec->patch_ops.init(codec);
f1d4e28b 3626
1387e2d1
KY
3627 if (spec->codec_variant == ALC269_TYPE_ALC269VB)
3628 alc269vb_toggle_power_output(codec, 1);
3629 if (spec->codec_variant == ALC269_TYPE_ALC269VB &&
adcc70b2 3630 (alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9
TI
3631 msleep(200);
3632 }
f1d4e28b 3633
eeecd9d1 3634 regcache_sync(codec->core.regmap);
1d045db9 3635 hda_call_check_power_status(codec, 0x01);
f475371a
HW
3636
3637 /* on some machine, the BIOS will clear the codec gpio data when enter
3638 * suspend, and won't restore the data after resume, so we restore it
3639 * in the driver.
3640 */
d261eec8
TI
3641 if (spec->gpio_data)
3642 alc_write_gpio_data(codec);
f475371a 3643
ad60d502 3644 if (spec->has_alc5505_dsp)
cd63a5ff 3645 alc5505_dsp_resume(codec);
c5177c86 3646
1d045db9
TI
3647 return 0;
3648}
2a43952a 3649#endif /* CONFIG_PM */
f1d4e28b 3650
108cc108 3651static void alc269_fixup_pincfg_no_hp_to_lineout(struct hda_codec *codec,
1727a771 3652 const struct hda_fixup *fix, int action)
108cc108
DH
3653{
3654 struct alc_spec *spec = codec->spec;
3655
1727a771 3656 if (action == HDA_FIXUP_ACT_PRE_PROBE)
108cc108
DH
3657 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
3658}
3659
fdcc968a
JMG
3660static void alc269_fixup_pincfg_U7x7_headset_mic(struct hda_codec *codec,
3661 const struct hda_fixup *fix,
3662 int action)
3663{
3664 unsigned int cfg_headphone = snd_hda_codec_get_pincfg(codec, 0x21);
3665 unsigned int cfg_headset_mic = snd_hda_codec_get_pincfg(codec, 0x19);
3666
3667 if (cfg_headphone && cfg_headset_mic == 0x411111f0)
3668 snd_hda_codec_set_pincfg(codec, 0x19,
3669 (cfg_headphone & ~AC_DEFCFG_DEVICE) |
3670 (AC_JACK_MIC_IN << AC_DEFCFG_DEVICE_SHIFT));
3671}
3672
1d045db9 3673static void alc269_fixup_hweq(struct hda_codec *codec,
1727a771 3674 const struct hda_fixup *fix, int action)
1d045db9 3675{
98b24883
TI
3676 if (action == HDA_FIXUP_ACT_INIT)
3677 alc_update_coef_idx(codec, 0x1e, 0, 0x80);
1d045db9 3678}
f1d4e28b 3679
7c478f03
DH
3680static void alc269_fixup_headset_mic(struct hda_codec *codec,
3681 const struct hda_fixup *fix, int action)
3682{
3683 struct alc_spec *spec = codec->spec;
3684
3685 if (action == HDA_FIXUP_ACT_PRE_PROBE)
3686 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3687}
3688
1d045db9 3689static void alc271_fixup_dmic(struct hda_codec *codec,
1727a771 3690 const struct hda_fixup *fix, int action)
1d045db9
TI
3691{
3692 static const struct hda_verb verbs[] = {
3693 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
3694 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
3695 {}
3696 };
3697 unsigned int cfg;
f1d4e28b 3698
7639a06c
TI
3699 if (strcmp(codec->core.chip_name, "ALC271X") &&
3700 strcmp(codec->core.chip_name, "ALC269VB"))
1d045db9
TI
3701 return;
3702 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
3703 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
3704 snd_hda_sequence_write(codec, verbs);
3705}
f1d4e28b 3706
017f2a10 3707static void alc269_fixup_pcm_44k(struct hda_codec *codec,
1727a771 3708 const struct hda_fixup *fix, int action)
017f2a10
TI
3709{
3710 struct alc_spec *spec = codec->spec;
3711
1727a771 3712 if (action != HDA_FIXUP_ACT_PROBE)
017f2a10
TI
3713 return;
3714
3715 /* Due to a hardware problem on Lenovo Ideadpad, we need to
3716 * fix the sample rate of analog I/O to 44.1kHz
3717 */
08c189f2
TI
3718 spec->gen.stream_analog_playback = &alc269_44k_pcm_analog_playback;
3719 spec->gen.stream_analog_capture = &alc269_44k_pcm_analog_capture;
017f2a10
TI
3720}
3721
adabb3ec 3722static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
1727a771 3723 const struct hda_fixup *fix, int action)
adabb3ec 3724{
adabb3ec
TI
3725 /* The digital-mic unit sends PDM (differential signal) instead of
3726 * the standard PCM, thus you can't record a valid mono stream as is.
3727 * Below is a workaround specific to ALC269 to control the dmic
3728 * signal source as mono.
3729 */
98b24883
TI
3730 if (action == HDA_FIXUP_ACT_INIT)
3731 alc_update_coef_idx(codec, 0x07, 0, 0x80);
adabb3ec
TI
3732}
3733
24519911
TI
3734static void alc269_quanta_automute(struct hda_codec *codec)
3735{
08c189f2 3736 snd_hda_gen_update_outputs(codec);
24519911 3737
1687ccc8
TI
3738 alc_write_coef_idx(codec, 0x0c, 0x680);
3739 alc_write_coef_idx(codec, 0x0c, 0x480);
24519911
TI
3740}
3741
3742static void alc269_fixup_quanta_mute(struct hda_codec *codec,
1727a771 3743 const struct hda_fixup *fix, int action)
24519911
TI
3744{
3745 struct alc_spec *spec = codec->spec;
1727a771 3746 if (action != HDA_FIXUP_ACT_PROBE)
24519911 3747 return;
08c189f2 3748 spec->gen.automute_hook = alc269_quanta_automute;
24519911
TI
3749}
3750
d240d1dc 3751static void alc269_x101_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 3752 struct hda_jack_callback *jack)
d240d1dc
DH
3753{
3754 struct alc_spec *spec = codec->spec;
3755 int vref;
3756 msleep(200);
3757 snd_hda_gen_hp_automute(codec, jack);
3758
3759 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
3760 msleep(100);
3761 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3762 vref);
3763 msleep(500);
3764 snd_hda_codec_write(codec, 0x18, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3765 vref);
3766}
3767
a2ef03fe
TE
3768/*
3769 * Magic sequence to make Huawei Matebook X right speaker working (bko#197801)
3770 */
3771struct hda_alc298_mbxinit {
3772 unsigned char value_0x23;
3773 unsigned char value_0x25;
3774};
3775
3776static void alc298_huawei_mbx_stereo_seq(struct hda_codec *codec,
3777 const struct hda_alc298_mbxinit *initval,
3778 bool first)
3779{
3780 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x0);
3781 alc_write_coef_idx(codec, 0x26, 0xb000);
3782
3783 if (first)
3784 snd_hda_codec_write(codec, 0x21, 0, AC_VERB_GET_PIN_SENSE, 0x0);
3785
3786 snd_hda_codec_write(codec, 0x6, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3787 alc_write_coef_idx(codec, 0x26, 0xf000);
3788 alc_write_coef_idx(codec, 0x23, initval->value_0x23);
3789
3790 if (initval->value_0x23 != 0x1e)
3791 alc_write_coef_idx(codec, 0x25, initval->value_0x25);
3792
3793 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3794 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3795}
3796
3797static void alc298_fixup_huawei_mbx_stereo(struct hda_codec *codec,
3798 const struct hda_fixup *fix,
3799 int action)
3800{
3801 /* Initialization magic */
3802 static const struct hda_alc298_mbxinit dac_init[] = {
3803 {0x0c, 0x00}, {0x0d, 0x00}, {0x0e, 0x00}, {0x0f, 0x00},
3804 {0x10, 0x00}, {0x1a, 0x40}, {0x1b, 0x82}, {0x1c, 0x00},
3805 {0x1d, 0x00}, {0x1e, 0x00}, {0x1f, 0x00},
3806 {0x20, 0xc2}, {0x21, 0xc8}, {0x22, 0x26}, {0x23, 0x24},
3807 {0x27, 0xff}, {0x28, 0xff}, {0x29, 0xff}, {0x2a, 0x8f},
3808 {0x2b, 0x02}, {0x2c, 0x48}, {0x2d, 0x34}, {0x2e, 0x00},
3809 {0x2f, 0x00},
3810 {0x30, 0x00}, {0x31, 0x00}, {0x32, 0x00}, {0x33, 0x00},
3811 {0x34, 0x00}, {0x35, 0x01}, {0x36, 0x93}, {0x37, 0x0c},
3812 {0x38, 0x00}, {0x39, 0x00}, {0x3a, 0xf8}, {0x38, 0x80},
3813 {}
3814 };
3815 const struct hda_alc298_mbxinit *seq;
3816
3817 if (action != HDA_FIXUP_ACT_INIT)
3818 return;
3819
3820 /* Start */
3821 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x00);
3822 snd_hda_codec_write(codec, 0x06, 0, AC_VERB_SET_DIGI_CONVERT_3, 0x80);
3823 alc_write_coef_idx(codec, 0x26, 0xf000);
3824 alc_write_coef_idx(codec, 0x22, 0x31);
3825 alc_write_coef_idx(codec, 0x23, 0x0b);
3826 alc_write_coef_idx(codec, 0x25, 0x00);
3827 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0x26);
3828 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, 0xb010);
3829
3830 for (seq = dac_init; seq->value_0x23; seq++)
3831 alc298_huawei_mbx_stereo_seq(codec, seq, seq == dac_init);
3832}
3833
d240d1dc
DH
3834static void alc269_fixup_x101_headset_mic(struct hda_codec *codec,
3835 const struct hda_fixup *fix, int action)
3836{
3837 struct alc_spec *spec = codec->spec;
3838 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3839 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
3840 spec->gen.hp_automute_hook = alc269_x101_hp_automute_hook;
3841 }
3842}
3843
3844
08fb0d0e
TI
3845/* update mute-LED according to the speaker mute state via mic VREF pin */
3846static void alc269_fixup_mic_mute_hook(void *private_data, int enabled)
6d3cd5d4
DH
3847{
3848 struct hda_codec *codec = private_data;
08fb0d0e
TI
3849 struct alc_spec *spec = codec->spec;
3850 unsigned int pinval;
3851
3852 if (spec->mute_led_polarity)
3853 enabled = !enabled;
415d555e
TI
3854 pinval = snd_hda_codec_get_pin_target(codec, spec->mute_led_nid);
3855 pinval &= ~AC_PINCTL_VREFEN;
3856 pinval |= enabled ? AC_PINCTL_VREF_HIZ : AC_PINCTL_VREF_80;
e40bdb03
TI
3857 if (spec->mute_led_nid) {
3858 /* temporarily power up/down for setting VREF */
3859 snd_hda_power_up_pm(codec);
08fb0d0e 3860 snd_hda_set_pin_ctl_cache(codec, spec->mute_led_nid, pinval);
e40bdb03
TI
3861 snd_hda_power_down_pm(codec);
3862 }
6d3cd5d4
DH
3863}
3864
d5b6b65e
DH
3865/* Make sure the led works even in runtime suspend */
3866static unsigned int led_power_filter(struct hda_codec *codec,
3867 hda_nid_t nid,
3868 unsigned int power_state)
3869{
3870 struct alc_spec *spec = codec->spec;
3871
50dd9050
HW
3872 if (power_state != AC_PWRST_D3 || nid == 0 ||
3873 (nid != spec->mute_led_nid && nid != spec->cap_mute_led_nid))
d5b6b65e
DH
3874 return power_state;
3875
3876 /* Set pin ctl again, it might have just been set to 0 */
3877 snd_hda_set_pin_ctl(codec, nid,
3878 snd_hda_codec_get_pin_target(codec, nid));
3879
cffd3966 3880 return snd_hda_gen_path_power_filter(codec, nid, power_state);
d5b6b65e
DH
3881}
3882
08fb0d0e
TI
3883static void alc269_fixup_hp_mute_led(struct hda_codec *codec,
3884 const struct hda_fixup *fix, int action)
6d3cd5d4
DH
3885{
3886 struct alc_spec *spec = codec->spec;
08fb0d0e
TI
3887 const struct dmi_device *dev = NULL;
3888
3889 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3890 return;
3891
3892 while ((dev = dmi_find_device(DMI_DEV_TYPE_OEM_STRING, NULL, dev))) {
3893 int pol, pin;
3894 if (sscanf(dev->name, "HP_Mute_LED_%d_%x", &pol, &pin) != 2)
3895 continue;
3896 if (pin < 0x0a || pin >= 0x10)
3897 break;
3898 spec->mute_led_polarity = pol;
3899 spec->mute_led_nid = pin - 0x0a + 0x18;
3900 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
fd25a97a 3901 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3902 codec->power_filter = led_power_filter;
4e76a883
TI
3903 codec_dbg(codec,
3904 "Detected mute LED for %x:%d\n", spec->mute_led_nid,
08fb0d0e 3905 spec->mute_led_polarity);
6d3cd5d4
DH
3906 break;
3907 }
3908}
3909
85c467dc
TI
3910static void alc269_fixup_hp_mute_led_micx(struct hda_codec *codec,
3911 const struct hda_fixup *fix,
3912 int action, hda_nid_t pin)
d06ac143
DH
3913{
3914 struct alc_spec *spec = codec->spec;
85c467dc 3915
d06ac143
DH
3916 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
3917 spec->mute_led_polarity = 0;
85c467dc 3918 spec->mute_led_nid = pin;
d06ac143
DH
3919 spec->gen.vmaster_mute.hook = alc269_fixup_mic_mute_hook;
3920 spec->gen.vmaster_mute_enum = 1;
d5b6b65e 3921 codec->power_filter = led_power_filter;
d06ac143
DH
3922 }
3923}
3924
85c467dc
TI
3925static void alc269_fixup_hp_mute_led_mic1(struct hda_codec *codec,
3926 const struct hda_fixup *fix, int action)
3927{
3928 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x18);
3929}
3930
08fb0d0e
TI
3931static void alc269_fixup_hp_mute_led_mic2(struct hda_codec *codec,
3932 const struct hda_fixup *fix, int action)
420b0feb 3933{
85c467dc 3934 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x19);
420b0feb
TI
3935}
3936
7f783bd5
TB
3937static void alc269_fixup_hp_mute_led_mic3(struct hda_codec *codec,
3938 const struct hda_fixup *fix, int action)
3939{
85c467dc 3940 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1b);
7f783bd5
TB
3941}
3942
0f32fd19
TI
3943/* update LED status via GPIO */
3944static void alc_update_gpio_led(struct hda_codec *codec, unsigned int mask,
3945 bool enabled)
9f5c6faf 3946{
9f5c6faf 3947 struct alc_spec *spec = codec->spec;
9f5c6faf 3948
0f32fd19
TI
3949 if (spec->mute_led_polarity)
3950 enabled = !enabled;
d261eec8 3951 alc_update_gpio_data(codec, mask, !enabled); /* muted -> LED on */
9f5c6faf
TI
3952}
3953
0f32fd19
TI
3954/* turn on/off mute LED via GPIO per vmaster hook */
3955static void alc_fixup_gpio_mute_hook(void *private_data, int enabled)
9f5c6faf 3956{
0f32fd19 3957 struct hda_codec *codec = private_data;
9f5c6faf 3958 struct alc_spec *spec = codec->spec;
9f5c6faf 3959
0f32fd19
TI
3960 alc_update_gpio_led(codec, spec->gpio_mute_led_mask, enabled);
3961}
9f5c6faf 3962
0f32fd19 3963/* turn on/off mic-mute LED via GPIO per capture hook */
d03abeca 3964static void alc_gpio_micmute_update(struct hda_codec *codec)
0f32fd19
TI
3965{
3966 struct alc_spec *spec = codec->spec;
3967
d03abeca
TI
3968 alc_update_gpio_led(codec, spec->gpio_mic_led_mask,
3969 spec->gen.micmute_led.led_value);
9f5c6faf
TI
3970}
3971
01e4a275
TI
3972/* setup mute and mic-mute GPIO bits, add hooks appropriately */
3973static void alc_fixup_hp_gpio_led(struct hda_codec *codec,
3974 int action,
3975 unsigned int mute_mask,
3976 unsigned int micmute_mask)
9f5c6faf
TI
3977{
3978 struct alc_spec *spec = codec->spec;
9f5c6faf 3979
01e4a275
TI
3980 alc_fixup_gpio(codec, action, mute_mask | micmute_mask);
3981
3982 if (action != HDA_FIXUP_ACT_PRE_PROBE)
3983 return;
3984 if (mute_mask) {
3985 spec->gpio_mute_led_mask = mute_mask;
0f32fd19 3986 spec->gen.vmaster_mute.hook = alc_fixup_gpio_mute_hook;
01e4a275
TI
3987 }
3988 if (micmute_mask) {
3989 spec->gpio_mic_led_mask = micmute_mask;
d03abeca 3990 snd_hda_gen_add_micmute_led(codec, alc_gpio_micmute_update);
9f5c6faf
TI
3991 }
3992}
3993
01e4a275 3994static void alc269_fixup_hp_gpio_led(struct hda_codec *codec,
eaa8e5ef
KY
3995 const struct hda_fixup *fix, int action)
3996{
01e4a275
TI
3997 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
3998}
eaa8e5ef 3999
01e4a275
TI
4000static void alc286_fixup_hp_gpio_led(struct hda_codec *codec,
4001 const struct hda_fixup *fix, int action)
4002{
4003 alc_fixup_hp_gpio_led(codec, action, 0x02, 0x20);
9f5c6faf
TI
4004}
4005
9c5dc3bf 4006/* turn on/off mic-mute LED per capture hook */
d03abeca 4007static void alc_cap_micmute_update(struct hda_codec *codec)
9c5dc3bf
KY
4008{
4009 struct alc_spec *spec = codec->spec;
d03abeca 4010 unsigned int pinval;
9c5dc3bf 4011
d03abeca
TI
4012 if (!spec->cap_mute_led_nid)
4013 return;
fc1fad93 4014 pinval = snd_hda_codec_get_pin_target(codec, spec->cap_mute_led_nid);
9c5dc3bf 4015 pinval &= ~AC_PINCTL_VREFEN;
d03abeca
TI
4016 if (spec->gen.micmute_led.led_value)
4017 pinval |= AC_PINCTL_VREF_80;
9c5dc3bf 4018 else
d03abeca
TI
4019 pinval |= AC_PINCTL_VREF_HIZ;
4020 snd_hda_set_pin_ctl_cache(codec, spec->cap_mute_led_nid, pinval);
9c5dc3bf
KY
4021}
4022
4023static void alc269_fixup_hp_gpio_mic1_led(struct hda_codec *codec,
4024 const struct hda_fixup *fix, int action)
4025{
4026 struct alc_spec *spec = codec->spec;
9c5dc3bf 4027
01e4a275 4028 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
9c5dc3bf 4029 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
4030 /* Like hp_gpio_mic1_led, but also needs GPIO4 low to
4031 * enable headphone amp
4032 */
4033 spec->gpio_mask |= 0x10;
4034 spec->gpio_dir |= 0x10;
9c5dc3bf 4035 spec->cap_mute_led_nid = 0x18;
d03abeca 4036 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
50dd9050 4037 codec->power_filter = led_power_filter;
9c5dc3bf
KY
4038 }
4039}
4040
7a5255f1
DH
4041static void alc280_fixup_hp_gpio4(struct hda_codec *codec,
4042 const struct hda_fixup *fix, int action)
4043{
7a5255f1 4044 struct alc_spec *spec = codec->spec;
7a5255f1 4045
01e4a275 4046 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
7a5255f1 4047 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
7a5255f1 4048 spec->cap_mute_led_nid = 0x18;
d03abeca 4049 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
7a5255f1
DH
4050 codec->power_filter = led_power_filter;
4051 }
4052}
4053
6a30abaa 4054#if IS_REACHABLE(CONFIG_INPUT)
33f4acd3
DH
4055static void gpio2_mic_hotkey_event(struct hda_codec *codec,
4056 struct hda_jack_callback *event)
4057{
4058 struct alc_spec *spec = codec->spec;
4059
4060 /* GPIO2 just toggles on a keypress/keyrelease cycle. Therefore
4061 send both key on and key off event for every interrupt. */
c7b60a89 4062 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 1);
33f4acd3 4063 input_sync(spec->kb_dev);
c7b60a89 4064 input_report_key(spec->kb_dev, spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX], 0);
33f4acd3
DH
4065 input_sync(spec->kb_dev);
4066}
33f4acd3 4067
3694cb29
K
4068static int alc_register_micmute_input_device(struct hda_codec *codec)
4069{
4070 struct alc_spec *spec = codec->spec;
c7b60a89 4071 int i;
3694cb29
K
4072
4073 spec->kb_dev = input_allocate_device();
4074 if (!spec->kb_dev) {
4075 codec_err(codec, "Out of memory (input_allocate_device)\n");
4076 return -ENOMEM;
4077 }
c7b60a89
HW
4078
4079 spec->alc_mute_keycode_map[ALC_KEY_MICMUTE_INDEX] = KEY_MICMUTE;
4080
3694cb29
K
4081 spec->kb_dev->name = "Microphone Mute Button";
4082 spec->kb_dev->evbit[0] = BIT_MASK(EV_KEY);
c7b60a89
HW
4083 spec->kb_dev->keycodesize = sizeof(spec->alc_mute_keycode_map[0]);
4084 spec->kb_dev->keycodemax = ARRAY_SIZE(spec->alc_mute_keycode_map);
4085 spec->kb_dev->keycode = spec->alc_mute_keycode_map;
4086 for (i = 0; i < ARRAY_SIZE(spec->alc_mute_keycode_map); i++)
4087 set_bit(spec->alc_mute_keycode_map[i], spec->kb_dev->keybit);
3694cb29
K
4088
4089 if (input_register_device(spec->kb_dev)) {
4090 codec_err(codec, "input_register_device failed\n");
4091 input_free_device(spec->kb_dev);
4092 spec->kb_dev = NULL;
4093 return -ENOMEM;
4094 }
4095
4096 return 0;
4097}
4098
01e4a275
TI
4099/* GPIO1 = set according to SKU external amp
4100 * GPIO2 = mic mute hotkey
4101 * GPIO3 = mute LED
4102 * GPIO4 = mic mute LED
4103 */
33f4acd3
DH
4104static void alc280_fixup_hp_gpio2_mic_hotkey(struct hda_codec *codec,
4105 const struct hda_fixup *fix, int action)
4106{
33f4acd3
DH
4107 struct alc_spec *spec = codec->spec;
4108
01e4a275 4109 alc_fixup_hp_gpio_led(codec, action, 0x08, 0x10);
33f4acd3 4110 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4111 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29 4112 if (alc_register_micmute_input_device(codec) != 0)
33f4acd3 4113 return;
33f4acd3 4114
01e4a275
TI
4115 spec->gpio_mask |= 0x06;
4116 spec->gpio_dir |= 0x02;
4117 spec->gpio_data |= 0x02;
7639a06c 4118 snd_hda_codec_write_cache(codec, codec->core.afg, 0,
33f4acd3 4119 AC_VERB_SET_GPIO_UNSOLICITED_RSP_MASK, 0x04);
7639a06c 4120 snd_hda_jack_detect_enable_callback(codec, codec->core.afg,
33f4acd3 4121 gpio2_mic_hotkey_event);
33f4acd3
DH
4122 return;
4123 }
4124
4125 if (!spec->kb_dev)
4126 return;
4127
4128 switch (action) {
33f4acd3
DH
4129 case HDA_FIXUP_ACT_FREE:
4130 input_unregister_device(spec->kb_dev);
33f4acd3
DH
4131 spec->kb_dev = NULL;
4132 }
33f4acd3
DH
4133}
4134
01e4a275
TI
4135/* Line2 = mic mute hotkey
4136 * GPIO2 = mic mute LED
4137 */
3694cb29
K
4138static void alc233_fixup_lenovo_line2_mic_hotkey(struct hda_codec *codec,
4139 const struct hda_fixup *fix, int action)
4140{
3694cb29
K
4141 struct alc_spec *spec = codec->spec;
4142
01e4a275 4143 alc_fixup_hp_gpio_led(codec, action, 0, 0x04);
3694cb29 4144 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
1c76aa5f 4145 spec->init_amp = ALC_INIT_DEFAULT;
3694cb29
K
4146 if (alc_register_micmute_input_device(codec) != 0)
4147 return;
4148
3694cb29
K
4149 snd_hda_jack_detect_enable_callback(codec, 0x1b,
4150 gpio2_mic_hotkey_event);
3694cb29
K
4151 return;
4152 }
4153
4154 if (!spec->kb_dev)
4155 return;
4156
4157 switch (action) {
3694cb29
K
4158 case HDA_FIXUP_ACT_FREE:
4159 input_unregister_device(spec->kb_dev);
4160 spec->kb_dev = NULL;
4161 }
4162}
c469652b
TI
4163#else /* INPUT */
4164#define alc280_fixup_hp_gpio2_mic_hotkey NULL
4165#define alc233_fixup_lenovo_line2_mic_hotkey NULL
4166#endif /* INPUT */
3694cb29 4167
9c5dc3bf
KY
4168static void alc269_fixup_hp_line1_mic1_led(struct hda_codec *codec,
4169 const struct hda_fixup *fix, int action)
4170{
4171 struct alc_spec *spec = codec->spec;
4172
1bce62a6 4173 alc269_fixup_hp_mute_led_micx(codec, fix, action, 0x1a);
9c5dc3bf 4174 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9c5dc3bf 4175 spec->cap_mute_led_nid = 0x18;
d03abeca 4176 snd_hda_gen_add_micmute_led(codec, alc_cap_micmute_update);
9c5dc3bf
KY
4177 }
4178}
4179
5a36767a
KY
4180static struct coef_fw alc225_pre_hsmode[] = {
4181 UPDATE_COEF(0x4a, 1<<8, 0),
4182 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0),
4183 UPDATE_COEF(0x63, 3<<14, 3<<14),
4184 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4185 UPDATE_COEF(0x4a, 3<<10, 3<<10),
4186 UPDATE_COEF(0x45, 0x3f<<10, 0x34<<10),
4187 UPDATE_COEF(0x4a, 3<<10, 0),
4188 {}
4189};
4190
73bdd597
DH
4191static void alc_headset_mode_unplugged(struct hda_codec *codec)
4192{
54db6c39 4193 static struct coef_fw coef0255[] = {
717f43d8 4194 WRITE_COEF(0x1b, 0x0c0b), /* LDO and MISC control */
54db6c39
TI
4195 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4196 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4197 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4198 WRITE_COEFEX(0x57, 0x03, 0x8aa6), /* Direct Drive HP Amp control */
4199 {}
4200 };
e69e7e03
KY
4201 static struct coef_fw coef0256[] = {
4202 WRITE_COEF(0x1b, 0x0c4b), /* LDO and MISC control */
717f43d8
KY
4203 WRITE_COEF(0x45, 0xd089), /* UAJ function set to menual mode */
4204 WRITE_COEF(0x06, 0x6104), /* Set MIC2 Vref gate with HP */
4205 WRITE_COEFEX(0x57, 0x03, 0x09a3), /* Direct Drive HP Amp control */
4206 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
e69e7e03
KY
4207 {}
4208 };
54db6c39
TI
4209 static struct coef_fw coef0233[] = {
4210 WRITE_COEF(0x1b, 0x0c0b),
4211 WRITE_COEF(0x45, 0xc429),
4212 UPDATE_COEF(0x35, 0x4000, 0),
4213 WRITE_COEF(0x06, 0x2104),
4214 WRITE_COEF(0x1a, 0x0001),
4215 WRITE_COEF(0x26, 0x0004),
4216 WRITE_COEF(0x32, 0x42a3),
4217 {}
4218 };
f3b70332
KY
4219 static struct coef_fw coef0288[] = {
4220 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4221 UPDATE_COEF(0x50, 0x2000, 0x2000),
4222 UPDATE_COEF(0x56, 0x0006, 0x0006),
4223 UPDATE_COEF(0x66, 0x0008, 0),
4224 UPDATE_COEF(0x67, 0x2000, 0),
4225 {}
4226 };
89542936
KY
4227 static struct coef_fw coef0298[] = {
4228 UPDATE_COEF(0x19, 0x1300, 0x0300),
4229 {}
4230 };
54db6c39
TI
4231 static struct coef_fw coef0292[] = {
4232 WRITE_COEF(0x76, 0x000e),
4233 WRITE_COEF(0x6c, 0x2400),
4234 WRITE_COEF(0x18, 0x7308),
4235 WRITE_COEF(0x6b, 0xc429),
4236 {}
4237 };
4238 static struct coef_fw coef0293[] = {
4239 UPDATE_COEF(0x10, 7<<8, 6<<8), /* SET Line1 JD to 0 */
4240 UPDATE_COEFEX(0x57, 0x05, 1<<15|1<<13, 0x0), /* SET charge pump by verb */
4241 UPDATE_COEFEX(0x57, 0x03, 1<<10, 1<<10), /* SET EN_OSW to 1 */
4242 UPDATE_COEF(0x1a, 1<<3, 1<<3), /* Combo JD gating with LINE1-VREFO */
4243 WRITE_COEF(0x45, 0xc429), /* Set to TRS type */
4244 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4245 {}
4246 };
4247 static struct coef_fw coef0668[] = {
4248 WRITE_COEF(0x15, 0x0d40),
4249 WRITE_COEF(0xb7, 0x802b),
4250 {}
4251 };
4cc9b9d6 4252 static struct coef_fw coef0225[] = {
5a36767a 4253 UPDATE_COEF(0x63, 3<<14, 0),
4cc9b9d6
KY
4254 {}
4255 };
71683c32
KY
4256 static struct coef_fw coef0274[] = {
4257 UPDATE_COEF(0x4a, 0x0100, 0),
4258 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0),
4259 UPDATE_COEF(0x6b, 0xf000, 0x5000),
4260 UPDATE_COEF(0x4a, 0x0010, 0),
4261 UPDATE_COEF(0x4a, 0x0c00, 0x0c00),
4262 WRITE_COEF(0x45, 0x5289),
4263 UPDATE_COEF(0x4a, 0x0c00, 0),
4264 {}
4265 };
54db6c39 4266
7639a06c 4267 switch (codec->core.vendor_id) {
9a22a8f5 4268 case 0x10ec0255:
e69e7e03
KY
4269 alc_process_coef_fw(codec, coef0255);
4270 break;
736f20a7 4271 case 0x10ec0236:
7081adf3 4272 case 0x10ec0256:
e69e7e03 4273 alc_process_coef_fw(codec, coef0256);
9a22a8f5 4274 break;
71683c32
KY
4275 case 0x10ec0234:
4276 case 0x10ec0274:
4277 case 0x10ec0294:
4278 alc_process_coef_fw(codec, coef0274);
4279 break;
13fd08a3 4280 case 0x10ec0233:
73bdd597 4281 case 0x10ec0283:
54db6c39 4282 alc_process_coef_fw(codec, coef0233);
73bdd597 4283 break;
f3b70332
KY
4284 case 0x10ec0286:
4285 case 0x10ec0288:
89542936
KY
4286 alc_process_coef_fw(codec, coef0288);
4287 break;
1a5bc8d9 4288 case 0x10ec0298:
89542936 4289 alc_process_coef_fw(codec, coef0298);
f3b70332
KY
4290 alc_process_coef_fw(codec, coef0288);
4291 break;
73bdd597 4292 case 0x10ec0292:
54db6c39 4293 alc_process_coef_fw(codec, coef0292);
73bdd597 4294 break;
a22aa26f 4295 case 0x10ec0293:
54db6c39 4296 alc_process_coef_fw(codec, coef0293);
a22aa26f 4297 break;
73bdd597 4298 case 0x10ec0668:
54db6c39 4299 alc_process_coef_fw(codec, coef0668);
73bdd597 4300 break;
c2b691ee 4301 case 0x10ec0215:
4cc9b9d6 4302 case 0x10ec0225:
c2b691ee 4303 case 0x10ec0285:
7d727869 4304 case 0x10ec0295:
c2b691ee 4305 case 0x10ec0289:
28f1f9b2 4306 case 0x10ec0299:
4d4b0c52 4307 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
4308 alc_process_coef_fw(codec, coef0225);
4309 break;
78f4f7c2
KY
4310 case 0x10ec0867:
4311 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4312 break;
73bdd597 4313 }
4e76a883 4314 codec_dbg(codec, "Headset jack set to unplugged mode.\n");
73bdd597
DH
4315}
4316
4317
4318static void alc_headset_mode_mic_in(struct hda_codec *codec, hda_nid_t hp_pin,
4319 hda_nid_t mic_pin)
4320{
54db6c39
TI
4321 static struct coef_fw coef0255[] = {
4322 WRITE_COEFEX(0x57, 0x03, 0x8aa6),
4323 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4324 {}
4325 };
717f43d8
KY
4326 static struct coef_fw coef0256[] = {
4327 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14), /* Direct Drive HP Amp control(Set to verb control)*/
4328 WRITE_COEFEX(0x57, 0x03, 0x09a3),
4329 WRITE_COEF(0x06, 0x6100), /* Set MIC2 Vref gate to normal */
4330 {}
4331 };
54db6c39
TI
4332 static struct coef_fw coef0233[] = {
4333 UPDATE_COEF(0x35, 0, 1<<14),
4334 WRITE_COEF(0x06, 0x2100),
4335 WRITE_COEF(0x1a, 0x0021),
4336 WRITE_COEF(0x26, 0x008c),
4337 {}
4338 };
f3b70332 4339 static struct coef_fw coef0288[] = {
89542936 4340 UPDATE_COEF(0x4f, 0x00c0, 0),
f3b70332
KY
4341 UPDATE_COEF(0x50, 0x2000, 0),
4342 UPDATE_COEF(0x56, 0x0006, 0),
4343 UPDATE_COEF(0x4f, 0xfcc0, 0xc400),
4344 UPDATE_COEF(0x66, 0x0008, 0x0008),
4345 UPDATE_COEF(0x67, 0x2000, 0x2000),
4346 {}
4347 };
54db6c39
TI
4348 static struct coef_fw coef0292[] = {
4349 WRITE_COEF(0x19, 0xa208),
4350 WRITE_COEF(0x2e, 0xacf0),
4351 {}
4352 };
4353 static struct coef_fw coef0293[] = {
4354 UPDATE_COEFEX(0x57, 0x05, 0, 1<<15|1<<13), /* SET charge pump by verb */
4355 UPDATE_COEFEX(0x57, 0x03, 1<<10, 0), /* SET EN_OSW to 0 */
4356 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4357 {}
4358 };
4359 static struct coef_fw coef0688[] = {
4360 WRITE_COEF(0xb7, 0x802b),
4361 WRITE_COEF(0xb5, 0x1040),
4362 UPDATE_COEF(0xc3, 0, 1<<12),
4363 {}
4364 };
4cc9b9d6
KY
4365 static struct coef_fw coef0225[] = {
4366 UPDATE_COEFEX(0x57, 0x05, 1<<14, 1<<14),
4367 UPDATE_COEF(0x4a, 3<<4, 2<<4),
4368 UPDATE_COEF(0x63, 3<<14, 0),
4369 {}
4370 };
71683c32
KY
4371 static struct coef_fw coef0274[] = {
4372 UPDATE_COEFEX(0x57, 0x05, 0x4000, 0x4000),
4373 UPDATE_COEF(0x4a, 0x0010, 0),
4374 UPDATE_COEF(0x6b, 0xf000, 0),
4375 {}
4376 };
54db6c39 4377
7639a06c 4378 switch (codec->core.vendor_id) {
9a22a8f5
KY
4379 case 0x10ec0255:
4380 alc_write_coef_idx(codec, 0x45, 0xc489);
4381 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4382 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
4383 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4384 break;
717f43d8
KY
4385 case 0x10ec0236:
4386 case 0x10ec0256:
4387 alc_write_coef_idx(codec, 0x45, 0xc489);
4388 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4389 alc_process_coef_fw(codec, coef0256);
4390 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4391 break;
71683c32
KY
4392 case 0x10ec0234:
4393 case 0x10ec0274:
4394 case 0x10ec0294:
4395 alc_write_coef_idx(codec, 0x45, 0x4689);
4396 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4397 alc_process_coef_fw(codec, coef0274);
4398 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4399 break;
13fd08a3 4400 case 0x10ec0233:
73bdd597
DH
4401 case 0x10ec0283:
4402 alc_write_coef_idx(codec, 0x45, 0xc429);
4403 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4404 alc_process_coef_fw(codec, coef0233);
73bdd597
DH
4405 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4406 break;
f3b70332
KY
4407 case 0x10ec0286:
4408 case 0x10ec0288:
1a5bc8d9 4409 case 0x10ec0298:
f3b70332
KY
4410 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4411 alc_process_coef_fw(codec, coef0288);
4412 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4413 break;
73bdd597
DH
4414 case 0x10ec0292:
4415 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4416 alc_process_coef_fw(codec, coef0292);
73bdd597 4417 break;
a22aa26f
KY
4418 case 0x10ec0293:
4419 /* Set to TRS mode */
4420 alc_write_coef_idx(codec, 0x45, 0xc429);
4421 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4422 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
4423 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4424 break;
78f4f7c2
KY
4425 case 0x10ec0867:
4426 alc_update_coefex_idx(codec, 0x57, 0x5, 0, 1<<14);
4427 /* fallthru */
9eb5d0e6 4428 case 0x10ec0221:
1f8b46cd
DH
4429 case 0x10ec0662:
4430 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4431 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4432 break;
73bdd597
DH
4433 case 0x10ec0668:
4434 alc_write_coef_idx(codec, 0x11, 0x0001);
4435 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
54db6c39 4436 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
4437 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4438 break;
c2b691ee 4439 case 0x10ec0215:
4cc9b9d6 4440 case 0x10ec0225:
c2b691ee 4441 case 0x10ec0285:
7d727869 4442 case 0x10ec0295:
c2b691ee 4443 case 0x10ec0289:
28f1f9b2 4444 case 0x10ec0299:
5a36767a 4445 alc_process_coef_fw(codec, alc225_pre_hsmode);
4cc9b9d6
KY
4446 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x31<<10);
4447 snd_hda_set_pin_ctl_cache(codec, hp_pin, 0);
4448 alc_process_coef_fw(codec, coef0225);
4449 snd_hda_set_pin_ctl_cache(codec, mic_pin, PIN_VREF50);
4450 break;
73bdd597 4451 }
4e76a883 4452 codec_dbg(codec, "Headset jack set to mic-in mode.\n");
73bdd597
DH
4453}
4454
4455static void alc_headset_mode_default(struct hda_codec *codec)
4456{
2ae95577 4457 static struct coef_fw coef0225[] = {
5a36767a
KY
4458 UPDATE_COEF(0x45, 0x3f<<10, 0x30<<10),
4459 UPDATE_COEF(0x45, 0x3f<<10, 0x31<<10),
4460 UPDATE_COEF(0x49, 3<<8, 0<<8),
4461 UPDATE_COEF(0x4a, 3<<4, 3<<4),
4462 UPDATE_COEF(0x63, 3<<14, 0),
4463 UPDATE_COEF(0x67, 0xf000, 0x3000),
2ae95577
DH
4464 {}
4465 };
54db6c39
TI
4466 static struct coef_fw coef0255[] = {
4467 WRITE_COEF(0x45, 0xc089),
4468 WRITE_COEF(0x45, 0xc489),
4469 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4470 WRITE_COEF(0x49, 0x0049),
4471 {}
4472 };
717f43d8
KY
4473 static struct coef_fw coef0256[] = {
4474 WRITE_COEF(0x45, 0xc489),
4475 WRITE_COEFEX(0x57, 0x03, 0x0da3),
4476 WRITE_COEF(0x49, 0x0049),
4477 UPDATE_COEFEX(0x57, 0x05, 1<<14, 0), /* Direct Drive HP Amp control(Set to verb control)*/
4478 WRITE_COEF(0x06, 0x6100),
4479 {}
4480 };
54db6c39
TI
4481 static struct coef_fw coef0233[] = {
4482 WRITE_COEF(0x06, 0x2100),
4483 WRITE_COEF(0x32, 0x4ea3),
4484 {}
4485 };
f3b70332
KY
4486 static struct coef_fw coef0288[] = {
4487 UPDATE_COEF(0x4f, 0xfcc0, 0xc400), /* Set to TRS type */
4488 UPDATE_COEF(0x50, 0x2000, 0x2000),
4489 UPDATE_COEF(0x56, 0x0006, 0x0006),
4490 UPDATE_COEF(0x66, 0x0008, 0),
4491 UPDATE_COEF(0x67, 0x2000, 0),
4492 {}
4493 };
54db6c39
TI
4494 static struct coef_fw coef0292[] = {
4495 WRITE_COEF(0x76, 0x000e),
4496 WRITE_COEF(0x6c, 0x2400),
4497 WRITE_COEF(0x6b, 0xc429),
4498 WRITE_COEF(0x18, 0x7308),
4499 {}
4500 };
4501 static struct coef_fw coef0293[] = {
4502 UPDATE_COEF(0x4a, 0x000f, 0x000e), /* Combo Jack auto detect */
4503 WRITE_COEF(0x45, 0xC429), /* Set to TRS type */
4504 UPDATE_COEF(0x1a, 1<<3, 0), /* Combo JD gating without LINE1-VREFO */
4505 {}
4506 };
4507 static struct coef_fw coef0688[] = {
4508 WRITE_COEF(0x11, 0x0041),
4509 WRITE_COEF(0x15, 0x0d40),
4510 WRITE_COEF(0xb7, 0x802b),
4511 {}
4512 };
71683c32
KY
4513 static struct coef_fw coef0274[] = {
4514 WRITE_COEF(0x45, 0x4289),
4515 UPDATE_COEF(0x4a, 0x0010, 0x0010),
4516 UPDATE_COEF(0x6b, 0x0f00, 0),
4517 UPDATE_COEF(0x49, 0x0300, 0x0300),
4518 {}
4519 };
54db6c39 4520
7639a06c 4521 switch (codec->core.vendor_id) {
c2b691ee 4522 case 0x10ec0215:
2ae95577 4523 case 0x10ec0225:
c2b691ee 4524 case 0x10ec0285:
7d727869 4525 case 0x10ec0295:
c2b691ee 4526 case 0x10ec0289:
28f1f9b2 4527 case 0x10ec0299:
5a36767a 4528 alc_process_coef_fw(codec, alc225_pre_hsmode);
2ae95577
DH
4529 alc_process_coef_fw(codec, coef0225);
4530 break;
9a22a8f5 4531 case 0x10ec0255:
54db6c39 4532 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4533 break;
717f43d8
KY
4534 case 0x10ec0236:
4535 case 0x10ec0256:
4536 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4537 alc_write_coef_idx(codec, 0x45, 0xc089);
4538 msleep(50);
4539 alc_process_coef_fw(codec, coef0256);
4540 break;
71683c32
KY
4541 case 0x10ec0234:
4542 case 0x10ec0274:
4543 case 0x10ec0294:
4544 alc_process_coef_fw(codec, coef0274);
4545 break;
13fd08a3 4546 case 0x10ec0233:
73bdd597 4547 case 0x10ec0283:
54db6c39 4548 alc_process_coef_fw(codec, coef0233);
73bdd597 4549 break;
f3b70332
KY
4550 case 0x10ec0286:
4551 case 0x10ec0288:
1a5bc8d9 4552 case 0x10ec0298:
f3b70332
KY
4553 alc_process_coef_fw(codec, coef0288);
4554 break;
73bdd597 4555 case 0x10ec0292:
54db6c39 4556 alc_process_coef_fw(codec, coef0292);
73bdd597 4557 break;
a22aa26f 4558 case 0x10ec0293:
54db6c39 4559 alc_process_coef_fw(codec, coef0293);
a22aa26f 4560 break;
73bdd597 4561 case 0x10ec0668:
54db6c39 4562 alc_process_coef_fw(codec, coef0688);
73bdd597 4563 break;
78f4f7c2
KY
4564 case 0x10ec0867:
4565 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4566 break;
73bdd597 4567 }
4e76a883 4568 codec_dbg(codec, "Headset jack set to headphone (default) mode.\n");
73bdd597
DH
4569}
4570
4571/* Iphone type */
4572static void alc_headset_mode_ctia(struct hda_codec *codec)
4573{
89542936
KY
4574 int val;
4575
54db6c39
TI
4576 static struct coef_fw coef0255[] = {
4577 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
4578 WRITE_COEF(0x1b, 0x0c2b),
4579 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4580 {}
4581 };
e69e7e03
KY
4582 static struct coef_fw coef0256[] = {
4583 WRITE_COEF(0x45, 0xd489), /* Set to CTIA type */
717f43d8 4584 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
4585 {}
4586 };
54db6c39
TI
4587 static struct coef_fw coef0233[] = {
4588 WRITE_COEF(0x45, 0xd429),
4589 WRITE_COEF(0x1b, 0x0c2b),
4590 WRITE_COEF(0x32, 0x4ea3),
4591 {}
4592 };
f3b70332
KY
4593 static struct coef_fw coef0288[] = {
4594 UPDATE_COEF(0x50, 0x2000, 0x2000),
4595 UPDATE_COEF(0x56, 0x0006, 0x0006),
4596 UPDATE_COEF(0x66, 0x0008, 0),
4597 UPDATE_COEF(0x67, 0x2000, 0),
4598 {}
4599 };
54db6c39
TI
4600 static struct coef_fw coef0292[] = {
4601 WRITE_COEF(0x6b, 0xd429),
4602 WRITE_COEF(0x76, 0x0008),
4603 WRITE_COEF(0x18, 0x7388),
4604 {}
4605 };
4606 static struct coef_fw coef0293[] = {
4607 WRITE_COEF(0x45, 0xd429), /* Set to ctia type */
4608 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4609 {}
4610 };
4611 static struct coef_fw coef0688[] = {
4612 WRITE_COEF(0x11, 0x0001),
4613 WRITE_COEF(0x15, 0x0d60),
4614 WRITE_COEF(0xc3, 0x0000),
4615 {}
4616 };
5a36767a 4617 static struct coef_fw coef0225_1[] = {
4cc9b9d6 4618 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
5a36767a
KY
4619 UPDATE_COEF(0x63, 3<<14, 2<<14),
4620 {}
4621 };
4622 static struct coef_fw coef0225_2[] = {
4623 UPDATE_COEF(0x45, 0x3f<<10, 0x35<<10),
4624 UPDATE_COEF(0x63, 3<<14, 1<<14),
4cc9b9d6
KY
4625 {}
4626 };
54db6c39 4627
7639a06c 4628 switch (codec->core.vendor_id) {
9a22a8f5 4629 case 0x10ec0255:
54db6c39 4630 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4631 break;
736f20a7 4632 case 0x10ec0236:
e69e7e03
KY
4633 case 0x10ec0256:
4634 alc_process_coef_fw(codec, coef0256);
4635 break;
71683c32
KY
4636 case 0x10ec0234:
4637 case 0x10ec0274:
4638 case 0x10ec0294:
4639 alc_write_coef_idx(codec, 0x45, 0xd689);
4640 break;
13fd08a3 4641 case 0x10ec0233:
73bdd597 4642 case 0x10ec0283:
54db6c39 4643 alc_process_coef_fw(codec, coef0233);
73bdd597 4644 break;
1a5bc8d9 4645 case 0x10ec0298:
89542936
KY
4646 val = alc_read_coef_idx(codec, 0x50);
4647 if (val & (1 << 12)) {
4648 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4649 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4650 msleep(300);
4651 } else {
4652 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4653 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4654 msleep(300);
4655 }
4656 break;
f3b70332
KY
4657 case 0x10ec0286:
4658 case 0x10ec0288:
4659 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xd400);
4660 msleep(300);
4661 alc_process_coef_fw(codec, coef0288);
4662 break;
73bdd597 4663 case 0x10ec0292:
54db6c39 4664 alc_process_coef_fw(codec, coef0292);
73bdd597 4665 break;
a22aa26f 4666 case 0x10ec0293:
54db6c39 4667 alc_process_coef_fw(codec, coef0293);
a22aa26f 4668 break;
73bdd597 4669 case 0x10ec0668:
54db6c39 4670 alc_process_coef_fw(codec, coef0688);
73bdd597 4671 break;
c2b691ee 4672 case 0x10ec0215:
4cc9b9d6 4673 case 0x10ec0225:
c2b691ee 4674 case 0x10ec0285:
7d727869 4675 case 0x10ec0295:
c2b691ee 4676 case 0x10ec0289:
28f1f9b2 4677 case 0x10ec0299:
5a36767a
KY
4678 val = alc_read_coef_idx(codec, 0x45);
4679 if (val & (1 << 9))
4680 alc_process_coef_fw(codec, coef0225_2);
4681 else
4682 alc_process_coef_fw(codec, coef0225_1);
4cc9b9d6 4683 break;
78f4f7c2
KY
4684 case 0x10ec0867:
4685 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4686 break;
73bdd597 4687 }
4e76a883 4688 codec_dbg(codec, "Headset jack set to iPhone-style headset mode.\n");
73bdd597
DH
4689}
4690
4691/* Nokia type */
4692static void alc_headset_mode_omtp(struct hda_codec *codec)
4693{
54db6c39
TI
4694 static struct coef_fw coef0255[] = {
4695 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
4696 WRITE_COEF(0x1b, 0x0c2b),
4697 WRITE_COEFEX(0x57, 0x03, 0x8ea6),
4698 {}
4699 };
e69e7e03
KY
4700 static struct coef_fw coef0256[] = {
4701 WRITE_COEF(0x45, 0xe489), /* Set to OMTP Type */
717f43d8 4702 WRITE_COEF(0x1b, 0x0e6b),
e69e7e03
KY
4703 {}
4704 };
54db6c39
TI
4705 static struct coef_fw coef0233[] = {
4706 WRITE_COEF(0x45, 0xe429),
4707 WRITE_COEF(0x1b, 0x0c2b),
4708 WRITE_COEF(0x32, 0x4ea3),
4709 {}
4710 };
f3b70332
KY
4711 static struct coef_fw coef0288[] = {
4712 UPDATE_COEF(0x50, 0x2000, 0x2000),
4713 UPDATE_COEF(0x56, 0x0006, 0x0006),
4714 UPDATE_COEF(0x66, 0x0008, 0),
4715 UPDATE_COEF(0x67, 0x2000, 0),
4716 {}
4717 };
54db6c39
TI
4718 static struct coef_fw coef0292[] = {
4719 WRITE_COEF(0x6b, 0xe429),
4720 WRITE_COEF(0x76, 0x0008),
4721 WRITE_COEF(0x18, 0x7388),
4722 {}
4723 };
4724 static struct coef_fw coef0293[] = {
4725 WRITE_COEF(0x45, 0xe429), /* Set to omtp type */
4726 UPDATE_COEF(0x10, 7<<8, 7<<8), /* SET Line1 JD to 1 */
4727 {}
4728 };
4729 static struct coef_fw coef0688[] = {
4730 WRITE_COEF(0x11, 0x0001),
4731 WRITE_COEF(0x15, 0x0d50),
4732 WRITE_COEF(0xc3, 0x0000),
4733 {}
4734 };
4cc9b9d6
KY
4735 static struct coef_fw coef0225[] = {
4736 UPDATE_COEF(0x45, 0x3f<<10, 0x39<<10),
5a36767a 4737 UPDATE_COEF(0x63, 3<<14, 2<<14),
4cc9b9d6
KY
4738 {}
4739 };
54db6c39 4740
7639a06c 4741 switch (codec->core.vendor_id) {
9a22a8f5 4742 case 0x10ec0255:
54db6c39 4743 alc_process_coef_fw(codec, coef0255);
9a22a8f5 4744 break;
736f20a7 4745 case 0x10ec0236:
e69e7e03
KY
4746 case 0x10ec0256:
4747 alc_process_coef_fw(codec, coef0256);
4748 break;
71683c32
KY
4749 case 0x10ec0234:
4750 case 0x10ec0274:
4751 case 0x10ec0294:
4752 alc_write_coef_idx(codec, 0x45, 0xe689);
4753 break;
13fd08a3 4754 case 0x10ec0233:
73bdd597 4755 case 0x10ec0283:
54db6c39 4756 alc_process_coef_fw(codec, coef0233);
73bdd597 4757 break;
1a5bc8d9
KY
4758 case 0x10ec0298:
4759 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);/* Headset output enable */
89542936
KY
4760 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4761 msleep(300);
4762 break;
f3b70332
KY
4763 case 0x10ec0286:
4764 case 0x10ec0288:
4765 alc_update_coef_idx(codec, 0x4f, 0xfcc0, 0xe400);
4766 msleep(300);
4767 alc_process_coef_fw(codec, coef0288);
4768 break;
73bdd597 4769 case 0x10ec0292:
54db6c39 4770 alc_process_coef_fw(codec, coef0292);
73bdd597 4771 break;
a22aa26f 4772 case 0x10ec0293:
54db6c39 4773 alc_process_coef_fw(codec, coef0293);
a22aa26f 4774 break;
73bdd597 4775 case 0x10ec0668:
54db6c39 4776 alc_process_coef_fw(codec, coef0688);
73bdd597 4777 break;
c2b691ee 4778 case 0x10ec0215:
4cc9b9d6 4779 case 0x10ec0225:
c2b691ee 4780 case 0x10ec0285:
7d727869 4781 case 0x10ec0295:
c2b691ee 4782 case 0x10ec0289:
28f1f9b2 4783 case 0x10ec0299:
4cc9b9d6
KY
4784 alc_process_coef_fw(codec, coef0225);
4785 break;
73bdd597 4786 }
4e76a883 4787 codec_dbg(codec, "Headset jack set to Nokia-style headset mode.\n");
73bdd597
DH
4788}
4789
4790static void alc_determine_headset_type(struct hda_codec *codec)
4791{
4792 int val;
4793 bool is_ctia = false;
4794 struct alc_spec *spec = codec->spec;
54db6c39
TI
4795 static struct coef_fw coef0255[] = {
4796 WRITE_COEF(0x45, 0xd089), /* combo jack auto switch control(Check type)*/
4797 WRITE_COEF(0x49, 0x0149), /* combo jack auto switch control(Vref
4798 conteol) */
4799 {}
4800 };
f3b70332
KY
4801 static struct coef_fw coef0288[] = {
4802 UPDATE_COEF(0x4f, 0xfcc0, 0xd400), /* Check Type */
4803 {}
4804 };
89542936
KY
4805 static struct coef_fw coef0298[] = {
4806 UPDATE_COEF(0x50, 0x2000, 0x2000),
4807 UPDATE_COEF(0x56, 0x0006, 0x0006),
4808 UPDATE_COEF(0x66, 0x0008, 0),
4809 UPDATE_COEF(0x67, 0x2000, 0),
4810 UPDATE_COEF(0x19, 0x1300, 0x1300),
4811 {}
4812 };
54db6c39
TI
4813 static struct coef_fw coef0293[] = {
4814 UPDATE_COEF(0x4a, 0x000f, 0x0008), /* Combo Jack auto detect */
4815 WRITE_COEF(0x45, 0xD429), /* Set to ctia type */
4816 {}
4817 };
4818 static struct coef_fw coef0688[] = {
4819 WRITE_COEF(0x11, 0x0001),
4820 WRITE_COEF(0xb7, 0x802b),
4821 WRITE_COEF(0x15, 0x0d60),
4822 WRITE_COEF(0xc3, 0x0c00),
4823 {}
4824 };
71683c32
KY
4825 static struct coef_fw coef0274[] = {
4826 UPDATE_COEF(0x4a, 0x0010, 0),
4827 UPDATE_COEF(0x4a, 0x8000, 0),
4828 WRITE_COEF(0x45, 0xd289),
4829 UPDATE_COEF(0x49, 0x0300, 0x0300),
4830 {}
4831 };
73bdd597 4832
7639a06c 4833 switch (codec->core.vendor_id) {
9a22a8f5 4834 case 0x10ec0255:
717f43d8
KY
4835 alc_process_coef_fw(codec, coef0255);
4836 msleep(300);
4837 val = alc_read_coef_idx(codec, 0x46);
4838 is_ctia = (val & 0x0070) == 0x0070;
4839 break;
4840 case 0x10ec0236:
7081adf3 4841 case 0x10ec0256:
717f43d8
KY
4842 alc_write_coef_idx(codec, 0x1b, 0x0e4b);
4843 alc_write_coef_idx(codec, 0x06, 0x6104);
4844 alc_write_coefex_idx(codec, 0x57, 0x3, 0x09a3);
4845
4846 snd_hda_codec_write(codec, 0x21, 0,
4847 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4848 msleep(80);
4849 snd_hda_codec_write(codec, 0x21, 0,
4850 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4851
54db6c39 4852 alc_process_coef_fw(codec, coef0255);
9a22a8f5
KY
4853 msleep(300);
4854 val = alc_read_coef_idx(codec, 0x46);
4855 is_ctia = (val & 0x0070) == 0x0070;
717f43d8
KY
4856
4857 alc_write_coefex_idx(codec, 0x57, 0x3, 0x0da3);
4858 alc_update_coefex_idx(codec, 0x57, 0x5, 1<<14, 0);
4859
4860 snd_hda_codec_write(codec, 0x21, 0,
4861 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4862 msleep(80);
4863 snd_hda_codec_write(codec, 0x21, 0,
4864 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
9a22a8f5 4865 break;
71683c32
KY
4866 case 0x10ec0234:
4867 case 0x10ec0274:
4868 case 0x10ec0294:
4869 alc_process_coef_fw(codec, coef0274);
4870 msleep(80);
4871 val = alc_read_coef_idx(codec, 0x46);
4872 is_ctia = (val & 0x00f0) == 0x00f0;
4873 break;
13fd08a3 4874 case 0x10ec0233:
73bdd597
DH
4875 case 0x10ec0283:
4876 alc_write_coef_idx(codec, 0x45, 0xd029);
4877 msleep(300);
4878 val = alc_read_coef_idx(codec, 0x46);
4879 is_ctia = (val & 0x0070) == 0x0070;
4880 break;
1a5bc8d9 4881 case 0x10ec0298:
89542936
KY
4882 snd_hda_codec_write(codec, 0x21, 0,
4883 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4884 msleep(100);
4885 snd_hda_codec_write(codec, 0x21, 0,
4886 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4887 msleep(200);
4888
4889 val = alc_read_coef_idx(codec, 0x50);
4890 if (val & (1 << 12)) {
4891 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0020);
4892 alc_process_coef_fw(codec, coef0288);
4893 msleep(350);
4894 val = alc_read_coef_idx(codec, 0x50);
4895 is_ctia = (val & 0x0070) == 0x0070;
4896 } else {
4897 alc_update_coef_idx(codec, 0x8e, 0x0070, 0x0010);
4898 alc_process_coef_fw(codec, coef0288);
4899 msleep(350);
4900 val = alc_read_coef_idx(codec, 0x50);
4901 is_ctia = (val & 0x0070) == 0x0070;
4902 }
4903 alc_process_coef_fw(codec, coef0298);
4904 snd_hda_codec_write(codec, 0x21, 0,
4905 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP);
4906 msleep(75);
4907 snd_hda_codec_write(codec, 0x21, 0,
4908 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4909 break;
f3b70332
KY
4910 case 0x10ec0286:
4911 case 0x10ec0288:
4912 alc_process_coef_fw(codec, coef0288);
4913 msleep(350);
4914 val = alc_read_coef_idx(codec, 0x50);
4915 is_ctia = (val & 0x0070) == 0x0070;
4916 break;
73bdd597
DH
4917 case 0x10ec0292:
4918 alc_write_coef_idx(codec, 0x6b, 0xd429);
4919 msleep(300);
4920 val = alc_read_coef_idx(codec, 0x6c);
4921 is_ctia = (val & 0x001c) == 0x001c;
4922 break;
a22aa26f 4923 case 0x10ec0293:
54db6c39 4924 alc_process_coef_fw(codec, coef0293);
a22aa26f
KY
4925 msleep(300);
4926 val = alc_read_coef_idx(codec, 0x46);
4927 is_ctia = (val & 0x0070) == 0x0070;
4928 break;
73bdd597 4929 case 0x10ec0668:
54db6c39 4930 alc_process_coef_fw(codec, coef0688);
73bdd597
DH
4931 msleep(300);
4932 val = alc_read_coef_idx(codec, 0xbe);
4933 is_ctia = (val & 0x1c02) == 0x1c02;
4934 break;
c2b691ee 4935 case 0x10ec0215:
4cc9b9d6 4936 case 0x10ec0225:
c2b691ee 4937 case 0x10ec0285:
7d727869 4938 case 0x10ec0295:
c2b691ee 4939 case 0x10ec0289:
28f1f9b2 4940 case 0x10ec0299:
da911b1f
KY
4941 snd_hda_codec_write(codec, 0x21, 0,
4942 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
4943 msleep(80);
4944 snd_hda_codec_write(codec, 0x21, 0,
4945 AC_VERB_SET_PIN_WIDGET_CONTROL, 0x0);
4946
5a36767a
KY
4947 alc_process_coef_fw(codec, alc225_pre_hsmode);
4948 alc_update_coef_idx(codec, 0x67, 0xf000, 0x1000);
4949 val = alc_read_coef_idx(codec, 0x45);
4950 if (val & (1 << 9)) {
4951 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4952 alc_update_coef_idx(codec, 0x49, 3<<8, 2<<8);
4953 msleep(800);
4954 val = alc_read_coef_idx(codec, 0x46);
4955 is_ctia = (val & 0x00f0) == 0x00f0;
4956 } else {
4957 alc_update_coef_idx(codec, 0x45, 0x3f<<10, 0x34<<10);
4958 alc_update_coef_idx(codec, 0x49, 3<<8, 1<<8);
4959 msleep(800);
4960 val = alc_read_coef_idx(codec, 0x46);
4961 is_ctia = (val & 0x00f0) == 0x00f0;
4962 }
4963 alc_update_coef_idx(codec, 0x4a, 7<<6, 7<<6);
4964 alc_update_coef_idx(codec, 0x4a, 3<<4, 3<<4);
4965 alc_update_coef_idx(codec, 0x67, 0xf000, 0x3000);
da911b1f
KY
4966
4967 snd_hda_codec_write(codec, 0x21, 0,
4968 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
4969 msleep(80);
4970 snd_hda_codec_write(codec, 0x21, 0,
4971 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
4cc9b9d6 4972 break;
78f4f7c2
KY
4973 case 0x10ec0867:
4974 is_ctia = true;
4975 break;
73bdd597
DH
4976 }
4977
4e76a883 4978 codec_dbg(codec, "Headset jack detected iPhone-style headset: %s\n",
73bdd597
DH
4979 is_ctia ? "yes" : "no");
4980 spec->current_headset_type = is_ctia ? ALC_HEADSET_TYPE_CTIA : ALC_HEADSET_TYPE_OMTP;
4981}
4982
4983static void alc_update_headset_mode(struct hda_codec *codec)
4984{
4985 struct alc_spec *spec = codec->spec;
4986
4987 hda_nid_t mux_pin = spec->gen.imux_pins[spec->gen.cur_mux[0]];
35a39f98 4988 hda_nid_t hp_pin = alc_get_hp_pin(spec);
73bdd597
DH
4989
4990 int new_headset_mode;
4991
4992 if (!snd_hda_jack_detect(codec, hp_pin))
4993 new_headset_mode = ALC_HEADSET_MODE_UNPLUGGED;
4994 else if (mux_pin == spec->headset_mic_pin)
4995 new_headset_mode = ALC_HEADSET_MODE_HEADSET;
4996 else if (mux_pin == spec->headphone_mic_pin)
4997 new_headset_mode = ALC_HEADSET_MODE_MIC;
4998 else
4999 new_headset_mode = ALC_HEADSET_MODE_HEADPHONE;
5000
5959a6bc
DH
5001 if (new_headset_mode == spec->current_headset_mode) {
5002 snd_hda_gen_update_outputs(codec);
73bdd597 5003 return;
5959a6bc 5004 }
73bdd597
DH
5005
5006 switch (new_headset_mode) {
5007 case ALC_HEADSET_MODE_UNPLUGGED:
5008 alc_headset_mode_unplugged(codec);
aeac1a0d
KY
5009 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5010 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
73bdd597
DH
5011 spec->gen.hp_jack_present = false;
5012 break;
5013 case ALC_HEADSET_MODE_HEADSET:
5014 if (spec->current_headset_type == ALC_HEADSET_TYPE_UNKNOWN)
5015 alc_determine_headset_type(codec);
5016 if (spec->current_headset_type == ALC_HEADSET_TYPE_CTIA)
5017 alc_headset_mode_ctia(codec);
5018 else if (spec->current_headset_type == ALC_HEADSET_TYPE_OMTP)
5019 alc_headset_mode_omtp(codec);
5020 spec->gen.hp_jack_present = true;
5021 break;
5022 case ALC_HEADSET_MODE_MIC:
5023 alc_headset_mode_mic_in(codec, hp_pin, spec->headphone_mic_pin);
5024 spec->gen.hp_jack_present = false;
5025 break;
5026 case ALC_HEADSET_MODE_HEADPHONE:
5027 alc_headset_mode_default(codec);
5028 spec->gen.hp_jack_present = true;
5029 break;
5030 }
5031 if (new_headset_mode != ALC_HEADSET_MODE_MIC) {
5032 snd_hda_set_pin_ctl_cache(codec, hp_pin,
5033 AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN);
1f8b46cd 5034 if (spec->headphone_mic_pin && spec->headphone_mic_pin != hp_pin)
73bdd597
DH
5035 snd_hda_set_pin_ctl_cache(codec, spec->headphone_mic_pin,
5036 PIN_VREFHIZ);
5037 }
5038 spec->current_headset_mode = new_headset_mode;
5039
5040 snd_hda_gen_update_outputs(codec);
5041}
5042
5043static void alc_update_headset_mode_hook(struct hda_codec *codec,
7fe30711
TI
5044 struct snd_kcontrol *kcontrol,
5045 struct snd_ctl_elem_value *ucontrol)
73bdd597
DH
5046{
5047 alc_update_headset_mode(codec);
5048}
5049
1a4f69d5
TI
5050static void alc_update_headset_jack_cb(struct hda_codec *codec,
5051 struct hda_jack_callback *jack)
73bdd597 5052{
73bdd597
DH
5053 snd_hda_gen_hp_automute(codec, jack);
5054}
5055
5056static void alc_probe_headset_mode(struct hda_codec *codec)
5057{
5058 int i;
5059 struct alc_spec *spec = codec->spec;
5060 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5061
5062 /* Find mic pins */
5063 for (i = 0; i < cfg->num_inputs; i++) {
5064 if (cfg->inputs[i].is_headset_mic && !spec->headset_mic_pin)
5065 spec->headset_mic_pin = cfg->inputs[i].pin;
5066 if (cfg->inputs[i].is_headphone_mic && !spec->headphone_mic_pin)
5067 spec->headphone_mic_pin = cfg->inputs[i].pin;
5068 }
5069
0bed2aa3 5070 WARN_ON(spec->gen.cap_sync_hook);
73bdd597
DH
5071 spec->gen.cap_sync_hook = alc_update_headset_mode_hook;
5072 spec->gen.automute_hook = alc_update_headset_mode;
5073 spec->gen.hp_automute_hook = alc_update_headset_jack_cb;
5074}
5075
5076static void alc_fixup_headset_mode(struct hda_codec *codec,
5077 const struct hda_fixup *fix, int action)
5078{
5079 struct alc_spec *spec = codec->spec;
5080
5081 switch (action) {
5082 case HDA_FIXUP_ACT_PRE_PROBE:
5083 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC | HDA_PINCFG_HEADPHONE_MIC;
5084 break;
5085 case HDA_FIXUP_ACT_PROBE:
5086 alc_probe_headset_mode(codec);
5087 break;
5088 case HDA_FIXUP_ACT_INIT:
aeac1a0d
KY
5089 if (is_s3_resume(codec) || is_s4_resume(codec)) {
5090 spec->current_headset_mode = ALC_HEADSET_MODE_UNKNOWN;
5091 spec->current_headset_type = ALC_HEADSET_TYPE_UNKNOWN;
5092 }
73bdd597
DH
5093 alc_update_headset_mode(codec);
5094 break;
5095 }
5096}
5097
5098static void alc_fixup_headset_mode_no_hp_mic(struct hda_codec *codec,
5099 const struct hda_fixup *fix, int action)
5100{
5101 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5102 struct alc_spec *spec = codec->spec;
5103 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5104 }
5105 else
5106 alc_fixup_headset_mode(codec, fix, action);
5107}
5108
31278997
KY
5109static void alc255_set_default_jack_type(struct hda_codec *codec)
5110{
5111 /* Set to iphone type */
e69e7e03 5112 static struct coef_fw alc255fw[] = {
54db6c39
TI
5113 WRITE_COEF(0x1b, 0x880b),
5114 WRITE_COEF(0x45, 0xd089),
5115 WRITE_COEF(0x1b, 0x080b),
5116 WRITE_COEF(0x46, 0x0004),
5117 WRITE_COEF(0x1b, 0x0c0b),
5118 {}
5119 };
e69e7e03
KY
5120 static struct coef_fw alc256fw[] = {
5121 WRITE_COEF(0x1b, 0x884b),
5122 WRITE_COEF(0x45, 0xd089),
5123 WRITE_COEF(0x1b, 0x084b),
5124 WRITE_COEF(0x46, 0x0004),
5125 WRITE_COEF(0x1b, 0x0c4b),
5126 {}
5127 };
5128 switch (codec->core.vendor_id) {
5129 case 0x10ec0255:
5130 alc_process_coef_fw(codec, alc255fw);
5131 break;
736f20a7 5132 case 0x10ec0236:
e69e7e03
KY
5133 case 0x10ec0256:
5134 alc_process_coef_fw(codec, alc256fw);
5135 break;
5136 }
31278997
KY
5137 msleep(30);
5138}
5139
9a22a8f5
KY
5140static void alc_fixup_headset_mode_alc255(struct hda_codec *codec,
5141 const struct hda_fixup *fix, int action)
5142{
5143 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
31278997 5144 alc255_set_default_jack_type(codec);
9a22a8f5
KY
5145 }
5146 alc_fixup_headset_mode(codec, fix, action);
5147}
5148
31278997
KY
5149static void alc_fixup_headset_mode_alc255_no_hp_mic(struct hda_codec *codec,
5150 const struct hda_fixup *fix, int action)
5151{
5152 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5153 struct alc_spec *spec = codec->spec;
5154 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5155 alc255_set_default_jack_type(codec);
5156 }
5157 else
5158 alc_fixup_headset_mode(codec, fix, action);
5159}
5160
e1e62b98
KY
5161static void alc288_update_headset_jack_cb(struct hda_codec *codec,
5162 struct hda_jack_callback *jack)
5163{
5164 struct alc_spec *spec = codec->spec;
e1e62b98
KY
5165
5166 alc_update_headset_jack_cb(codec, jack);
5167 /* Headset Mic enable or disable, only for Dell Dino */
d44a6864 5168 alc_update_gpio_data(codec, 0x40, spec->gen.hp_jack_present);
e1e62b98
KY
5169}
5170
5171static void alc_fixup_headset_mode_dell_alc288(struct hda_codec *codec,
5172 const struct hda_fixup *fix, int action)
5173{
5174 alc_fixup_headset_mode(codec, fix, action);
5175 if (action == HDA_FIXUP_ACT_PROBE) {
5176 struct alc_spec *spec = codec->spec;
d44a6864
TI
5177 /* toggled via hp_automute_hook */
5178 spec->gpio_mask |= 0x40;
5179 spec->gpio_dir |= 0x40;
e1e62b98
KY
5180 spec->gen.hp_automute_hook = alc288_update_headset_jack_cb;
5181 }
5182}
5183
493a52a9
HW
5184static void alc_fixup_auto_mute_via_amp(struct hda_codec *codec,
5185 const struct hda_fixup *fix, int action)
5186{
5187 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5188 struct alc_spec *spec = codec->spec;
5189 spec->gen.auto_mute_via_amp = 1;
5190 }
5191}
5192
9b745ab8
TI
5193static void alc_fixup_no_shutup(struct hda_codec *codec,
5194 const struct hda_fixup *fix, int action)
5195{
efe55732 5196 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
9b745ab8 5197 struct alc_spec *spec = codec->spec;
c0ca5ece 5198 spec->no_shutup_pins = 1;
9b745ab8
TI
5199 }
5200}
5201
5e6db669
GM
5202static void alc_fixup_disable_aamix(struct hda_codec *codec,
5203 const struct hda_fixup *fix, int action)
5204{
5205 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5206 struct alc_spec *spec = codec->spec;
5207 /* Disable AA-loopback as it causes white noise */
5208 spec->gen.mixer_nid = 0;
5209 }
5210}
5211
7f57d803
TI
5212/* fixup for Thinkpad docks: add dock pins, avoid HP parser fixup */
5213static void alc_fixup_tpt440_dock(struct hda_codec *codec,
5214 const struct hda_fixup *fix, int action)
5215{
5216 static const struct hda_pintbl pincfgs[] = {
5217 { 0x16, 0x21211010 }, /* dock headphone */
5218 { 0x19, 0x21a11010 }, /* dock mic */
5219 { }
5220 };
5221 struct alc_spec *spec = codec->spec;
5222
5223 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
871b9066 5224 spec->reboot_notify = snd_hda_gen_reboot_notify; /* reduce noise */
7f57d803
TI
5225 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5226 codec->power_save_node = 0; /* avoid click noises */
5227 snd_hda_apply_pincfgs(codec, pincfgs);
5228 }
5229}
5230
61fcf8ec
KY
5231static void alc_fixup_tpt470_dock(struct hda_codec *codec,
5232 const struct hda_fixup *fix, int action)
5233{
5234 static const struct hda_pintbl pincfgs[] = {
5235 { 0x17, 0x21211010 }, /* dock headphone */
5236 { 0x19, 0x21a11010 }, /* dock mic */
5237 { }
5238 };
54947cd6
TI
5239 /* Assure the speaker pin to be coupled with DAC NID 0x03; otherwise
5240 * the speaker output becomes too low by some reason on Thinkpads with
5241 * ALC298 codec
5242 */
5243 static hda_nid_t preferred_pairs[] = {
5244 0x14, 0x03, 0x17, 0x02, 0x21, 0x02,
5245 0
5246 };
61fcf8ec
KY
5247 struct alc_spec *spec = codec->spec;
5248
5249 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
54947cd6 5250 spec->gen.preferred_dacs = preferred_pairs;
61fcf8ec 5251 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
71db96dd
TI
5252 snd_hda_apply_pincfgs(codec, pincfgs);
5253 } else if (action == HDA_FIXUP_ACT_INIT) {
61fcf8ec
KY
5254 /* Enable DOCK device */
5255 snd_hda_codec_write(codec, 0x17, 0,
5256 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
5257 /* Enable DOCK device */
5258 snd_hda_codec_write(codec, 0x19, 0,
5259 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3, 0);
61fcf8ec
KY
5260 }
5261}
5262
9476d369 5263static void alc_shutup_dell_xps13(struct hda_codec *codec)
033b0a7c
GM
5264{
5265 struct alc_spec *spec = codec->spec;
35a39f98 5266 int hp_pin = alc_get_hp_pin(spec);
033b0a7c 5267
9476d369
GM
5268 /* Prevent pop noises when headphones are plugged in */
5269 snd_hda_codec_write(codec, hp_pin, 0,
5270 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE);
5271 msleep(20);
033b0a7c
GM
5272}
5273
5274static void alc_fixup_dell_xps13(struct hda_codec *codec,
5275 const struct hda_fixup *fix, int action)
5276{
3e1b0c4a
TI
5277 struct alc_spec *spec = codec->spec;
5278 struct hda_input_mux *imux = &spec->gen.input_mux;
5279 int i;
f38663ab 5280
3e1b0c4a
TI
5281 switch (action) {
5282 case HDA_FIXUP_ACT_PRE_PROBE:
5283 /* mic pin 0x19 must be initialized with Vref Hi-Z, otherwise
5284 * it causes a click noise at start up
5285 */
5286 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
efe55732 5287 spec->shutup = alc_shutup_dell_xps13;
3e1b0c4a
TI
5288 break;
5289 case HDA_FIXUP_ACT_PROBE:
f38663ab
GM
5290 /* Make the internal mic the default input source. */
5291 for (i = 0; i < imux->num_items; i++) {
5292 if (spec->gen.imux_pins[i] == 0x12) {
5293 spec->gen.cur_mux[0] = i;
5294 break;
5295 }
5296 }
3e1b0c4a 5297 break;
033b0a7c
GM
5298 }
5299}
5300
1f8b46cd
DH
5301static void alc_fixup_headset_mode_alc662(struct hda_codec *codec,
5302 const struct hda_fixup *fix, int action)
5303{
5304 struct alc_spec *spec = codec->spec;
5305
5306 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5307 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
5308 spec->gen.hp_mic = 1; /* Mic-in is same pin as headphone */
b40eda64
DH
5309
5310 /* Disable boost for mic-in permanently. (This code is only called
5311 from quirks that guarantee that the headphone is at NID 0x1b.) */
5312 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000);
5313 snd_hda_override_wcaps(codec, 0x1b, get_wcaps(codec, 0x1b) & ~AC_WCAP_IN_AMP);
1f8b46cd
DH
5314 } else
5315 alc_fixup_headset_mode(codec, fix, action);
5316}
5317
73bdd597
DH
5318static void alc_fixup_headset_mode_alc668(struct hda_codec *codec,
5319 const struct hda_fixup *fix, int action)
5320{
5321 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
73bdd597 5322 alc_write_coef_idx(codec, 0xc4, 0x8000);
98b24883 5323 alc_update_coef_idx(codec, 0xc2, ~0xfe, 0);
73bdd597
DH
5324 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
5325 }
5326 alc_fixup_headset_mode(codec, fix, action);
5327}
5328
bde7bc60
CCC
5329/* Returns the nid of the external mic input pin, or 0 if it cannot be found. */
5330static int find_ext_mic_pin(struct hda_codec *codec)
5331{
5332 struct alc_spec *spec = codec->spec;
5333 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5334 hda_nid_t nid;
5335 unsigned int defcfg;
5336 int i;
5337
5338 for (i = 0; i < cfg->num_inputs; i++) {
5339 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5340 continue;
5341 nid = cfg->inputs[i].pin;
5342 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5343 if (snd_hda_get_input_pin_attr(defcfg) == INPUT_PIN_ATTR_INT)
5344 continue;
5345 return nid;
5346 }
5347
5348 return 0;
5349}
5350
08a978db 5351static void alc271_hp_gate_mic_jack(struct hda_codec *codec,
1727a771 5352 const struct hda_fixup *fix,
08a978db
DR
5353 int action)
5354{
5355 struct alc_spec *spec = codec->spec;
5356
0db75790 5357 if (action == HDA_FIXUP_ACT_PROBE) {
bde7bc60 5358 int mic_pin = find_ext_mic_pin(codec);
35a39f98 5359 int hp_pin = alc_get_hp_pin(spec);
bde7bc60
CCC
5360
5361 if (snd_BUG_ON(!mic_pin || !hp_pin))
0db75790 5362 return;
bde7bc60 5363 snd_hda_jack_set_gating_jack(codec, mic_pin, hp_pin);
0db75790 5364 }
08a978db 5365}
693b613d 5366
1099f484
KHF
5367static void alc256_fixup_dell_xps_13_headphone_noise2(struct hda_codec *codec,
5368 const struct hda_fixup *fix,
5369 int action)
5370{
5371 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5372 return;
5373
5374 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 0, HDA_AMP_VOLMASK, 1);
5375 snd_hda_override_wcaps(codec, 0x1a, get_wcaps(codec, 0x1a) & ~AC_WCAP_IN_AMP);
5376}
5377
3e0d611b
DH
5378static void alc269_fixup_limit_int_mic_boost(struct hda_codec *codec,
5379 const struct hda_fixup *fix,
5380 int action)
5381{
5382 struct alc_spec *spec = codec->spec;
5383 struct auto_pin_cfg *cfg = &spec->gen.autocfg;
5384 int i;
5385
5386 /* The mic boosts on level 2 and 3 are too noisy
5387 on the internal mic input.
5388 Therefore limit the boost to 0 or 1. */
5389
5390 if (action != HDA_FIXUP_ACT_PROBE)
5391 return;
5392
5393 for (i = 0; i < cfg->num_inputs; i++) {
5394 hda_nid_t nid = cfg->inputs[i].pin;
5395 unsigned int defcfg;
5396 if (cfg->inputs[i].type != AUTO_PIN_MIC)
5397 continue;
5398 defcfg = snd_hda_codec_get_pincfg(codec, nid);
5399 if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
5400 continue;
5401
5402 snd_hda_override_amp_caps(codec, nid, HDA_INPUT,
5403 (0x00 << AC_AMPCAP_OFFSET_SHIFT) |
5404 (0x01 << AC_AMPCAP_NUM_STEPS_SHIFT) |
5405 (0x2f << AC_AMPCAP_STEP_SIZE_SHIFT) |
5406 (0 << AC_AMPCAP_MUTE_SHIFT));
5407 }
5408}
5409
cd217a63 5410static void alc283_hp_automute_hook(struct hda_codec *codec,
1a4f69d5 5411 struct hda_jack_callback *jack)
cd217a63
KY
5412{
5413 struct alc_spec *spec = codec->spec;
5414 int vref;
5415
5416 msleep(200);
5417 snd_hda_gen_hp_automute(codec, jack);
5418
5419 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
5420
5421 msleep(600);
5422 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5423 vref);
5424}
5425
cd217a63
KY
5426static void alc283_fixup_chromebook(struct hda_codec *codec,
5427 const struct hda_fixup *fix, int action)
5428{
5429 struct alc_spec *spec = codec->spec;
cd217a63
KY
5430
5431 switch (action) {
5432 case HDA_FIXUP_ACT_PRE_PROBE:
0202e99c 5433 snd_hda_override_wcaps(codec, 0x03, 0);
d2e92709
TI
5434 /* Disable AA-loopback as it causes white noise */
5435 spec->gen.mixer_nid = 0;
38070219 5436 break;
0202e99c 5437 case HDA_FIXUP_ACT_INIT:
de9481cb
KY
5438 /* MIC2-VREF control */
5439 /* Set to manual mode */
98b24883 5440 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
0202e99c 5441 /* Enable Line1 input control by verb */
98b24883 5442 alc_update_coef_idx(codec, 0x1a, 0, 1 << 4);
0202e99c
KY
5443 break;
5444 }
5445}
5446
5447static void alc283_fixup_sense_combo_jack(struct hda_codec *codec,
5448 const struct hda_fixup *fix, int action)
5449{
5450 struct alc_spec *spec = codec->spec;
0202e99c
KY
5451
5452 switch (action) {
5453 case HDA_FIXUP_ACT_PRE_PROBE:
cd217a63 5454 spec->gen.hp_automute_hook = alc283_hp_automute_hook;
38070219
KY
5455 break;
5456 case HDA_FIXUP_ACT_INIT:
cd217a63
KY
5457 /* MIC2-VREF control */
5458 /* Set to manual mode */
98b24883 5459 alc_update_coef_idx(codec, 0x06, 0x000c, 0);
cd217a63
KY
5460 break;
5461 }
5462}
5463
7bba2157
TI
5464/* mute tablet speaker pin (0x14) via dock plugging in addition */
5465static void asus_tx300_automute(struct hda_codec *codec)
5466{
5467 struct alc_spec *spec = codec->spec;
5468 snd_hda_gen_update_outputs(codec);
5469 if (snd_hda_jack_detect(codec, 0x1b))
5470 spec->gen.mute_bits |= (1ULL << 0x14);
5471}
5472
5473static void alc282_fixup_asus_tx300(struct hda_codec *codec,
5474 const struct hda_fixup *fix, int action)
5475{
5476 struct alc_spec *spec = codec->spec;
7bba2157
TI
5477 static const struct hda_pintbl dock_pins[] = {
5478 { 0x1b, 0x21114000 }, /* dock speaker pin */
5479 {}
5480 };
7bba2157
TI
5481
5482 switch (action) {
5483 case HDA_FIXUP_ACT_PRE_PROBE:
1c76aa5f 5484 spec->init_amp = ALC_INIT_DEFAULT;
ae065f1c
TI
5485 /* TX300 needs to set up GPIO2 for the speaker amp */
5486 alc_setup_gpio(codec, 0x04);
7bba2157
TI
5487 snd_hda_apply_pincfgs(codec, dock_pins);
5488 spec->gen.auto_mute_via_amp = 1;
5489 spec->gen.automute_hook = asus_tx300_automute;
5490 snd_hda_jack_detect_enable_callback(codec, 0x1b,
7bba2157
TI
5491 snd_hda_gen_hp_automute);
5492 break;
5579cd6f
TI
5493 case HDA_FIXUP_ACT_PROBE:
5494 spec->init_amp = ALC_INIT_DEFAULT;
5495 break;
7bba2157
TI
5496 case HDA_FIXUP_ACT_BUILD:
5497 /* this is a bit tricky; give more sane names for the main
5498 * (tablet) speaker and the dock speaker, respectively
5499 */
56798e6b
TI
5500 rename_ctl(codec, "Speaker Playback Switch",
5501 "Dock Speaker Playback Switch");
5502 rename_ctl(codec, "Bass Speaker Playback Switch",
5503 "Speaker Playback Switch");
7bba2157
TI
5504 break;
5505 }
5506}
5507
338cae56
DH
5508static void alc290_fixup_mono_speakers(struct hda_codec *codec,
5509 const struct hda_fixup *fix, int action)
5510{
0f4881dc
DH
5511 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5512 /* DAC node 0x03 is giving mono output. We therefore want to
5513 make sure 0x14 (front speaker) and 0x15 (headphones) use the
5514 stereo DAC, while leaving 0x17 (bass speaker) for node 0x03. */
5515 hda_nid_t conn1[2] = { 0x0c };
5516 snd_hda_override_conn_list(codec, 0x14, 1, conn1);
5517 snd_hda_override_conn_list(codec, 0x15, 1, conn1);
5518 }
338cae56
DH
5519}
5520
dd9aa335
HW
5521static void alc298_fixup_speaker_volume(struct hda_codec *codec,
5522 const struct hda_fixup *fix, int action)
5523{
5524 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5525 /* The speaker is routed to the Node 0x06 by a mistake, as a result
5526 we can't adjust the speaker's volume since this node does not has
5527 Amp-out capability. we change the speaker's route to:
5528 Node 0x02 (Audio Output) -> Node 0x0c (Audio Mixer) -> Node 0x17 (
5529 Pin Complex), since Node 0x02 has Amp-out caps, we can adjust
5530 speaker's volume now. */
5531
5532 hda_nid_t conn1[1] = { 0x0c };
5533 snd_hda_override_conn_list(codec, 0x17, 1, conn1);
5534 }
5535}
5536
e312a869
TI
5537/* disable DAC3 (0x06) selection on NID 0x17 as it has no volume amp control */
5538static void alc295_fixup_disable_dac3(struct hda_codec *codec,
5539 const struct hda_fixup *fix, int action)
5540{
5541 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5542 hda_nid_t conn[2] = { 0x02, 0x03 };
5543 snd_hda_override_conn_list(codec, 0x17, 2, conn);
5544 }
5545}
5546
98973f2f
KP
5547/* Hook to update amp GPIO4 for automute */
5548static void alc280_hp_gpio4_automute_hook(struct hda_codec *codec,
5549 struct hda_jack_callback *jack)
5550{
5551 struct alc_spec *spec = codec->spec;
5552
5553 snd_hda_gen_hp_automute(codec, jack);
5554 /* mute_led_polarity is set to 0, so we pass inverted value here */
5555 alc_update_gpio_led(codec, 0x10, !spec->gen.hp_jack_present);
5556}
5557
5558/* Manage GPIOs for HP EliteBook Folio 9480m.
5559 *
5560 * GPIO4 is the headphone amplifier power control
5561 * GPIO3 is the audio output mute indicator LED
5562 */
5563
5564static void alc280_fixup_hp_9480m(struct hda_codec *codec,
5565 const struct hda_fixup *fix,
5566 int action)
5567{
5568 struct alc_spec *spec = codec->spec;
98973f2f 5569
01e4a275 5570 alc_fixup_hp_gpio_led(codec, action, 0x08, 0);
98973f2f 5571 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
01e4a275
TI
5572 /* amp at GPIO4; toggled via alc280_hp_gpio4_automute_hook() */
5573 spec->gpio_mask |= 0x10;
5574 spec->gpio_dir |= 0x10;
98973f2f 5575 spec->gen.hp_automute_hook = alc280_hp_gpio4_automute_hook;
98973f2f
KP
5576 }
5577}
5578
ae065f1c
TI
5579static void alc275_fixup_gpio4_off(struct hda_codec *codec,
5580 const struct hda_fixup *fix,
5581 int action)
5582{
5583 struct alc_spec *spec = codec->spec;
5584
5585 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
5586 spec->gpio_mask |= 0x04;
5587 spec->gpio_dir |= 0x04;
5588 /* set data bit low */
5589 }
5590}
5591
ca169cc2
KY
5592static void alc233_alc662_fixup_lenovo_dual_codecs(struct hda_codec *codec,
5593 const struct hda_fixup *fix,
5594 int action)
5595{
5596 alc_fixup_dual_codecs(codec, fix, action);
5597 switch (action) {
5598 case HDA_FIXUP_ACT_PRE_PROBE:
5599 /* override card longname to provide a unique UCM profile */
5600 strcpy(codec->card->longname, "HDAudio-Lenovo-DualCodecs");
5601 break;
5602 case HDA_FIXUP_ACT_BUILD:
5603 /* rename Capture controls depending on the codec */
5604 rename_ctl(codec, "Capture Volume",
5605 codec->addr == 0 ?
5606 "Rear-Panel Capture Volume" :
5607 "Front-Panel Capture Volume");
5608 rename_ctl(codec, "Capture Switch",
5609 codec->addr == 0 ?
5610 "Rear-Panel Capture Switch" :
5611 "Front-Panel Capture Switch");
5612 break;
5613 }
5614}
5615
92266651
KY
5616/* Forcibly assign NID 0x03 to HP/LO while NID 0x02 to SPK for EQ */
5617static void alc274_fixup_bind_dacs(struct hda_codec *codec,
5618 const struct hda_fixup *fix, int action)
5619{
5620 struct alc_spec *spec = codec->spec;
5621 static hda_nid_t preferred_pairs[] = {
5622 0x21, 0x03, 0x1b, 0x03, 0x16, 0x02,
5623 0
5624 };
5625
5626 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5627 return;
5628
5629 spec->gen.preferred_dacs = preferred_pairs;
0700d3d1
KY
5630 spec->gen.auto_mute_via_amp = 1;
5631 codec->power_save_node = 0;
92266651
KY
5632}
5633
c4cfcf6f
HW
5634/* The DAC of NID 0x3 will introduce click/pop noise on headphones, so invalidate it */
5635static void alc285_fixup_invalidate_dacs(struct hda_codec *codec,
5636 const struct hda_fixup *fix, int action)
5637{
5638 if (action != HDA_FIXUP_ACT_PRE_PROBE)
5639 return;
5640
5641 snd_hda_override_wcaps(codec, 0x03, 0);
5642}
5643
e854747d
KY
5644static const struct hda_jack_keymap alc_headset_btn_keymap[] = {
5645 { SND_JACK_BTN_0, KEY_PLAYPAUSE },
5646 { SND_JACK_BTN_1, KEY_VOICECOMMAND },
5647 { SND_JACK_BTN_2, KEY_VOLUMEUP },
5648 { SND_JACK_BTN_3, KEY_VOLUMEDOWN },
5649 {}
5650};
5651
5652static void alc_headset_btn_callback(struct hda_codec *codec,
5653 struct hda_jack_callback *jack)
5654{
5655 int report = 0;
5656
5657 if (jack->unsol_res & (7 << 13))
5658 report |= SND_JACK_BTN_0;
5659
5660 if (jack->unsol_res & (1 << 16 | 3 << 8))
5661 report |= SND_JACK_BTN_1;
5662
5663 /* Volume up key */
5664 if (jack->unsol_res & (7 << 23))
5665 report |= SND_JACK_BTN_2;
5666
5667 /* Volume down key */
5668 if (jack->unsol_res & (7 << 10))
5669 report |= SND_JACK_BTN_3;
5670
5671 jack->jack->button_state = report;
5672}
5673
8983eb60 5674static void alc_fixup_headset_jack(struct hda_codec *codec,
e854747d
KY
5675 const struct hda_fixup *fix, int action)
5676{
5677
5678 switch (action) {
5679 case HDA_FIXUP_ACT_PRE_PROBE:
5680 snd_hda_jack_detect_enable_callback(codec, 0x55,
5681 alc_headset_btn_callback);
5682 snd_hda_jack_add_kctl(codec, 0x55, "Headset Jack", false,
5683 SND_JACK_HEADSET, alc_headset_btn_keymap);
5684 break;
5685 case HDA_FIXUP_ACT_INIT:
5686 switch (codec->core.vendor_id) {
5687 case 0x10ec0225:
5688 case 0x10ec0295:
5689 case 0x10ec0299:
5690 alc_write_coef_idx(codec, 0x48, 0xd011);
5691 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5692 alc_update_coef_idx(codec, 0x44, 0x007f << 8, 0x0045 << 8);
5693 break;
5694 case 0x10ec0236:
5695 case 0x10ec0256:
5696 alc_write_coef_idx(codec, 0x48, 0xd011);
5697 alc_update_coef_idx(codec, 0x49, 0x007f, 0x0045);
5698 break;
5699 }
5700 break;
5701 }
5702}
5703
8983eb60
KY
5704static void alc295_fixup_chromebook(struct hda_codec *codec,
5705 const struct hda_fixup *fix, int action)
5706{
d3ba58bb
KY
5707 struct alc_spec *spec = codec->spec;
5708
8983eb60 5709 switch (action) {
d3ba58bb
KY
5710 case HDA_FIXUP_ACT_PRE_PROBE:
5711 spec->ultra_low_power = true;
5712 break;
8983eb60
KY
5713 case HDA_FIXUP_ACT_INIT:
5714 switch (codec->core.vendor_id) {
5715 case 0x10ec0295:
5716 alc_update_coef_idx(codec, 0x4a, 0x8000, 1 << 15); /* Reset HP JD */
5717 alc_update_coef_idx(codec, 0x4a, 0x8000, 0 << 15);
5718 break;
5719 case 0x10ec0236:
5720 alc_update_coef_idx(codec, 0x1b, 0x8000, 1 << 15); /* Reset HP JD */
5721 alc_update_coef_idx(codec, 0x1b, 0x8000, 0 << 15);
5722 break;
5723 }
5724 break;
5725 }
5726}
5727
d1dd4211
KY
5728static void alc_fixup_disable_mic_vref(struct hda_codec *codec,
5729 const struct hda_fixup *fix, int action)
5730{
5731 if (action == HDA_FIXUP_ACT_PRE_PROBE)
5732 snd_hda_codec_set_pin_target(codec, 0x19, PIN_VREFHIZ);
5733}
5734
b317b032
TI
5735/* for hda_fixup_thinkpad_acpi() */
5736#include "thinkpad_helper.c"
b67ae3f1 5737
d5a6cabf
TI
5738static void alc_fixup_thinkpad_acpi(struct hda_codec *codec,
5739 const struct hda_fixup *fix, int action)
5740{
5741 alc_fixup_no_shutup(codec, fix, action); /* reduce click noise */
5742 hda_fixup_thinkpad_acpi(codec, fix, action);
5743}
5744
bbf8ff6b
TB
5745/* for alc295_fixup_hp_top_speakers */
5746#include "hp_x360_helper.c"
5747
1d045db9
TI
5748enum {
5749 ALC269_FIXUP_SONY_VAIO,
5750 ALC275_FIXUP_SONY_VAIO_GPIO2,
5751 ALC269_FIXUP_DELL_M101Z,
5752 ALC269_FIXUP_SKU_IGNORE,
5753 ALC269_FIXUP_ASUS_G73JW,
5754 ALC269_FIXUP_LENOVO_EAPD,
5755 ALC275_FIXUP_SONY_HWEQ,
e9bd7d5c 5756 ALC275_FIXUP_SONY_DISABLE_AAMIX,
1d045db9 5757 ALC271_FIXUP_DMIC,
017f2a10 5758 ALC269_FIXUP_PCM_44K,
adabb3ec 5759 ALC269_FIXUP_STEREO_DMIC,
7c478f03 5760 ALC269_FIXUP_HEADSET_MIC,
24519911
TI
5761 ALC269_FIXUP_QUANTA_MUTE,
5762 ALC269_FIXUP_LIFEBOOK,
2041d564 5763 ALC269_FIXUP_LIFEBOOK_EXTMIC,
cc7016ab 5764 ALC269_FIXUP_LIFEBOOK_HP_PIN,
4df3fd17 5765 ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT,
fdcc968a 5766 ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC,
a4297b5d
TI
5767 ALC269_FIXUP_AMIC,
5768 ALC269_FIXUP_DMIC,
5769 ALC269VB_FIXUP_AMIC,
5770 ALC269VB_FIXUP_DMIC,
08fb0d0e 5771 ALC269_FIXUP_HP_MUTE_LED,
d06ac143 5772 ALC269_FIXUP_HP_MUTE_LED_MIC1,
08fb0d0e 5773 ALC269_FIXUP_HP_MUTE_LED_MIC2,
7f783bd5 5774 ALC269_FIXUP_HP_MUTE_LED_MIC3,
9f5c6faf 5775 ALC269_FIXUP_HP_GPIO_LED,
9c5dc3bf
KY
5776 ALC269_FIXUP_HP_GPIO_MIC1_LED,
5777 ALC269_FIXUP_HP_LINE1_MIC1_LED,
693b613d 5778 ALC269_FIXUP_INV_DMIC,
108cc108 5779 ALC269_FIXUP_LENOVO_DOCK,
9b745ab8 5780 ALC269_FIXUP_NO_SHUTUP,
88cfcf86 5781 ALC286_FIXUP_SONY_MIC_NO_PRESENCE,
108cc108 5782 ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT,
73bdd597
DH
5783 ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
5784 ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
338cae56 5785 ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
fcc6c877 5786 ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
73bdd597
DH
5787 ALC269_FIXUP_HEADSET_MODE,
5788 ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC,
7819717b 5789 ALC269_FIXUP_ASPIRE_HEADSET_MIC,
d240d1dc
DH
5790 ALC269_FIXUP_ASUS_X101_FUNC,
5791 ALC269_FIXUP_ASUS_X101_VERB,
5792 ALC269_FIXUP_ASUS_X101,
08a978db
DR
5793 ALC271_FIXUP_AMIC_MIC2,
5794 ALC271_FIXUP_HP_GATE_MIC_JACK,
b1e8972e 5795 ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572,
42397004 5796 ALC269_FIXUP_ACER_AC700,
3e0d611b 5797 ALC269_FIXUP_LIMIT_INT_MIC_BOOST,
2cede303 5798 ALC269VB_FIXUP_ASUS_ZENBOOK,
23870831 5799 ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A,
8e35cd4a 5800 ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED,
02b504d9 5801 ALC269VB_FIXUP_ORDISSIMO_EVE2,
cd217a63 5802 ALC283_FIXUP_CHROME_BOOK,
0202e99c 5803 ALC283_FIXUP_SENSE_COMBO_JACK,
7bba2157 5804 ALC282_FIXUP_ASUS_TX300,
1bb3e062 5805 ALC283_FIXUP_INT_MIC,
338cae56 5806 ALC290_FIXUP_MONO_SPEAKERS,
0f4881dc
DH
5807 ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
5808 ALC290_FIXUP_SUBWOOFER,
5809 ALC290_FIXUP_SUBWOOFER_HSJACK,
b67ae3f1 5810 ALC269_FIXUP_THINKPAD_ACPI,
56f27013 5811 ALC269_FIXUP_DMIC_THINKPAD_ACPI,
5824ce8d 5812 ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
615966ad 5813 ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
9a22a8f5 5814 ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
31278997 5815 ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
9a22a8f5 5816 ALC255_FIXUP_HEADSET_MODE,
31278997 5817 ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC,
a22aa26f 5818 ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
1c37c223 5819 ALC292_FIXUP_TPT440_DOCK,
9a811230 5820 ALC292_FIXUP_TPT440,
abaa2274 5821 ALC283_FIXUP_HEADSET_MIC,
b3802783 5822 ALC255_FIXUP_MIC_MUTE_LED,
1a22e775 5823 ALC282_FIXUP_ASPIRE_V5_PINS,
7a5255f1 5824 ALC280_FIXUP_HP_GPIO4,
eaa8e5ef 5825 ALC286_FIXUP_HP_GPIO_LED,
33f4acd3 5826 ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY,
b4b33f9d 5827 ALC280_FIXUP_HP_DOCK_PINS,
04d5466a 5828 ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED,
98973f2f 5829 ALC280_FIXUP_HP_9480M,
e1e62b98
KY
5830 ALC288_FIXUP_DELL_HEADSET_MODE,
5831 ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
831bfdf9
HW
5832 ALC288_FIXUP_DELL_XPS_13,
5833 ALC288_FIXUP_DISABLE_AAMIX,
8b99aba7
TI
5834 ALC292_FIXUP_DELL_E7X,
5835 ALC292_FIXUP_DISABLE_AAMIX,
c04017ea 5836 ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK,
54324221 5837 ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
977e6276 5838 ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
2f726aec 5839 ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
6ed1131f 5840 ALC275_FIXUP_DELL_XPS,
8c69729b 5841 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE,
1099f484 5842 ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2,
23adc192 5843 ALC293_FIXUP_LENOVO_SPK_NOISE,
3694cb29 5844 ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
3b43b71f 5845 ALC255_FIXUP_DELL_SPK_NOISE,
d1dd4211 5846 ALC225_FIXUP_DISABLE_MIC_VREF,
2ae95577 5847 ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
e312a869 5848 ALC295_FIXUP_DISABLE_DAC3,
f883982d 5849 ALC280_FIXUP_HP_HEADSET_MIC,
e549d190 5850 ALC221_FIXUP_HP_FRONT_MIC,
c636b95e 5851 ALC292_FIXUP_TPT460,
dd9aa335 5852 ALC298_FIXUP_SPK_VOLUME,
fd06c77e 5853 ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER,
823ff161 5854 ALC269_FIXUP_ATIV_BOOK_8,
9eb5d0e6 5855 ALC221_FIXUP_HP_MIC_NO_PRESENCE,
c1732ede
CC
5856 ALC256_FIXUP_ASUS_HEADSET_MODE,
5857 ALC256_FIXUP_ASUS_MIC,
eeed4cd1 5858 ALC256_FIXUP_ASUS_AIO_GPIO2,
216d7aeb
CC
5859 ALC233_FIXUP_ASUS_MIC_NO_PRESENCE,
5860 ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE,
ca169cc2 5861 ALC233_FIXUP_LENOVO_MULTI_CODECS,
ea5c7eba 5862 ALC233_FIXUP_ACER_HEADSET_MIC,
f33f79f3 5863 ALC294_FIXUP_LENOVO_MIC_LOCATION,
5f364135 5864 ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE,
b84e8436 5865 ALC700_FIXUP_INTEL_REFERENCE,
92266651
KY
5866 ALC274_FIXUP_DELL_BIND_DACS,
5867 ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
61fcf8ec 5868 ALC298_FIXUP_TPT470_DOCK,
ae104a21 5869 ALC255_FIXUP_DUMMY_LINEOUT_VERB,
f0ba9d69 5870 ALC255_FIXUP_DELL_HEADSET_MIC,
0fbf21c3 5871 ALC256_FIXUP_HUAWEI_MACH_WX9_PINS,
a2ef03fe 5872 ALC298_FIXUP_HUAWEI_MBX_STEREO,
bbf8ff6b 5873 ALC295_FIXUP_HP_X360,
8a328ac1 5874 ALC221_FIXUP_HP_HEADSET_MIC,
c4cfcf6f 5875 ALC285_FIXUP_LENOVO_HEADPHONE_NOISE,
e8ed64b0 5876 ALC295_FIXUP_HP_AUTO_MUTE,
33aaebd4 5877 ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
d8ae458e 5878 ALC294_FIXUP_ASUS_MIC,
4e051106
JHP
5879 ALC294_FIXUP_ASUS_HEADSET_MIC,
5880 ALC294_FIXUP_ASUS_SPK,
89e3a568 5881 ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE,
c8c6ee61 5882 ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
cbc05fd6 5883 ALC255_FIXUP_ACER_HEADSET_MIC,
10f5b1b8 5884 ALC295_FIXUP_CHROME_BOOK,
8983eb60 5885 ALC225_FIXUP_HEADSET_JACK,
136824ef
KY
5886 ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE,
5887 ALC225_FIXUP_WYSE_AUTO_MUTE,
5888 ALC225_FIXUP_WYSE_DISABLE_MIC_VREF,
667a8f73 5889 ALC286_FIXUP_ACER_AIO_HEADSET_MIC,
8c8967a7 5890 ALC256_FIXUP_ASUS_HEADSET_MIC,
e1037354 5891 ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
e2a829b3 5892 ALC299_FIXUP_PREDATOR_SPK,
60083f9e 5893 ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC,
bd9c10bc 5894 ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE,
f1d4e28b
KY
5895};
5896
1727a771 5897static const struct hda_fixup alc269_fixups[] = {
1d045db9 5898 [ALC269_FIXUP_SONY_VAIO] = {
fd108215
TI
5899 .type = HDA_FIXUP_PINCTLS,
5900 .v.pins = (const struct hda_pintbl[]) {
5901 {0x19, PIN_VREFGRD},
1d045db9
TI
5902 {}
5903 }
f1d4e28b 5904 },
1d045db9 5905 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
ae065f1c
TI
5906 .type = HDA_FIXUP_FUNC,
5907 .v.func = alc275_fixup_gpio4_off,
1d045db9
TI
5908 .chained = true,
5909 .chain_id = ALC269_FIXUP_SONY_VAIO
5910 },
5911 [ALC269_FIXUP_DELL_M101Z] = {
1727a771 5912 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5913 .v.verbs = (const struct hda_verb[]) {
5914 /* Enables internal speaker */
5915 {0x20, AC_VERB_SET_COEF_INDEX, 13},
5916 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5917 {}
5918 }
5919 },
5920 [ALC269_FIXUP_SKU_IGNORE] = {
1727a771 5921 .type = HDA_FIXUP_FUNC,
23d30f28 5922 .v.func = alc_fixup_sku_ignore,
1d045db9
TI
5923 },
5924 [ALC269_FIXUP_ASUS_G73JW] = {
1727a771
TI
5925 .type = HDA_FIXUP_PINS,
5926 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
5927 { 0x17, 0x99130111 }, /* subwoofer */
5928 { }
5929 }
5930 },
5931 [ALC269_FIXUP_LENOVO_EAPD] = {
1727a771 5932 .type = HDA_FIXUP_VERBS,
1d045db9
TI
5933 .v.verbs = (const struct hda_verb[]) {
5934 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5935 {}
5936 }
5937 },
5938 [ALC275_FIXUP_SONY_HWEQ] = {
1727a771 5939 .type = HDA_FIXUP_FUNC,
1d045db9
TI
5940 .v.func = alc269_fixup_hweq,
5941 .chained = true,
5942 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5943 },
e9bd7d5c
TI
5944 [ALC275_FIXUP_SONY_DISABLE_AAMIX] = {
5945 .type = HDA_FIXUP_FUNC,
5946 .v.func = alc_fixup_disable_aamix,
5947 .chained = true,
5948 .chain_id = ALC269_FIXUP_SONY_VAIO
5949 },
1d045db9 5950 [ALC271_FIXUP_DMIC] = {
1727a771 5951 .type = HDA_FIXUP_FUNC,
1d045db9 5952 .v.func = alc271_fixup_dmic,
f1d4e28b 5953 },
017f2a10 5954 [ALC269_FIXUP_PCM_44K] = {
1727a771 5955 .type = HDA_FIXUP_FUNC,
017f2a10 5956 .v.func = alc269_fixup_pcm_44k,
012e7eb1
DH
5957 .chained = true,
5958 .chain_id = ALC269_FIXUP_QUANTA_MUTE
017f2a10 5959 },
adabb3ec 5960 [ALC269_FIXUP_STEREO_DMIC] = {
1727a771 5961 .type = HDA_FIXUP_FUNC,
adabb3ec
TI
5962 .v.func = alc269_fixup_stereo_dmic,
5963 },
7c478f03
DH
5964 [ALC269_FIXUP_HEADSET_MIC] = {
5965 .type = HDA_FIXUP_FUNC,
5966 .v.func = alc269_fixup_headset_mic,
5967 },
24519911 5968 [ALC269_FIXUP_QUANTA_MUTE] = {
1727a771 5969 .type = HDA_FIXUP_FUNC,
24519911
TI
5970 .v.func = alc269_fixup_quanta_mute,
5971 },
5972 [ALC269_FIXUP_LIFEBOOK] = {
1727a771
TI
5973 .type = HDA_FIXUP_PINS,
5974 .v.pins = (const struct hda_pintbl[]) {
24519911
TI
5975 { 0x1a, 0x2101103f }, /* dock line-out */
5976 { 0x1b, 0x23a11040 }, /* dock mic-in */
5977 { }
5978 },
5979 .chained = true,
5980 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5981 },
2041d564
DH
5982 [ALC269_FIXUP_LIFEBOOK_EXTMIC] = {
5983 .type = HDA_FIXUP_PINS,
5984 .v.pins = (const struct hda_pintbl[]) {
5985 { 0x19, 0x01a1903c }, /* headset mic, with jack detect */
5986 { }
5987 },
5988 },
cc7016ab
TI
5989 [ALC269_FIXUP_LIFEBOOK_HP_PIN] = {
5990 .type = HDA_FIXUP_PINS,
5991 .v.pins = (const struct hda_pintbl[]) {
5992 { 0x21, 0x0221102f }, /* HP out */
5993 { }
5994 },
5995 },
4df3fd17
TI
5996 [ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT] = {
5997 .type = HDA_FIXUP_FUNC,
5998 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
5999 },
fdcc968a
JMG
6000 [ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC] = {
6001 .type = HDA_FIXUP_FUNC,
6002 .v.func = alc269_fixup_pincfg_U7x7_headset_mic,
6003 },
a4297b5d 6004 [ALC269_FIXUP_AMIC] = {
1727a771
TI
6005 .type = HDA_FIXUP_PINS,
6006 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6007 { 0x14, 0x99130110 }, /* speaker */
6008 { 0x15, 0x0121401f }, /* HP out */
6009 { 0x18, 0x01a19c20 }, /* mic */
6010 { 0x19, 0x99a3092f }, /* int-mic */
6011 { }
6012 },
6013 },
6014 [ALC269_FIXUP_DMIC] = {
1727a771
TI
6015 .type = HDA_FIXUP_PINS,
6016 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6017 { 0x12, 0x99a3092f }, /* int-mic */
6018 { 0x14, 0x99130110 }, /* speaker */
6019 { 0x15, 0x0121401f }, /* HP out */
6020 { 0x18, 0x01a19c20 }, /* mic */
6021 { }
6022 },
6023 },
6024 [ALC269VB_FIXUP_AMIC] = {
1727a771
TI
6025 .type = HDA_FIXUP_PINS,
6026 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6027 { 0x14, 0x99130110 }, /* speaker */
6028 { 0x18, 0x01a19c20 }, /* mic */
6029 { 0x19, 0x99a3092f }, /* int-mic */
6030 { 0x21, 0x0121401f }, /* HP out */
6031 { }
6032 },
6033 },
2267ea97 6034 [ALC269VB_FIXUP_DMIC] = {
1727a771
TI
6035 .type = HDA_FIXUP_PINS,
6036 .v.pins = (const struct hda_pintbl[]) {
a4297b5d
TI
6037 { 0x12, 0x99a3092f }, /* int-mic */
6038 { 0x14, 0x99130110 }, /* speaker */
6039 { 0x18, 0x01a19c20 }, /* mic */
6040 { 0x21, 0x0121401f }, /* HP out */
6041 { }
6042 },
6043 },
08fb0d0e 6044 [ALC269_FIXUP_HP_MUTE_LED] = {
1727a771 6045 .type = HDA_FIXUP_FUNC,
08fb0d0e 6046 .v.func = alc269_fixup_hp_mute_led,
6d3cd5d4 6047 },
d06ac143
DH
6048 [ALC269_FIXUP_HP_MUTE_LED_MIC1] = {
6049 .type = HDA_FIXUP_FUNC,
6050 .v.func = alc269_fixup_hp_mute_led_mic1,
6051 },
08fb0d0e 6052 [ALC269_FIXUP_HP_MUTE_LED_MIC2] = {
1727a771 6053 .type = HDA_FIXUP_FUNC,
08fb0d0e 6054 .v.func = alc269_fixup_hp_mute_led_mic2,
420b0feb 6055 },
7f783bd5
TB
6056 [ALC269_FIXUP_HP_MUTE_LED_MIC3] = {
6057 .type = HDA_FIXUP_FUNC,
6058 .v.func = alc269_fixup_hp_mute_led_mic3,
e8ed64b0
GKK
6059 .chained = true,
6060 .chain_id = ALC295_FIXUP_HP_AUTO_MUTE
7f783bd5 6061 },
9f5c6faf
TI
6062 [ALC269_FIXUP_HP_GPIO_LED] = {
6063 .type = HDA_FIXUP_FUNC,
6064 .v.func = alc269_fixup_hp_gpio_led,
6065 },
9c5dc3bf
KY
6066 [ALC269_FIXUP_HP_GPIO_MIC1_LED] = {
6067 .type = HDA_FIXUP_FUNC,
6068 .v.func = alc269_fixup_hp_gpio_mic1_led,
6069 },
6070 [ALC269_FIXUP_HP_LINE1_MIC1_LED] = {
6071 .type = HDA_FIXUP_FUNC,
6072 .v.func = alc269_fixup_hp_line1_mic1_led,
6073 },
693b613d 6074 [ALC269_FIXUP_INV_DMIC] = {
1727a771 6075 .type = HDA_FIXUP_FUNC,
9d36a7dc 6076 .v.func = alc_fixup_inv_dmic,
693b613d 6077 },
9b745ab8
TI
6078 [ALC269_FIXUP_NO_SHUTUP] = {
6079 .type = HDA_FIXUP_FUNC,
6080 .v.func = alc_fixup_no_shutup,
6081 },
108cc108 6082 [ALC269_FIXUP_LENOVO_DOCK] = {
1727a771
TI
6083 .type = HDA_FIXUP_PINS,
6084 .v.pins = (const struct hda_pintbl[]) {
108cc108
DH
6085 { 0x19, 0x23a11040 }, /* dock mic */
6086 { 0x1b, 0x2121103f }, /* dock headphone */
6087 { }
6088 },
6089 .chained = true,
6090 .chain_id = ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT
6091 },
6092 [ALC269_FIXUP_PINCFG_NO_HP_TO_LINEOUT] = {
1727a771 6093 .type = HDA_FIXUP_FUNC,
108cc108 6094 .v.func = alc269_fixup_pincfg_no_hp_to_lineout,
52129000
DH
6095 .chained = true,
6096 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
108cc108 6097 },
73bdd597
DH
6098 [ALC269_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6099 .type = HDA_FIXUP_PINS,
6100 .v.pins = (const struct hda_pintbl[]) {
6101 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6102 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6103 { }
6104 },
6105 .chained = true,
6106 .chain_id = ALC269_FIXUP_HEADSET_MODE
6107 },
6108 [ALC269_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6109 .type = HDA_FIXUP_PINS,
6110 .v.pins = (const struct hda_pintbl[]) {
6111 { 0x16, 0x21014020 }, /* dock line out */
6112 { 0x19, 0x21a19030 }, /* dock mic */
6113 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6114 { }
6115 },
6116 .chained = true,
6117 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6118 },
338cae56
DH
6119 [ALC269_FIXUP_DELL3_MIC_NO_PRESENCE] = {
6120 .type = HDA_FIXUP_PINS,
6121 .v.pins = (const struct hda_pintbl[]) {
6122 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6123 { }
6124 },
6125 .chained = true,
6126 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6127 },
fcc6c877
KY
6128 [ALC269_FIXUP_DELL4_MIC_NO_PRESENCE] = {
6129 .type = HDA_FIXUP_PINS,
6130 .v.pins = (const struct hda_pintbl[]) {
6131 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6132 { 0x1b, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6133 { }
6134 },
6135 .chained = true,
6136 .chain_id = ALC269_FIXUP_HEADSET_MODE
6137 },
73bdd597
DH
6138 [ALC269_FIXUP_HEADSET_MODE] = {
6139 .type = HDA_FIXUP_FUNC,
6140 .v.func = alc_fixup_headset_mode,
6676f308 6141 .chained = true,
b3802783 6142 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
73bdd597
DH
6143 },
6144 [ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6145 .type = HDA_FIXUP_FUNC,
6146 .v.func = alc_fixup_headset_mode_no_hp_mic,
6147 },
7819717b
TI
6148 [ALC269_FIXUP_ASPIRE_HEADSET_MIC] = {
6149 .type = HDA_FIXUP_PINS,
6150 .v.pins = (const struct hda_pintbl[]) {
6151 { 0x19, 0x01a1913c }, /* headset mic w/o jack detect */
6152 { }
6153 },
6154 .chained = true,
6155 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6156 },
88cfcf86
DH
6157 [ALC286_FIXUP_SONY_MIC_NO_PRESENCE] = {
6158 .type = HDA_FIXUP_PINS,
6159 .v.pins = (const struct hda_pintbl[]) {
6160 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6161 { }
6162 },
fbc78ad6
DH
6163 .chained = true,
6164 .chain_id = ALC269_FIXUP_HEADSET_MIC
88cfcf86 6165 },
0fbf21c3 6166 [ALC256_FIXUP_HUAWEI_MACH_WX9_PINS] = {
8ac51bbc
AB
6167 .type = HDA_FIXUP_PINS,
6168 .v.pins = (const struct hda_pintbl[]) {
6169 {0x12, 0x90a60130},
6170 {0x13, 0x40000000},
6171 {0x14, 0x90170110},
6172 {0x18, 0x411111f0},
6173 {0x19, 0x04a11040},
6174 {0x1a, 0x411111f0},
6175 {0x1b, 0x90170112},
6176 {0x1d, 0x40759a05},
6177 {0x1e, 0x411111f0},
6178 {0x21, 0x04211020},
6179 { }
6180 },
e2744fd7
AB
6181 .chained = true,
6182 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
8ac51bbc 6183 },
a2ef03fe
TE
6184 [ALC298_FIXUP_HUAWEI_MBX_STEREO] = {
6185 .type = HDA_FIXUP_FUNC,
6186 .v.func = alc298_fixup_huawei_mbx_stereo,
6187 .chained = true,
6188 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
6189 },
d240d1dc
DH
6190 [ALC269_FIXUP_ASUS_X101_FUNC] = {
6191 .type = HDA_FIXUP_FUNC,
6192 .v.func = alc269_fixup_x101_headset_mic,
6193 },
6194 [ALC269_FIXUP_ASUS_X101_VERB] = {
6195 .type = HDA_FIXUP_VERBS,
6196 .v.verbs = (const struct hda_verb[]) {
6197 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
6198 {0x20, AC_VERB_SET_COEF_INDEX, 0x08},
6199 {0x20, AC_VERB_SET_PROC_COEF, 0x0310},
6200 { }
6201 },
6202 .chained = true,
6203 .chain_id = ALC269_FIXUP_ASUS_X101_FUNC
6204 },
6205 [ALC269_FIXUP_ASUS_X101] = {
6206 .type = HDA_FIXUP_PINS,
6207 .v.pins = (const struct hda_pintbl[]) {
6208 { 0x18, 0x04a1182c }, /* Headset mic */
6209 { }
6210 },
6211 .chained = true,
6212 .chain_id = ALC269_FIXUP_ASUS_X101_VERB
6213 },
08a978db 6214 [ALC271_FIXUP_AMIC_MIC2] = {
1727a771
TI
6215 .type = HDA_FIXUP_PINS,
6216 .v.pins = (const struct hda_pintbl[]) {
08a978db
DR
6217 { 0x14, 0x99130110 }, /* speaker */
6218 { 0x19, 0x01a19c20 }, /* mic */
6219 { 0x1b, 0x99a7012f }, /* int-mic */
6220 { 0x21, 0x0121401f }, /* HP out */
6221 { }
6222 },
6223 },
6224 [ALC271_FIXUP_HP_GATE_MIC_JACK] = {
1727a771 6225 .type = HDA_FIXUP_FUNC,
08a978db
DR
6226 .v.func = alc271_hp_gate_mic_jack,
6227 .chained = true,
6228 .chain_id = ALC271_FIXUP_AMIC_MIC2,
6229 },
b1e8972e
OR
6230 [ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572] = {
6231 .type = HDA_FIXUP_FUNC,
6232 .v.func = alc269_fixup_limit_int_mic_boost,
6233 .chained = true,
6234 .chain_id = ALC271_FIXUP_HP_GATE_MIC_JACK,
6235 },
42397004
DR
6236 [ALC269_FIXUP_ACER_AC700] = {
6237 .type = HDA_FIXUP_PINS,
6238 .v.pins = (const struct hda_pintbl[]) {
6239 { 0x12, 0x99a3092f }, /* int-mic */
6240 { 0x14, 0x99130110 }, /* speaker */
6241 { 0x18, 0x03a11c20 }, /* mic */
6242 { 0x1e, 0x0346101e }, /* SPDIF1 */
6243 { 0x21, 0x0321101f }, /* HP out */
6244 { }
6245 },
6246 .chained = true,
6247 .chain_id = ALC271_FIXUP_DMIC,
6248 },
3e0d611b
DH
6249 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST] = {
6250 .type = HDA_FIXUP_FUNC,
6251 .v.func = alc269_fixup_limit_int_mic_boost,
2793769f
DH
6252 .chained = true,
6253 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
3e0d611b 6254 },
2cede303
OR
6255 [ALC269VB_FIXUP_ASUS_ZENBOOK] = {
6256 .type = HDA_FIXUP_FUNC,
6257 .v.func = alc269_fixup_limit_int_mic_boost,
6258 .chained = true,
6259 .chain_id = ALC269VB_FIXUP_DMIC,
6260 },
23870831
TI
6261 [ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A] = {
6262 .type = HDA_FIXUP_VERBS,
6263 .v.verbs = (const struct hda_verb[]) {
6264 /* class-D output amp +5dB */
6265 { 0x20, AC_VERB_SET_COEF_INDEX, 0x12 },
6266 { 0x20, AC_VERB_SET_PROC_COEF, 0x2800 },
6267 {}
6268 },
6269 .chained = true,
6270 .chain_id = ALC269VB_FIXUP_ASUS_ZENBOOK,
6271 },
8e35cd4a
DH
6272 [ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED] = {
6273 .type = HDA_FIXUP_FUNC,
6274 .v.func = alc269_fixup_limit_int_mic_boost,
6275 .chained = true,
6276 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC1,
6277 },
02b504d9
AA
6278 [ALC269VB_FIXUP_ORDISSIMO_EVE2] = {
6279 .type = HDA_FIXUP_PINS,
6280 .v.pins = (const struct hda_pintbl[]) {
6281 { 0x12, 0x99a3092f }, /* int-mic */
6282 { 0x18, 0x03a11d20 }, /* mic */
6283 { 0x19, 0x411111f0 }, /* Unused bogus pin */
6284 { }
6285 },
6286 },
cd217a63
KY
6287 [ALC283_FIXUP_CHROME_BOOK] = {
6288 .type = HDA_FIXUP_FUNC,
6289 .v.func = alc283_fixup_chromebook,
6290 },
0202e99c
KY
6291 [ALC283_FIXUP_SENSE_COMBO_JACK] = {
6292 .type = HDA_FIXUP_FUNC,
6293 .v.func = alc283_fixup_sense_combo_jack,
6294 .chained = true,
6295 .chain_id = ALC283_FIXUP_CHROME_BOOK,
6296 },
7bba2157
TI
6297 [ALC282_FIXUP_ASUS_TX300] = {
6298 .type = HDA_FIXUP_FUNC,
6299 .v.func = alc282_fixup_asus_tx300,
6300 },
1bb3e062
KY
6301 [ALC283_FIXUP_INT_MIC] = {
6302 .type = HDA_FIXUP_VERBS,
6303 .v.verbs = (const struct hda_verb[]) {
6304 {0x20, AC_VERB_SET_COEF_INDEX, 0x1a},
6305 {0x20, AC_VERB_SET_PROC_COEF, 0x0011},
6306 { }
6307 },
6308 .chained = true,
6309 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6310 },
0f4881dc
DH
6311 [ALC290_FIXUP_SUBWOOFER_HSJACK] = {
6312 .type = HDA_FIXUP_PINS,
6313 .v.pins = (const struct hda_pintbl[]) {
6314 { 0x17, 0x90170112 }, /* subwoofer */
6315 { }
6316 },
6317 .chained = true,
6318 .chain_id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK,
6319 },
6320 [ALC290_FIXUP_SUBWOOFER] = {
6321 .type = HDA_FIXUP_PINS,
6322 .v.pins = (const struct hda_pintbl[]) {
6323 { 0x17, 0x90170112 }, /* subwoofer */
6324 { }
6325 },
6326 .chained = true,
6327 .chain_id = ALC290_FIXUP_MONO_SPEAKERS,
6328 },
338cae56
DH
6329 [ALC290_FIXUP_MONO_SPEAKERS] = {
6330 .type = HDA_FIXUP_FUNC,
6331 .v.func = alc290_fixup_mono_speakers,
0f4881dc
DH
6332 },
6333 [ALC290_FIXUP_MONO_SPEAKERS_HSJACK] = {
6334 .type = HDA_FIXUP_FUNC,
6335 .v.func = alc290_fixup_mono_speakers,
338cae56
DH
6336 .chained = true,
6337 .chain_id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
6338 },
b67ae3f1
DH
6339 [ALC269_FIXUP_THINKPAD_ACPI] = {
6340 .type = HDA_FIXUP_FUNC,
d5a6cabf 6341 .v.func = alc_fixup_thinkpad_acpi,
09da111a
TI
6342 .chained = true,
6343 .chain_id = ALC269_FIXUP_SKU_IGNORE,
b67ae3f1 6344 },
56f27013
DH
6345 [ALC269_FIXUP_DMIC_THINKPAD_ACPI] = {
6346 .type = HDA_FIXUP_FUNC,
6347 .v.func = alc_fixup_inv_dmic,
6348 .chained = true,
6349 .chain_id = ALC269_FIXUP_THINKPAD_ACPI,
6350 },
5824ce8d 6351 [ALC255_FIXUP_ACER_MIC_NO_PRESENCE] = {
17d30460
HW
6352 .type = HDA_FIXUP_PINS,
6353 .v.pins = (const struct hda_pintbl[]) {
6354 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6355 { }
5824ce8d
CC
6356 },
6357 .chained = true,
17d30460 6358 .chain_id = ALC255_FIXUP_HEADSET_MODE
5824ce8d 6359 },
615966ad
CC
6360 [ALC255_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6361 .type = HDA_FIXUP_PINS,
6362 .v.pins = (const struct hda_pintbl[]) {
6363 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6364 { }
6365 },
6366 .chained = true,
6367 .chain_id = ALC255_FIXUP_HEADSET_MODE
6368 },
9a22a8f5
KY
6369 [ALC255_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6370 .type = HDA_FIXUP_PINS,
6371 .v.pins = (const struct hda_pintbl[]) {
6372 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6373 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6374 { }
6375 },
6376 .chained = true,
6377 .chain_id = ALC255_FIXUP_HEADSET_MODE
6378 },
31278997
KY
6379 [ALC255_FIXUP_DELL2_MIC_NO_PRESENCE] = {
6380 .type = HDA_FIXUP_PINS,
6381 .v.pins = (const struct hda_pintbl[]) {
6382 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6383 { }
6384 },
6385 .chained = true,
6386 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6387 },
9a22a8f5
KY
6388 [ALC255_FIXUP_HEADSET_MODE] = {
6389 .type = HDA_FIXUP_FUNC,
6390 .v.func = alc_fixup_headset_mode_alc255,
4a83d42a 6391 .chained = true,
b3802783 6392 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
9a22a8f5 6393 },
31278997
KY
6394 [ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC] = {
6395 .type = HDA_FIXUP_FUNC,
6396 .v.func = alc_fixup_headset_mode_alc255_no_hp_mic,
6397 },
a22aa26f
KY
6398 [ALC293_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6399 .type = HDA_FIXUP_PINS,
6400 .v.pins = (const struct hda_pintbl[]) {
6401 { 0x18, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6402 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6403 { }
6404 },
6405 .chained = true,
6406 .chain_id = ALC269_FIXUP_HEADSET_MODE
6407 },
1c37c223 6408 [ALC292_FIXUP_TPT440_DOCK] = {
ec56af67 6409 .type = HDA_FIXUP_FUNC,
7f57d803 6410 .v.func = alc_fixup_tpt440_dock,
1c37c223
TI
6411 .chained = true,
6412 .chain_id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST
6413 },
9a811230
TI
6414 [ALC292_FIXUP_TPT440] = {
6415 .type = HDA_FIXUP_FUNC,
157f0b7f 6416 .v.func = alc_fixup_disable_aamix,
9a811230
TI
6417 .chained = true,
6418 .chain_id = ALC292_FIXUP_TPT440_DOCK,
6419 },
abaa2274 6420 [ALC283_FIXUP_HEADSET_MIC] = {
9dc12862
DD
6421 .type = HDA_FIXUP_PINS,
6422 .v.pins = (const struct hda_pintbl[]) {
6423 { 0x19, 0x04a110f0 },
6424 { },
6425 },
6426 },
b3802783 6427 [ALC255_FIXUP_MIC_MUTE_LED] = {
00ef9940 6428 .type = HDA_FIXUP_FUNC,
b3802783 6429 .v.func = snd_hda_gen_fixup_micmute_led,
00ef9940 6430 },
1a22e775
TI
6431 [ALC282_FIXUP_ASPIRE_V5_PINS] = {
6432 .type = HDA_FIXUP_PINS,
6433 .v.pins = (const struct hda_pintbl[]) {
6434 { 0x12, 0x90a60130 },
6435 { 0x14, 0x90170110 },
6436 { 0x17, 0x40000008 },
6437 { 0x18, 0x411111f0 },
0420694d 6438 { 0x19, 0x01a1913c },
1a22e775
TI
6439 { 0x1a, 0x411111f0 },
6440 { 0x1b, 0x411111f0 },
6441 { 0x1d, 0x40f89b2d },
6442 { 0x1e, 0x411111f0 },
6443 { 0x21, 0x0321101f },
6444 { },
6445 },
6446 },
7a5255f1
DH
6447 [ALC280_FIXUP_HP_GPIO4] = {
6448 .type = HDA_FIXUP_FUNC,
6449 .v.func = alc280_fixup_hp_gpio4,
6450 },
eaa8e5ef
KY
6451 [ALC286_FIXUP_HP_GPIO_LED] = {
6452 .type = HDA_FIXUP_FUNC,
6453 .v.func = alc286_fixup_hp_gpio_led,
6454 },
33f4acd3
DH
6455 [ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY] = {
6456 .type = HDA_FIXUP_FUNC,
6457 .v.func = alc280_fixup_hp_gpio2_mic_hotkey,
6458 },
b4b33f9d
TC
6459 [ALC280_FIXUP_HP_DOCK_PINS] = {
6460 .type = HDA_FIXUP_PINS,
6461 .v.pins = (const struct hda_pintbl[]) {
6462 { 0x1b, 0x21011020 }, /* line-out */
6463 { 0x1a, 0x01a1903c }, /* headset mic */
6464 { 0x18, 0x2181103f }, /* line-in */
6465 { },
6466 },
6467 .chained = true,
6468 .chain_id = ALC280_FIXUP_HP_GPIO4
6469 },
04d5466a
JK
6470 [ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED] = {
6471 .type = HDA_FIXUP_PINS,
6472 .v.pins = (const struct hda_pintbl[]) {
6473 { 0x1b, 0x21011020 }, /* line-out */
6474 { 0x18, 0x2181103f }, /* line-in */
6475 { },
6476 },
6477 .chained = true,
6478 .chain_id = ALC269_FIXUP_HP_GPIO_MIC1_LED
6479 },
98973f2f
KP
6480 [ALC280_FIXUP_HP_9480M] = {
6481 .type = HDA_FIXUP_FUNC,
6482 .v.func = alc280_fixup_hp_9480m,
6483 },
e1e62b98
KY
6484 [ALC288_FIXUP_DELL_HEADSET_MODE] = {
6485 .type = HDA_FIXUP_FUNC,
6486 .v.func = alc_fixup_headset_mode_dell_alc288,
6487 .chained = true,
b3802783 6488 .chain_id = ALC255_FIXUP_MIC_MUTE_LED
e1e62b98
KY
6489 },
6490 [ALC288_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6491 .type = HDA_FIXUP_PINS,
6492 .v.pins = (const struct hda_pintbl[]) {
6493 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6494 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6495 { }
6496 },
6497 .chained = true,
6498 .chain_id = ALC288_FIXUP_DELL_HEADSET_MODE
6499 },
831bfdf9
HW
6500 [ALC288_FIXUP_DISABLE_AAMIX] = {
6501 .type = HDA_FIXUP_FUNC,
6502 .v.func = alc_fixup_disable_aamix,
6503 .chained = true,
d44a6864 6504 .chain_id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE
831bfdf9
HW
6505 },
6506 [ALC288_FIXUP_DELL_XPS_13] = {
6507 .type = HDA_FIXUP_FUNC,
6508 .v.func = alc_fixup_dell_xps13,
6509 .chained = true,
6510 .chain_id = ALC288_FIXUP_DISABLE_AAMIX
6511 },
8b99aba7
TI
6512 [ALC292_FIXUP_DISABLE_AAMIX] = {
6513 .type = HDA_FIXUP_FUNC,
6514 .v.func = alc_fixup_disable_aamix,
831bfdf9
HW
6515 .chained = true,
6516 .chain_id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE
8b99aba7 6517 },
c04017ea
DH
6518 [ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK] = {
6519 .type = HDA_FIXUP_FUNC,
6520 .v.func = alc_fixup_disable_aamix,
6521 .chained = true,
6522 .chain_id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE
6523 },
8b99aba7
TI
6524 [ALC292_FIXUP_DELL_E7X] = {
6525 .type = HDA_FIXUP_FUNC,
6526 .v.func = alc_fixup_dell_xps13,
6527 .chained = true,
6528 .chain_id = ALC292_FIXUP_DISABLE_AAMIX
6529 },
54324221
JM
6530 [ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE] = {
6531 .type = HDA_FIXUP_PINS,
6532 .v.pins = (const struct hda_pintbl[]) {
6533 { 0x18, 0x01a1913c }, /* headset mic w/o jack detect */
6534 { }
6535 },
6536 .chained_before = true,
6537 .chain_id = ALC269_FIXUP_HEADSET_MODE,
6538 },
977e6276
KY
6539 [ALC298_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6540 .type = HDA_FIXUP_PINS,
6541 .v.pins = (const struct hda_pintbl[]) {
6542 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6543 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6544 { }
6545 },
6546 .chained = true,
6547 .chain_id = ALC269_FIXUP_HEADSET_MODE
6548 },
2f726aec
HW
6549 [ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE] = {
6550 .type = HDA_FIXUP_PINS,
6551 .v.pins = (const struct hda_pintbl[]) {
6552 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6553 { }
6554 },
6555 .chained = true,
6556 .chain_id = ALC269_FIXUP_HEADSET_MODE
6557 },
6ed1131f
KY
6558 [ALC275_FIXUP_DELL_XPS] = {
6559 .type = HDA_FIXUP_VERBS,
6560 .v.verbs = (const struct hda_verb[]) {
6561 /* Enables internal speaker */
6562 {0x20, AC_VERB_SET_COEF_INDEX, 0x1f},
6563 {0x20, AC_VERB_SET_PROC_COEF, 0x00c0},
6564 {0x20, AC_VERB_SET_COEF_INDEX, 0x30},
6565 {0x20, AC_VERB_SET_PROC_COEF, 0x00b1},
6566 {}
6567 }
6568 },
8c69729b
HW
6569 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE] = {
6570 .type = HDA_FIXUP_VERBS,
6571 .v.verbs = (const struct hda_verb[]) {
6572 /* Disable pass-through path for FRONT 14h */
6573 {0x20, AC_VERB_SET_COEF_INDEX, 0x36},
6574 {0x20, AC_VERB_SET_PROC_COEF, 0x1737},
6575 {}
6576 },
6577 .chained = true,
6578 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6579 },
1099f484
KHF
6580 [ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2] = {
6581 .type = HDA_FIXUP_FUNC,
6582 .v.func = alc256_fixup_dell_xps_13_headphone_noise2,
6583 .chained = true,
6584 .chain_id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE
6585 },
23adc192
HW
6586 [ALC293_FIXUP_LENOVO_SPK_NOISE] = {
6587 .type = HDA_FIXUP_FUNC,
6588 .v.func = alc_fixup_disable_aamix,
6589 .chained = true,
6590 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
6591 },
3694cb29
K
6592 [ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY] = {
6593 .type = HDA_FIXUP_FUNC,
6594 .v.func = alc233_fixup_lenovo_line2_mic_hotkey,
6595 },
3b43b71f
KHF
6596 [ALC255_FIXUP_DELL_SPK_NOISE] = {
6597 .type = HDA_FIXUP_FUNC,
6598 .v.func = alc_fixup_disable_aamix,
6599 .chained = true,
6600 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6601 },
d1dd4211
KY
6602 [ALC225_FIXUP_DISABLE_MIC_VREF] = {
6603 .type = HDA_FIXUP_FUNC,
6604 .v.func = alc_fixup_disable_mic_vref,
6605 .chained = true,
6606 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6607 },
2ae95577
DH
6608 [ALC225_FIXUP_DELL1_MIC_NO_PRESENCE] = {
6609 .type = HDA_FIXUP_VERBS,
6610 .v.verbs = (const struct hda_verb[]) {
6611 /* Disable pass-through path for FRONT 14h */
6612 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6613 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6614 {}
6615 },
6616 .chained = true,
d1dd4211 6617 .chain_id = ALC225_FIXUP_DISABLE_MIC_VREF
2ae95577 6618 },
f883982d
TI
6619 [ALC280_FIXUP_HP_HEADSET_MIC] = {
6620 .type = HDA_FIXUP_FUNC,
6621 .v.func = alc_fixup_disable_aamix,
6622 .chained = true,
6623 .chain_id = ALC269_FIXUP_HEADSET_MIC,
6624 },
e549d190
HW
6625 [ALC221_FIXUP_HP_FRONT_MIC] = {
6626 .type = HDA_FIXUP_PINS,
6627 .v.pins = (const struct hda_pintbl[]) {
6628 { 0x19, 0x02a19020 }, /* Front Mic */
6629 { }
6630 },
6631 },
c636b95e
SE
6632 [ALC292_FIXUP_TPT460] = {
6633 .type = HDA_FIXUP_FUNC,
6634 .v.func = alc_fixup_tpt440_dock,
6635 .chained = true,
6636 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE,
6637 },
dd9aa335
HW
6638 [ALC298_FIXUP_SPK_VOLUME] = {
6639 .type = HDA_FIXUP_FUNC,
6640 .v.func = alc298_fixup_speaker_volume,
59ec4b57 6641 .chained = true,
2f726aec 6642 .chain_id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE,
dd9aa335 6643 },
e312a869
TI
6644 [ALC295_FIXUP_DISABLE_DAC3] = {
6645 .type = HDA_FIXUP_FUNC,
6646 .v.func = alc295_fixup_disable_dac3,
6647 },
fd06c77e
KHF
6648 [ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER] = {
6649 .type = HDA_FIXUP_PINS,
6650 .v.pins = (const struct hda_pintbl[]) {
6651 { 0x1b, 0x90170151 },
6652 { }
6653 },
6654 .chained = true,
6655 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6656 },
823ff161
GM
6657 [ALC269_FIXUP_ATIV_BOOK_8] = {
6658 .type = HDA_FIXUP_FUNC,
6659 .v.func = alc_fixup_auto_mute_via_amp,
6660 .chained = true,
6661 .chain_id = ALC269_FIXUP_NO_SHUTUP
6662 },
9eb5d0e6
KY
6663 [ALC221_FIXUP_HP_MIC_NO_PRESENCE] = {
6664 .type = HDA_FIXUP_PINS,
6665 .v.pins = (const struct hda_pintbl[]) {
6666 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6667 { 0x1a, 0x01a1913d }, /* use as headphone mic, without its own jack detect */
6668 { }
6669 },
6670 .chained = true,
6671 .chain_id = ALC269_FIXUP_HEADSET_MODE
6672 },
c1732ede
CC
6673 [ALC256_FIXUP_ASUS_HEADSET_MODE] = {
6674 .type = HDA_FIXUP_FUNC,
6675 .v.func = alc_fixup_headset_mode,
6676 },
6677 [ALC256_FIXUP_ASUS_MIC] = {
6678 .type = HDA_FIXUP_PINS,
6679 .v.pins = (const struct hda_pintbl[]) {
6680 { 0x13, 0x90a60160 }, /* use as internal mic */
6681 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6682 { }
6683 },
6684 .chained = true,
6685 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6686 },
eeed4cd1 6687 [ALC256_FIXUP_ASUS_AIO_GPIO2] = {
ae065f1c
TI
6688 .type = HDA_FIXUP_FUNC,
6689 /* Set up GPIO2 for the speaker amp */
6690 .v.func = alc_fixup_gpio4,
eeed4cd1 6691 },
216d7aeb
CC
6692 [ALC233_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6693 .type = HDA_FIXUP_PINS,
6694 .v.pins = (const struct hda_pintbl[]) {
6695 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6696 { }
6697 },
6698 .chained = true,
6699 .chain_id = ALC269_FIXUP_HEADSET_MIC
6700 },
6701 [ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE] = {
6702 .type = HDA_FIXUP_VERBS,
6703 .v.verbs = (const struct hda_verb[]) {
6704 /* Enables internal speaker */
6705 {0x20, AC_VERB_SET_COEF_INDEX, 0x40},
6706 {0x20, AC_VERB_SET_PROC_COEF, 0x8800},
6707 {}
6708 },
6709 .chained = true,
6710 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6711 },
ca169cc2
KY
6712 [ALC233_FIXUP_LENOVO_MULTI_CODECS] = {
6713 .type = HDA_FIXUP_FUNC,
6714 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
6715 },
ea5c7eba
JHP
6716 [ALC233_FIXUP_ACER_HEADSET_MIC] = {
6717 .type = HDA_FIXUP_VERBS,
6718 .v.verbs = (const struct hda_verb[]) {
6719 { 0x20, AC_VERB_SET_COEF_INDEX, 0x45 },
6720 { 0x20, AC_VERB_SET_PROC_COEF, 0x5089 },
6721 { }
6722 },
6723 .chained = true,
6724 .chain_id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE
6725 },
f33f79f3
HW
6726 [ALC294_FIXUP_LENOVO_MIC_LOCATION] = {
6727 .type = HDA_FIXUP_PINS,
6728 .v.pins = (const struct hda_pintbl[]) {
6729 /* Change the mic location from front to right, otherwise there are
6730 two front mics with the same name, pulseaudio can't handle them.
6731 This is just a temporary workaround, after applying this fixup,
6732 there will be one "Front Mic" and one "Mic" in this machine.
6733 */
6734 { 0x1a, 0x04a19040 },
6735 { }
6736 },
6737 },
5f364135
KY
6738 [ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE] = {
6739 .type = HDA_FIXUP_PINS,
6740 .v.pins = (const struct hda_pintbl[]) {
6741 { 0x16, 0x0101102f }, /* Rear Headset HP */
6742 { 0x19, 0x02a1913c }, /* use as Front headset mic, without its own jack detect */
6743 { 0x1a, 0x01a19030 }, /* Rear Headset MIC */
6744 { 0x1b, 0x02011020 },
6745 { }
6746 },
6747 .chained = true,
6748 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6749 },
b84e8436
PH
6750 [ALC700_FIXUP_INTEL_REFERENCE] = {
6751 .type = HDA_FIXUP_VERBS,
6752 .v.verbs = (const struct hda_verb[]) {
6753 /* Enables internal speaker */
6754 {0x20, AC_VERB_SET_COEF_INDEX, 0x45},
6755 {0x20, AC_VERB_SET_PROC_COEF, 0x5289},
6756 {0x20, AC_VERB_SET_COEF_INDEX, 0x4A},
6757 {0x20, AC_VERB_SET_PROC_COEF, 0x001b},
6758 {0x58, AC_VERB_SET_COEF_INDEX, 0x00},
6759 {0x58, AC_VERB_SET_PROC_COEF, 0x3888},
6760 {0x20, AC_VERB_SET_COEF_INDEX, 0x6f},
6761 {0x20, AC_VERB_SET_PROC_COEF, 0x2c0b},
6762 {}
6763 }
6764 },
92266651
KY
6765 [ALC274_FIXUP_DELL_BIND_DACS] = {
6766 .type = HDA_FIXUP_FUNC,
6767 .v.func = alc274_fixup_bind_dacs,
6768 .chained = true,
6769 .chain_id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE
6770 },
6771 [ALC274_FIXUP_DELL_AIO_LINEOUT_VERB] = {
6772 .type = HDA_FIXUP_PINS,
6773 .v.pins = (const struct hda_pintbl[]) {
6774 { 0x1b, 0x0401102f },
6775 { }
6776 },
6777 .chained = true,
6778 .chain_id = ALC274_FIXUP_DELL_BIND_DACS
6779 },
61fcf8ec
KY
6780 [ALC298_FIXUP_TPT470_DOCK] = {
6781 .type = HDA_FIXUP_FUNC,
6782 .v.func = alc_fixup_tpt470_dock,
6783 .chained = true,
6784 .chain_id = ALC293_FIXUP_LENOVO_SPK_NOISE
6785 },
ae104a21
KY
6786 [ALC255_FIXUP_DUMMY_LINEOUT_VERB] = {
6787 .type = HDA_FIXUP_PINS,
6788 .v.pins = (const struct hda_pintbl[]) {
6789 { 0x14, 0x0201101f },
6790 { }
6791 },
6792 .chained = true,
6793 .chain_id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE
6794 },
f0ba9d69
KY
6795 [ALC255_FIXUP_DELL_HEADSET_MIC] = {
6796 .type = HDA_FIXUP_PINS,
6797 .v.pins = (const struct hda_pintbl[]) {
6798 { 0x19, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6799 { }
6800 },
3ce0d5aa
HW
6801 .chained = true,
6802 .chain_id = ALC269_FIXUP_HEADSET_MIC
f0ba9d69 6803 },
bbf8ff6b
TB
6804 [ALC295_FIXUP_HP_X360] = {
6805 .type = HDA_FIXUP_FUNC,
6806 .v.func = alc295_fixup_hp_top_speakers,
6807 .chained = true,
6808 .chain_id = ALC269_FIXUP_HP_MUTE_LED_MIC3
8a328ac1
KY
6809 },
6810 [ALC221_FIXUP_HP_HEADSET_MIC] = {
6811 .type = HDA_FIXUP_PINS,
6812 .v.pins = (const struct hda_pintbl[]) {
6813 { 0x19, 0x0181313f},
6814 { }
6815 },
6816 .chained = true,
6817 .chain_id = ALC269_FIXUP_HEADSET_MIC
6818 },
c4cfcf6f
HW
6819 [ALC285_FIXUP_LENOVO_HEADPHONE_NOISE] = {
6820 .type = HDA_FIXUP_FUNC,
6821 .v.func = alc285_fixup_invalidate_dacs,
6ba189c5
HW
6822 .chained = true,
6823 .chain_id = ALC269_FIXUP_THINKPAD_ACPI
c4cfcf6f 6824 },
e8ed64b0
GKK
6825 [ALC295_FIXUP_HP_AUTO_MUTE] = {
6826 .type = HDA_FIXUP_FUNC,
6827 .v.func = alc_fixup_auto_mute_via_amp,
6828 },
33aaebd4
CC
6829 [ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE] = {
6830 .type = HDA_FIXUP_PINS,
6831 .v.pins = (const struct hda_pintbl[]) {
6832 { 0x18, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6833 { }
6834 },
6835 .chained = true,
6836 .chain_id = ALC269_FIXUP_HEADSET_MIC
6837 },
d8ae458e
CC
6838 [ALC294_FIXUP_ASUS_MIC] = {
6839 .type = HDA_FIXUP_PINS,
6840 .v.pins = (const struct hda_pintbl[]) {
6841 { 0x13, 0x90a60160 }, /* use as internal mic */
6842 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6843 { }
6844 },
6845 .chained = true,
6846 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6847 },
4e051106
JHP
6848 [ALC294_FIXUP_ASUS_HEADSET_MIC] = {
6849 .type = HDA_FIXUP_PINS,
6850 .v.pins = (const struct hda_pintbl[]) {
82b01149 6851 { 0x19, 0x01a1103c }, /* use as headset mic */
4e051106
JHP
6852 { }
6853 },
6854 .chained = true,
6855 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6856 },
6857 [ALC294_FIXUP_ASUS_SPK] = {
6858 .type = HDA_FIXUP_VERBS,
6859 .v.verbs = (const struct hda_verb[]) {
6860 /* Set EAPD high */
6861 { 0x20, AC_VERB_SET_COEF_INDEX, 0x40 },
6862 { 0x20, AC_VERB_SET_PROC_COEF, 0x8800 },
6863 { }
6864 },
6865 .chained = true,
6866 .chain_id = ALC294_FIXUP_ASUS_HEADSET_MIC
6867 },
c8a9afa6 6868 [ALC295_FIXUP_CHROME_BOOK] = {
e854747d 6869 .type = HDA_FIXUP_FUNC,
c8a9afa6 6870 .v.func = alc295_fixup_chromebook,
8983eb60
KY
6871 .chained = true,
6872 .chain_id = ALC225_FIXUP_HEADSET_JACK
6873 },
6874 [ALC225_FIXUP_HEADSET_JACK] = {
6875 .type = HDA_FIXUP_FUNC,
6876 .v.func = alc_fixup_headset_jack,
e854747d 6877 },
89e3a568
JS
6878 [ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE] = {
6879 .type = HDA_FIXUP_PINS,
6880 .v.pins = (const struct hda_pintbl[]) {
6881 { 0x1a, 0x01a1913c }, /* use as headset mic, without its own jack detect */
6882 { }
6883 },
6884 .chained = true,
6885 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6886 },
c8c6ee61
HW
6887 [ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE] = {
6888 .type = HDA_FIXUP_VERBS,
6889 .v.verbs = (const struct hda_verb[]) {
6890 /* Disable PCBEEP-IN passthrough */
6891 { 0x20, AC_VERB_SET_COEF_INDEX, 0x36 },
6892 { 0x20, AC_VERB_SET_PROC_COEF, 0x57d7 },
6893 { }
6894 },
6895 .chained = true,
6896 .chain_id = ALC285_FIXUP_LENOVO_HEADPHONE_NOISE
6897 },
cbc05fd6
JHP
6898 [ALC255_FIXUP_ACER_HEADSET_MIC] = {
6899 .type = HDA_FIXUP_PINS,
6900 .v.pins = (const struct hda_pintbl[]) {
6901 { 0x19, 0x03a11130 },
6902 { 0x1a, 0x90a60140 }, /* use as internal mic */
6903 { }
6904 },
6905 .chained = true,
6906 .chain_id = ALC255_FIXUP_HEADSET_MODE_NO_HP_MIC
6907 },
136824ef
KY
6908 [ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE] = {
6909 .type = HDA_FIXUP_PINS,
6910 .v.pins = (const struct hda_pintbl[]) {
6911 { 0x16, 0x01011020 }, /* Rear Line out */
6912 { 0x19, 0x01a1913c }, /* use as Front headset mic, without its own jack detect */
6913 { }
6914 },
6915 .chained = true,
6916 .chain_id = ALC225_FIXUP_WYSE_AUTO_MUTE
6917 },
6918 [ALC225_FIXUP_WYSE_AUTO_MUTE] = {
6919 .type = HDA_FIXUP_FUNC,
6920 .v.func = alc_fixup_auto_mute_via_amp,
6921 .chained = true,
6922 .chain_id = ALC225_FIXUP_WYSE_DISABLE_MIC_VREF
6923 },
6924 [ALC225_FIXUP_WYSE_DISABLE_MIC_VREF] = {
6925 .type = HDA_FIXUP_FUNC,
6926 .v.func = alc_fixup_disable_mic_vref,
6927 .chained = true,
6928 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6929 },
667a8f73
JHP
6930 [ALC286_FIXUP_ACER_AIO_HEADSET_MIC] = {
6931 .type = HDA_FIXUP_VERBS,
6932 .v.verbs = (const struct hda_verb[]) {
6933 { 0x20, AC_VERB_SET_COEF_INDEX, 0x4f },
6934 { 0x20, AC_VERB_SET_PROC_COEF, 0x5029 },
6935 { }
6936 },
6937 .chained = true,
6938 .chain_id = ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE
6939 },
8c8967a7
DD
6940 [ALC256_FIXUP_ASUS_HEADSET_MIC] = {
6941 .type = HDA_FIXUP_PINS,
6942 .v.pins = (const struct hda_pintbl[]) {
6943 { 0x19, 0x03a11020 }, /* headset mic with jack detect */
6944 { }
6945 },
6946 .chained = true,
6947 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6948 },
e1037354
JHP
6949 [ALC256_FIXUP_ASUS_MIC_NO_PRESENCE] = {
6950 .type = HDA_FIXUP_PINS,
6951 .v.pins = (const struct hda_pintbl[]) {
6952 { 0x19, 0x04a11120 }, /* use as headset mic, without its own jack detect */
6953 { }
6954 },
6955 .chained = true,
6956 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6957 },
e2a829b3
BR
6958 [ALC299_FIXUP_PREDATOR_SPK] = {
6959 .type = HDA_FIXUP_PINS,
6960 .v.pins = (const struct hda_pintbl[]) {
6961 { 0x21, 0x90170150 }, /* use as headset mic, without its own jack detect */
6962 { }
6963 }
6964 },
60083f9e
JHP
6965 [ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC] = {
6966 .type = HDA_FIXUP_PINS,
6967 .v.pins = (const struct hda_pintbl[]) {
6968 { 0x14, 0x411111f0 }, /* disable confusing internal speaker */
6969 { 0x19, 0x04a11150 }, /* use as headset mic, without its own jack detect */
6970 { }
6971 },
6972 .chained = true,
6973 .chain_id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC
6974 },
bd9c10bc
JMG
6975 [ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE] = {
6976 .type = HDA_FIXUP_PINS,
6977 .v.pins = (const struct hda_pintbl[]) {
6978 { 0x19, 0x04a11040 },
6979 { 0x21, 0x04211020 },
6980 { }
6981 },
6982 .chained = true,
6983 .chain_id = ALC256_FIXUP_ASUS_HEADSET_MODE
6984 },
f1d4e28b
KY
6985};
6986
1d045db9 6987static const struct snd_pci_quirk alc269_fixup_tbl[] = {
a6b92b66 6988 SND_PCI_QUIRK(0x1025, 0x0283, "Acer TravelMate 8371", ALC269_FIXUP_INV_DMIC),
693b613d
DH
6989 SND_PCI_QUIRK(0x1025, 0x029b, "Acer 1810TZ", ALC269_FIXUP_INV_DMIC),
6990 SND_PCI_QUIRK(0x1025, 0x0349, "Acer AOD260", ALC269_FIXUP_INV_DMIC),
aaedfb47 6991 SND_PCI_QUIRK(0x1025, 0x047c, "Acer AC700", ALC269_FIXUP_ACER_AC700),
7819717b
TI
6992 SND_PCI_QUIRK(0x1025, 0x072d, "Acer Aspire V5-571G", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
6993 SND_PCI_QUIRK(0x1025, 0x080d, "Acer Aspire V5-122P", ALC269_FIXUP_ASPIRE_HEADSET_MIC),
aaedfb47
DH
6994 SND_PCI_QUIRK(0x1025, 0x0740, "Acer AO725", ALC271_FIXUP_HP_GATE_MIC_JACK),
6995 SND_PCI_QUIRK(0x1025, 0x0742, "Acer AO756", ALC271_FIXUP_HP_GATE_MIC_JACK),
02322ac9 6996 SND_PCI_QUIRK(0x1025, 0x0762, "Acer Aspire E1-472", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
b1e8972e 6997 SND_PCI_QUIRK(0x1025, 0x0775, "Acer Aspire E1-572", ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572),
1a22e775 6998 SND_PCI_QUIRK(0x1025, 0x079b, "Acer Aspire V5-573G", ALC282_FIXUP_ASPIRE_V5_PINS),
705b65f1 6999 SND_PCI_QUIRK(0x1025, 0x102b, "Acer Aspire C24-860", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE),
b9c2fa52 7000 SND_PCI_QUIRK(0x1025, 0x106d, "Acer Cloudbook 14", ALC283_FIXUP_CHROME_BOOK),
c7531e31
CC
7001 SND_PCI_QUIRK(0x1025, 0x1099, "Acer Aspire E5-523G", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
7002 SND_PCI_QUIRK(0x1025, 0x110e, "Acer Aspire ES1-432", ALC255_FIXUP_ACER_MIC_NO_PRESENCE),
e2a829b3 7003 SND_PCI_QUIRK(0x1025, 0x1246, "Acer Predator Helios 500", ALC299_FIXUP_PREDATOR_SPK),
667a8f73
JHP
7004 SND_PCI_QUIRK(0x1025, 0x128f, "Acer Veriton Z6860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
7005 SND_PCI_QUIRK(0x1025, 0x1290, "Acer Veriton Z4860G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
7006 SND_PCI_QUIRK(0x1025, 0x1291, "Acer Veriton Z4660G", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
2733cceb 7007 SND_PCI_QUIRK(0x1025, 0x1308, "Acer Aspire Z24-890", ALC286_FIXUP_ACER_AIO_HEADSET_MIC),
ea5c7eba 7008 SND_PCI_QUIRK(0x1025, 0x132a, "Acer TravelMate B114-21", ALC233_FIXUP_ACER_HEADSET_MIC),
cbc05fd6 7009 SND_PCI_QUIRK(0x1025, 0x1330, "Acer TravelMate X514-51T", ALC255_FIXUP_ACER_HEADSET_MIC),
aaedfb47 7010 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6ed1131f 7011 SND_PCI_QUIRK(0x1028, 0x054b, "Dell XPS one 2710", ALC275_FIXUP_DELL_XPS),
86f799b8 7012 SND_PCI_QUIRK(0x1028, 0x05bd, "Dell Latitude E6440", ALC292_FIXUP_DELL_E7X),
cf52103a 7013 SND_PCI_QUIRK(0x1028, 0x05be, "Dell Latitude E6540", ALC292_FIXUP_DELL_E7X),
8b99aba7
TI
7014 SND_PCI_QUIRK(0x1028, 0x05ca, "Dell Latitude E7240", ALC292_FIXUP_DELL_E7X),
7015 SND_PCI_QUIRK(0x1028, 0x05cb, "Dell Latitude E7440", ALC292_FIXUP_DELL_E7X),
0f4881dc 7016 SND_PCI_QUIRK(0x1028, 0x05da, "Dell Vostro 5460", ALC290_FIXUP_SUBWOOFER),
73bdd597
DH
7017 SND_PCI_QUIRK(0x1028, 0x05f4, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
7018 SND_PCI_QUIRK(0x1028, 0x05f5, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
7019 SND_PCI_QUIRK(0x1028, 0x05f6, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE),
0f4881dc
DH
7020 SND_PCI_QUIRK(0x1028, 0x0615, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
7021 SND_PCI_QUIRK(0x1028, 0x0616, "Dell Vostro 5470", ALC290_FIXUP_SUBWOOFER_HSJACK),
98070576 7022 SND_PCI_QUIRK(0x1028, 0x062c, "Dell Latitude E5550", ALC292_FIXUP_DELL_E7X),
4275554d 7023 SND_PCI_QUIRK(0x1028, 0x062e, "Dell Latitude E7450", ALC292_FIXUP_DELL_E7X),
0f4881dc 7024 SND_PCI_QUIRK(0x1028, 0x0638, "Dell Inspiron 5439", ALC290_FIXUP_MONO_SPEAKERS_HSJACK),
a22aa26f
KY
7025 SND_PCI_QUIRK(0x1028, 0x064a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7026 SND_PCI_QUIRK(0x1028, 0x064b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
831bfdf9 7027 SND_PCI_QUIRK(0x1028, 0x0665, "Dell XPS 13", ALC288_FIXUP_DELL_XPS_13),
afecb146 7028 SND_PCI_QUIRK(0x1028, 0x0669, "Dell Optiplex 9020m", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
3a05d12f 7029 SND_PCI_QUIRK(0x1028, 0x069a, "Dell Vostro 5480", ALC290_FIXUP_SUBWOOFER_HSJACK),
8b72415d 7030 SND_PCI_QUIRK(0x1028, 0x06c7, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE),
b734304f
KY
7031 SND_PCI_QUIRK(0x1028, 0x06d9, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7032 SND_PCI_QUIRK(0x1028, 0x06da, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
c04017ea
DH
7033 SND_PCI_QUIRK(0x1028, 0x06db, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7034 SND_PCI_QUIRK(0x1028, 0x06dd, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7035 SND_PCI_QUIRK(0x1028, 0x06de, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7036 SND_PCI_QUIRK(0x1028, 0x06df, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
7037 SND_PCI_QUIRK(0x1028, 0x06e0, "Dell", ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK),
1099f484 7038 SND_PCI_QUIRK(0x1028, 0x0704, "Dell XPS 13 9350", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
fd06c77e 7039 SND_PCI_QUIRK(0x1028, 0x0706, "Dell Inspiron 7559", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
3b43b71f 7040 SND_PCI_QUIRK(0x1028, 0x0725, "Dell Inspiron 3162", ALC255_FIXUP_DELL_SPK_NOISE),
c0ca5ece 7041 SND_PCI_QUIRK(0x1028, 0x0738, "Dell Precision 5820", ALC269_FIXUP_NO_SHUTUP),
1099f484 7042 SND_PCI_QUIRK(0x1028, 0x075b, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
709ae62e 7043 SND_PCI_QUIRK(0x1028, 0x075c, "Dell XPS 27 7760", ALC298_FIXUP_SPK_VOLUME),
dd9aa335 7044 SND_PCI_QUIRK(0x1028, 0x075d, "Dell AIO", ALC298_FIXUP_SPK_VOLUME),
e312a869 7045 SND_PCI_QUIRK(0x1028, 0x07b0, "Dell Precision 7520", ALC295_FIXUP_DISABLE_DAC3),
493de342 7046 SND_PCI_QUIRK(0x1028, 0x0798, "Dell Inspiron 17 7000 Gaming", ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER),
5f364135 7047 SND_PCI_QUIRK(0x1028, 0x080c, "Dell WYSE", ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE),
1099f484 7048 SND_PCI_QUIRK(0x1028, 0x082a, "Dell XPS 13 9360", ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE2),
40e2c4e5
KY
7049 SND_PCI_QUIRK(0x1028, 0x084b, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
7050 SND_PCI_QUIRK(0x1028, 0x084e, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
f0ba9d69
KY
7051 SND_PCI_QUIRK(0x1028, 0x0871, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
7052 SND_PCI_QUIRK(0x1028, 0x0872, "Dell Precision 3630", ALC255_FIXUP_DELL_HEADSET_MIC),
ae104a21 7053 SND_PCI_QUIRK(0x1028, 0x0873, "Dell Precision 3930", ALC255_FIXUP_DUMMY_LINEOUT_VERB),
136824ef 7054 SND_PCI_QUIRK(0x1028, 0x08ad, "Dell WYSE AIO", ALC225_FIXUP_DELL_WYSE_AIO_MIC_NO_PRESENCE),
da484d00 7055 SND_PCI_QUIRK(0x1028, 0x08ae, "Dell WYSE NB", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE),
c2a7c55a 7056 SND_PCI_QUIRK(0x1028, 0x0935, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB),
a22aa26f
KY
7057 SND_PCI_QUIRK(0x1028, 0x164a, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
7058 SND_PCI_QUIRK(0x1028, 0x164b, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE),
08fb0d0e 7059 SND_PCI_QUIRK(0x103c, 0x1586, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC2),
9f5c6faf 7060 SND_PCI_QUIRK(0x103c, 0x18e6, "HP", ALC269_FIXUP_HP_GPIO_LED),
8e35cd4a 7061 SND_PCI_QUIRK(0x103c, 0x218b, "HP", ALC269_FIXUP_LIMIT_INT_MIC_BOOST_MUTE_LED),
33f4acd3 7062 SND_PCI_QUIRK(0x103c, 0x225f, "HP", ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY),
c60666bd 7063 /* ALC282 */
7976eb49 7064 SND_PCI_QUIRK(0x103c, 0x21f9, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7065 SND_PCI_QUIRK(0x103c, 0x2210, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7066 SND_PCI_QUIRK(0x103c, 0x2214, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
7067 SND_PCI_QUIRK(0x103c, 0x2236, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7068 SND_PCI_QUIRK(0x103c, 0x2237, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7069 SND_PCI_QUIRK(0x103c, 0x2238, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
7070 SND_PCI_QUIRK(0x103c, 0x2239, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
9c5dc3bf 7071 SND_PCI_QUIRK(0x103c, 0x224b, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED),
c60666bd 7072 SND_PCI_QUIRK(0x103c, 0x2268, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7073 SND_PCI_QUIRK(0x103c, 0x226a, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7074 SND_PCI_QUIRK(0x103c, 0x226b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164 7075 SND_PCI_QUIRK(0x103c, 0x226e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
eaa8e5ef 7076 SND_PCI_QUIRK(0x103c, 0x2271, "HP", ALC286_FIXUP_HP_GPIO_LED),
b4b33f9d 7077 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC280_FIXUP_HP_DOCK_PINS),
3271cb22 7078 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC280_FIXUP_HP_DOCK_PINS),
c60666bd 7079 SND_PCI_QUIRK(0x103c, 0x229e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7080 SND_PCI_QUIRK(0x103c, 0x22b2, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7081 SND_PCI_QUIRK(0x103c, 0x22b7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7082 SND_PCI_QUIRK(0x103c, 0x22bf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7083 SND_PCI_QUIRK(0x103c, 0x22cf, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
98973f2f 7084 SND_PCI_QUIRK(0x103c, 0x22db, "HP", ALC280_FIXUP_HP_9480M),
9c5dc3bf
KY
7085 SND_PCI_QUIRK(0x103c, 0x22dc, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7086 SND_PCI_QUIRK(0x103c, 0x22fb, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 7087 /* ALC290 */
9c5dc3bf 7088 SND_PCI_QUIRK(0x103c, 0x221b, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7089 SND_PCI_QUIRK(0x103c, 0x2221, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7090 SND_PCI_QUIRK(0x103c, 0x2225, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf
KY
7091 SND_PCI_QUIRK(0x103c, 0x2253, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7092 SND_PCI_QUIRK(0x103c, 0x2254, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7093 SND_PCI_QUIRK(0x103c, 0x2255, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7094 SND_PCI_QUIRK(0x103c, 0x2256, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7095 SND_PCI_QUIRK(0x103c, 0x2257, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7096 SND_PCI_QUIRK(0x103c, 0x2259, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
04d5466a 7097 SND_PCI_QUIRK(0x103c, 0x225a, "HP", ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED),
c60666bd 7098 SND_PCI_QUIRK(0x103c, 0x2260, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7099 SND_PCI_QUIRK(0x103c, 0x2263, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7100 SND_PCI_QUIRK(0x103c, 0x2264, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7101 SND_PCI_QUIRK(0x103c, 0x2265, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
9c5dc3bf
KY
7102 SND_PCI_QUIRK(0x103c, 0x2272, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
7103 SND_PCI_QUIRK(0x103c, 0x2273, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
9c5dc3bf 7104 SND_PCI_QUIRK(0x103c, 0x2278, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED),
c60666bd 7105 SND_PCI_QUIRK(0x103c, 0x227f, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7106 SND_PCI_QUIRK(0x103c, 0x2282, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7107 SND_PCI_QUIRK(0x103c, 0x228b, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7108 SND_PCI_QUIRK(0x103c, 0x228e, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7109 SND_PCI_QUIRK(0x103c, 0x22c5, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd
KY
7110 SND_PCI_QUIRK(0x103c, 0x22c7, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7111 SND_PCI_QUIRK(0x103c, 0x22c8, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
c60666bd 7112 SND_PCI_QUIRK(0x103c, 0x22c4, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
8a02b164
KY
7113 SND_PCI_QUIRK(0x103c, 0x2334, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7114 SND_PCI_QUIRK(0x103c, 0x2335, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7115 SND_PCI_QUIRK(0x103c, 0x2336, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
7116 SND_PCI_QUIRK(0x103c, 0x2337, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1),
f883982d 7117 SND_PCI_QUIRK(0x103c, 0x221c, "HP EliteBook 755 G2", ALC280_FIXUP_HP_HEADSET_MIC),
167897f4
JK
7118 SND_PCI_QUIRK(0x103c, 0x802e, "HP Z240 SFF", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7119 SND_PCI_QUIRK(0x103c, 0x802f, "HP Z240", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
563785ed 7120 SND_PCI_QUIRK(0x103c, 0x820d, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
e549d190 7121 SND_PCI_QUIRK(0x103c, 0x8256, "HP", ALC221_FIXUP_HP_FRONT_MIC),
bbf8ff6b 7122 SND_PCI_QUIRK(0x103c, 0x827e, "HP x360", ALC295_FIXUP_HP_X360),
167897f4
JK
7123 SND_PCI_QUIRK(0x103c, 0x82bf, "HP G3 mini", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
7124 SND_PCI_QUIRK(0x103c, 0x82c0, "HP G3 mini premium", ALC221_FIXUP_HP_MIC_NO_PRESENCE),
56e40eb6 7125 SND_PCI_QUIRK(0x103c, 0x83b9, "HP Spectre x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
190d0381 7126 SND_PCI_QUIRK(0x103c, 0x8497, "HP Envy x360", ALC269_FIXUP_HP_MUTE_LED_MIC3),
d33cd42d 7127 SND_PCI_QUIRK(0x103c, 0x84e7, "HP Pavilion 15", ALC269_FIXUP_HP_MUTE_LED_MIC3),
c1732ede 7128 SND_PCI_QUIRK(0x1043, 0x103e, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
7bba2157 7129 SND_PCI_QUIRK(0x1043, 0x103f, "ASUS TX300", ALC282_FIXUP_ASUS_TX300),
3e0d611b 7130 SND_PCI_QUIRK(0x1043, 0x106d, "Asus K53BE", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
9cf6533e 7131 SND_PCI_QUIRK(0x1043, 0x10a1, "ASUS UX391UA", ALC294_FIXUP_ASUS_SPK),
c1732ede 7132 SND_PCI_QUIRK(0x1043, 0x10c0, "ASUS X540SA", ALC256_FIXUP_ASUS_MIC),
4eab0ea1 7133 SND_PCI_QUIRK(0x1043, 0x10d0, "ASUS X540LA/X540LJ", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
3e0d611b 7134 SND_PCI_QUIRK(0x1043, 0x115d, "Asus 1015E", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
4eab0ea1
TI
7135 SND_PCI_QUIRK(0x1043, 0x11c0, "ASUS X556UR", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
7136 SND_PCI_QUIRK(0x1043, 0x1290, "ASUS X441SA", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
7137 SND_PCI_QUIRK(0x1043, 0x12a0, "ASUS X441UV", ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE),
c1732ede
CC
7138 SND_PCI_QUIRK(0x1043, 0x12f0, "ASUS X541UV", ALC256_FIXUP_ASUS_MIC),
7139 SND_PCI_QUIRK(0x1043, 0x12e0, "ASUS X541SA", ALC256_FIXUP_ASUS_MIC),
7140 SND_PCI_QUIRK(0x1043, 0x13b0, "ASUS Z550SA", ALC256_FIXUP_ASUS_MIC),
2cede303 7141 SND_PCI_QUIRK(0x1043, 0x1427, "Asus Zenbook UX31E", ALC269VB_FIXUP_ASUS_ZENBOOK),
23870831 7142 SND_PCI_QUIRK(0x1043, 0x1517, "Asus Zenbook UX31A", ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A),
3e0d611b 7143 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
60083f9e 7144 SND_PCI_QUIRK(0x1043, 0x17d1, "ASUS UX431FL", ALC294_FIXUP_ASUS_INTSPK_HEADSET_MIC),
8c8967a7 7145 SND_PCI_QUIRK(0x1043, 0x18b1, "Asus MJ401TA", ALC256_FIXUP_ASUS_HEADSET_MIC),
017f2a10 7146 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
28e8af8a 7147 SND_PCI_QUIRK(0x1043, 0x1a30, "ASUS X705UD", ALC256_FIXUP_ASUS_MIC),
693b613d 7148 SND_PCI_QUIRK(0x1043, 0x1b13, "Asus U41SV", ALC269_FIXUP_INV_DMIC),
615966ad 7149 SND_PCI_QUIRK(0x1043, 0x1bbd, "ASUS Z550MA", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE),
4eab0ea1 7150 SND_PCI_QUIRK(0x1043, 0x1c23, "Asus X55U", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
c1732ede 7151 SND_PCI_QUIRK(0x1043, 0x1ccd, "ASUS X555UB", ALC256_FIXUP_ASUS_MIC),
eeed4cd1 7152 SND_PCI_QUIRK(0x1043, 0x3030, "ASUS ZN270IE", ALC256_FIXUP_ASUS_AIO_GPIO2),
adabb3ec
TI
7153 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
7154 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
7155 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
7156 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
d240d1dc 7157 SND_PCI_QUIRK(0x1043, 0x8516, "ASUS X101CH", ALC269_FIXUP_ASUS_X101),
f88abaa0 7158 SND_PCI_QUIRK(0x104d, 0x90b5, "Sony VAIO Pro 11", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
88cfcf86 7159 SND_PCI_QUIRK(0x104d, 0x90b6, "Sony VAIO Pro 13", ALC286_FIXUP_SONY_MIC_NO_PRESENCE),
1d045db9
TI
7160 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
7161 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
7162 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
e9bd7d5c 7163 SND_PCI_QUIRK(0x104d, 0x9099, "Sony VAIO S13", ALC275_FIXUP_SONY_DISABLE_AAMIX),
24519911 7164 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4df3fd17 7165 SND_PCI_QUIRK(0x10cf, 0x159f, "Lifebook E780", ALC269_FIXUP_LIFEBOOK_NO_HP_TO_LINEOUT),
cc7016ab 7166 SND_PCI_QUIRK(0x10cf, 0x15dc, "Lifebook T731", ALC269_FIXUP_LIFEBOOK_HP_PIN),
88776f36 7167 SND_PCI_QUIRK(0x10cf, 0x1757, "Lifebook E752", ALC269_FIXUP_LIFEBOOK_HP_PIN),
fdcc968a 7168 SND_PCI_QUIRK(0x10cf, 0x1629, "Lifebook U7x7", ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC),
2041d564 7169 SND_PCI_QUIRK(0x10cf, 0x1845, "Lifebook U904", ALC269_FIXUP_LIFEBOOK_EXTMIC),
b84e8436 7170 SND_PCI_QUIRK(0x10ec, 0x10f2, "Intel Reference board", ALC700_FIXUP_INTEL_REFERENCE),
0fca97a2 7171 SND_PCI_QUIRK(0x10f7, 0x8338, "Panasonic CF-SZ6", ALC269_FIXUP_HEADSET_MODE),
a33cc48d 7172 SND_PCI_QUIRK(0x144d, 0xc109, "Samsung Ativ book 9 (NP900X3G)", ALC269_FIXUP_INV_DMIC),
823ff161 7173 SND_PCI_QUIRK(0x144d, 0xc740, "Samsung Ativ book 8 (NP870Z5G)", ALC269_FIXUP_ATIV_BOOK_8),
abaa2274
AA
7174 SND_PCI_QUIRK(0x1458, 0xfa53, "Gigabyte BXBT-2807", ALC283_FIXUP_HEADSET_MIC),
7175 SND_PCI_QUIRK(0x1462, 0xb120, "MSI Cubi MS-B120", ALC283_FIXUP_HEADSET_MIC),
8cd65271 7176 SND_PCI_QUIRK(0x1462, 0xb171, "Cubi N 8GL (MS-B171)", ALC283_FIXUP_HEADSET_MIC),
89e3a568 7177 SND_PCI_QUIRK(0x1558, 0x1325, "System76 Darter Pro (darp5)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
80a5052d 7178 SND_PCI_QUIRK(0x1558, 0x8550, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
891afcf2
JS
7179 SND_PCI_QUIRK(0x1558, 0x8551, "System76 Gazelle (gaze14)", ALC293_FIXUP_SYSTEM76_MIC_NO_PRESENCE),
7180 SND_PCI_QUIRK(0x1558, 0x8560, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
7181 SND_PCI_QUIRK(0x1558, 0x8561, "System76 Gazelle (gaze14)", ALC269_FIXUP_HEADSET_MIC),
ca169cc2 7182 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC233_FIXUP_LENOVO_MULTI_CODECS),
1d045db9
TI
7183 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
7184 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
7185 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
7186 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
7187 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
707fba3f 7188 SND_PCI_QUIRK(0x17aa, 0x21f6, "Thinkpad T530", ALC269_FIXUP_LENOVO_DOCK),
c8415a48 7189 SND_PCI_QUIRK(0x17aa, 0x21fa, "Thinkpad X230", ALC269_FIXUP_LENOVO_DOCK),
84f98fdf 7190 SND_PCI_QUIRK(0x17aa, 0x21f3, "Thinkpad T430", ALC269_FIXUP_LENOVO_DOCK),
4407be6b 7191 SND_PCI_QUIRK(0x17aa, 0x21fb, "Thinkpad T430s", ALC269_FIXUP_LENOVO_DOCK),
108cc108 7192 SND_PCI_QUIRK(0x17aa, 0x2203, "Thinkpad X230 Tablet", ALC269_FIXUP_LENOVO_DOCK),
aaedfb47 7193 SND_PCI_QUIRK(0x17aa, 0x2208, "Thinkpad T431s", ALC269_FIXUP_LENOVO_DOCK),
9a811230 7194 SND_PCI_QUIRK(0x17aa, 0x220c, "Thinkpad T440s", ALC292_FIXUP_TPT440),
1c37c223 7195 SND_PCI_QUIRK(0x17aa, 0x220e, "Thinkpad T440p", ALC292_FIXUP_TPT440_DOCK),
a12137e7 7196 SND_PCI_QUIRK(0x17aa, 0x2210, "Thinkpad T540p", ALC292_FIXUP_TPT440_DOCK),
59a51a6b 7197 SND_PCI_QUIRK(0x17aa, 0x2211, "Thinkpad W541", ALC292_FIXUP_TPT440_DOCK),
6d16941a 7198 SND_PCI_QUIRK(0x17aa, 0x2212, "Thinkpad T440", ALC292_FIXUP_TPT440_DOCK),
7c21539c 7199 SND_PCI_QUIRK(0x17aa, 0x2214, "Thinkpad X240", ALC292_FIXUP_TPT440_DOCK),
a4a9e082 7200 SND_PCI_QUIRK(0x17aa, 0x2215, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
b6903c0e 7201 SND_PCI_QUIRK(0x17aa, 0x2218, "Thinkpad X1 Carbon 2nd", ALC292_FIXUP_TPT440_DOCK),
d05ea7da 7202 SND_PCI_QUIRK(0x17aa, 0x2223, "ThinkPad T550", ALC292_FIXUP_TPT440_DOCK),
c0278669 7203 SND_PCI_QUIRK(0x17aa, 0x2226, "ThinkPad X250", ALC292_FIXUP_TPT440_DOCK),
61fcf8ec
KY
7204 SND_PCI_QUIRK(0x17aa, 0x222d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7205 SND_PCI_QUIRK(0x17aa, 0x222e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
dab38e43 7206 SND_PCI_QUIRK(0x17aa, 0x2231, "Thinkpad T560", ALC292_FIXUP_TPT460),
c636b95e 7207 SND_PCI_QUIRK(0x17aa, 0x2233, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7208 SND_PCI_QUIRK(0x17aa, 0x2245, "Thinkpad T470", ALC298_FIXUP_TPT470_DOCK),
7209 SND_PCI_QUIRK(0x17aa, 0x2246, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7210 SND_PCI_QUIRK(0x17aa, 0x2247, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
e4c07b3b 7211 SND_PCI_QUIRK(0x17aa, 0x2249, "Thinkpad", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7212 SND_PCI_QUIRK(0x17aa, 0x224b, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7213 SND_PCI_QUIRK(0x17aa, 0x224c, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7214 SND_PCI_QUIRK(0x17aa, 0x224d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
85981dfd 7215 SND_PCI_QUIRK(0x17aa, 0x225d, "Thinkpad T480", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
3694cb29 7216 SND_PCI_QUIRK(0x17aa, 0x30bb, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
6ef2f68f 7217 SND_PCI_QUIRK(0x17aa, 0x30e2, "ThinkCentre AIO", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY),
f33f79f3 7218 SND_PCI_QUIRK(0x17aa, 0x310c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
bef33e19 7219 SND_PCI_QUIRK(0x17aa, 0x3111, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
e41fc8c5 7220 SND_PCI_QUIRK(0x17aa, 0x312a, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
65811834 7221 SND_PCI_QUIRK(0x17aa, 0x312f, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
8da5bbfc 7222 SND_PCI_QUIRK(0x17aa, 0x313c, "ThinkCentre Station", ALC294_FIXUP_LENOVO_MIC_LOCATION),
2a36c16e 7223 SND_PCI_QUIRK(0x17aa, 0x3151, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
8a6c55d0
AM
7224 SND_PCI_QUIRK(0x17aa, 0x3176, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
7225 SND_PCI_QUIRK(0x17aa, 0x3178, "ThinkCentre Station", ALC283_FIXUP_HEADSET_MIC),
56f27013 7226 SND_PCI_QUIRK(0x17aa, 0x3902, "Lenovo E50-80", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
fedb2245 7227 SND_PCI_QUIRK(0x17aa, 0x3977, "IdeaPad S210", ALC283_FIXUP_INT_MIC),
56df90b6 7228 SND_PCI_QUIRK(0x17aa, 0x3978, "Lenovo B50-70", ALC269_FIXUP_DMIC_THINKPAD_ACPI),
a4a9e082 7229 SND_PCI_QUIRK(0x17aa, 0x5013, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
1bb3e062 7230 SND_PCI_QUIRK(0x17aa, 0x501a, "Thinkpad", ALC283_FIXUP_INT_MIC),
c497d9f9 7231 SND_PCI_QUIRK(0x17aa, 0x501e, "Thinkpad L440", ALC292_FIXUP_TPT440_DOCK),
cd5302c0 7232 SND_PCI_QUIRK(0x17aa, 0x5026, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
f2aa1110 7233 SND_PCI_QUIRK(0x17aa, 0x5034, "Thinkpad T450", ALC292_FIXUP_TPT440_DOCK),
80b311d3 7234 SND_PCI_QUIRK(0x17aa, 0x5036, "Thinkpad T450s", ALC292_FIXUP_TPT440_DOCK),
09ea9976 7235 SND_PCI_QUIRK(0x17aa, 0x503c, "Thinkpad L450", ALC292_FIXUP_TPT440_DOCK),
037e1197 7236 SND_PCI_QUIRK(0x17aa, 0x504a, "ThinkPad X260", ALC292_FIXUP_TPT440_DOCK),
23adc192 7237 SND_PCI_QUIRK(0x17aa, 0x504b, "Thinkpad", ALC293_FIXUP_LENOVO_SPK_NOISE),
0f087ee3 7238 SND_PCI_QUIRK(0x17aa, 0x5050, "Thinkpad T560p", ALC292_FIXUP_TPT460),
9cd25743 7239 SND_PCI_QUIRK(0x17aa, 0x5051, "Thinkpad L460", ALC292_FIXUP_TPT460),
0f087ee3 7240 SND_PCI_QUIRK(0x17aa, 0x5053, "Thinkpad T460", ALC292_FIXUP_TPT460),
61fcf8ec
KY
7241 SND_PCI_QUIRK(0x17aa, 0x505d, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7242 SND_PCI_QUIRK(0x17aa, 0x505f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7243 SND_PCI_QUIRK(0x17aa, 0x5062, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
cd5302c0 7244 SND_PCI_QUIRK(0x17aa, 0x5109, "Thinkpad", ALC269_FIXUP_LIMIT_INT_MIC_BOOST),
61fcf8ec
KY
7245 SND_PCI_QUIRK(0x17aa, 0x511e, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
7246 SND_PCI_QUIRK(0x17aa, 0x511f, "Thinkpad", ALC298_FIXUP_TPT470_DOCK),
012e7eb1 7247 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_PCM_44K),
1d045db9 7248 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
0fbf21c3 7249 SND_PCI_QUIRK(0x19e5, 0x3204, "Huawei MACH-WX9", ALC256_FIXUP_HUAWEI_MACH_WX9_PINS),
02b504d9 7250 SND_PCI_QUIRK(0x1b7d, 0xa831, "Ordissimo EVE2 ", ALC269VB_FIXUP_ORDISSIMO_EVE2), /* Also known as Malata PC-B1303 */
bd9c10bc 7251 SND_PCI_QUIRK(0x10ec, 0x118c, "Medion EE4254 MD62100", ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE),
a4297b5d 7252
a7f3eedc 7253#if 0
a4297b5d
TI
7254 /* Below is a quirk table taken from the old code.
7255 * Basically the device should work as is without the fixup table.
7256 * If BIOS doesn't give a proper info, enable the corresponding
7257 * fixup entry.
7d7eb9ea 7258 */
a4297b5d
TI
7259 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
7260 ALC269_FIXUP_AMIC),
7261 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
a4297b5d
TI
7262 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
7263 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
7264 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
7265 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
7266 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
7267 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
7268 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
7269 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
7270 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
7271 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
7272 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
7273 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
7274 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
7275 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
7276 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
7277 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
7278 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
7279 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
7280 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
7281 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
7282 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
7283 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
7284 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
7285 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
7286 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
7287 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
7288 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
7289 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
7290 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
7291 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
7292 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
7293 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
7294 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
7295 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
7296 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
7297 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
7298 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
7299 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
7300#endif
7301 {}
7302};
7303
214eef76
DH
7304static const struct snd_pci_quirk alc269_fixup_vendor_tbl[] = {
7305 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
7306 SND_PCI_QUIRK_VENDOR(0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED),
7307 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
7308 SND_PCI_QUIRK_VENDOR(0x17aa, "Thinkpad", ALC269_FIXUP_THINKPAD_ACPI),
0fbf21c3 7309 SND_PCI_QUIRK_VENDOR(0x19e5, "Huawei Matebook", ALC255_FIXUP_MIC_MUTE_LED),
214eef76
DH
7310 {}
7311};
7312
1727a771 7313static const struct hda_model_fixup alc269_fixup_models[] = {
a4297b5d
TI
7314 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
7315 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6e72aa5f
TI
7316 {.id = ALC269_FIXUP_STEREO_DMIC, .name = "alc269-dmic"},
7317 {.id = ALC271_FIXUP_DMIC, .name = "alc271-dmic"},
7318 {.id = ALC269_FIXUP_INV_DMIC, .name = "inv-dmic"},
7c478f03 7319 {.id = ALC269_FIXUP_HEADSET_MIC, .name = "headset-mic"},
b016951e
TI
7320 {.id = ALC269_FIXUP_HEADSET_MODE, .name = "headset-mode"},
7321 {.id = ALC269_FIXUP_HEADSET_MODE_NO_HP_MIC, .name = "headset-mode-no-hp-mic"},
108cc108 7322 {.id = ALC269_FIXUP_LENOVO_DOCK, .name = "lenovo-dock"},
9f5c6faf 7323 {.id = ALC269_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
04d5466a 7324 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic1-led"},
e32aa85a
DH
7325 {.id = ALC269_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
7326 {.id = ALC269_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "dell-headset-dock"},
a26d96c7
TI
7327 {.id = ALC269_FIXUP_DELL3_MIC_NO_PRESENCE, .name = "dell-headset3"},
7328 {.id = ALC269_FIXUP_DELL4_MIC_NO_PRESENCE, .name = "dell-headset4"},
be8ef16a 7329 {.id = ALC283_FIXUP_CHROME_BOOK, .name = "alc283-dac-wcaps"},
0202e99c 7330 {.id = ALC283_FIXUP_SENSE_COMBO_JACK, .name = "alc283-sense-combo"},
1c37c223 7331 {.id = ALC292_FIXUP_TPT440_DOCK, .name = "tpt440-dock"},
9a811230 7332 {.id = ALC292_FIXUP_TPT440, .name = "tpt440"},
c636b95e 7333 {.id = ALC292_FIXUP_TPT460, .name = "tpt460"},
a26d96c7 7334 {.id = ALC298_FIXUP_TPT470_DOCK, .name = "tpt470-dock"},
ba90d6a6 7335 {.id = ALC233_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
28d1d6d2 7336 {.id = ALC700_FIXUP_INTEL_REFERENCE, .name = "alc700-ref"},
a26d96c7
TI
7337 {.id = ALC269_FIXUP_SONY_VAIO, .name = "vaio"},
7338 {.id = ALC269_FIXUP_DELL_M101Z, .name = "dell-m101z"},
7339 {.id = ALC269_FIXUP_ASUS_G73JW, .name = "asus-g73jw"},
7340 {.id = ALC269_FIXUP_LENOVO_EAPD, .name = "lenovo-eapd"},
7341 {.id = ALC275_FIXUP_SONY_HWEQ, .name = "sony-hweq"},
7342 {.id = ALC269_FIXUP_PCM_44K, .name = "pcm44k"},
7343 {.id = ALC269_FIXUP_LIFEBOOK, .name = "lifebook"},
7344 {.id = ALC269_FIXUP_LIFEBOOK_EXTMIC, .name = "lifebook-extmic"},
7345 {.id = ALC269_FIXUP_LIFEBOOK_HP_PIN, .name = "lifebook-hp-pin"},
7346 {.id = ALC255_FIXUP_LIFEBOOK_U7x7_HEADSET_MIC, .name = "lifebook-u7x7"},
7347 {.id = ALC269VB_FIXUP_AMIC, .name = "alc269vb-amic"},
7348 {.id = ALC269VB_FIXUP_DMIC, .name = "alc269vb-dmic"},
7349 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC1, .name = "hp-mute-led-mic1"},
7350 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC2, .name = "hp-mute-led-mic2"},
7351 {.id = ALC269_FIXUP_HP_MUTE_LED_MIC3, .name = "hp-mute-led-mic3"},
7352 {.id = ALC269_FIXUP_HP_GPIO_MIC1_LED, .name = "hp-gpio-mic1"},
7353 {.id = ALC269_FIXUP_HP_LINE1_MIC1_LED, .name = "hp-line1-mic1"},
7354 {.id = ALC269_FIXUP_NO_SHUTUP, .name = "noshutup"},
7355 {.id = ALC286_FIXUP_SONY_MIC_NO_PRESENCE, .name = "sony-nomic"},
7356 {.id = ALC269_FIXUP_ASPIRE_HEADSET_MIC, .name = "aspire-headset-mic"},
7357 {.id = ALC269_FIXUP_ASUS_X101, .name = "asus-x101"},
7358 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK, .name = "acer-ao7xx"},
7359 {.id = ALC271_FIXUP_HP_GATE_MIC_JACK_E1_572, .name = "acer-aspire-e1"},
7360 {.id = ALC269_FIXUP_ACER_AC700, .name = "acer-ac700"},
7361 {.id = ALC269_FIXUP_LIMIT_INT_MIC_BOOST, .name = "limit-mic-boost"},
7362 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK, .name = "asus-zenbook"},
7363 {.id = ALC269VB_FIXUP_ASUS_ZENBOOK_UX31A, .name = "asus-zenbook-ux31a"},
7364 {.id = ALC269VB_FIXUP_ORDISSIMO_EVE2, .name = "ordissimo"},
7365 {.id = ALC282_FIXUP_ASUS_TX300, .name = "asus-tx300"},
7366 {.id = ALC283_FIXUP_INT_MIC, .name = "alc283-int-mic"},
7367 {.id = ALC290_FIXUP_MONO_SPEAKERS_HSJACK, .name = "mono-speakers"},
7368 {.id = ALC290_FIXUP_SUBWOOFER_HSJACK, .name = "alc290-subwoofer"},
7369 {.id = ALC269_FIXUP_THINKPAD_ACPI, .name = "thinkpad"},
7370 {.id = ALC269_FIXUP_DMIC_THINKPAD_ACPI, .name = "dmic-thinkpad"},
7371 {.id = ALC255_FIXUP_ACER_MIC_NO_PRESENCE, .name = "alc255-acer"},
7372 {.id = ALC255_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc255-asus"},
7373 {.id = ALC255_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc255-dell1"},
7374 {.id = ALC255_FIXUP_DELL2_MIC_NO_PRESENCE, .name = "alc255-dell2"},
7375 {.id = ALC293_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc293-dell1"},
7376 {.id = ALC283_FIXUP_HEADSET_MIC, .name = "alc283-headset"},
b3802783 7377 {.id = ALC255_FIXUP_MIC_MUTE_LED, .name = "alc255-dell-mute"},
a26d96c7
TI
7378 {.id = ALC282_FIXUP_ASPIRE_V5_PINS, .name = "aspire-v5"},
7379 {.id = ALC280_FIXUP_HP_GPIO4, .name = "hp-gpio4"},
7380 {.id = ALC286_FIXUP_HP_GPIO_LED, .name = "hp-gpio-led"},
7381 {.id = ALC280_FIXUP_HP_GPIO2_MIC_HOTKEY, .name = "hp-gpio2-hotkey"},
7382 {.id = ALC280_FIXUP_HP_DOCK_PINS, .name = "hp-dock-pins"},
7383 {.id = ALC269_FIXUP_HP_DOCK_GPIO_MIC1_LED, .name = "hp-dock-gpio-mic"},
7384 {.id = ALC280_FIXUP_HP_9480M, .name = "hp-9480m"},
7385 {.id = ALC288_FIXUP_DELL_HEADSET_MODE, .name = "alc288-dell-headset"},
7386 {.id = ALC288_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc288-dell1"},
7387 {.id = ALC288_FIXUP_DELL_XPS_13, .name = "alc288-dell-xps13"},
7388 {.id = ALC292_FIXUP_DELL_E7X, .name = "dell-e7x"},
7389 {.id = ALC293_FIXUP_DISABLE_AAMIX_MULTIJACK, .name = "alc293-dell"},
7390 {.id = ALC298_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc298-dell1"},
7391 {.id = ALC298_FIXUP_DELL_AIO_MIC_NO_PRESENCE, .name = "alc298-dell-aio"},
7392 {.id = ALC275_FIXUP_DELL_XPS, .name = "alc275-dell-xps"},
7393 {.id = ALC256_FIXUP_DELL_XPS_13_HEADPHONE_NOISE, .name = "alc256-dell-xps13"},
7394 {.id = ALC293_FIXUP_LENOVO_SPK_NOISE, .name = "lenovo-spk-noise"},
7395 {.id = ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY, .name = "lenovo-hotkey"},
7396 {.id = ALC255_FIXUP_DELL_SPK_NOISE, .name = "dell-spk-noise"},
82aa0d7e 7397 {.id = ALC225_FIXUP_DELL1_MIC_NO_PRESENCE, .name = "alc225-dell1"},
a26d96c7
TI
7398 {.id = ALC295_FIXUP_DISABLE_DAC3, .name = "alc295-disable-dac3"},
7399 {.id = ALC280_FIXUP_HP_HEADSET_MIC, .name = "alc280-hp-headset"},
7400 {.id = ALC221_FIXUP_HP_FRONT_MIC, .name = "alc221-hp-mic"},
7401 {.id = ALC298_FIXUP_SPK_VOLUME, .name = "alc298-spk-volume"},
7402 {.id = ALC256_FIXUP_DELL_INSPIRON_7559_SUBWOOFER, .name = "dell-inspiron-7559"},
7403 {.id = ALC269_FIXUP_ATIV_BOOK_8, .name = "ativ-book"},
7404 {.id = ALC221_FIXUP_HP_MIC_NO_PRESENCE, .name = "alc221-hp-mic"},
7405 {.id = ALC256_FIXUP_ASUS_HEADSET_MODE, .name = "alc256-asus-headset"},
7406 {.id = ALC256_FIXUP_ASUS_MIC, .name = "alc256-asus-mic"},
7407 {.id = ALC256_FIXUP_ASUS_AIO_GPIO2, .name = "alc256-asus-aio"},
7408 {.id = ALC233_FIXUP_ASUS_MIC_NO_PRESENCE, .name = "alc233-asus"},
7409 {.id = ALC233_FIXUP_EAPD_COEF_AND_MIC_NO_PRESENCE, .name = "alc233-eapd"},
7410 {.id = ALC294_FIXUP_LENOVO_MIC_LOCATION, .name = "alc294-lenovo-mic"},
7411 {.id = ALC225_FIXUP_DELL_WYSE_MIC_NO_PRESENCE, .name = "alc225-wyse"},
7412 {.id = ALC274_FIXUP_DELL_AIO_LINEOUT_VERB, .name = "alc274-dell-aio"},
7413 {.id = ALC255_FIXUP_DUMMY_LINEOUT_VERB, .name = "alc255-dummy-lineout"},
7414 {.id = ALC255_FIXUP_DELL_HEADSET_MIC, .name = "alc255-dell-headset"},
7415 {.id = ALC295_FIXUP_HP_X360, .name = "alc295-hp-x360"},
8983eb60
KY
7416 {.id = ALC225_FIXUP_HEADSET_JACK, .name = "alc-headset-jack"},
7417 {.id = ALC295_FIXUP_CHROME_BOOK, .name = "alc-chrome-book"},
e2a829b3 7418 {.id = ALC299_FIXUP_PREDATOR_SPK, .name = "predator-spk"},
a2ef03fe 7419 {.id = ALC298_FIXUP_HUAWEI_MBX_STEREO, .name = "huawei-mbx-stereo"},
bd9c10bc 7420 {.id = ALC256_FIXUP_MEDION_HEADSET_NO_PRESENCE, .name = "alc256-medion-headset"},
1d045db9 7421 {}
6dda9f4a 7422};
cfc5a845 7423#define ALC225_STANDARD_PINS \
cfc5a845 7424 {0x21, 0x04211020}
6dda9f4a 7425
e8191a8e
HW
7426#define ALC256_STANDARD_PINS \
7427 {0x12, 0x90a60140}, \
7428 {0x14, 0x90170110}, \
e8191a8e
HW
7429 {0x21, 0x02211020}
7430
fea185e2 7431#define ALC282_STANDARD_PINS \
11580297 7432 {0x14, 0x90170110}
e1e62b98 7433
fea185e2 7434#define ALC290_STANDARD_PINS \
11580297 7435 {0x12, 0x99a30130}
fea185e2
DH
7436
7437#define ALC292_STANDARD_PINS \
7438 {0x14, 0x90170110}, \
11580297 7439 {0x15, 0x0221401f}
977e6276 7440
3f640970
HW
7441#define ALC295_STANDARD_PINS \
7442 {0x12, 0xb7a60130}, \
7443 {0x14, 0x90170110}, \
3f640970
HW
7444 {0x21, 0x04211020}
7445
703867e2
WS
7446#define ALC298_STANDARD_PINS \
7447 {0x12, 0x90a60130}, \
7448 {0x21, 0x03211020}
7449
e1918938 7450static const struct snd_hda_pin_quirk alc269_pin_fixup_tbl[] = {
8a328ac1
KY
7451 SND_HDA_PIN_QUIRK(0x10ec0221, 0x103c, "HP Workstation", ALC221_FIXUP_HP_HEADSET_MIC,
7452 {0x14, 0x01014020},
7453 {0x17, 0x90170110},
7454 {0x18, 0x02a11030},
7455 {0x19, 0x0181303F},
7456 {0x21, 0x0221102f}),
5824ce8d
CC
7457 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1025, "Acer", ALC255_FIXUP_ACER_MIC_NO_PRESENCE,
7458 {0x12, 0x90a601c0},
7459 {0x14, 0x90171120},
7460 {0x21, 0x02211030}),
615966ad
CC
7461 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7462 {0x14, 0x90170110},
7463 {0x1b, 0x90a70130},
7464 {0x21, 0x03211020}),
7465 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1043, "ASUS", ALC255_FIXUP_ASUS_MIC_NO_PRESENCE,
7466 {0x1a, 0x90a70130},
7467 {0x1b, 0x90170110},
7468 {0x21, 0x03211020}),
2ae95577 7469 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 7470 ALC225_STANDARD_PINS,
8a132099 7471 {0x12, 0xb7a60130},
cfc5a845 7472 {0x14, 0x901701a0}),
2ae95577 7473 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
cfc5a845 7474 ALC225_STANDARD_PINS,
8a132099 7475 {0x12, 0xb7a60130},
cfc5a845 7476 {0x14, 0x901701b0}),
8a132099
HW
7477 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7478 ALC225_STANDARD_PINS,
7479 {0x12, 0xb7a60150},
7480 {0x14, 0x901701a0}),
7481 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7482 ALC225_STANDARD_PINS,
7483 {0x12, 0xb7a60150},
7484 {0x14, 0x901701b0}),
7485 SND_HDA_PIN_QUIRK(0x10ec0225, 0x1028, "Dell", ALC225_FIXUP_DELL1_MIC_NO_PRESENCE,
7486 ALC225_STANDARD_PINS,
7487 {0x12, 0xb7a60130},
7488 {0x1b, 0x90170110}),
0ce48e17
KHF
7489 SND_HDA_PIN_QUIRK(0x10ec0233, 0x8086, "Intel NUC Skull Canyon", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7490 {0x1b, 0x01111010},
7491 {0x1e, 0x01451130},
7492 {0x21, 0x02211020}),
986376b6
HW
7493 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC233_FIXUP_LENOVO_LINE2_MIC_HOTKEY,
7494 {0x12, 0x90a60140},
7495 {0x14, 0x90170110},
7496 {0x19, 0x02a11030},
7497 {0x21, 0x02211020}),
e41fc8c5
HW
7498 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7499 {0x14, 0x90170110},
7500 {0x19, 0x02a11030},
7501 {0x1a, 0x02a11040},
7502 {0x1b, 0x01014020},
7503 {0x21, 0x0221101f}),
d06fb562
HW
7504 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7505 {0x14, 0x90170110},
7506 {0x19, 0x02a11030},
7507 {0x1a, 0x02a11040},
7508 {0x1b, 0x01011020},
7509 {0x21, 0x0221101f}),
c6b17f10
HW
7510 SND_HDA_PIN_QUIRK(0x10ec0235, 0x17aa, "Lenovo", ALC294_FIXUP_LENOVO_MIC_LOCATION,
7511 {0x14, 0x90170110},
7512 {0x19, 0x02a11020},
7513 {0x1a, 0x02a11030},
7514 {0x21, 0x0221101f}),
f265788c
HW
7515 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7516 {0x12, 0x90a60140},
7517 {0x14, 0x90170110},
7518 {0x21, 0x02211020}),
7519 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7520 {0x12, 0x90a60140},
7521 {0x14, 0x90170150},
7522 {0x21, 0x02211020}),
b26e36b7
HW
7523 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7524 {0x21, 0x02211020}),
0a29c57b
KY
7525 SND_HDA_PIN_QUIRK(0x10ec0236, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7526 {0x12, 0x40000000},
7527 {0x14, 0x90170110},
7528 {0x21, 0x02211020}),
c77900e6 7529 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL2_MIC_NO_PRESENCE,
c77900e6 7530 {0x14, 0x90170110},
c77900e6 7531 {0x21, 0x02211020}),
86c72d1c
HW
7532 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7533 {0x14, 0x90170130},
7534 {0x21, 0x02211040}),
76c2132e
DH
7535 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7536 {0x12, 0x90a60140},
7537 {0x14, 0x90170110},
76c2132e
DH
7538 {0x21, 0x02211020}),
7539 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7540 {0x12, 0x90a60160},
7541 {0x14, 0x90170120},
76c2132e 7542 {0x21, 0x02211030}),
392c9da2
HW
7543 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7544 {0x14, 0x90170110},
7545 {0x1b, 0x02011020},
7546 {0x21, 0x0221101f}),
6aecd871
HW
7547 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7548 {0x14, 0x90170110},
7549 {0x1b, 0x01011020},
7550 {0x21, 0x0221101f}),
cba59972 7551 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
cba59972 7552 {0x14, 0x90170130},
cba59972 7553 {0x1b, 0x01014020},
cba59972 7554 {0x21, 0x0221103f}),
6aecd871
HW
7555 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7556 {0x14, 0x90170130},
7557 {0x1b, 0x01011020},
7558 {0x21, 0x0221103f}),
59ec4b57
HW
7559 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7560 {0x14, 0x90170130},
7561 {0x1b, 0x02011020},
7562 {0x21, 0x0221103f}),
e9c28e16 7563 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 7564 {0x14, 0x90170150},
e9c28e16 7565 {0x1b, 0x02011020},
e9c28e16
WS
7566 {0x21, 0x0221105f}),
7567 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
e9c28e16 7568 {0x14, 0x90170110},
e9c28e16 7569 {0x1b, 0x01014020},
e9c28e16 7570 {0x21, 0x0221101f}),
76c2132e
DH
7571 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7572 {0x12, 0x90a60160},
7573 {0x14, 0x90170120},
7574 {0x17, 0x90170140},
76c2132e
DH
7575 {0x21, 0x0321102f}),
7576 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7577 {0x12, 0x90a60160},
7578 {0x14, 0x90170130},
76c2132e
DH
7579 {0x21, 0x02211040}),
7580 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7581 {0x12, 0x90a60160},
7582 {0x14, 0x90170140},
76c2132e
DH
7583 {0x21, 0x02211050}),
7584 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7585 {0x12, 0x90a60170},
7586 {0x14, 0x90170120},
76c2132e
DH
7587 {0x21, 0x02211030}),
7588 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7589 {0x12, 0x90a60170},
7590 {0x14, 0x90170130},
76c2132e 7591 {0x21, 0x02211040}),
0a1f90a9
HW
7592 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7593 {0x12, 0x90a60170},
7594 {0x14, 0x90171130},
7595 {0x21, 0x02211040}),
70658b99 7596 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
70658b99
HW
7597 {0x12, 0x90a60170},
7598 {0x14, 0x90170140},
70658b99 7599 {0x21, 0x02211050}),
9b5a4e39 7600 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5548", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
9b5a4e39
DH
7601 {0x12, 0x90a60180},
7602 {0x14, 0x90170130},
9b5a4e39 7603 {0x21, 0x02211040}),
f90d83b3
AK
7604 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell Inspiron 5565", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7605 {0x12, 0x90a60180},
7606 {0x14, 0x90170120},
7607 {0x21, 0x02211030}),
989dbe4a
HW
7608 SND_HDA_PIN_QUIRK(0x10ec0255, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7609 {0x1b, 0x01011020},
7610 {0x21, 0x02211010}),
285d5ddc
HW
7611 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7612 {0x12, 0x90a60130},
7613 {0x14, 0x90170110},
7614 {0x1b, 0x01011020},
7615 {0x21, 0x0221101f}),
81a1231b 7616 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
81a1231b
KY
7617 {0x12, 0x90a60160},
7618 {0x14, 0x90170120},
81a1231b 7619 {0x21, 0x02211030}),
f83c3292
WS
7620 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7621 {0x12, 0x90a60170},
7622 {0x14, 0x90170120},
7623 {0x21, 0x02211030}),
311042d1
SB
7624 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell Inspiron 5468", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7625 {0x12, 0x90a60180},
7626 {0x14, 0x90170120},
7627 {0x21, 0x02211030}),
3f640970
HW
7628 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7629 {0x12, 0xb7a60130},
7630 {0x14, 0x90170110},
7631 {0x21, 0x02211020}),
3f2f7c55
HW
7632 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7633 {0x12, 0x90a60130},
7634 {0x14, 0x90170110},
7635 {0x14, 0x01011020},
7636 {0x21, 0x0221101f}),
7081adf3 7637 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
11580297 7638 ALC256_STANDARD_PINS),
b26e36b7
HW
7639 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1028, "Dell", ALC255_FIXUP_DELL1_MIC_NO_PRESENCE,
7640 {0x14, 0x90170110},
7641 {0x1b, 0x01011020},
7642 {0x21, 0x0221101f}),
c1732ede
CC
7643 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7644 {0x14, 0x90170110},
7645 {0x1b, 0x90a70130},
7646 {0x21, 0x04211020}),
7647 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC,
7648 {0x14, 0x90170110},
7649 {0x1b, 0x90a70130},
7650 {0x21, 0x03211020}),
a806ef1c
CC
7651 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7652 {0x12, 0x90a60130},
7653 {0x14, 0x90170110},
7654 {0x21, 0x03211020}),
6ac371aa
JHP
7655 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7656 {0x12, 0x90a60130},
7657 {0x14, 0x90170110},
7658 {0x21, 0x04211020}),
e1037354
JHP
7659 SND_HDA_PIN_QUIRK(0x10ec0256, 0x1043, "ASUS", ALC256_FIXUP_ASUS_MIC_NO_PRESENCE,
7660 {0x1a, 0x90a70130},
7661 {0x1b, 0x90170110},
7662 {0x21, 0x03211020}),
92266651 7663 SND_HDA_PIN_QUIRK(0x10ec0274, 0x1028, "Dell", ALC274_FIXUP_DELL_AIO_LINEOUT_VERB,
75ee94b2
HW
7664 {0x12, 0xb7a60130},
7665 {0x13, 0xb8a61140},
7666 {0x16, 0x90170110},
7667 {0x21, 0x04211020}),
cf51eb9d
DH
7668 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC280_FIXUP_HP_GPIO4,
7669 {0x12, 0x90a60130},
cf51eb9d
DH
7670 {0x14, 0x90170110},
7671 {0x15, 0x0421101f},
11580297 7672 {0x1a, 0x04a11020}),
0279661b
HW
7673 SND_HDA_PIN_QUIRK(0x10ec0280, 0x103c, "HP", ALC269_FIXUP_HP_GPIO_MIC1_LED,
7674 {0x12, 0x90a60140},
0279661b
HW
7675 {0x14, 0x90170110},
7676 {0x15, 0x0421101f},
0279661b 7677 {0x18, 0x02811030},
0279661b 7678 {0x1a, 0x04a1103f},
11580297 7679 {0x1b, 0x02011020}),
42304474 7680 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP 15 Touchsmart", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7681 ALC282_STANDARD_PINS,
42304474 7682 {0x12, 0x99a30130},
42304474 7683 {0x19, 0x03a11020},
42304474 7684 {0x21, 0x0321101f}),
2c609999 7685 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7686 ALC282_STANDARD_PINS,
2c609999 7687 {0x12, 0x99a30130},
2c609999 7688 {0x19, 0x03a11020},
2c609999
HW
7689 {0x21, 0x03211040}),
7690 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7691 ALC282_STANDARD_PINS,
2c609999 7692 {0x12, 0x99a30130},
2c609999 7693 {0x19, 0x03a11030},
2c609999
HW
7694 {0x21, 0x03211020}),
7695 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7696 ALC282_STANDARD_PINS,
2c609999 7697 {0x12, 0x99a30130},
2c609999 7698 {0x19, 0x04a11020},
2c609999 7699 {0x21, 0x0421101f}),
200afc09 7700 SND_HDA_PIN_QUIRK(0x10ec0282, 0x103c, "HP", ALC269_FIXUP_HP_LINE1_MIC1_LED,
aec856d0 7701 ALC282_STANDARD_PINS,
200afc09 7702 {0x12, 0x90a60140},
200afc09 7703 {0x19, 0x04a11030},
200afc09 7704 {0x21, 0x04211020}),
76c2132e 7705 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7706 ALC282_STANDARD_PINS,
76c2132e 7707 {0x12, 0x90a60130},
76c2132e
DH
7708 {0x21, 0x0321101f}),
7709 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7710 {0x12, 0x90a60160},
7711 {0x14, 0x90170120},
76c2132e 7712 {0x21, 0x02211030}),
bc262179 7713 SND_HDA_PIN_QUIRK(0x10ec0283, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7714 ALC282_STANDARD_PINS,
bc262179 7715 {0x12, 0x90a60130},
bc262179 7716 {0x19, 0x03a11020},
bc262179 7717 {0x21, 0x0321101f}),
c8c6ee61 7718 SND_HDA_PIN_QUIRK(0x10ec0285, 0x17aa, "Lenovo", ALC285_FIXUP_LENOVO_PC_BEEP_IN_NOISE,
c4cfcf6f
HW
7719 {0x12, 0x90a60130},
7720 {0x14, 0x90170110},
7721 {0x19, 0x04a11040},
7722 {0x21, 0x04211020}),
33aaebd4
CC
7723 SND_HDA_PIN_QUIRK(0x10ec0286, 0x1025, "Acer", ALC286_FIXUP_ACER_AIO_MIC_NO_PRESENCE,
7724 {0x12, 0x90a60130},
7725 {0x17, 0x90170110},
7726 {0x21, 0x02211020}),
d44a6864 7727 SND_HDA_PIN_QUIRK(0x10ec0288, 0x1028, "Dell", ALC288_FIXUP_DELL1_MIC_NO_PRESENCE,
e1e62b98 7728 {0x12, 0x90a60120},
e1e62b98 7729 {0x14, 0x90170110},
e1e62b98 7730 {0x21, 0x0321101f}),
e4442bcf 7731 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7732 ALC290_STANDARD_PINS,
e4442bcf 7733 {0x15, 0x04211040},
e4442bcf 7734 {0x18, 0x90170112},
11580297 7735 {0x1a, 0x04a11020}),
e4442bcf 7736 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7737 ALC290_STANDARD_PINS,
e4442bcf 7738 {0x15, 0x04211040},
e4442bcf 7739 {0x18, 0x90170110},
11580297 7740 {0x1a, 0x04a11020}),
e4442bcf 7741 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7742 ALC290_STANDARD_PINS,
e4442bcf 7743 {0x15, 0x0421101f},
11580297 7744 {0x1a, 0x04a11020}),
e4442bcf 7745 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7746 ALC290_STANDARD_PINS,
e4442bcf 7747 {0x15, 0x04211020},
11580297 7748 {0x1a, 0x04a11040}),
e4442bcf 7749 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7750 ALC290_STANDARD_PINS,
e4442bcf
HW
7751 {0x14, 0x90170110},
7752 {0x15, 0x04211020},
11580297 7753 {0x1a, 0x04a11040}),
e4442bcf 7754 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7755 ALC290_STANDARD_PINS,
e4442bcf
HW
7756 {0x14, 0x90170110},
7757 {0x15, 0x04211020},
11580297 7758 {0x1a, 0x04a11020}),
e4442bcf 7759 SND_HDA_PIN_QUIRK(0x10ec0290, 0x103c, "HP", ALC269_FIXUP_HP_MUTE_LED_MIC1,
aec856d0 7760 ALC290_STANDARD_PINS,
e4442bcf
HW
7761 {0x14, 0x90170110},
7762 {0x15, 0x0421101f},
11580297 7763 {0x1a, 0x04a11020}),
e8818fa8 7764 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7765 ALC292_STANDARD_PINS,
e8818fa8 7766 {0x12, 0x90a60140},
e8818fa8 7767 {0x16, 0x01014020},
11580297 7768 {0x19, 0x01a19030}),
e8818fa8 7769 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL2_MIC_NO_PRESENCE,
aec856d0 7770 ALC292_STANDARD_PINS,
e8818fa8 7771 {0x12, 0x90a60140},
e8818fa8
HW
7772 {0x16, 0x01014020},
7773 {0x18, 0x02a19031},
11580297 7774 {0x19, 0x01a1903e}),
76c2132e 7775 SND_HDA_PIN_QUIRK(0x10ec0292, 0x1028, "Dell", ALC269_FIXUP_DELL3_MIC_NO_PRESENCE,
aec856d0 7776 ALC292_STANDARD_PINS,
11580297 7777 {0x12, 0x90a60140}),
76c2132e 7778 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7779 ALC292_STANDARD_PINS,
76c2132e 7780 {0x13, 0x90a60140},
76c2132e 7781 {0x16, 0x21014020},
11580297 7782 {0x19, 0x21a19030}),
e03fdbde 7783 SND_HDA_PIN_QUIRK(0x10ec0293, 0x1028, "Dell", ALC293_FIXUP_DELL1_MIC_NO_PRESENCE,
aec856d0 7784 ALC292_STANDARD_PINS,
11580297 7785 {0x13, 0x90a60140}),
d8ae458e
CC
7786 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_MIC,
7787 {0x14, 0x90170110},
7788 {0x1b, 0x90a70130},
7789 {0x21, 0x04211020}),
8bb37a2a
JHP
7790 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7791 {0x12, 0x90a60130},
7792 {0x17, 0x90170110},
7793 {0x21, 0x03211020}),
0bea4cc8
JHP
7794 SND_HDA_PIN_QUIRK(0x10ec0294, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7795 {0x12, 0x90a60130},
7796 {0x17, 0x90170110},
7797 {0x21, 0x04211020}),
3887c26c
TI
7798 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1043, "ASUS", ALC294_FIXUP_ASUS_SPK,
7799 {0x12, 0x90a60130},
7800 {0x17, 0x90170110},
7801 {0x21, 0x03211020}),
fbc57129 7802 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
0a29c57b
KY
7803 {0x14, 0x90170110},
7804 {0x21, 0x04211020}),
fbc57129
KY
7805 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7806 {0x14, 0x90170110},
7807 {0x21, 0x04211030}),
3f640970 7808 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
f771d5bb
HW
7809 ALC295_STANDARD_PINS,
7810 {0x17, 0x21014020},
7811 {0x18, 0x21a19030}),
7812 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7813 ALC295_STANDARD_PINS,
7814 {0x17, 0x21014040},
7815 {0x18, 0x21a19050}),
3f307834
HW
7816 SND_HDA_PIN_QUIRK(0x10ec0295, 0x1028, "Dell", ALC269_FIXUP_DELL1_MIC_NO_PRESENCE,
7817 ALC295_STANDARD_PINS),
9f502ff5
TI
7818 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7819 ALC298_STANDARD_PINS,
7820 {0x17, 0x90170110}),
977e6276 7821 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
703867e2
WS
7822 ALC298_STANDARD_PINS,
7823 {0x17, 0x90170140}),
7824 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_DELL1_MIC_NO_PRESENCE,
7825 ALC298_STANDARD_PINS,
9f502ff5 7826 {0x17, 0x90170150}),
9f1bc2c4
KHF
7827 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_SPK_VOLUME,
7828 {0x12, 0xb7a60140},
7829 {0x13, 0xb7a60150},
7830 {0x17, 0x90170110},
7831 {0x1a, 0x03011020},
7832 {0x21, 0x03211030}),
54324221
JM
7833 SND_HDA_PIN_QUIRK(0x10ec0298, 0x1028, "Dell", ALC298_FIXUP_ALIENWARE_MIC_NO_PRESENCE,
7834 {0x12, 0xb7a60140},
7835 {0x17, 0x90170110},
7836 {0x1a, 0x03a11030},
7837 {0x21, 0x03211020}),
fcc6c877
KY
7838 SND_HDA_PIN_QUIRK(0x10ec0299, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7839 ALC225_STANDARD_PINS,
7840 {0x12, 0xb7a60130},
fcc6c877 7841 {0x17, 0x90170110}),
e1918938
HW
7842 {}
7843};
6dda9f4a 7844
7c0a6939
HW
7845/* This is the fallback pin_fixup_tbl for alc269 family, to make the tbl match
7846 * more machines, don't need to match all valid pins, just need to match
7847 * all the pins defined in the tbl. Just because of this reason, it is possible
7848 * that a single machine matches multiple tbls, so there is one limitation:
7849 * at most one tbl is allowed to define for the same vendor and same codec
7850 */
7851static const struct snd_hda_pin_quirk alc269_fallback_pin_fixup_tbl[] = {
7852 SND_HDA_PIN_QUIRK(0x10ec0289, 0x1028, "Dell", ALC269_FIXUP_DELL4_MIC_NO_PRESENCE,
7853 {0x19, 0x40000000},
7854 {0x1b, 0x40000000}),
7855 {}
7856};
7857
546bb678 7858static void alc269_fill_coef(struct hda_codec *codec)
1d045db9 7859{
526af6eb 7860 struct alc_spec *spec = codec->spec;
1d045db9 7861 int val;
ebb83eeb 7862
526af6eb 7863 if (spec->codec_variant != ALC269_TYPE_ALC269VB)
546bb678 7864 return;
526af6eb 7865
1bb7e43e 7866 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
1d045db9
TI
7867 alc_write_coef_idx(codec, 0xf, 0x960b);
7868 alc_write_coef_idx(codec, 0xe, 0x8817);
7869 }
ebb83eeb 7870
1bb7e43e 7871 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
1d045db9
TI
7872 alc_write_coef_idx(codec, 0xf, 0x960b);
7873 alc_write_coef_idx(codec, 0xe, 0x8814);
7874 }
ebb83eeb 7875
1bb7e43e 7876 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
1d045db9 7877 /* Power up output pin */
98b24883 7878 alc_update_coef_idx(codec, 0x04, 0, 1<<11);
1d045db9 7879 }
ebb83eeb 7880
1bb7e43e 7881 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
1d045db9 7882 val = alc_read_coef_idx(codec, 0xd);
f3ee07d8 7883 if (val != -1 && (val & 0x0c00) >> 10 != 0x1) {
1d045db9
TI
7884 /* Capless ramp up clock control */
7885 alc_write_coef_idx(codec, 0xd, val | (1<<10));
7886 }
7887 val = alc_read_coef_idx(codec, 0x17);
f3ee07d8 7888 if (val != -1 && (val & 0x01c0) >> 6 != 0x4) {
1d045db9
TI
7889 /* Class D power on reset */
7890 alc_write_coef_idx(codec, 0x17, val | (1<<7));
7891 }
7892 }
ebb83eeb 7893
98b24883
TI
7894 /* HP */
7895 alc_update_coef_idx(codec, 0x4, 0, 1<<11);
1d045db9 7896}
a7f2371f 7897
1d045db9
TI
7898/*
7899 */
1d045db9
TI
7900static int patch_alc269(struct hda_codec *codec)
7901{
7902 struct alc_spec *spec;
3de95173 7903 int err;
f1d4e28b 7904
3de95173 7905 err = alc_alloc_spec(codec, 0x0b);
e16fb6d1 7906 if (err < 0)
3de95173
TI
7907 return err;
7908
7909 spec = codec->spec;
08c189f2 7910 spec->gen.shared_mic_vref_pin = 0x18;
317d9313 7911 codec->power_save_node = 0;
e16fb6d1 7912
225068ab
TI
7913#ifdef CONFIG_PM
7914 codec->patch_ops.suspend = alc269_suspend;
7915 codec->patch_ops.resume = alc269_resume;
7916#endif
c2d6af53
KY
7917 spec->shutup = alc_default_shutup;
7918 spec->init_hook = alc_default_init;
225068ab 7919
7639a06c 7920 switch (codec->core.vendor_id) {
065380f0 7921 case 0x10ec0269:
1d045db9 7922 spec->codec_variant = ALC269_TYPE_ALC269VA;
1bb7e43e
TI
7923 switch (alc_get_coef0(codec) & 0x00f0) {
7924 case 0x0010:
5100cd07
TI
7925 if (codec->bus->pci &&
7926 codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 7927 spec->cdefine.platform_type == 1)
20ca0c35 7928 err = alc_codec_rename(codec, "ALC271X");
1d045db9 7929 spec->codec_variant = ALC269_TYPE_ALC269VB;
1bb7e43e
TI
7930 break;
7931 case 0x0020:
5100cd07
TI
7932 if (codec->bus->pci &&
7933 codec->bus->pci->subsystem_vendor == 0x17aa &&
e16fb6d1 7934 codec->bus->pci->subsystem_device == 0x21f3)
20ca0c35 7935 err = alc_codec_rename(codec, "ALC3202");
1d045db9 7936 spec->codec_variant = ALC269_TYPE_ALC269VC;
1bb7e43e 7937 break;
adcc70b2
KY
7938 case 0x0030:
7939 spec->codec_variant = ALC269_TYPE_ALC269VD;
7940 break;
1bb7e43e 7941 default:
1d045db9 7942 alc_fix_pll_init(codec, 0x20, 0x04, 15);
1bb7e43e 7943 }
e16fb6d1
TI
7944 if (err < 0)
7945 goto error;
c2d6af53 7946 spec->shutup = alc269_shutup;
546bb678 7947 spec->init_hook = alc269_fill_coef;
1d045db9 7948 alc269_fill_coef(codec);
065380f0
KY
7949 break;
7950
7951 case 0x10ec0280:
7952 case 0x10ec0290:
7953 spec->codec_variant = ALC269_TYPE_ALC280;
7954 break;
7955 case 0x10ec0282:
065380f0 7956 spec->codec_variant = ALC269_TYPE_ALC282;
7b5c7a02
KY
7957 spec->shutup = alc282_shutup;
7958 spec->init_hook = alc282_init;
065380f0 7959 break;
2af02be7
KY
7960 case 0x10ec0233:
7961 case 0x10ec0283:
7962 spec->codec_variant = ALC269_TYPE_ALC283;
7963 spec->shutup = alc283_shutup;
7964 spec->init_hook = alc283_init;
7965 break;
065380f0
KY
7966 case 0x10ec0284:
7967 case 0x10ec0292:
7968 spec->codec_variant = ALC269_TYPE_ALC284;
7969 break;
161ebf29 7970 case 0x10ec0293:
4731d5de 7971 spec->codec_variant = ALC269_TYPE_ALC293;
161ebf29 7972 break;
7fc7d047 7973 case 0x10ec0286:
7c665932 7974 case 0x10ec0288:
7fc7d047
KY
7975 spec->codec_variant = ALC269_TYPE_ALC286;
7976 break;
506b62c3
KY
7977 case 0x10ec0298:
7978 spec->codec_variant = ALC269_TYPE_ALC298;
7979 break;
ea04a1db 7980 case 0x10ec0235:
1d04c9de
KY
7981 case 0x10ec0255:
7982 spec->codec_variant = ALC269_TYPE_ALC255;
ab3b8e51
KY
7983 spec->shutup = alc256_shutup;
7984 spec->init_hook = alc256_init;
1d04c9de 7985 break;
736f20a7 7986 case 0x10ec0236:
4344aec8
KY
7987 case 0x10ec0256:
7988 spec->codec_variant = ALC269_TYPE_ALC256;
4a219ef8
KY
7989 spec->shutup = alc256_shutup;
7990 spec->init_hook = alc256_init;
7d1b6e29 7991 spec->gen.mixer_nid = 0; /* ALC256 does not have any loopback mixer path */
4344aec8 7992 break;
f429e7e4
KY
7993 case 0x10ec0257:
7994 spec->codec_variant = ALC269_TYPE_ALC257;
88d42b2b
KY
7995 spec->shutup = alc256_shutup;
7996 spec->init_hook = alc256_init;
f429e7e4
KY
7997 spec->gen.mixer_nid = 0;
7998 break;
0a6f0600
KY
7999 case 0x10ec0215:
8000 case 0x10ec0285:
8001 case 0x10ec0289:
8002 spec->codec_variant = ALC269_TYPE_ALC215;
1b6832be
KY
8003 spec->shutup = alc225_shutup;
8004 spec->init_hook = alc225_init;
0a6f0600
KY
8005 spec->gen.mixer_nid = 0;
8006 break;
4231430d 8007 case 0x10ec0225:
7d727869 8008 case 0x10ec0295:
28f1f9b2 8009 case 0x10ec0299:
4231430d 8010 spec->codec_variant = ALC269_TYPE_ALC225;
da911b1f
KY
8011 spec->shutup = alc225_shutup;
8012 spec->init_hook = alc225_init;
c1350bff 8013 spec->gen.mixer_nid = 0; /* no loopback on ALC225, ALC295 and ALC299 */
4231430d 8014 break;
dcd4f0db
KY
8015 case 0x10ec0234:
8016 case 0x10ec0274:
8017 case 0x10ec0294:
8018 spec->codec_variant = ALC269_TYPE_ALC294;
532a7784 8019 spec->gen.mixer_nid = 0; /* ALC2x4 does not have any loopback mixer path */
71683c32 8020 alc_update_coef_idx(codec, 0x6b, 0x0018, (1<<4) | (1<<3)); /* UAJ MIC Vref control by verb */
693abe11 8021 spec->init_hook = alc294_init;
dcd4f0db 8022 break;
1078bef0
KY
8023 case 0x10ec0300:
8024 spec->codec_variant = ALC269_TYPE_ALC300;
8025 spec->gen.mixer_nid = 0; /* no loopback on ALC300 */
dcd4f0db 8026 break;
f0778871
KY
8027 case 0x10ec0623:
8028 spec->codec_variant = ALC269_TYPE_ALC623;
8029 break;
6fbae35a
KY
8030 case 0x10ec0700:
8031 case 0x10ec0701:
8032 case 0x10ec0703:
83629532 8033 case 0x10ec0711:
6fbae35a
KY
8034 spec->codec_variant = ALC269_TYPE_ALC700;
8035 spec->gen.mixer_nid = 0; /* ALC700 does not have any loopback mixer path */
2d7fe618 8036 alc_update_coef_idx(codec, 0x4a, 1 << 15, 0); /* Combo jack auto trigger control */
693abe11 8037 spec->init_hook = alc294_init;
6fbae35a
KY
8038 break;
8039
1d045db9 8040 }
6dda9f4a 8041
ad60d502 8042 if (snd_hda_codec_read(codec, 0x51, 0, AC_VERB_PARAMETERS, 0) == 0x10ec5505) {
97a26570 8043 spec->has_alc5505_dsp = 1;
ad60d502
KY
8044 spec->init_hook = alc5505_dsp_init;
8045 }
8046
c9af753f
TI
8047 alc_pre_init(codec);
8048
efe55732
TI
8049 snd_hda_pick_fixup(codec, alc269_fixup_models,
8050 alc269_fixup_tbl, alc269_fixups);
0fc1e447 8051 snd_hda_pick_pin_fixup(codec, alc269_pin_fixup_tbl, alc269_fixups, true);
7c0a6939 8052 snd_hda_pick_pin_fixup(codec, alc269_fallback_pin_fixup_tbl, alc269_fixups, false);
efe55732
TI
8053 snd_hda_pick_fixup(codec, NULL, alc269_fixup_vendor_tbl,
8054 alc269_fixups);
8055 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8056
8057 alc_auto_parse_customize_define(codec);
8058
8059 if (has_cdefine_beep(codec))
8060 spec->gen.beep_nid = 0x01;
8061
a4297b5d
TI
8062 /* automatic parse from the BIOS config */
8063 err = alc269_parse_auto_config(codec);
e16fb6d1
TI
8064 if (err < 0)
8065 goto error;
6dda9f4a 8066
fea80fae
TI
8067 if (!spec->gen.no_analog && spec->gen.beep_nid && spec->gen.mixer_nid) {
8068 err = set_beep_amp(spec, spec->gen.mixer_nid, 0x04, HDA_INPUT);
8069 if (err < 0)
8070 goto error;
8071 }
f1d4e28b 8072
1727a771 8073 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8074
1d045db9 8075 return 0;
e16fb6d1
TI
8076
8077 error:
8078 alc_free(codec);
8079 return err;
1d045db9 8080}
f1d4e28b 8081
1d045db9
TI
8082/*
8083 * ALC861
8084 */
622e84cd 8085
1d045db9 8086static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 8087{
1d045db9 8088 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8089 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
8090 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
8091}
8092
1d045db9
TI
8093/* Pin config fixes */
8094enum {
e652f4c8
TI
8095 ALC861_FIXUP_FSC_AMILO_PI1505,
8096 ALC861_FIXUP_AMP_VREF_0F,
8097 ALC861_FIXUP_NO_JACK_DETECT,
8098 ALC861_FIXUP_ASUS_A6RP,
6ddf0fd1 8099 ALC660_FIXUP_ASUS_W7J,
1d045db9 8100};
7085ec12 8101
31150f23
TI
8102/* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
8103static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
1727a771 8104 const struct hda_fixup *fix, int action)
31150f23
TI
8105{
8106 struct alc_spec *spec = codec->spec;
8107 unsigned int val;
8108
1727a771 8109 if (action != HDA_FIXUP_ACT_INIT)
31150f23 8110 return;
d3f02d60 8111 val = snd_hda_codec_get_pin_target(codec, 0x0f);
31150f23
TI
8112 if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
8113 val |= AC_PINCTL_IN_EN;
8114 val |= AC_PINCTL_VREF_50;
cdd03ced 8115 snd_hda_set_pin_ctl(codec, 0x0f, val);
08c189f2 8116 spec->gen.keep_vref_in_automute = 1;
31150f23
TI
8117}
8118
e652f4c8
TI
8119/* suppress the jack-detection */
8120static void alc_fixup_no_jack_detect(struct hda_codec *codec,
1727a771 8121 const struct hda_fixup *fix, int action)
e652f4c8 8122{
1727a771 8123 if (action == HDA_FIXUP_ACT_PRE_PROBE)
e652f4c8 8124 codec->no_jack_detect = 1;
7d7eb9ea 8125}
e652f4c8 8126
1727a771 8127static const struct hda_fixup alc861_fixups[] = {
e652f4c8 8128 [ALC861_FIXUP_FSC_AMILO_PI1505] = {
1727a771
TI
8129 .type = HDA_FIXUP_PINS,
8130 .v.pins = (const struct hda_pintbl[]) {
1d045db9
TI
8131 { 0x0b, 0x0221101f }, /* HP */
8132 { 0x0f, 0x90170310 }, /* speaker */
8133 { }
8134 }
8135 },
e652f4c8 8136 [ALC861_FIXUP_AMP_VREF_0F] = {
1727a771 8137 .type = HDA_FIXUP_FUNC,
31150f23 8138 .v.func = alc861_fixup_asus_amp_vref_0f,
3b25eb69 8139 },
e652f4c8 8140 [ALC861_FIXUP_NO_JACK_DETECT] = {
1727a771 8141 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
8142 .v.func = alc_fixup_no_jack_detect,
8143 },
8144 [ALC861_FIXUP_ASUS_A6RP] = {
1727a771 8145 .type = HDA_FIXUP_FUNC,
e652f4c8
TI
8146 .v.func = alc861_fixup_asus_amp_vref_0f,
8147 .chained = true,
8148 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6ddf0fd1
TI
8149 },
8150 [ALC660_FIXUP_ASUS_W7J] = {
8151 .type = HDA_FIXUP_VERBS,
8152 .v.verbs = (const struct hda_verb[]) {
8153 /* ASUS W7J needs a magic pin setup on unused NID 0x10
8154 * for enabling outputs
8155 */
8156 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8157 { }
8158 },
e652f4c8 8159 }
1d045db9 8160};
7085ec12 8161
1d045db9 8162static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6ddf0fd1 8163 SND_PCI_QUIRK(0x1043, 0x1253, "ASUS W7J", ALC660_FIXUP_ASUS_W7J),
e7ca237b 8164 SND_PCI_QUIRK(0x1043, 0x1263, "ASUS Z35HL", ALC660_FIXUP_ASUS_W7J),
e652f4c8
TI
8165 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
8166 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
8167 SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
8168 SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
8169 SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
8170 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
1d045db9
TI
8171 {}
8172};
3af9ee6b 8173
1d045db9
TI
8174/*
8175 */
1d045db9 8176static int patch_alc861(struct hda_codec *codec)
7085ec12 8177{
1d045db9 8178 struct alc_spec *spec;
1d045db9 8179 int err;
7085ec12 8180
3de95173
TI
8181 err = alc_alloc_spec(codec, 0x15);
8182 if (err < 0)
8183 return err;
1d045db9 8184
3de95173 8185 spec = codec->spec;
2722b535
TI
8186 if (has_cdefine_beep(codec))
8187 spec->gen.beep_nid = 0x23;
1d045db9 8188
225068ab
TI
8189#ifdef CONFIG_PM
8190 spec->power_hook = alc_power_eapd;
8191#endif
8192
c9af753f
TI
8193 alc_pre_init(codec);
8194
1727a771
TI
8195 snd_hda_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
8196 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
3af9ee6b 8197
cb4e4824
TI
8198 /* automatic parse from the BIOS config */
8199 err = alc861_parse_auto_config(codec);
e16fb6d1
TI
8200 if (err < 0)
8201 goto error;
3af9ee6b 8202
fea80fae
TI
8203 if (!spec->gen.no_analog) {
8204 err = set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
8205 if (err < 0)
8206 goto error;
8207 }
7085ec12 8208
1727a771 8209 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8210
1d045db9 8211 return 0;
e16fb6d1
TI
8212
8213 error:
8214 alc_free(codec);
8215 return err;
7085ec12
TI
8216}
8217
1d045db9
TI
8218/*
8219 * ALC861-VD support
8220 *
8221 * Based on ALC882
8222 *
8223 * In addition, an independent DAC
8224 */
1d045db9 8225static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 8226{
1d045db9 8227 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8228 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8229 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
8230}
8231
1d045db9 8232enum {
8fdcb6fe
TI
8233 ALC660VD_FIX_ASUS_GPIO1,
8234 ALC861VD_FIX_DALLAS,
1d045db9 8235};
ce764ab2 8236
8fdcb6fe
TI
8237/* exclude VREF80 */
8238static void alc861vd_fixup_dallas(struct hda_codec *codec,
1727a771 8239 const struct hda_fixup *fix, int action)
8fdcb6fe 8240{
1727a771 8241 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
b78562b1
TI
8242 snd_hda_override_pin_caps(codec, 0x18, 0x00000734);
8243 snd_hda_override_pin_caps(codec, 0x19, 0x0000073c);
8fdcb6fe
TI
8244 }
8245}
8246
df73d83f
TI
8247/* reset GPIO1 */
8248static void alc660vd_fixup_asus_gpio1(struct hda_codec *codec,
8249 const struct hda_fixup *fix, int action)
8250{
8251 struct alc_spec *spec = codec->spec;
8252
8253 if (action == HDA_FIXUP_ACT_PRE_PROBE)
8254 spec->gpio_mask |= 0x02;
8255 alc_fixup_gpio(codec, action, 0x01);
8256}
8257
1727a771 8258static const struct hda_fixup alc861vd_fixups[] = {
1d045db9 8259 [ALC660VD_FIX_ASUS_GPIO1] = {
df73d83f
TI
8260 .type = HDA_FIXUP_FUNC,
8261 .v.func = alc660vd_fixup_asus_gpio1,
1d045db9 8262 },
8fdcb6fe 8263 [ALC861VD_FIX_DALLAS] = {
1727a771 8264 .type = HDA_FIXUP_FUNC,
8fdcb6fe
TI
8265 .v.func = alc861vd_fixup_dallas,
8266 },
1d045db9 8267};
ce764ab2 8268
1d045db9 8269static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
8fdcb6fe 8270 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
1d045db9 8271 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
8fdcb6fe 8272 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
1d045db9
TI
8273 {}
8274};
ce764ab2 8275
1d045db9
TI
8276/*
8277 */
1d045db9 8278static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 8279{
1d045db9 8280 struct alc_spec *spec;
cb4e4824 8281 int err;
ce764ab2 8282
3de95173
TI
8283 err = alc_alloc_spec(codec, 0x0b);
8284 if (err < 0)
8285 return err;
1d045db9 8286
3de95173 8287 spec = codec->spec;
2722b535
TI
8288 if (has_cdefine_beep(codec))
8289 spec->gen.beep_nid = 0x23;
1d045db9 8290
225068ab
TI
8291 spec->shutup = alc_eapd_shutup;
8292
c9af753f
TI
8293 alc_pre_init(codec);
8294
1727a771
TI
8295 snd_hda_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
8296 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
1d045db9 8297
cb4e4824
TI
8298 /* automatic parse from the BIOS config */
8299 err = alc861vd_parse_auto_config(codec);
e16fb6d1
TI
8300 if (err < 0)
8301 goto error;
ce764ab2 8302
fea80fae
TI
8303 if (!spec->gen.no_analog) {
8304 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
8305 if (err < 0)
8306 goto error;
8307 }
1d045db9 8308
1727a771 8309 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 8310
ce764ab2 8311 return 0;
e16fb6d1
TI
8312
8313 error:
8314 alc_free(codec);
8315 return err;
ce764ab2
TI
8316}
8317
1d045db9
TI
8318/*
8319 * ALC662 support
8320 *
8321 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
8322 * configuration. Each pin widget can choose any input DACs and a mixer.
8323 * Each ADC is connected from a mixer of all inputs. This makes possible
8324 * 6-channel independent captures.
8325 *
8326 * In addition, an independent DAC for the multi-playback (not used in this
8327 * driver yet).
8328 */
1d045db9
TI
8329
8330/*
8331 * BIOS auto configuration
8332 */
8333
bc9f98a9
KY
8334static int alc662_parse_auto_config(struct hda_codec *codec)
8335{
4c6d72d1 8336 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
8337 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
8338 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
8339 const hda_nid_t *ssids;
ee979a14 8340
7639a06c
TI
8341 if (codec->core.vendor_id == 0x10ec0272 || codec->core.vendor_id == 0x10ec0663 ||
8342 codec->core.vendor_id == 0x10ec0665 || codec->core.vendor_id == 0x10ec0670 ||
8343 codec->core.vendor_id == 0x10ec0671)
3e6179b8 8344 ssids = alc663_ssids;
6227cdce 8345 else
3e6179b8
TI
8346 ssids = alc662_ssids;
8347 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
8348}
8349
6be7948f 8350static void alc272_fixup_mario(struct hda_codec *codec,
1727a771 8351 const struct hda_fixup *fix, int action)
6fc398cb 8352{
9bb1f06f 8353 if (action != HDA_FIXUP_ACT_PRE_PROBE)
6fc398cb 8354 return;
6be7948f
TB
8355 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
8356 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
8357 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
8358 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
8359 (0 << AC_AMPCAP_MUTE_SHIFT)))
4e76a883 8360 codec_warn(codec, "failed to override amp caps for NID 0x2\n");
6be7948f
TB
8361}
8362
8e383953
TI
8363static const struct snd_pcm_chmap_elem asus_pcm_2_1_chmaps[] = {
8364 { .channels = 2,
8365 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR } },
8366 { .channels = 4,
8367 .map = { SNDRV_CHMAP_FL, SNDRV_CHMAP_FR,
8368 SNDRV_CHMAP_NA, SNDRV_CHMAP_LFE } }, /* LFE only on right */
8369 { }
8370};
8371
8372/* override the 2.1 chmap */
eb9ca3ab 8373static void alc_fixup_bass_chmap(struct hda_codec *codec,
8e383953
TI
8374 const struct hda_fixup *fix, int action)
8375{
8376 if (action == HDA_FIXUP_ACT_BUILD) {
8377 struct alc_spec *spec = codec->spec;
bbbc7e85 8378 spec->gen.pcm_rec[0]->stream[0].chmap = asus_pcm_2_1_chmaps;
8e383953
TI
8379 }
8380}
8381
bf68665d
TI
8382/* avoid D3 for keeping GPIO up */
8383static unsigned int gpio_led_power_filter(struct hda_codec *codec,
8384 hda_nid_t nid,
8385 unsigned int power_state)
8386{
8387 struct alc_spec *spec = codec->spec;
d261eec8 8388 if (nid == codec->core.afg && power_state == AC_PWRST_D3 && spec->gpio_data)
bf68665d
TI
8389 return AC_PWRST_D0;
8390 return power_state;
8391}
8392
3e887f37
TI
8393static void alc662_fixup_led_gpio1(struct hda_codec *codec,
8394 const struct hda_fixup *fix, int action)
8395{
8396 struct alc_spec *spec = codec->spec;
3e887f37 8397
01e4a275 8398 alc_fixup_hp_gpio_led(codec, action, 0x01, 0);
3e887f37 8399 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
0f32fd19 8400 spec->mute_led_polarity = 1;
bf68665d 8401 codec->power_filter = gpio_led_power_filter;
3e887f37
TI
8402 }
8403}
8404
c6790c8e
KY
8405static void alc662_usi_automute_hook(struct hda_codec *codec,
8406 struct hda_jack_callback *jack)
8407{
8408 struct alc_spec *spec = codec->spec;
8409 int vref;
8410 msleep(200);
8411 snd_hda_gen_hp_automute(codec, jack);
8412
8413 vref = spec->gen.hp_jack_present ? PIN_VREF80 : 0;
8414 msleep(100);
8415 snd_hda_codec_write(codec, 0x19, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8416 vref);
8417}
8418
8419static void alc662_fixup_usi_headset_mic(struct hda_codec *codec,
8420 const struct hda_fixup *fix, int action)
8421{
8422 struct alc_spec *spec = codec->spec;
8423 if (action == HDA_FIXUP_ACT_PRE_PROBE) {
8424 spec->parse_flags |= HDA_PINCFG_HEADSET_MIC;
8425 spec->gen.hp_automute_hook = alc662_usi_automute_hook;
8426 }
8427}
8428
00066e97
SB
8429static void alc662_aspire_ethos_mute_speakers(struct hda_codec *codec,
8430 struct hda_jack_callback *cb)
8431{
8432 /* surround speakers at 0x1b already get muted automatically when
8433 * headphones are plugged in, but we have to mute/unmute the remaining
8434 * channels manually:
8435 * 0x15 - front left/front right
8436 * 0x18 - front center/ LFE
8437 */
8438 if (snd_hda_jack_detect_state(codec, 0x1b) == HDA_JACK_PRESENT) {
8439 snd_hda_set_pin_ctl_cache(codec, 0x15, 0);
8440 snd_hda_set_pin_ctl_cache(codec, 0x18, 0);
8441 } else {
8442 snd_hda_set_pin_ctl_cache(codec, 0x15, PIN_OUT);
8443 snd_hda_set_pin_ctl_cache(codec, 0x18, PIN_OUT);
8444 }
8445}
8446
8447static void alc662_fixup_aspire_ethos_hp(struct hda_codec *codec,
8448 const struct hda_fixup *fix, int action)
8449{
8450 /* Pin 0x1b: shared headphones jack and surround speakers */
8451 if (!is_jack_detectable(codec, 0x1b))
8452 return;
8453
8454 switch (action) {
8455 case HDA_FIXUP_ACT_PRE_PROBE:
8456 snd_hda_jack_detect_enable_callback(codec, 0x1b,
8457 alc662_aspire_ethos_mute_speakers);
8458 break;
8459 case HDA_FIXUP_ACT_INIT:
8460 /* Make sure to start in a correct state, i.e. if
8461 * headphones have been plugged in before powering up the system
8462 */
8463 alc662_aspire_ethos_mute_speakers(codec, NULL);
8464 break;
8465 }
8466}
8467
f3f9185f
KY
8468static struct coef_fw alc668_coefs[] = {
8469 WRITE_COEF(0x01, 0xbebe), WRITE_COEF(0x02, 0xaaaa), WRITE_COEF(0x03, 0x0),
8470 WRITE_COEF(0x04, 0x0180), WRITE_COEF(0x06, 0x0), WRITE_COEF(0x07, 0x0f80),
8471 WRITE_COEF(0x08, 0x0031), WRITE_COEF(0x0a, 0x0060), WRITE_COEF(0x0b, 0x0),
8472 WRITE_COEF(0x0c, 0x7cf7), WRITE_COEF(0x0d, 0x1080), WRITE_COEF(0x0e, 0x7f7f),
8473 WRITE_COEF(0x0f, 0xcccc), WRITE_COEF(0x10, 0xddcc), WRITE_COEF(0x11, 0x0001),
8474 WRITE_COEF(0x13, 0x0), WRITE_COEF(0x14, 0x2aa0), WRITE_COEF(0x17, 0xa940),
8475 WRITE_COEF(0x19, 0x0), WRITE_COEF(0x1a, 0x0), WRITE_COEF(0x1b, 0x0),
8476 WRITE_COEF(0x1c, 0x0), WRITE_COEF(0x1d, 0x0), WRITE_COEF(0x1e, 0x7418),
8477 WRITE_COEF(0x1f, 0x0804), WRITE_COEF(0x20, 0x4200), WRITE_COEF(0x21, 0x0468),
8478 WRITE_COEF(0x22, 0x8ccc), WRITE_COEF(0x23, 0x0250), WRITE_COEF(0x24, 0x7418),
8479 WRITE_COEF(0x27, 0x0), WRITE_COEF(0x28, 0x8ccc), WRITE_COEF(0x2a, 0xff00),
8480 WRITE_COEF(0x2b, 0x8000), WRITE_COEF(0xa7, 0xff00), WRITE_COEF(0xa8, 0x8000),
8481 WRITE_COEF(0xaa, 0x2e17), WRITE_COEF(0xab, 0xa0c0), WRITE_COEF(0xac, 0x0),
8482 WRITE_COEF(0xad, 0x0), WRITE_COEF(0xae, 0x2ac6), WRITE_COEF(0xaf, 0xa480),
8483 WRITE_COEF(0xb0, 0x0), WRITE_COEF(0xb1, 0x0), WRITE_COEF(0xb2, 0x0),
8484 WRITE_COEF(0xb3, 0x0), WRITE_COEF(0xb4, 0x0), WRITE_COEF(0xb5, 0x1040),
8485 WRITE_COEF(0xb6, 0xd697), WRITE_COEF(0xb7, 0x902b), WRITE_COEF(0xb8, 0xd697),
8486 WRITE_COEF(0xb9, 0x902b), WRITE_COEF(0xba, 0xb8ba), WRITE_COEF(0xbb, 0xaaab),
8487 WRITE_COEF(0xbc, 0xaaaf), WRITE_COEF(0xbd, 0x6aaa), WRITE_COEF(0xbe, 0x1c02),
8488 WRITE_COEF(0xc0, 0x00ff), WRITE_COEF(0xc1, 0x0fa6),
8489 {}
8490};
8491
8492static void alc668_restore_default_value(struct hda_codec *codec)
8493{
8494 alc_process_coef_fw(codec, alc668_coefs);
8495}
8496
6cb3b707 8497enum {
2df03514 8498 ALC662_FIXUP_ASPIRE,
3e887f37 8499 ALC662_FIXUP_LED_GPIO1,
6cb3b707 8500 ALC662_FIXUP_IDEAPAD,
6be7948f 8501 ALC272_FIXUP_MARIO,
d2ebd479 8502 ALC662_FIXUP_CZC_P10T,
94024cd1 8503 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 8504 ALC662_FIXUP_HP_RP5800,
53c334ad
TI
8505 ALC662_FIXUP_ASUS_MODE1,
8506 ALC662_FIXUP_ASUS_MODE2,
8507 ALC662_FIXUP_ASUS_MODE3,
8508 ALC662_FIXUP_ASUS_MODE4,
8509 ALC662_FIXUP_ASUS_MODE5,
8510 ALC662_FIXUP_ASUS_MODE6,
8511 ALC662_FIXUP_ASUS_MODE7,
8512 ALC662_FIXUP_ASUS_MODE8,
1565cc35 8513 ALC662_FIXUP_NO_JACK_DETECT,
edfe3bfc 8514 ALC662_FIXUP_ZOTAC_Z68,
125821ae 8515 ALC662_FIXUP_INV_DMIC,
1f8b46cd 8516 ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
73bdd597 8517 ALC668_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 8518 ALC662_FIXUP_HEADSET_MODE,
73bdd597 8519 ALC668_FIXUP_HEADSET_MODE,
8e54b4ac 8520 ALC662_FIXUP_BASS_MODE4_CHMAP,
61a75f13 8521 ALC662_FIXUP_BASS_16,
a30c9aaa 8522 ALC662_FIXUP_BASS_1A,
8e54b4ac 8523 ALC662_FIXUP_BASS_CHMAP,
493a52a9 8524 ALC668_FIXUP_AUTO_MUTE,
5e6db669 8525 ALC668_FIXUP_DELL_DISABLE_AAMIX,
033b0a7c 8526 ALC668_FIXUP_DELL_XPS13,
9d4dc584 8527 ALC662_FIXUP_ASUS_Nx50,
fc7438b1 8528 ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 8529 ALC668_FIXUP_ASUS_Nx51,
5b7c5e1f 8530 ALC668_FIXUP_MIC_COEF,
11ba6111 8531 ALC668_FIXUP_ASUS_G751,
78f4f7c2
KY
8532 ALC891_FIXUP_HEADSET_MODE,
8533 ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9b51fe3e 8534 ALC662_FIXUP_ACER_VERITON,
1a3f0991 8535 ALC892_FIXUP_ASROCK_MOBO,
c6790c8e
KY
8536 ALC662_FIXUP_USI_FUNC,
8537 ALC662_FIXUP_USI_HEADSET_MODE,
ca169cc2 8538 ALC662_FIXUP_LENOVO_MULTI_CODECS,
00066e97
SB
8539 ALC669_FIXUP_ACER_ASPIRE_ETHOS,
8540 ALC669_FIXUP_ACER_ASPIRE_ETHOS_SUBWOOFER,
8541 ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET,
6cb3b707
DH
8542};
8543
1727a771 8544static const struct hda_fixup alc662_fixups[] = {
2df03514 8545 [ALC662_FIXUP_ASPIRE] = {
1727a771
TI
8546 .type = HDA_FIXUP_PINS,
8547 .v.pins = (const struct hda_pintbl[]) {
2df03514
DC
8548 { 0x15, 0x99130112 }, /* subwoofer */
8549 { }
8550 }
8551 },
3e887f37
TI
8552 [ALC662_FIXUP_LED_GPIO1] = {
8553 .type = HDA_FIXUP_FUNC,
8554 .v.func = alc662_fixup_led_gpio1,
8555 },
6cb3b707 8556 [ALC662_FIXUP_IDEAPAD] = {
1727a771
TI
8557 .type = HDA_FIXUP_PINS,
8558 .v.pins = (const struct hda_pintbl[]) {
6cb3b707
DH
8559 { 0x17, 0x99130112 }, /* subwoofer */
8560 { }
3e887f37
TI
8561 },
8562 .chained = true,
8563 .chain_id = ALC662_FIXUP_LED_GPIO1,
6cb3b707 8564 },
6be7948f 8565 [ALC272_FIXUP_MARIO] = {
1727a771 8566 .type = HDA_FIXUP_FUNC,
b5bfbc67 8567 .v.func = alc272_fixup_mario,
d2ebd479
AA
8568 },
8569 [ALC662_FIXUP_CZC_P10T] = {
1727a771 8570 .type = HDA_FIXUP_VERBS,
d2ebd479
AA
8571 .v.verbs = (const struct hda_verb[]) {
8572 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
8573 {}
8574 }
8575 },
94024cd1 8576 [ALC662_FIXUP_SKU_IGNORE] = {
1727a771 8577 .type = HDA_FIXUP_FUNC,
23d30f28 8578 .v.func = alc_fixup_sku_ignore,
c6b35874 8579 },
e59ea3ed 8580 [ALC662_FIXUP_HP_RP5800] = {
1727a771
TI
8581 .type = HDA_FIXUP_PINS,
8582 .v.pins = (const struct hda_pintbl[]) {
e59ea3ed
TI
8583 { 0x14, 0x0221201f }, /* HP out */
8584 { }
8585 },
8586 .chained = true,
8587 .chain_id = ALC662_FIXUP_SKU_IGNORE
8588 },
53c334ad 8589 [ALC662_FIXUP_ASUS_MODE1] = {
1727a771
TI
8590 .type = HDA_FIXUP_PINS,
8591 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8592 { 0x14, 0x99130110 }, /* speaker */
8593 { 0x18, 0x01a19c20 }, /* mic */
8594 { 0x19, 0x99a3092f }, /* int-mic */
8595 { 0x21, 0x0121401f }, /* HP out */
8596 { }
8597 },
8598 .chained = true,
8599 .chain_id = ALC662_FIXUP_SKU_IGNORE
8600 },
8601 [ALC662_FIXUP_ASUS_MODE2] = {
1727a771
TI
8602 .type = HDA_FIXUP_PINS,
8603 .v.pins = (const struct hda_pintbl[]) {
2996bdba
TI
8604 { 0x14, 0x99130110 }, /* speaker */
8605 { 0x18, 0x01a19820 }, /* mic */
8606 { 0x19, 0x99a3092f }, /* int-mic */
8607 { 0x1b, 0x0121401f }, /* HP out */
8608 { }
8609 },
53c334ad
TI
8610 .chained = true,
8611 .chain_id = ALC662_FIXUP_SKU_IGNORE
8612 },
8613 [ALC662_FIXUP_ASUS_MODE3] = {
1727a771
TI
8614 .type = HDA_FIXUP_PINS,
8615 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8616 { 0x14, 0x99130110 }, /* speaker */
8617 { 0x15, 0x0121441f }, /* HP */
8618 { 0x18, 0x01a19840 }, /* mic */
8619 { 0x19, 0x99a3094f }, /* int-mic */
8620 { 0x21, 0x01211420 }, /* HP2 */
8621 { }
8622 },
8623 .chained = true,
8624 .chain_id = ALC662_FIXUP_SKU_IGNORE
8625 },
8626 [ALC662_FIXUP_ASUS_MODE4] = {
1727a771
TI
8627 .type = HDA_FIXUP_PINS,
8628 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8629 { 0x14, 0x99130110 }, /* speaker */
8630 { 0x16, 0x99130111 }, /* speaker */
8631 { 0x18, 0x01a19840 }, /* mic */
8632 { 0x19, 0x99a3094f }, /* int-mic */
8633 { 0x21, 0x0121441f }, /* HP */
8634 { }
8635 },
8636 .chained = true,
8637 .chain_id = ALC662_FIXUP_SKU_IGNORE
8638 },
8639 [ALC662_FIXUP_ASUS_MODE5] = {
1727a771
TI
8640 .type = HDA_FIXUP_PINS,
8641 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8642 { 0x14, 0x99130110 }, /* speaker */
8643 { 0x15, 0x0121441f }, /* HP */
8644 { 0x16, 0x99130111 }, /* speaker */
8645 { 0x18, 0x01a19840 }, /* mic */
8646 { 0x19, 0x99a3094f }, /* int-mic */
8647 { }
8648 },
8649 .chained = true,
8650 .chain_id = ALC662_FIXUP_SKU_IGNORE
8651 },
8652 [ALC662_FIXUP_ASUS_MODE6] = {
1727a771
TI
8653 .type = HDA_FIXUP_PINS,
8654 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8655 { 0x14, 0x99130110 }, /* speaker */
8656 { 0x15, 0x01211420 }, /* HP2 */
8657 { 0x18, 0x01a19840 }, /* mic */
8658 { 0x19, 0x99a3094f }, /* int-mic */
8659 { 0x1b, 0x0121441f }, /* HP */
8660 { }
8661 },
8662 .chained = true,
8663 .chain_id = ALC662_FIXUP_SKU_IGNORE
8664 },
8665 [ALC662_FIXUP_ASUS_MODE7] = {
1727a771
TI
8666 .type = HDA_FIXUP_PINS,
8667 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8668 { 0x14, 0x99130110 }, /* speaker */
8669 { 0x17, 0x99130111 }, /* speaker */
8670 { 0x18, 0x01a19840 }, /* mic */
8671 { 0x19, 0x99a3094f }, /* int-mic */
8672 { 0x1b, 0x01214020 }, /* HP */
8673 { 0x21, 0x0121401f }, /* HP */
8674 { }
8675 },
8676 .chained = true,
8677 .chain_id = ALC662_FIXUP_SKU_IGNORE
8678 },
8679 [ALC662_FIXUP_ASUS_MODE8] = {
1727a771
TI
8680 .type = HDA_FIXUP_PINS,
8681 .v.pins = (const struct hda_pintbl[]) {
53c334ad
TI
8682 { 0x14, 0x99130110 }, /* speaker */
8683 { 0x12, 0x99a30970 }, /* int-mic */
8684 { 0x15, 0x01214020 }, /* HP */
8685 { 0x17, 0x99130111 }, /* speaker */
8686 { 0x18, 0x01a19840 }, /* mic */
8687 { 0x21, 0x0121401f }, /* HP */
8688 { }
8689 },
8690 .chained = true,
8691 .chain_id = ALC662_FIXUP_SKU_IGNORE
2996bdba 8692 },
1565cc35 8693 [ALC662_FIXUP_NO_JACK_DETECT] = {
1727a771 8694 .type = HDA_FIXUP_FUNC,
1565cc35
TI
8695 .v.func = alc_fixup_no_jack_detect,
8696 },
edfe3bfc 8697 [ALC662_FIXUP_ZOTAC_Z68] = {
1727a771
TI
8698 .type = HDA_FIXUP_PINS,
8699 .v.pins = (const struct hda_pintbl[]) {
edfe3bfc
DH
8700 { 0x1b, 0x02214020 }, /* Front HP */
8701 { }
8702 }
8703 },
125821ae 8704 [ALC662_FIXUP_INV_DMIC] = {
1727a771 8705 .type = HDA_FIXUP_FUNC,
9d36a7dc 8706 .v.func = alc_fixup_inv_dmic,
125821ae 8707 },
033b0a7c
GM
8708 [ALC668_FIXUP_DELL_XPS13] = {
8709 .type = HDA_FIXUP_FUNC,
8710 .v.func = alc_fixup_dell_xps13,
8711 .chained = true,
8712 .chain_id = ALC668_FIXUP_DELL_DISABLE_AAMIX
8713 },
5e6db669
GM
8714 [ALC668_FIXUP_DELL_DISABLE_AAMIX] = {
8715 .type = HDA_FIXUP_FUNC,
8716 .v.func = alc_fixup_disable_aamix,
8717 .chained = true,
8718 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8719 },
493a52a9
HW
8720 [ALC668_FIXUP_AUTO_MUTE] = {
8721 .type = HDA_FIXUP_FUNC,
8722 .v.func = alc_fixup_auto_mute_via_amp,
8723 .chained = true,
8724 .chain_id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE
8725 },
1f8b46cd
DH
8726 [ALC662_FIXUP_DELL_MIC_NO_PRESENCE] = {
8727 .type = HDA_FIXUP_PINS,
8728 .v.pins = (const struct hda_pintbl[]) {
8729 { 0x19, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8730 /* headphone mic by setting pin control of 0x1b (headphone out) to in + vref_50 */
8731 { }
8732 },
8733 .chained = true,
8734 .chain_id = ALC662_FIXUP_HEADSET_MODE
8735 },
8736 [ALC662_FIXUP_HEADSET_MODE] = {
8737 .type = HDA_FIXUP_FUNC,
8738 .v.func = alc_fixup_headset_mode_alc662,
8739 },
73bdd597
DH
8740 [ALC668_FIXUP_DELL_MIC_NO_PRESENCE] = {
8741 .type = HDA_FIXUP_PINS,
8742 .v.pins = (const struct hda_pintbl[]) {
8743 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8744 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8745 { }
8746 },
8747 .chained = true,
8748 .chain_id = ALC668_FIXUP_HEADSET_MODE
8749 },
8750 [ALC668_FIXUP_HEADSET_MODE] = {
8751 .type = HDA_FIXUP_FUNC,
8752 .v.func = alc_fixup_headset_mode_alc668,
8753 },
8e54b4ac 8754 [ALC662_FIXUP_BASS_MODE4_CHMAP] = {
8e383953 8755 .type = HDA_FIXUP_FUNC,
eb9ca3ab 8756 .v.func = alc_fixup_bass_chmap,
8e383953
TI
8757 .chained = true,
8758 .chain_id = ALC662_FIXUP_ASUS_MODE4
8759 },
61a75f13
DH
8760 [ALC662_FIXUP_BASS_16] = {
8761 .type = HDA_FIXUP_PINS,
8762 .v.pins = (const struct hda_pintbl[]) {
8763 {0x16, 0x80106111}, /* bass speaker */
8764 {}
8765 },
8766 .chained = true,
8767 .chain_id = ALC662_FIXUP_BASS_CHMAP,
8768 },
a30c9aaa
TI
8769 [ALC662_FIXUP_BASS_1A] = {
8770 .type = HDA_FIXUP_PINS,
8771 .v.pins = (const struct hda_pintbl[]) {
8772 {0x1a, 0x80106111}, /* bass speaker */
8773 {}
8774 },
8e54b4ac
DH
8775 .chained = true,
8776 .chain_id = ALC662_FIXUP_BASS_CHMAP,
a30c9aaa 8777 },
8e54b4ac 8778 [ALC662_FIXUP_BASS_CHMAP] = {
a30c9aaa 8779 .type = HDA_FIXUP_FUNC,
eb9ca3ab 8780 .v.func = alc_fixup_bass_chmap,
a30c9aaa 8781 },
9d4dc584
BM
8782 [ALC662_FIXUP_ASUS_Nx50] = {
8783 .type = HDA_FIXUP_FUNC,
8784 .v.func = alc_fixup_auto_mute_via_amp,
8785 .chained = true,
8786 .chain_id = ALC662_FIXUP_BASS_1A
8787 },
fc7438b1
MP
8788 [ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE] = {
8789 .type = HDA_FIXUP_FUNC,
8790 .v.func = alc_fixup_headset_mode_alc668,
8791 .chain_id = ALC662_FIXUP_BASS_CHMAP
8792 },
3231e205
YP
8793 [ALC668_FIXUP_ASUS_Nx51] = {
8794 .type = HDA_FIXUP_PINS,
8795 .v.pins = (const struct hda_pintbl[]) {
fc7438b1
MP
8796 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8797 { 0x1a, 0x90170151 }, /* bass speaker */
8798 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
3231e205
YP
8799 {}
8800 },
8801 .chained = true,
fc7438b1 8802 .chain_id = ALC668_FIXUP_ASUS_Nx51_HEADSET_MODE,
3231e205 8803 },
5b7c5e1f 8804 [ALC668_FIXUP_MIC_COEF] = {
11ba6111
TI
8805 .type = HDA_FIXUP_VERBS,
8806 .v.verbs = (const struct hda_verb[]) {
8807 { 0x20, AC_VERB_SET_COEF_INDEX, 0xc3 },
8808 { 0x20, AC_VERB_SET_PROC_COEF, 0x4000 },
8809 {}
8810 },
8811 },
5b7c5e1f
TI
8812 [ALC668_FIXUP_ASUS_G751] = {
8813 .type = HDA_FIXUP_PINS,
8814 .v.pins = (const struct hda_pintbl[]) {
8815 { 0x16, 0x0421101f }, /* HP */
8816 {}
8817 },
8818 .chained = true,
8819 .chain_id = ALC668_FIXUP_MIC_COEF
8820 },
78f4f7c2
KY
8821 [ALC891_FIXUP_HEADSET_MODE] = {
8822 .type = HDA_FIXUP_FUNC,
8823 .v.func = alc_fixup_headset_mode,
8824 },
8825 [ALC891_FIXUP_DELL_MIC_NO_PRESENCE] = {
8826 .type = HDA_FIXUP_PINS,
8827 .v.pins = (const struct hda_pintbl[]) {
8828 { 0x19, 0x03a1913d }, /* use as headphone mic, without its own jack detect */
8829 { 0x1b, 0x03a1113c }, /* use as headset mic, without its own jack detect */
8830 { }
8831 },
8832 .chained = true,
8833 .chain_id = ALC891_FIXUP_HEADSET_MODE
8834 },
9b51fe3e
SB
8835 [ALC662_FIXUP_ACER_VERITON] = {
8836 .type = HDA_FIXUP_PINS,
8837 .v.pins = (const struct hda_pintbl[]) {
8838 { 0x15, 0x50170120 }, /* no internal speaker */
8839 { }
8840 }
8841 },
1a3f0991
TI
8842 [ALC892_FIXUP_ASROCK_MOBO] = {
8843 .type = HDA_FIXUP_PINS,
8844 .v.pins = (const struct hda_pintbl[]) {
8845 { 0x15, 0x40f000f0 }, /* disabled */
8846 { 0x16, 0x40f000f0 }, /* disabled */
1a3f0991
TI
8847 { }
8848 }
8849 },
c6790c8e
KY
8850 [ALC662_FIXUP_USI_FUNC] = {
8851 .type = HDA_FIXUP_FUNC,
8852 .v.func = alc662_fixup_usi_headset_mic,
8853 },
8854 [ALC662_FIXUP_USI_HEADSET_MODE] = {
8855 .type = HDA_FIXUP_PINS,
8856 .v.pins = (const struct hda_pintbl[]) {
8857 { 0x19, 0x02a1913c }, /* use as headset mic, without its own jack detect */
8858 { 0x18, 0x01a1903d },
8859 { }
8860 },
8861 .chained = true,
8862 .chain_id = ALC662_FIXUP_USI_FUNC
8863 },
ca169cc2
KY
8864 [ALC662_FIXUP_LENOVO_MULTI_CODECS] = {
8865 .type = HDA_FIXUP_FUNC,
8866 .v.func = alc233_alc662_fixup_lenovo_dual_codecs,
8867 },
00066e97
SB
8868 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET] = {
8869 .type = HDA_FIXUP_FUNC,
8870 .v.func = alc662_fixup_aspire_ethos_hp,
8871 },
8872 [ALC669_FIXUP_ACER_ASPIRE_ETHOS_SUBWOOFER] = {
8873 .type = HDA_FIXUP_VERBS,
8874 /* subwoofer needs an extra GPIO setting to become audible */
8875 .v.verbs = (const struct hda_verb[]) {
8876 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
8877 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
8878 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
8879 { }
8880 },
8881 .chained = true,
8882 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_HEADSET
8883 },
8884 [ALC669_FIXUP_ACER_ASPIRE_ETHOS] = {
8885 .type = HDA_FIXUP_PINS,
8886 .v.pins = (const struct hda_pintbl[]) {
8887 { 0x15, 0x92130110 }, /* front speakers */
8888 { 0x18, 0x99130111 }, /* center/subwoofer */
8889 { 0x1b, 0x11130012 }, /* surround plus jack for HP */
8890 { }
8891 },
8892 .chained = true,
8893 .chain_id = ALC669_FIXUP_ACER_ASPIRE_ETHOS_SUBWOOFER
8894 },
6cb3b707
DH
8895};
8896
a9111321 8897static const struct snd_pci_quirk alc662_fixup_tbl[] = {
53c334ad 8898 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
d3d3835c 8899 SND_PCI_QUIRK(0x1025, 0x022f, "Acer Aspire One", ALC662_FIXUP_INV_DMIC),
02f6ff90 8900 SND_PCI_QUIRK(0x1025, 0x0241, "Packard Bell DOTS", ALC662_FIXUP_INV_DMIC),
a6c47a85 8901 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 8902 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
125821ae 8903 SND_PCI_QUIRK(0x1025, 0x0349, "eMachines eM250", ALC662_FIXUP_INV_DMIC),
1801928e 8904 SND_PCI_QUIRK(0x1025, 0x034a, "Gateway LT27", ALC662_FIXUP_INV_DMIC),
2df03514 8905 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
73bdd597
DH
8906 SND_PCI_QUIRK(0x1028, 0x05d8, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8907 SND_PCI_QUIRK(0x1028, 0x05db, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
c5d019c3 8908 SND_PCI_QUIRK(0x1028, 0x05fe, "Dell XPS 15", ALC668_FIXUP_DELL_XPS13),
033b0a7c 8909 SND_PCI_QUIRK(0x1028, 0x060a, "Dell XPS 13", ALC668_FIXUP_DELL_XPS13),
467e1436 8910 SND_PCI_QUIRK(0x1028, 0x060d, "Dell M3800", ALC668_FIXUP_DELL_XPS13),
09d2014f 8911 SND_PCI_QUIRK(0x1028, 0x0625, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
ad8ff99e 8912 SND_PCI_QUIRK(0x1028, 0x0626, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8dc9abb9
KY
8913 SND_PCI_QUIRK(0x1028, 0x0696, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
8914 SND_PCI_QUIRK(0x1028, 0x0698, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
6a98e34b 8915 SND_PCI_QUIRK(0x1028, 0x069f, "Dell", ALC668_FIXUP_DELL_MIC_NO_PRESENCE),
e59ea3ed 8916 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
2da2dc9e 8917 SND_PCI_QUIRK(0x1043, 0x1080, "Asus UX501VW", ALC668_FIXUP_HEADSET_MODE),
83a9efb5 8918 SND_PCI_QUIRK(0x1043, 0x11cd, "Asus N550", ALC662_FIXUP_ASUS_Nx50),
db8948e6 8919 SND_PCI_QUIRK(0x1043, 0x13df, "Asus N550JX", ALC662_FIXUP_BASS_1A),
9d4dc584 8920 SND_PCI_QUIRK(0x1043, 0x129d, "Asus N750", ALC662_FIXUP_ASUS_Nx50),
11ba6111 8921 SND_PCI_QUIRK(0x1043, 0x12ff, "ASUS G751", ALC668_FIXUP_ASUS_G751),
8e54b4ac 8922 SND_PCI_QUIRK(0x1043, 0x1477, "ASUS N56VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
61a75f13 8923 SND_PCI_QUIRK(0x1043, 0x15a7, "ASUS UX51VZH", ALC662_FIXUP_BASS_16),
3231e205
YP
8924 SND_PCI_QUIRK(0x1043, 0x177d, "ASUS N551", ALC668_FIXUP_ASUS_Nx51),
8925 SND_PCI_QUIRK(0x1043, 0x17bd, "ASUS N751", ALC668_FIXUP_ASUS_Nx51),
c7efff92 8926 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71SL", ALC662_FIXUP_ASUS_MODE8),
61a75f13 8927 SND_PCI_QUIRK(0x1043, 0x1b73, "ASUS N55SF", ALC662_FIXUP_BASS_16),
8e54b4ac 8928 SND_PCI_QUIRK(0x1043, 0x1bf3, "ASUS N76VZ", ALC662_FIXUP_BASS_MODE4_CHMAP),
1565cc35 8929 SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
53c334ad 8930 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
a0e90acc 8931 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
c6790c8e 8932 SND_PCI_QUIRK(0x14cd, 0x5003, "USI", ALC662_FIXUP_USI_HEADSET_MODE),
ca169cc2 8933 SND_PCI_QUIRK(0x17aa, 0x1036, "Lenovo P520", ALC662_FIXUP_LENOVO_MULTI_CODECS),
d4118588 8934 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 8935 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
1a3f0991 8936 SND_PCI_QUIRK(0x1849, 0x5892, "ASRock B150M", ALC892_FIXUP_ASROCK_MOBO),
edfe3bfc 8937 SND_PCI_QUIRK(0x19da, 0xa130, "Zotac Z68", ALC662_FIXUP_ZOTAC_Z68),
9b51fe3e 8938 SND_PCI_QUIRK(0x1b0a, 0x01b8, "ACER Veriton", ALC662_FIXUP_ACER_VERITON),
d2ebd479 8939 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
00066e97 8940 SND_PCI_QUIRK(0x1025, 0x0566, "Acer Aspire Ethos 8951G", ALC669_FIXUP_ACER_ASPIRE_ETHOS),
53c334ad
TI
8941
8942#if 0
8943 /* Below is a quirk table taken from the old code.
8944 * Basically the device should work as is without the fixup table.
8945 * If BIOS doesn't give a proper info, enable the corresponding
8946 * fixup entry.
7d7eb9ea 8947 */
53c334ad
TI
8948 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
8949 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
8950 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
8951 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
8952 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8953 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8954 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8955 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
8956 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
8957 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8958 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
8959 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
8960 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
8961 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
8962 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
8963 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8964 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
8965 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
8966 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8967 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8968 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8969 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8970 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
8971 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
8972 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
8973 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8974 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
8975 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
8976 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8977 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
8978 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8979 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8980 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
8981 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
8982 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
8983 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
8984 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
8985 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
8986 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
8987 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
8988 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
8989 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
8990 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8991 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
8992 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
8993 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
8994 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
8995 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
8996 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
8997 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
8998#endif
6cb3b707
DH
8999 {}
9000};
9001
1727a771 9002static const struct hda_model_fixup alc662_fixup_models[] = {
aa3841b5
TI
9003 {.id = ALC662_FIXUP_ASPIRE, .name = "aspire"},
9004 {.id = ALC662_FIXUP_IDEAPAD, .name = "ideapad"},
6be7948f 9005 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
aa3841b5 9006 {.id = ALC662_FIXUP_HP_RP5800, .name = "hp-rp5800"},
53c334ad
TI
9007 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
9008 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
9009 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
9010 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
9011 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
9012 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
9013 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
9014 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
aa3841b5 9015 {.id = ALC662_FIXUP_ZOTAC_Z68, .name = "zotac-z68"},
6e72aa5f 9016 {.id = ALC662_FIXUP_INV_DMIC, .name = "inv-dmic"},
aa3841b5 9017 {.id = ALC662_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc662-headset-multi"},
e32aa85a 9018 {.id = ALC668_FIXUP_DELL_MIC_NO_PRESENCE, .name = "dell-headset-multi"},
aa3841b5
TI
9019 {.id = ALC662_FIXUP_HEADSET_MODE, .name = "alc662-headset"},
9020 {.id = ALC668_FIXUP_HEADSET_MODE, .name = "alc668-headset"},
9021 {.id = ALC662_FIXUP_BASS_16, .name = "bass16"},
9022 {.id = ALC662_FIXUP_BASS_1A, .name = "bass1a"},
9023 {.id = ALC668_FIXUP_AUTO_MUTE, .name = "automute"},
9024 {.id = ALC668_FIXUP_DELL_XPS13, .name = "dell-xps13"},
9025 {.id = ALC662_FIXUP_ASUS_Nx50, .name = "asus-nx50"},
9026 {.id = ALC668_FIXUP_ASUS_Nx51, .name = "asus-nx51"},
40c51675 9027 {.id = ALC668_FIXUP_ASUS_G751, .name = "asus-g751"},
aa3841b5
TI
9028 {.id = ALC891_FIXUP_HEADSET_MODE, .name = "alc891-headset"},
9029 {.id = ALC891_FIXUP_DELL_MIC_NO_PRESENCE, .name = "alc891-headset-multi"},
9030 {.id = ALC662_FIXUP_ACER_VERITON, .name = "acer-veriton"},
9031 {.id = ALC892_FIXUP_ASROCK_MOBO, .name = "asrock-mobo"},
9032 {.id = ALC662_FIXUP_USI_HEADSET_MODE, .name = "usi-headset"},
ba90d6a6 9033 {.id = ALC662_FIXUP_LENOVO_MULTI_CODECS, .name = "dual-codecs"},
00066e97 9034 {.id = ALC669_FIXUP_ACER_ASPIRE_ETHOS, .name = "aspire-ethos"},
6be7948f
TB
9035 {}
9036};
6cb3b707 9037
532895c5 9038static const struct snd_hda_pin_quirk alc662_pin_fixup_tbl[] = {
78f4f7c2
KY
9039 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9040 {0x17, 0x02211010},
9041 {0x18, 0x01a19030},
9042 {0x1a, 0x01813040},
9043 {0x21, 0x01014020}),
4b4e0e32
HW
9044 SND_HDA_PIN_QUIRK(0x10ec0867, 0x1028, "Dell", ALC891_FIXUP_DELL_MIC_NO_PRESENCE,
9045 {0x16, 0x01813030},
9046 {0x17, 0x02211010},
9047 {0x18, 0x01a19040},
9048 {0x21, 0x01014020}),
1f8b46cd 9049 SND_HDA_PIN_QUIRK(0x10ec0662, 0x1028, "Dell", ALC662_FIXUP_DELL_MIC_NO_PRESENCE,
1f8b46cd 9050 {0x14, 0x01014010},
1f8b46cd 9051 {0x18, 0x01a19020},
1f8b46cd 9052 {0x1a, 0x0181302f},
11580297 9053 {0x1b, 0x0221401f}),
76c2132e
DH
9054 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9055 {0x12, 0x99a30130},
9056 {0x14, 0x90170110},
9057 {0x15, 0x0321101f},
11580297 9058 {0x16, 0x03011020}),
76c2132e
DH
9059 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9060 {0x12, 0x99a30140},
9061 {0x14, 0x90170110},
9062 {0x15, 0x0321101f},
11580297 9063 {0x16, 0x03011020}),
76c2132e
DH
9064 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
9065 {0x12, 0x99a30150},
9066 {0x14, 0x90170110},
9067 {0x15, 0x0321101f},
11580297 9068 {0x16, 0x03011020}),
76c2132e 9069 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell", ALC668_FIXUP_AUTO_MUTE,
76c2132e
DH
9070 {0x14, 0x90170110},
9071 {0x15, 0x0321101f},
11580297 9072 {0x16, 0x03011020}),
76c2132e
DH
9073 SND_HDA_PIN_QUIRK(0x10ec0668, 0x1028, "Dell XPS 15", ALC668_FIXUP_AUTO_MUTE,
9074 {0x12, 0x90a60130},
9075 {0x14, 0x90170110},
11580297 9076 {0x15, 0x0321101f}),
532895c5
HW
9077 {}
9078};
9079
1d045db9
TI
9080/*
9081 */
bc9f98a9
KY
9082static int patch_alc662(struct hda_codec *codec)
9083{
9084 struct alc_spec *spec;
3de95173 9085 int err;
bc9f98a9 9086
3de95173
TI
9087 err = alc_alloc_spec(codec, 0x0b);
9088 if (err < 0)
9089 return err;
bc9f98a9 9090
3de95173 9091 spec = codec->spec;
1f0f4b80 9092
225068ab
TI
9093 spec->shutup = alc_eapd_shutup;
9094
53c334ad
TI
9095 /* handle multiple HPs as is */
9096 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
9097
2c3bf9ab
TI
9098 alc_fix_pll_init(codec, 0x20, 0x04, 15);
9099
7639a06c 9100 switch (codec->core.vendor_id) {
f3f9185f
KY
9101 case 0x10ec0668:
9102 spec->init_hook = alc668_restore_default_value;
9103 break;
f3f9185f 9104 }
8663ff75 9105
c9af753f
TI
9106 alc_pre_init(codec);
9107
1727a771 9108 snd_hda_pick_fixup(codec, alc662_fixup_models,
8e5a0509 9109 alc662_fixup_tbl, alc662_fixups);
0fc1e447 9110 snd_hda_pick_pin_fixup(codec, alc662_pin_fixup_tbl, alc662_fixups, true);
1727a771 9111 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PRE_PROBE);
8e5a0509
TI
9112
9113 alc_auto_parse_customize_define(codec);
9114
7504b6cd
TI
9115 if (has_cdefine_beep(codec))
9116 spec->gen.beep_nid = 0x01;
9117
1bb7e43e 9118 if ((alc_get_coef0(codec) & (1 << 14)) &&
5100cd07 9119 codec->bus->pci && codec->bus->pci->subsystem_vendor == 0x1025 &&
e16fb6d1 9120 spec->cdefine.platform_type == 1) {
6134b1a2
WY
9121 err = alc_codec_rename(codec, "ALC272X");
9122 if (err < 0)
e16fb6d1 9123 goto error;
20ca0c35 9124 }
274693f3 9125
b9c5106c
TI
9126 /* automatic parse from the BIOS config */
9127 err = alc662_parse_auto_config(codec);
e16fb6d1
TI
9128 if (err < 0)
9129 goto error;
bc9f98a9 9130
7504b6cd 9131 if (!spec->gen.no_analog && spec->gen.beep_nid) {
7639a06c 9132 switch (codec->core.vendor_id) {
da00c244 9133 case 0x10ec0662:
fea80fae 9134 err = set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
da00c244
KY
9135 break;
9136 case 0x10ec0272:
9137 case 0x10ec0663:
9138 case 0x10ec0665:
9ad54547 9139 case 0x10ec0668:
fea80fae 9140 err = set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
da00c244
KY
9141 break;
9142 case 0x10ec0273:
fea80fae 9143 err = set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
da00c244
KY
9144 break;
9145 }
fea80fae
TI
9146 if (err < 0)
9147 goto error;
cec27c89 9148 }
2134ea4f 9149
1727a771 9150 snd_hda_apply_fixup(codec, HDA_FIXUP_ACT_PROBE);
589876e2 9151
bc9f98a9 9152 return 0;
801f49d3 9153
e16fb6d1
TI
9154 error:
9155 alc_free(codec);
9156 return err;
b478b998
KY
9157}
9158
d1eb57f4
KY
9159/*
9160 * ALC680 support
9161 */
d1eb57f4 9162
d1eb57f4
KY
9163static int alc680_parse_auto_config(struct hda_codec *codec)
9164{
3e6179b8 9165 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
9166}
9167
d1eb57f4 9168/*
d1eb57f4 9169 */
d1eb57f4
KY
9170static int patch_alc680(struct hda_codec *codec)
9171{
d1eb57f4
KY
9172 int err;
9173
1f0f4b80 9174 /* ALC680 has no aa-loopback mixer */
3de95173
TI
9175 err = alc_alloc_spec(codec, 0);
9176 if (err < 0)
9177 return err;
1f0f4b80 9178
1ebec5f2
TI
9179 /* automatic parse from the BIOS config */
9180 err = alc680_parse_auto_config(codec);
9181 if (err < 0) {
9182 alc_free(codec);
9183 return err;
d1eb57f4
KY
9184 }
9185
d1eb57f4
KY
9186 return 0;
9187}
9188
1da177e4
LT
9189/*
9190 * patch entries
9191 */
b9a94a9c 9192static const struct hda_device_id snd_hda_id_realtek[] = {
0a6f0600 9193 HDA_CODEC_ENTRY(0x10ec0215, "ALC215", patch_alc269),
b9a94a9c 9194 HDA_CODEC_ENTRY(0x10ec0221, "ALC221", patch_alc269),
2a36c16e 9195 HDA_CODEC_ENTRY(0x10ec0222, "ALC222", patch_alc269),
4231430d 9196 HDA_CODEC_ENTRY(0x10ec0225, "ALC225", patch_alc269),
b9a94a9c
TI
9197 HDA_CODEC_ENTRY(0x10ec0231, "ALC231", patch_alc269),
9198 HDA_CODEC_ENTRY(0x10ec0233, "ALC233", patch_alc269),
dcd4f0db 9199 HDA_CODEC_ENTRY(0x10ec0234, "ALC234", patch_alc269),
b9a94a9c 9200 HDA_CODEC_ENTRY(0x10ec0235, "ALC233", patch_alc269),
736f20a7 9201 HDA_CODEC_ENTRY(0x10ec0236, "ALC236", patch_alc269),
b9a94a9c
TI
9202 HDA_CODEC_ENTRY(0x10ec0255, "ALC255", patch_alc269),
9203 HDA_CODEC_ENTRY(0x10ec0256, "ALC256", patch_alc269),
f429e7e4 9204 HDA_CODEC_ENTRY(0x10ec0257, "ALC257", patch_alc269),
b9a94a9c
TI
9205 HDA_CODEC_ENTRY(0x10ec0260, "ALC260", patch_alc260),
9206 HDA_CODEC_ENTRY(0x10ec0262, "ALC262", patch_alc262),
9207 HDA_CODEC_ENTRY(0x10ec0267, "ALC267", patch_alc268),
9208 HDA_CODEC_ENTRY(0x10ec0268, "ALC268", patch_alc268),
9209 HDA_CODEC_ENTRY(0x10ec0269, "ALC269", patch_alc269),
9210 HDA_CODEC_ENTRY(0x10ec0270, "ALC270", patch_alc269),
9211 HDA_CODEC_ENTRY(0x10ec0272, "ALC272", patch_alc662),
dcd4f0db 9212 HDA_CODEC_ENTRY(0x10ec0274, "ALC274", patch_alc269),
b9a94a9c
TI
9213 HDA_CODEC_ENTRY(0x10ec0275, "ALC275", patch_alc269),
9214 HDA_CODEC_ENTRY(0x10ec0276, "ALC276", patch_alc269),
9215 HDA_CODEC_ENTRY(0x10ec0280, "ALC280", patch_alc269),
9216 HDA_CODEC_ENTRY(0x10ec0282, "ALC282", patch_alc269),
9217 HDA_CODEC_ENTRY(0x10ec0283, "ALC283", patch_alc269),
9218 HDA_CODEC_ENTRY(0x10ec0284, "ALC284", patch_alc269),
0a6f0600 9219 HDA_CODEC_ENTRY(0x10ec0285, "ALC285", patch_alc269),
b9a94a9c
TI
9220 HDA_CODEC_ENTRY(0x10ec0286, "ALC286", patch_alc269),
9221 HDA_CODEC_ENTRY(0x10ec0288, "ALC288", patch_alc269),
0a6f0600 9222 HDA_CODEC_ENTRY(0x10ec0289, "ALC289", patch_alc269),
b9a94a9c
TI
9223 HDA_CODEC_ENTRY(0x10ec0290, "ALC290", patch_alc269),
9224 HDA_CODEC_ENTRY(0x10ec0292, "ALC292", patch_alc269),
9225 HDA_CODEC_ENTRY(0x10ec0293, "ALC293", patch_alc269),
dcd4f0db 9226 HDA_CODEC_ENTRY(0x10ec0294, "ALC294", patch_alc269),
7d727869 9227 HDA_CODEC_ENTRY(0x10ec0295, "ALC295", patch_alc269),
b9a94a9c 9228 HDA_CODEC_ENTRY(0x10ec0298, "ALC298", patch_alc269),
28f1f9b2 9229 HDA_CODEC_ENTRY(0x10ec0299, "ALC299", patch_alc269),
1078bef0 9230 HDA_CODEC_ENTRY(0x10ec0300, "ALC300", patch_alc269),
f0778871 9231 HDA_CODEC_ENTRY(0x10ec0623, "ALC623", patch_alc269),
b9a94a9c
TI
9232 HDA_CODEC_REV_ENTRY(0x10ec0861, 0x100340, "ALC660", patch_alc861),
9233 HDA_CODEC_ENTRY(0x10ec0660, "ALC660-VD", patch_alc861vd),
9234 HDA_CODEC_ENTRY(0x10ec0861, "ALC861", patch_alc861),
9235 HDA_CODEC_ENTRY(0x10ec0862, "ALC861-VD", patch_alc861vd),
9236 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100002, "ALC662 rev2", patch_alc882),
9237 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100101, "ALC662 rev1", patch_alc662),
9238 HDA_CODEC_REV_ENTRY(0x10ec0662, 0x100300, "ALC662 rev3", patch_alc662),
9239 HDA_CODEC_ENTRY(0x10ec0663, "ALC663", patch_alc662),
9240 HDA_CODEC_ENTRY(0x10ec0665, "ALC665", patch_alc662),
9241 HDA_CODEC_ENTRY(0x10ec0667, "ALC667", patch_alc662),
9242 HDA_CODEC_ENTRY(0x10ec0668, "ALC668", patch_alc662),
9243 HDA_CODEC_ENTRY(0x10ec0670, "ALC670", patch_alc662),
9244 HDA_CODEC_ENTRY(0x10ec0671, "ALC671", patch_alc662),
9245 HDA_CODEC_ENTRY(0x10ec0680, "ALC680", patch_alc680),
6fbae35a
KY
9246 HDA_CODEC_ENTRY(0x10ec0700, "ALC700", patch_alc269),
9247 HDA_CODEC_ENTRY(0x10ec0701, "ALC701", patch_alc269),
9248 HDA_CODEC_ENTRY(0x10ec0703, "ALC703", patch_alc269),
83629532 9249 HDA_CODEC_ENTRY(0x10ec0711, "ALC711", patch_alc269),
78f4f7c2 9250 HDA_CODEC_ENTRY(0x10ec0867, "ALC891", patch_alc662),
b9a94a9c
TI
9251 HDA_CODEC_ENTRY(0x10ec0880, "ALC880", patch_alc880),
9252 HDA_CODEC_ENTRY(0x10ec0882, "ALC882", patch_alc882),
9253 HDA_CODEC_ENTRY(0x10ec0883, "ALC883", patch_alc882),
9254 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100101, "ALC889A", patch_alc882),
9255 HDA_CODEC_REV_ENTRY(0x10ec0885, 0x100103, "ALC889A", patch_alc882),
9256 HDA_CODEC_ENTRY(0x10ec0885, "ALC885", patch_alc882),
9257 HDA_CODEC_ENTRY(0x10ec0887, "ALC887", patch_alc882),
9258 HDA_CODEC_REV_ENTRY(0x10ec0888, 0x100101, "ALC1200", patch_alc882),
9259 HDA_CODEC_ENTRY(0x10ec0888, "ALC888", patch_alc882),
9260 HDA_CODEC_ENTRY(0x10ec0889, "ALC889", patch_alc882),
9261 HDA_CODEC_ENTRY(0x10ec0892, "ALC892", patch_alc662),
9262 HDA_CODEC_ENTRY(0x10ec0899, "ALC898", patch_alc882),
9263 HDA_CODEC_ENTRY(0x10ec0900, "ALC1150", patch_alc882),
65553b12 9264 HDA_CODEC_ENTRY(0x10ec1168, "ALC1220", patch_alc882),
a535ad57 9265 HDA_CODEC_ENTRY(0x10ec1220, "ALC1220", patch_alc882),
1da177e4
LT
9266 {} /* terminator */
9267};
b9a94a9c 9268MODULE_DEVICE_TABLE(hdaudio, snd_hda_id_realtek);
1289e9e8
TI
9269
9270MODULE_LICENSE("GPL");
9271MODULE_DESCRIPTION("Realtek HD-audio codec");
9272
d8a766a1 9273static struct hda_codec_driver realtek_driver = {
b9a94a9c 9274 .id = snd_hda_id_realtek,
1289e9e8
TI
9275};
9276
d8a766a1 9277module_hda_codec_driver(realtek_driver);