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