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