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