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